/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --color-black: #000000;
    --color-gray: #666666;
    --color-white: #ffffff;
    --color-accent: #333333;
    --color-dark-gray: #333333;
    --color-light-gray: #f5f5f5;
    --color-accent-dark: #1a1a1a;
    --color-accent-light: #555555;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Montserrat', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 120px 0;
    --section-padding-mobile: 80px 0;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    border-radius: 2px;
    max-width: 280px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    outline: none;
}

.nav-logo a:focus {
    outline: none;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 10px 0;
    outline: none;
}

.nav-link:focus {
    outline: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-accent-light);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 5px 8px;
    outline: none;
}

.lang-btn:hover {
    color: var(--color-white);
}

.lang-btn.active {
    color: var(--color-white);
    text-decoration: underline;
}

.lang-btn:focus {
    outline: none;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    transition: var(--transition-smooth);
}

/* Hero Section - Premium Redesign */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-black);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    transition: transform 8s ease-out;
    filter: contrast(1.1) brightness(0.75);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.85) 15%,
        rgba(0, 0, 0, 0.7) 40%, 
        rgba(0, 0, 0, 0.75) 100%
    );
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 80%);
}

.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(85, 85, 85, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(85, 85, 85, 0.05) 0%, transparent 40%);
}

.hero-content-premium {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-content-center {
    color: var(--color-white);
    padding: 120px 40px 0 40px;
    max-width: 100%;
    overflow: hidden;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
    justify-content: flex-start;
}

.hero-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.badge-line-left, .badge-line-right {
    width: 30px;
    height: 1px;
    background: var(--color-white);
}

.hero-title-premium {
    font-family: var(--font-display);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    text-align: left;
}

.title-srboga {
    display: block;
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--color-white);
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.title-descriptor {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--color-accent-light);
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.title-location {
    display: block;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    align-items: flex-start;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.highlight-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 6px;
    height: 6px;
    background: var(--color-white);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    }
}

.hero-description-premium {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
    text-align: left;
}

.hero-description-premium strong {
    color: var(--color-white);
    font-weight: 600;
}

.hero-cta-premium {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1s forwards;
    justify-content: flex-start;
}

.cta-primary-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid var(--color-accent);
}

.cta-primary-premium:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(51, 51, 51, 0.4);
    border-color: var(--color-white);
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-primary-premium:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-secondary-premium {
    padding: 18px 35px;
    background: transparent;
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-secondary-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-3px);
}


