@import 'variables.css';

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.no-scroll {
    overflow: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-white);
    line-height: 1.1;
    font-weight: 400;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
        /* More breathing room on mobile edges */
    }
}

.text-gold {
    color: var(--color-gold-main);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--color-gold-main);
    color: var(--color-gold-main);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.5), 0 0 30px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-white);
}

.btn-outline:hover {
    background-color: rgba(197, 160, 89, 0.1);
    border-color: var(--color-gold-main);
    color: var(--color-gold-main);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2010;
    /* Ensure this is ABOVE the overlay (z-2000) */
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0) 100%);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    font-weight: 400;
    font-size: 0.9em;
    color: var(--color-gold-main);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-gold-main);
    opacity: 1;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-text-white);
    transition: var(--transition-fast);
}

.mobile-menu-overlay {
    display: none;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 2001;
        /* Above overlay */
    }

    .logo {
        position: relative;
        z-index: 2001;
        /* Above overlay */
    }
}

/* ========================================
   MOBILE MENU OVERLAY - BRUTAL
   ======================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #000;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 2rem 3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    background: radial-gradient(circle at 10% 20%, rgba(20, 20, 20, 1) 0%, rgba(0, 0, 0, 1) 90%);
    overflow: hidden;
}

.menu-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    font-size: 15vh;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.02);
    font-family: var(--font-heading);
    font-weight: 700;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    z-index: 2;
    width: 100%;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    /* Slightly smaller to fit more content */
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-nav-link {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger Delay for Links */
.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .menu-cta {
    transition-delay: 0.3s;
}

.mobile-nav-link:hover {
    color: var(--color-gold-main);
    transform: scale(1.05);
}

/* Specific style for the CTA inside menu */
.menu-cta {
    margin-top: 2rem !important;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.mobile-menu-overlay.active .menu-cta {
    transform: translateY(0);
    opacity: 1;
}

/* Menu Footer Styles */
.mobile-menu-footer {
    z-index: 2;
    text-align: center;
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.4s;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    width: 100%;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact-info p {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-contact-info a {
    font-size: 1.2rem;
    color: var(--color-gold-main);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 1.5rem;
}

.mobile-socials {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.mobile-socials a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
}

.mobile-socials a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold-main);
    transition: width 0.3s ease;
}

.mobile-socials a:hover::after {
    width: 100%;
}

/* Close Button Internal */
.menu-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    line-height: 1;
    display: none;
    /* Hidden by default, shown in mobile if needed */
}

@media (max-width: 768px) {
    .menu-close-btn {
        display: block;
    }
}

.menu-close-btn:hover {
    color: var(--color-gold-main);
    transform: rotate(90deg);
}

/* ========================================
   HAMBURGER ANIMATION
   ======================================== */
.mobile-menu-btn {
    width: 30px;
    height: 25px;
    position: relative;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--color-gold-main);
    transition: all 0.3s ease;
    transform-origin: left;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* ========================================
   HERO SECTION - BRUTAL IMPACT
   ======================================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    /* Better mobile support */
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    /* Increased header clearance */
    padding-bottom: 8rem;
    /* Significant bottom breathing room */
    overflow: hidden;
    background-color: var(--color-bg-dark);
    justify-content: flex-start;
    /* Aligns content to start, container handles centering */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at 30% 50%, #1a1a1a 0%, #050505 70%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    /* Ensure container takes full height for alignment */
}

.hero-content {
    max-width: 50%;
    /* Restricted width to respect image space */
    position: relative;
    padding-right: 2rem;
    /* Breathing room */
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--color-gold-main);
    font-weight: 600;
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    font-weight: 400;
    animation: slideInLeft 1.2s ease-out 0.2s both;
}

.hero-text {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 550px;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: slideInLeft 1.4s ease-out 0.4s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideInLeft 1.6s ease-out 0.6s both;
}

