/* Portfolio Pages Styles */

/* Portfolio Header */
.portfolio-header {
    padding-top: 6rem;
    padding-bottom: 1rem;
    text-align: center;
    min-height: auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 2rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

.back-link:hover {
    opacity: 1;
    color: var(--accent-1);
    transform: translateX(-5px);
}

.portfolio-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    opacity: 0.85;
    line-height: 1.7;
}

/* Portfolio Content */
.portfolio-content {
    padding: 2rem 1.5rem 4rem;
    min-height: auto;
}

.portfolio-section {
    margin-bottom: 4rem;
}

.portfolio-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.portfolio-section h2 i {
    color: var(--accent-1);
    font-size: 1.25rem;
}

.section-description {
    opacity: 0.75;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Portfolio Grid - Modern Masonry Layout */
.portfolio-grid {
    columns: 1;
    column-gap: 1.5rem;
    width: 100%;
}

@media (min-width: 480px) {
    .portfolio-grid {
        columns: 2;
    }
}

@media (min-width: 992px) {
    .portfolio-grid {
        columns: 3;
    }
}

.portfolio-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: zoom-in;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    break-inside: avoid;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    border-color: var(--accent-1);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.2);
    z-index: 2;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Placeholder for images */
.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--text-color);
    opacity: 0.5;
    transition: var(--transition);
}

.portfolio-placeholder i {
    font-size: 2.5rem;
}

.portfolio-placeholder span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-item:hover .portfolio-placeholder {
    opacity: 0.3;
}

/* Portfolio Overlay - Premium look */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.portfolio-overlay p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    border-color: var(--glass-border-active);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin: 0;
}

/* About Photo Section */
.about-photo .glass-card {
    max-width: 700px;
}

.about-photo ul {
    list-style: none;
    margin-top: 1.5rem;
}

.about-photo li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.about-photo li i {
    color: var(--accent-1);
    font-size: 0.85rem;
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    margin-top: 3rem;
}

.portfolio-cta h2 {
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.portfolio-cta p {
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Clickable Service Cards */
.glass-card.clickable {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.glass-card.clickable::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--accent-1);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.glass-card.clickable:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.glass-card.clickable:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: var(--accent-1);
}

/* Lightbox System */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
}

.lightbox-caption h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.lightbox-caption p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .portfolio-header h1 {
        font-size: 2.25rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-cta {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .portfolio-header h1 {
        font-size: 4rem;
    }

    .portfolio-content {
        padding: 4rem;
    }

    .portfolio-header {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

/* =============================================
   Photography Portfolio - Event & Carousel Styles
   ============================================= */

/* Event Section Styles */
.event-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-section:last-of-type {
    border-bottom: none;
}

.event-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.event-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
}

.event-title h2 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.event-title p {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    padding: 0 1.5rem;
    overflow: hidden;
}

.carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.carousel-item:hover {
    border-color: var(--accent-1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-item img,
.carousel-item video,
.carousel-item .placeholder {
    width: 100%;
    max-width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.1));
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.1));
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: none;
    opacity: 0.9;
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.carousel-item:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-1);
    opacity: 1;
}

.carousel-item .placeholder i {
    font-size: 3rem;
    opacity: 0.3;
}

.carousel-info {
    padding: 1.25rem;
}

.carousel-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.carousel-info p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem 0;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-1);
    border-color: var(--accent-1);
}

/* About Section */
.about-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 2rem 1.5rem 0;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-1);
}

/* =============================================
   Lightbox Modal Styles
   ============================================= */

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(139, 92, 246, 0.8);
    border-color: var(--accent-1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(139, 92, 246, 0.8);
    border-color: var(--accent-1);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-caption {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    max-width: 80%;
}

.lightbox-caption h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.lightbox-caption p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}


/* Carousel Responsive */
@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 340px;
    }

    .carousel-item img,
    .carousel-item video,
    .carousel-item .placeholder {
        height: 380px;
    }

    .video-wrapper {
        height: 380px;
    }
}