.scroll-indicator-premium {
    margin-top: 3rem;
    text-align: left;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

.scroll-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.scroll-arrow-premium {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-8px); }
    60% { transform: rotate(45deg) translateY(-4px); }
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-content-premium {
        grid-template-columns: 1fr;
        padding: 0 40px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-content-center {
        padding: 100px 20px 0 20px;
    }

    .hero-image-container {
        width: 100%;
        height: 100%;
    }
    
    .hero-image-overlay {
        background: linear-gradient(
            180deg, 
            rgba(0, 0, 0, 0.8) 0%, 
            rgba(0, 0, 0, 0.5) 50%, 
            rgba(0, 0, 0, 0.8) 100%
        );
    }
    
    .hero-badge,
    .hero-highlights,
    .hero-cta-premium {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 700px;
    }
    
    .hero-content-premium {
        padding: 0 20px;
    }
    
    .hero-content-center {
        max-width: 100%;
        padding: 100px 10px 0 10px;
    }

    .hero-badge {
        margin-top: 1.5rem;
    }
    
    .hero-badge span {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .title-srboga {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .title-location {
        font-size: 0.85rem;
    }
    
    .hero-description-premium {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-premium {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary-premium,
    .cta-secondary-premium {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 28px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .hero-highlights {
        margin-bottom: 2rem;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
}

/* Optimización para pantallas con altura limitada (laptops) */
@media (max-height: 850px) {
    .hero-content-center {
        padding: 90px 20px 20px 20px;
    }

    .hero-badge {
        margin-bottom: 1rem;
    }

    .hero-title-premium {
        margin-bottom: 1.2rem;
    }

    .hero-title-premium .title-srboga {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .hero-title-premium .title-location {
        font-size: 1.3rem;
    }

    .hero-highlights {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-description-premium {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-cta-premium {
        margin-bottom: 1rem;
    }
}

/* Para pantallas MUY pequeñas de altura */
@media (max-height: 700px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 80px 0 40px 0;
    }

    .hero-content-center {
        padding: 70px 10px 0 10px;
    }

    .hero-description-premium {
        font-size: 0.95rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-highlights {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-title-premium .title-srboga {
        font-size: 3rem;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section - Premium Redesign */
.about {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-black);
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease-out;
    filter: contrast(1.1) brightness(0.9);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.6) 30%, 
        rgba(0, 0, 0, 0.2) 60%, 
        transparent 100%
    );
}

.about-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, transparent 0%, rgba(0, 0, 0, 0.4) 70%);
}

.about-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(85, 85, 85, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(85, 85, 85, 0.03) 0%, transparent 40%);
}

.about-content-premium {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
}

.about-content-left {
    padding: 0 60px;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.badge-text, .badge-location {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.badge-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-white), var(--color-accent-light));
    border-radius: 1px;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 3rem;
    letter-spacing: 1px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    text-align: left;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-white) 0%, var(--color-accent-light) 50%, var(--color-white) 100%);
    border-radius: 3px;
}

.experience-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.about-story-condensed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.story-highlight {
    position: relative;
    padding-left: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 1s ease-out forwards;
}

.about-story-condensed .story-highlight:nth-child(1) { animation-delay: 1.2s; }
.about-story-condensed .story-highlight:nth-child(2) { animation-delay: 1.5s; }
.about-story-condensed .story-highlight:nth-child(3) { animation-delay: 1.8s; }

.highlight-marker {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(85, 85, 85, 0.5);
}

.highlight-marker::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.story-highlight p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.story-highlight strong {
    color: var(--color-accent-light);
    font-weight: 600;
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-content-premium {
        grid-template-columns: 1fr;
        text-align: center;
        justify-content: center;
    }
    
    .about-content-left {
        padding: 0 40px;
        background: rgba(0, 0, 0, 0.9);
    }
    
    .about-image-container {
        width: 100%;
        height: 100%;
    }
    
    .about-image-overlay {
        background: linear-gradient(
            180deg, 
            rgba(0, 0, 0, 0.9) 0%, 
            rgba(0, 0, 0, 0.7) 50%, 
            rgba(0, 0, 0, 0.85) 100%
        );
    }
    
    .experience-stats {
        gap: 2rem;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about {
        height: auto;
        min-height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    
    .about-background {
        position: relative;
        order: 2;
        height: 60vh;
        min-height: 500px;
    }
    
    .about-content-premium {
        position: relative;
        display: block;
        order: 1;
        height: auto;
        grid-template-columns: 1fr;
        background: var(--color-black);
        padding: 80px 0 60px;
    }
    
    .about-content-left {
        padding: 0 20px;
        background: transparent;
        height: auto;
    }
    
    .about-image-space {
        display: none;
    }
    
    .about-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .artist-badge {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }
    
    .badge-text,
    .badge-location {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    
    .badge-line {
        width: 30px;
        height: 1px;
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .about-title::after {
        height: 3px;
        bottom: -15px;
    }
    
    .about-image-overlay {
        background: linear-gradient(
            180deg, 
            rgba(0, 0, 0, 0.3) 0%, 
            rgba(0, 0, 0, 0.2) 50%, 
            rgba(0, 0, 0, 0.4) 100%
        );
    }
    
    .experience-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--color-gray), transparent);
    }
    
    .story-highlight {
        padding-left: 1.5rem;
    }
    
    .about-story-condensed {
        gap: 1.25rem;
    }
    
    .story-highlight {
        padding-left: 1rem;
        text-align: left;
    }
    
    .story-highlight p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .highlight-marker {
        top: 0.3rem;
    }
}


/* Premium Specialties Section */
.specialties {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
}

.specialties-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(85, 85, 85, 0.1) 48%, rgba(85, 85, 85, 0.1) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(85, 85, 85, 0.05) 48%, rgba(85, 85, 85, 0.05) 52%, transparent 52%);
    background-size: 120px 120px, 180px 180px;
    animation: geometricShift 20s linear infinite;
}

@keyframes geometricShift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(120px) translateY(180px); }
}

.specialties-header {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 5rem;
}

.specialties-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.specialties-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-light) 50%, var(--color-accent) 100%);
    border-radius: 3px;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(85, 85, 85, 0.5);
    }
    50% { 
        box-shadow: 0 0 40px rgba(85, 85, 85, 0.8), 0 0 60px rgba(85, 85, 85, 0.4);
    }
}

.specialties-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 2rem;
}