.hero-image-container {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 85%;
    /* Maximize width availability */
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

/* Particle glow background - Shifted Right */
/* Particle glow background - Strictly on Doctor's side */
.hero-image-container::before {
    content: '';
    position: absolute;
    right: 0;
    /* Anchor to right */
    width: 60%;
    /* Restrict width so it doesn't bleed left */
    height: 100%;
    background: radial-gradient(circle at 70% 50%,
            rgba(197, 160, 89, 0.15) 0%,
            transparent 65%);
    /* Tighter gradient */
    animation: particleGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes particleGlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
}

.hero-doctor {
    height: 115%;
    /* Larger than section (tops cropped) for impact */
    width: auto;
    max-width: none;
    object-fit: contain;
    /* Brutal & Perfect Fit */
    /* Shadows shifted right (positive X) to avoid text collision */
    filter: drop-shadow(20px 0 40px rgba(197, 160, 89, 0.2)) drop-shadow(40px 10px 40px rgba(0, 0, 0, 0.9));
    animation: doctorEntrance 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    transform-origin: bottom right;

    /* Gradient Fade for seamless blending */
    -webkit-mask-image: linear-gradient(to bottom,
            black 0%,
            black 85%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            black 0%,
            black 85%,
            transparent 100%);
}

/* Dark Overlay for "Darker Shadow" Effect - Softest Touch & Restricted Width */
.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    /* Anchor right */
    width: 60%;
    /* Restrict width - doesn't cover left side */
    height: 25%;
    /* Lower height, cleaner */
    background: linear-gradient(to top, #050505 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
    /* Soft left fade for the overlay itself */
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
    mask-image: linear-gradient(to right, transparent, black 20%);
}

@keyframes doctorEntrance {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        filter: blur(10px) drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 50px rgba(197, 160, 89, 0.2)) drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
    }
}

.feature-list {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold-main);
    font-family: var(--font-heading);
    line-height: 1;
}

.feature-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 0;
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* Push image to bottom, content to top */
        overflow: hidden;
    }

    /* iPhone 12/13/14 (390x844) adjustments */
    @media (max-width: 390px) {
        .hero-title {
            font-size: 2.5rem !important;
        }

        .hero-doctor {
            max-height: 52vh !important;
        }

        .hero .container {
            padding: 1.5rem;
        }
    }

    /* iPhone SE (375x667) adjustments */
    @media (max-width: 375px) {
        .hero-title {
            font-size: 2.2rem !important;
            /* Ultra-small title */
        }

        .hero-doctor {
            max-height: 48vh !important;
            /* Smaller image */
        }

        .hero .container {
            padding: 1.25rem;
        }
    }

    /* Disable moving background effect on mobile */
    .hero-bg::after {
        display: none !important;
        animation: none !important;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center content vertically in the available top space */
        height: auto;
        padding: 1.5rem;
        /* Tablet: Sufficient spacing */
        flex: 1;
        z-index: 20;
        order: 1;
    }

    @media (max-width: 480px) {
        .hero .container {
            padding: 1.25rem;
            /* Mobile: Compact but breathes */
        }
    }

    @media (orientation: landscape) {
        .hero {
            padding-top: 60px;
            /* Header clearance */
        }
    }

    .hero-content {
        position: relative !important;
        max-width: 100% !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
        text-align: center;
        z-index: 50 !important;
        margin-bottom: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 0 0 auto;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
        margin-bottom: 0.5rem;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2.8rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem !important;
    }

    .cta-group {
        justify-content: center;
        margin-bottom: 1.5rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .cta-group .btn {
        margin: 0 !important;
        width: 100%;
        max-width: 320px;
        /* Perfect max width */
        padding: 1rem 2rem;
        /* Generous touch area */
        font-size: 0.95rem;
        /* Legible text */
    }

    .feature-list {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        /* Espacio entre items */
        padding-top: 1.5rem;
        /* Separación del contenido */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        margin-bottom: 0;
    }

    .feature-number {
        font-size: 1.5rem;
        /* Grande pero no exagerado */
        color: var(--color-gold);
        /* Destacado */
    }

    .feature-text {
        font-size: 0.7rem;
        /* Pequeño pero legible */
        white-space: nowrap;
        /* No se parte */
    }

    .feature-text br {
        display: none;
        /* Sin saltos en móvil */
    }

    .hero-image-container {
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        min-height: 50vh;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;
        z-index: 10 !important;
        margin-top: auto;
        pointer-events: none;
        overflow: visible;
        order: 2;
    }

    /* A) Glow Dorado (detrás del doctor) */
    .hero-image-container::before {
        content: '' !important;
        display: block !important;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at center bottom, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
        /* Dorado suave */
        z-index: -1;
    }

    /* B) Máscara de Fusión (en la imagen) */
    .hero-doctor {
        height: auto !important;
        /* Mantiene ratio */
        max-height: 52vh !important;
        /* Limite seguro */
        object-fit: contain;
        /* Nunca se deforma */
        max-width: 95% !important;
        width: auto;
        margin-left: 0;
        object-position: center bottom;
        transform: none !important;
        filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.7));

        -webkit-mask-image: linear-gradient(to bottom, black 75%, rgba(0, 0, 0, 0.7) 88%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 75%, rgba(0, 0, 0, 0.7) 88%, transparent 100%);
    }

    /* C) Fade al Fondo Negro (overlay) */
    .hero-image-container::after {
        content: '' !important;
        position: absolute !important;
        bottom: -2px;
        left: 0 !important;
        width: 100% !important;
        height: 35% !important;
        /* Solo parte inferior */
        background: linear-gradient(to top, #050505 0%, transparent 100%) !important;
        z-index: 20 !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
}


/* ========================================
   SECTION HEADERS (GLOBAL)
   ======================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold-main);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-desc {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   EXPERIENCE SECTION
   ======================================== */
.experience {
    padding: 12rem 0 8rem;
    /* Brutal top spacing to separate from Hero */
    position: relative;
    background-color: #080808;
    z-index: 10;
}

.experience-bg-text {
    position: absolute;
    top: 15%;
    right: -5%;
    font-size: 12rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.015);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 20px 60px rgba(197, 160, 89, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-gold-main);
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-white);
}