/* =============================================
   Contact Modal Styles
   ============================================= */

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.contact-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .85);
}

.contact-modal-content {
    position: relative;
    background: linear-gradient(145deg, #161620, #0a0a0f);
    border: 1px solid rgba(139, 92, 246, .3);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(.95);
    transition: transform .3s ease;
}

.contact-modal.active .contact-modal-content {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-modal-header h2 {
    font-size: 1.75rem;
    margin-bottom: .5rem;
}

.contact-modal-header p {
    opacity: .7;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .9rem 1rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.form-group select option {
    background: #161620;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: .5rem;
}

.contact-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.contact-success h3 {
    margin-bottom: .5rem;
}

.contact-success p {
    opacity: .7;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .contact-modal-content {
        padding: 1.5rem;
    }
}

/* =============================================
   Experience Curator Page Styles
   ============================================= */

/* Event Card Layout */
.event-card {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 0 1.5rem;
}

.event-description {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.event-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
}

.event-feature i {
    color: var(--accent-1);
    font-size: 0.9rem;
}

/* Event Gallery */
.event-gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.event-gallery::-webkit-scrollbar {
    display: none;
}

.event-gallery-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.event-gallery-item img,
.event-gallery-item .placeholder {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.1));
}

.event-gallery-item .placeholder i {
    font-size: 2.5rem;
    opacity: 0.3;
}

.event-gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .event-gallery-item {
        flex: 0 0 340px;
    }

    .event-gallery-item img,
    .event-gallery-item .placeholder {
        height: 240px;
    }
}

/* Mobile gallery fixes */
@media (max-width: 480px) {
    .event-gallery {
        gap: 0.75rem;
        padding: 0.5rem;
        flex-wrap: nowrap;
    }

    .event-gallery-item {
        flex: 0 0 75vw;
        max-width: 280px;
        min-width: 200px;
    }

    .event-gallery-item img,
    .event-gallery-item .placeholder {
        height: 160px;
    }
}

/* Swipe indicator */
.swipe-indicator {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.75rem;
    animation: swipe-hint 2s ease-in-out infinite;
}

.swipe-indicator i {
    font-size: 1rem;
}

@keyframes swipe-hint {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .swipe-indicator {
        display: flex;
    }
}

/* Philosophy Cards */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 1.5rem;
}

.philosophy-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.philosophy-card .number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: capitalize;
}

.philosophy-card p {
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Curator CTA */
.curator-cta {
    text-align: center;
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 40px;
    margin-top: 4rem;
}

.curator-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.curator-cta p {
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* =============================================
   Tech Portfolio Page Styles
   ============================================= */

/* Tech Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.skill-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.skill-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.skill-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.skill-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin: 0;
}

/* Experience Timeline */
.experience-section {
    margin-top: 0;
}

.experience-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-1), var(--accent-3));
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .timeline-item {
        padding-left: 0;
        width: 50%;
    }

    .timeline-item:nth-child(odd) {
        margin-left: auto;
        padding-left: 40px;
    }

    .timeline-item:nth-child(even) {
        padding-right: 40px;
        text-align: right;
    }
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-1);
    border: 3px solid var(--bg-primary);
}

@media (min-width: 768px) {
    .timeline-item:nth-child(odd) .timeline-dot {
        left: -9px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        right: -9px;
        left: auto;
    }
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.timeline-content .company {
    color: var(--accent-2);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content .period {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* CV Link */
.cv-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-2);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.cv-link:hover {
    color: var(--accent-1);
    border-bottom-color: var(--accent-1);
}

.cv-link i {
    font-size: 1rem;
}

/* Projects Section */
.projects-section {
    margin-top: 4rem;
}

.projects-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.project-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .project-card {
        grid-template-columns: auto 1fr;
        align-items: center;
    }
}

.project-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .project-icon {
        margin: 0;
    }
}

.project-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.project-details p {
    opacity: 0.7;
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent-1);
}

/* =============================================
   Tattoo Portfolio Additional Styles
   ============================================= */

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1.5rem;
}

.process-step {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.5;
}