.specialties-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Premium 3D Cards */
.specialty-card {
    position: relative;
    perspective: 1000px;
    height: 400px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.specialty-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.card-front {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.card-back {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialty-visual {
    position: relative;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.specialty-photo {
    position: relative;
    z-index: 5;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 20px rgba(85, 85, 85, 0.4);
}

.specialty-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: grayscale(100%) contrast(1.2);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(85, 85, 85, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0.7;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.specialty-card:hover .specialty-photo {
    transform: scale(1.1);
    border-color: var(--color-white);
    box-shadow: 0 0 40px rgba(85, 85, 85, 0.8), 0 0 60px rgba(85, 85, 85, 0.4);
}

.specialty-card:hover .specialty-image {
    filter: grayscale(0%) contrast(1.1) brightness(1.1);
    transform: scale(1.1);
}

.specialty-card:hover .photo-overlay {
    opacity: 0.3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(85, 85, 85, 0.3) 100%);
}

.specialty-content-new {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.specialty-content-new h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.specialty-content-new p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.specialty-details {
    text-align: center;
    color: var(--color-white);
}

.specialty-details h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.specialty-details ul {
    list-style: none;
    padding: 0;
}

.specialty-details li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.specialty-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Card Entrance Animation */
.specialty-card {
    opacity: 0;
    transform: translateY(50px);
    animation: cardEntrance 0.8s ease-out forwards;
}

.specialty-card:nth-child(1) { animation-delay: 0.2s; }
.specialty-card:nth-child(2) { animation-delay: 0.4s; }
.specialty-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 500px;
    }
    
    .specialty-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .specialties {
        padding: 50px 0;
    }
    
    .specialties-header {
        margin-bottom: 2rem;
    }
    
    .specialties-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .specialties-subtitle {
        font-size: 1rem;
        display: none;
    }
    
    .specialties-grid {
        gap: 1rem;
        max-width: 100%;
    }
    
    .specialty-card {
        height: 180px;
        perspective: 1000px;
    }
    
    .card-inner {
        transform-style: preserve-3d;
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .specialty-card.flipped .card-inner {
        transform: rotateY(180deg);
    }
    
    .card-front,
    .card-back {
        backface-visibility: hidden;
    }
    
    .card-front {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .card-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: rotateY(180deg);
        padding: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .specialty-visual {
        height: auto;
        width: auto;
    }
    
    .specialty-photo {
        width: 70px;
        height: 70px;
        border-width: 2px;
    }
    
    .specialty-content-new {
        padding: 0;
        text-align: center;
    }
    
    .specialty-content-new h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .specialty-content-new p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .specialty-details {
        text-align: center;
    }
    
    .specialty-details h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .specialty-details ul {
        padding: 0;
        list-style: none;
    }
    
    .specialty-details li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        padding-left: 0;
    }
    
    .specialty-details li::before {
        display: none;
    }
}

/* Particle Animation */
@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Card Animations */
.specialty-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.specialty-card.visible .specialty-photo {
    animation: photoPulse 3s ease-in-out infinite alternate;
}

@keyframes photoPulse {
    from {
        box-shadow: 0 0 20px rgba(85, 85, 85, 0.4);
        border-color: var(--color-accent);
    }
    to {
        box-shadow: 0 0 40px rgba(85, 85, 85, 0.8), 0 0 60px rgba(85, 85, 85, 0.3);
        border-color: var(--color-accent-light);
    }
}

/* Advanced Hover States */
.specialty-card:hover {
    transform: translateY(-10px) scale(1.02);
}


.specialty-card:hover .specialty-image {
    animation: imageZoom 1s ease-in-out;
}

@keyframes imageZoom {
    0% { transform: scale(1.1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(2deg); }
    100% { transform: scale(1.1) rotate(0deg); }
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, transparent 50%);
    opacity: 0.1;
    transition: var(--transition-smooth);
}

.image-container:hover .image-overlay {
    opacity: 0.2;
}

/* Portfolio Section */
.portfolio {
    padding: var(--section-padding);
    background: var(--color-black);
    color: var(--color-white);
}

.portfolio .section-title {
    color: var(--color-white);
}

.portfolio .section-title::after {
    width: 100%;
    max-width: 220px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-accent-light), var(--color-white));
}

.portfolio .section-subtitle {
    color: var(--color-light-gray);
    max-width: 900px;
    font-size: 1.3rem;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
    outline: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-accent);
    border-color: var(--color-white) !important;
    color: var(--color-white);
    outline: none;
}

.filter-btn:focus {
    outline: none;
    border-color: var(--color-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    min-height: 400px;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

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

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

.portfolio-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.portfolio-info p {
    color: var(--color-light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Portfolio Loading Styles */
.instagram-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-gray);
    border-top: 3px solid var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.instagram-loading p {
    color: var(--color-light-gray);
    font-size: 1.1rem;
}

.instagram-post {
    position: relative;
    background: var(--color-dark-gray);
    border: 1px solid #333;
}

.instagram-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-date {
    font-size: 0.8rem;
    color: var(--color-gray);
}

.view-on-instagram {
    color: var(--color-accent-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.view-on-instagram:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.instagram-fallback {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: var(--color-dark-gray);
    border-radius: 15px;
    border: 2px dashed var(--color-gray);
}

.fallback-content {
    text-align: center;
    padding: 3rem;
    max-width: 400px;
}

.instagram-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.fallback-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.fallback-content p {
    color: var(--color-light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.instagram-fallback-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #333333 0%, #555555 25%, #444444 50%, #666666 75%, #2a2a2a 100%);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.instagram-fallback-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Real Work Styles */
.real-work .portfolio-overlay {
    background: linear-gradient(
        to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.2) 20%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.real-work:hover .portfolio-overlay {
    opacity: 1;
}



/* Enhanced Portfolio Info */
.portfolio-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-white);
    line-height: 1.2;
}

.portfolio-info p {
    color: var(--color-light-gray);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Loading Animation for Real Works */
.real-work {
    animation: fadeInUp 0.6s ease-out both;
}

.real-work:nth-child(1) { animation-delay: 0.1s; }
.real-work:nth-child(2) { animation-delay: 0.2s; }
.real-work:nth-child(3) { animation-delay: 0.3s; }
.real-work:nth-child(4) { animation-delay: 0.4s; }
.real-work:nth-child(5) { animation-delay: 0.5s; }
.real-work:nth-child(6) { animation-delay: 0.6s; }

/* Legacy Instagram Post Styles for Compatibility */
.instagram-post .portfolio-overlay {
    background: linear-gradient(
        to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.instagram-post:hover .portfolio-overlay {
    opacity: 1;
}

.instagram-post::before {
    content: '📷';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    z-index: 2;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.instagram-post:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.portfolio-cta {
    text-align: center;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #333333 0%, #555555 25%, #444444 50%, #666666 75%, #2a2a2a 100%);
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Aftercare Section */
.aftercare {
    padding: var(--section-padding);
    background: var(--color-white);
}

.aftercare-header {
    text-align: center;
    margin-bottom: 4rem;
}

.aftercare-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Aftercare Tabs Container */
.aftercare-tabs-container {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Tabs Menu (Left Side) */
.aftercare-tabs-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aftercare-tab {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--color-light-gray);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
    outline: none;
}

.aftercare-tab:hover {
    border-color: var(--color-accent);
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.aftercare-tab:focus {
    outline: none;
}

.aftercare-tab:focus-visible {
    outline: none;
}

.aftercare-tab.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: none;
}

.aftercare-tab.active .icon-number {
    background: var(--color-white);
    color: var(--color-accent);
}

.aftercare-tab.active .tab-title {
    color: var(--color-white);
}

.tab-icon {
    flex-shrink: 0;
}

.icon-number {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    transition: var(--transition-smooth);
}

.tab-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-black);
    transition: var(--transition-smooth);
}

/* Content Box (Right Side) */
.aftercare-tabs-content {
    position: relative;
    min-height: 400px;
}

.aftercare-content-box {
    background: var(--color-light-gray);
    border-radius: 15px;
    padding: 3rem;
    border: 2px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.aftercare-content-box.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.aftercare-content-box h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.aftercare-content-box p {
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.aftercare-important {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 3rem;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.aftercare-important h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-white);
}

.aftercare-important ul {
    list-style: none;
    padding: 0;
}

.aftercare-important li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.aftercare-important li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.2rem;
}

.aftercare-important strong {
    color: var(--color-white);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .aftercare-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto 4rem;
    }
}

@media (max-width: 768px) {
    .aftercare {
        padding: 80px 0;
    }

    .aftercare-tabs-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .aftercare-tabs-menu {
        order: 2;
    }

    .aftercare-tabs-content {
        order: 1;
        min-height: auto;
    }

    .aftercare-tab {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .tab-title {
        font-size: 1rem;
    }

    .icon-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .aftercare-content-box {
        padding: 2rem;
    }

    .aftercare-content-box h3 {
        font-size: 1.5rem;
    }

    .aftercare-content-box p {
        font-size: 1rem;
    }

    .aftercare-important {
        padding: 2rem;
    }
}

/* Booking Section */
.booking {
    padding: var(--section-padding);
    background: var(--color-light-gray);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-process {
    margin: 3rem 0;
}

.booking-process h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.step-content p {
    color: var(--color-gray);
    line-height: 1.6;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.info-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.info-item p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.form-container {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.form-container h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-black);
    text-align: center;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
    outline: none;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(85, 85, 85, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    outline: none;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: none;
}

.submit-btn {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1rem;
    outline: none;
}

.submit-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.submit-btn:focus {
    outline: none;
}

.form-note {
    font-size: 0.9rem;
    color: var(--color-gray);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 24px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    border: 2px solid var(--color-accent);
}

.file-label:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

.file-label svg {
    flex-shrink: 0;
    color: var(--color-white);
    stroke: var(--color-white);
}

.file-text {
    color: var(--color-white);
}

.file-name {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-gray);
    font-style: italic;
}

.file-name:empty {
    display: none;
}

.form-helper {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-gray);
    font-style: italic;
}

.file-error {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #000000;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--color-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods {
    margin-top: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.contact-details a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-details a:hover {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.contact-details p {
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--color-light-gray);
    padding: 3rem;
    border-radius: 15px;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.quick-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Footer */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.footer-brand p {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-text p {
    color: var(--color-light-gray);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-light-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-dark-gray);
}

.footer-copyright p {
    color: var(--color-light-gray);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--color-light-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
    outline: none;
}

.footer-legal a:hover {
    color: var(--color-accent-light);
}

.footer-legal a:focus {
    outline: none;
    color: var(--color-accent-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .about-content,
    .booking-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
        --container-max-width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--color-white);
        font-size: 1.3rem;
        padding: 15px 0;
    }
    
    .nav-menu .nav-link::after {
        background: var(--color-white);
    }

    .nav-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .nav-logo {
        order: 1;
    }

    .language-selector {
        position: static;
        opacity: 1;
        pointer-events: all;
        background: transparent;
        padding: 0;
        border-radius: 0;
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
    }

    .nav-toggle {
        order: 3;
        display: flex;
        padding: 10px;
        margin: -10px;
        min-width: 44px;
        min-height: 44px;
    }

    .nav-menu {
        order: 4;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding-bottom: 1rem;
        overflow: visible;
    }
    
    .filter-btn {
        padding: 12px 10px;
        font-size: 0.8rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    .filter-btn[data-filter="all"] {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-info-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea,
    .submit-btn {
        min-height: 48px;
        font-size: 16px;
    }
    
    .submit-btn {
        min-height: 50px;
        width: 100%;
    }
    
    .file-label {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
    
    .file-name {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .form-helper {
        text-align: center;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .title-main {
        letter-spacing: 4px;
    }
    
    .title-sub {
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .specialty-grid {
        gap: 1rem;
    }
    
    .specialty-item {
        padding: 1.5rem;
    }
    
    .form-container,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .parallax-layer {
        animation: none !important;
    }
    
    .scroll-indicator {
        animation: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --color-gray: #000000;
        --color-light-gray: #ffffff;
    }
    
    .filter-btn {
        border-width: 3px;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-width: 3px;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 1.25rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: slideUp 0.5s ease-out;
    border-top: 2px solid var(--color-accent);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.3rem;
}

.cookie-links {
    margin-top: 0.5rem;
}

.cookie-text a {
    color: var(--color-white);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.cookie-text a:hover {
    color: var(--color-accent-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
    outline: none;
}

.cookie-btn:focus {
    outline: none;
}

.cookie-accept {
    background: var(--color-accent);
    color: var(--color-white);
}

.cookie-accept:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

.cookie-reject {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gray);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.cookie-settings {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-accent);
}

.cookie-settings:hover {
    background: var(--color-accent);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal-content {
    background: var(--color-black);
    border: 2px solid var(--color-accent);
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--color-accent);
}

.cookie-modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-white);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.cookie-modal-close:hover {
    color: var(--color-accent-light);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-white);
    margin: 0;
}

.cookie-required {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cookie-category p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gray);
    transition: var(--transition-smooth);
    border-radius: 30px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--color-accent);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(30px);
}

.cookie-modal-footer {
    padding: 2rem;
    border-top: 1px solid var(--color-accent);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        max-height: 85vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-background,
    .scroll-indicator,
    .portfolio-filters,
    .booking,
    .contact,
    .cookie-consent,
    .cookie-modal {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}