.card-text {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   TREATMENTS SECTION
   ======================================== */
.treatments {
    padding: 8rem 0;
    background-color: var(--color-bg-panel);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.treatment-card {
    background: var(--color-bg-dark);
    padding: 3rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    background: #0f0f0f;
    z-index: 10;
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--color-gold-dark);
}

.treatment-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
}

.treatment-price-level {
    font-size: 0.75rem;
    color: var(--color-gold-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.treatment-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    color: var(--color-text-white);
}

.treatment-desc {
    color: #888;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.7;
}

.treatment-features {
    list-style: none;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.treatment-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #aaa;
}

.treatment-features li::before {
    content: '✓';
    color: var(--color-gold-main);
    margin-right: 0.8rem;
    font-size: 1rem;
    font-weight: bold;
}

/* ========================================
   TRANSFORMATION PROCESS - TIMELINE
   ======================================== */
.transformation {
    padding: 10rem 0;
    position: relative;
    background: linear-gradient(to bottom, #050505 0%, #0a0a0a 50%, #050505 100%);
    overflow: hidden;
}

.transformation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(197, 160, 89, 0.3) 20%,
            rgba(197, 160, 89, 0.3) 80%,
            transparent 100%);
    z-index: 1;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    position: relative;
    align-items: center;
}

.timeline-item-reverse {
    direction: rtl;
}

.timeline-item-reverse>* {
    direction: ltr;
}

.timeline-number {
    font-size: 8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-gold-main) 0%, #8b7355 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    opacity: 0.15;
    position: absolute;
    top: -2rem;
    left: 0;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.timeline-item-reverse .timeline-number {
    left: auto;
    right: 0;
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-item:hover .timeline-content::before {
    opacity: 1;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 20px 60px rgba(197, 160, 89, 0.1);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-gold-main) 0%, #8b7355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 0 8px rgba(5, 5, 5, 1), 0 0 0 10px rgba(197, 160, 89, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

.timeline-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text-white);
    font-family: var(--font-heading);
}

.timeline-desc {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.timeline-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-main);
    transition: all 0.3s ease;
}

.timeline-tag:hover {
    background: rgba(197, 160, 89, 0.2);
    transform: translateY(-2px);
}

.transformation-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05) 0%, rgba(197, 160, 89, 0.02) 100%);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 4px;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(5, 5, 5, 1), 0 0 0 10px rgba(197, 160, 89, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(5, 5, 5, 1), 0 0 0 15px rgba(197, 160, 89, 0.4);
    }
}

/* ========================================
   RESPONSIVE SPACING OPTIMIZATIONS
   ======================================== */
@media (max-width: 900px) {

    /* Standardize Section Spacing on Mobile/Tablet */
    .experience,
    .treatments,
    .transformation,
    .about,
    .locations,
    .tourism {
        padding: 5rem 0 !important;
    }

    /* Fix Grid Stacking */
    .cards-grid,
    .about-grid,
    .tourism-content {
        gap: 3rem;
        /* Generous gap between stacked items */
    }

    .treatments-grid {
        gap: 2rem;
        border: none;
    }

    .treatment-card {
        border: 1px solid rgba(255, 255, 255, 0.05);
        /* Restore border for individual cards */
        margin-bottom: 0;
    }

    /* Allow Timeline to likely stack vertically if not already handled */
    .timeline {
        padding: 0;
    }

    .timeline-item {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 4rem;
    }

    .timeline-item-reverse {
        direction: ltr;
        /* Reset direction */
    }

    .timeline-number {
        position: static;
        font-size: 4rem;
        margin-bottom: 0.5rem;
        opacity: 0.3;
    }

    .timeline-icon {
        order: -1;
        /* Move icon to top */
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .timeline-content {
        padding: 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .transformation::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
        padding-left: 80px;
    }

    .timeline-icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .timeline-number {
        font-size: 4rem;
        top: -1rem;
        left: 80px;
    }

    .timeline-item-reverse .timeline-number {
        left: 80px;
        right: auto;
    }

    .timeline-content {
        padding: 2rem;
    }

    .timeline-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 8rem 0;
    position: relative;
    background-color: var(--color-bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 2px;
    filter: grayscale(10%) contrast(105%);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold-main);
    z-index: -1;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text {
    color: #999;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.check-item {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.check-item::before {
    content: '✓ ';
    color: var(--color-gold-main);
    font-weight: bold;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        margin-bottom: 2rem;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */
.locations {
    padding: 8rem 0;
    background-color: var(--color-bg-panel);
}

.locations-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.location-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-tab.active,
.location-tab:hover {
    border-color: var(--color-gold-main);
    color: var(--color-gold-main);
}

.location-card {
    background: var(--color-bg-dark);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.location-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.location-status {
    font-size: 0.7rem;
    color: var(--color-gold-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border: 1px solid var(--color-gold-main);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.location-details {
    color: #999;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* ========================================
   TOURISM SECTION
   ======================================== */
.tourism {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background-color: #080808;
}

.tourism-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tourism-text-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tourism-services {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 160, 89, 0.2);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-label {
    font-size: 0.8rem;
    color: #aaa;
}

.tourism-image img {
    width: 100%;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .tourism-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tourism-services {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #666;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--color-text-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #888;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold-main);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-grid {
        gap: 2rem;
    }
}



.location-tab:hover {
    border-color: rgba(197, 160, 89, 0.5);
    color: var(--color-gold-main);
}

.location-tab.active {
    background: var(--gradient-gold);
    border-color: var(--color-gold-main);
    color: #000;
    font-weight: 700;
}

.locations-content {
    position: relative;
    min-height: 400px;
}

.location-card {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.location-card.active {
    display: grid;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-title {
    font-size: 2.5rem;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    margin: 0;
}

.location-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--color-gold-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    width: fit-content;
}

.location-details {
    color: #aaa;
    line-height: 2;
    font-size: 1rem;
}

.location-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .locations {
        padding: 6rem 0;
    }

    .locations-tabs {
        gap: 0.5rem;
    }

    .location-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .location-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .location-title {
        font-size: 2rem;
    }

    .location-image {
        order: -1;
    }
}

/* ========================================
   LOCATIONS SECTION - SPECTACULAR DESIGN (TEXT ONLY)
   ======================================== */
.locations {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #050505 0%, #0a0a0a 50%, #050505 100%);
    position: relative;
}

.locations-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    width: 100%;
    padding: 0 1rem;
}

.location-tab {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.location-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.location-tab:hover {
    border-color: rgba(197, 160, 89, 0.4);
    color: var(--color-gold-main);
    transform: translateY(-2px);
}

.location-tab.active {
    background: var(--gradient-gold);
    border-color: var(--color-gold-main);
    color: #000;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.location-tab.active::before {
    opacity: 1;
}

.locations-content {
    position: relative;
    min-height: 300px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.location-card {
    display: none;
    max-width: 100%;
    text-align: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-card.active {
    display: block;
    animation: fadeInUp 0.7s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.location-title {
    font-size: 2.5rem;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-status {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(197, 160, 89, 0.1);
    border-left: 3px solid var(--color-gold-main);
    border-right: 3px solid var(--color-gold-main);
    color: var(--color-gold-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.location-details {
    color: #aaa;
    line-height: 1.8;
    font-size: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 600px;
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .locations {
        padding: 4rem 0;
    }

    .locations-tabs {
        margin: 2rem auto 3rem;
    }

    .locations-tabs {
        gap: 0.5rem;
        margin: 3rem 0 4rem;
    }

    .location-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }

    .location-card {
        padding: 0 1rem;
    }

    .location-title {
        font-size: 2.5rem;
    }

    .location-details {
        font-size: 0.95rem;
        padding: 1.5rem 0;
    }
}

/* ========================================
   MOBILE OPTIMIZATIONS - STRUCTURE & LIGHTNESS
   ======================================== */
@media (max-width: 900px) {

    /* Global Section Spacing & Structure */
    section,
    .locations,
    .experience,
    .transformation,
    .about,
    .tourism {
        padding: 4rem 0 !important;
        overflow: hidden;
    }

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .header {
        padding: 1.5rem 0 !important;
    }

    /* Hero Optimization - Structured & Professional */
    .hero {
        padding-top: 6rem !important;
        padding-bottom: 2rem !important;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 2;
        /* Text below image */
        width: 100%;
    }

    /* Tooth Positioning for Mobile - Structured Flow */
    .hero-image-container {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        opacity: 1 !important;
        margin-bottom: 2rem;
        margin-top: 5rem;
        order: 1;
        /* Image first */
        pointer-events: auto;
        display: flex;
        justify-content: center;
    }

    .hero-tooth {
        width: 60% !important;
        max-width: 300px;
        filter: none !important;
        /* Restore glorious colors */
        /* Keep float animation but maybe slower/smaller */
        animation: floatSmooth 6s ease-in-out infinite, glowElegant 4s ease-in-out infinite;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        z-index: 10;
        position: relative;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        padding-right: 0;
    }

    .hero h1 {
        font-size: 2.5rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .cta-group {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Global Headers Centering */
    .section-header,
    .locations .section-header {
        text-align: center !important;
        margin-bottom: 3rem;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .section-title,
    .location-title {
        font-size: 2.5rem !important;
        text-align: center;
    }

    .section-desc {
        text-align: center;
        font-size: 1rem;
        max-width: 100%;
    }

    /* Structural Order - Visual Cleanliness */
    .about-grid,
    .transformation-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content,
    .transformation-content {
        order: 2;
        text-align: center;
    }

    .about-image,
    .transformation-image {
        order: 1;
        margin: 0 auto 2rem;
        max-width: 100%;
    }

    .feature-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .check-item {
        justify-content: center;
    }

    /* Locations Specific Clean-up */
    .locations-tabs {
        justify-content: center;
        gap: 0.5rem;
    }

    .location-details {
        text-align: center;
        padding: 1.5rem 0;
    }

    .location-info {
        align-items: center;
    }
}

/* ========================================
   AI CONCIERGE (BRUTAL LUXURY)
   ======================================== */
.ai-widget-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
    font-family: var(--font-body);
}

/* --- Trigger Button --- */
.ai-trigger-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9002;
}

.ai-trigger-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.ai-trigger-icon {
    font-size: 1.8rem;
    color: #000;
    z-index: 2;
}

.ai-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3e3e;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    animation: bounceIn 0.5s ease 2s backwards;
}

.ai-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-gold-main);
    animation: pulseWave 2s infinite;
    opacity: 0;
    z-index: 1;
}

.ai-pulse-ring.delay {
    animation-delay: 0.5s;
}

@keyframes pulseWave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* --- Chat Interface (Glassmorphism) --- */
.ai-chat-interface {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 9999 !important;
    /* Force on top of everything */
}

.ai-chat-interface.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

/* Header */
.ai-header {
    padding: 1.5rem;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.ai-icon {
    font-style: normal;
    font-size: 1.2rem;
}

.ai-header-info {
    flex-grow: 1;
}

.ai-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.ai-status {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gold-main);
    display: flex;
    align-items: center;
    gap: 5px;
}

.ai-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ff88;
}

.ai-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.ai-close-btn:hover {
    color: white;
}

/* Messages Area */
.ai-messages {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold-main) rgba(255, 255, 255, 0.05);
}

.ai-message {
    max-width: 85%;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: slideUpFade 0.3s ease forwards;
}

.ai-message.bot {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}

.ai-link-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--gradient-gold);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.ai-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
    color: #000;
}

.ai-message.user {
    background: var(--gradient-gold);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    font-weight: 500;
}

.ai-typing {
    display: flex;
    gap: 5px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    width: fit-content;
    border-bottom-left-radius: 2px;
}

.ai-typing span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.ai-typing span:nth-child(1) {
    animation-delay: 0s;
}

.ai-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Controls */
.ai-controls {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ai-option-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold-main);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-grow: 1;
    text-align: center;
}

.ai-option-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive AI */
@media (max-width: 480px) {
    .ai-chat-interface {
        width: 100%;
        height: 100dvh;
        bottom: 0;
        right: 0;
        border-radius: 0;
        border: none;
    }

    .ai-widget-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .ai-chat-interface.active {
        position: fixed;
        z-index: 9999;
    }
}