﻿/* =====================================================
   LUMIERE AESTHETIC & COSMETIC CLINIC
   Ultra-Premium International Luxury Design System
   ===================================================== */

/* --- CSS CUSTOM PROPERTIES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}
:root {
    --white: #FFFFFF;
    --off-white: #FDFBF9;
    --cream: #FAF6F1;
    --beige: #F5EDE4;
    --beige-dark: #E8DDD0;
    --rose-gold: #C9A96E;
    --rose-gold-light: #D4B97A;
    --rose-gold-dark: #B8944F;
    --champagne: #F7E7CE;
    --charcoal: #2C2C2C;
    --dark: #1A1A1A;
    --near-black: #111111;
    --text-primary: #2C2C2C;
    --text-secondary: #6B6B6B;
    --text-light: #999999;
    --text-on-dark: #E8E0D6;
    --border-light: rgba(201, 169, 110, 0.15);
    --border-medium: rgba(201, 169, 110, 0.3);
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --section-pad: 140px;
    --container-width: 1320px;
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.06);
    --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s var(--ease-luxury);
    --transition-slow: 0.7s var(--ease-luxury);
}

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body { font-family: var(--font-sans); color: var(--text-primary); background-color: var(--off-white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--rose-gold); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose-gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose-gold-dark); }

/* Container */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 60px; }

/* Section Common */
.section { padding: var(--section-pad) 0; position: relative; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-label {
    font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-serif); font-size: 3.2rem; font-weight: 400;
    line-height: 1.2; color: var(--charcoal); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--rose-gold-dark); }
.section-desc {
    font-size: 1.05rem; font-weight: 300; color: var(--text-secondary);
    max-width: 600px; margin: 0 auto; line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; padding: 18px 40px;
    border-radius: 0; transition: all var(--transition-base);
    position: relative; overflow: hidden;
}
.btn-primary { background: var(--rose-gold); color: var(--white); border: 1px solid var(--rose-gold); }
.btn-primary:hover {
    background: var(--rose-gold-dark); border-color: var(--rose-gold-dark);
    transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.4); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-sm {
    padding: 12px 28px; font-size: 0.7rem; letter-spacing: 1.5px;
    background: transparent; border: 1px solid var(--rose-gold); color: var(--rose-gold);
}
.btn-sm:hover { background: var(--rose-gold); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* =====================================================
   PRELOADER
   ===================================================== */
#preloader {
    position: fixed; inset: 0; background: var(--near-black);
    z-index: 99999; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--font-serif); font-size: 2.8rem; font-weight: 400;
    letter-spacing: 12px; color: var(--rose-gold); margin-bottom: 30px;
}
.preloader-bar { width: 200px; height: 1px; background: rgba(255, 255, 255, 0.1); margin: 0 auto; overflow: hidden; }
.preloader-bar-fill { width: 0%; height: 100%; background: var(--rose-gold); animation: preloaderFill 1.8s var(--ease-luxury) forwards; }
@keyframes preloaderFill { 0% { width: 0%; } 100% { width: 100%; } }

/* =====================================================
   NAVBAR
   ===================================================== */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
    padding: 25px 0; transition: all 0.5s var(--ease-luxury);
}
#navbar.scrolled {
    padding: 12px 0; background: rgba(253, 251, 249, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow-soft);
}
#navbar.scrolled .nav-logo .logo-text,
#navbar.scrolled .nav-link { color: var(--charcoal); }
#navbar.scrolled .nav-logo .logo-sub { color: var(--text-secondary); }
#navbar.scrolled .nav-toggle span { background: var(--charcoal); }

.nav-container {
    max-width: var(--container-width); margin: 0 auto; padding: 0 60px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.logo-text {
    font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400;
    letter-spacing: 6px; color: var(--white); transition: color var(--transition-base);
}
.logo-sub {
    font-family: var(--font-sans); font-size: 0.55rem; font-weight: 400;
    letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6); transition: color var(--transition-base);
}
.nav-menu { display: flex; align-items: center; gap: 38px; }
.nav-link {
    font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--white);
    transition: color var(--transition-base); position: relative;
}
.nav-link:not(.nav-cta)::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--rose-gold); transition: width var(--transition-base);
}
.nav-link:not(.nav-cta):hover::after { width: 100%; }
.nav-link:not(.nav-cta):hover { color: var(--rose-gold); }
.nav-cta {
    padding: 12px 28px; border: 1px solid var(--rose-gold);
    color: var(--rose-gold) !important; transition: all var(--transition-base);
}
.nav-cta:hover { background: var(--rose-gold); color: var(--white) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 5px; }
.nav-toggle span { display: block; width: 28px; height: 1.5px; background: var(--white); transition: all 0.3s ease; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* =====================================================
   1. HERO SECTION
   ===================================================== */
.hero-section {
    position: relative; min-height: 100vh; display: flex;
    align-items: center; justify-content: center; overflow: hidden;
    background: var(--near-black);
}
.hero-bg-image {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg-image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.35) contrast(1.1) saturate(0.9);
}
.hero-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
                linear-gradient(180deg, rgba(17,17,17,0.3) 0%, rgba(17,17,17,0.1) 50%, rgba(17,17,17,0.5) 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-particle {
    position: absolute; width: 2px; height: 2px; background: var(--rose-gold);
    border-radius: 50%; opacity: 0; animation: particleFloat 8s infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 80px 40px 0; }
.hero-badge {
    font-family: var(--font-sans); font-size: 0.65rem; font-weight: 500;
    letter-spacing: 5px; text-transform: uppercase; color: var(--rose-gold);
    margin-bottom: 35px; opacity: 0; animation: heroFadeUp 1s 0.3s var(--ease-luxury) forwards;
}
.hero-title {
    font-family: var(--font-serif); font-size: 5rem; font-weight: 400;
    line-height: 1.15; color: var(--white); margin-bottom: 25px;
}
.hero-line { display: block; opacity: 0; animation: heroFadeUp 1s var(--ease-luxury) forwards; }
.hero-line:nth-child(1) { animation-delay: 0.5s; }
.hero-line:nth-child(2) { animation-delay: 0.7s; }
.hero-line-italic {
    font-style: italic; font-family: var(--font-display);
    font-size: 5.2rem; color: var(--rose-gold-light);
}
.hero-subtitle {
    font-family: var(--font-sans); font-size: 1.1rem; font-weight: 300;
    letter-spacing: 3px; color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px; opacity: 0; animation: heroFadeUp 1s 0.9s var(--ease-luxury) forwards;
}
.hero-buttons {
    display: flex; gap: 20px; justify-content: center;
    margin-bottom: 80px; opacity: 0; animation: heroFadeUp 1s 1.1s var(--ease-luxury) forwards;
}
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 50px; opacity: 0; animation: heroFadeUp 1s 1.3s var(--ease-luxury) forwards;
}
.hero-stat { text-align: center; }
.hero-stat-number { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 400; color: var(--rose-gold); }
.hero-stat-suffix { font-family: var(--font-serif); font-size: 2rem; color: var(--rose-gold); }
.hero-stat-label {
    display: block; font-size: 0.68rem; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-top: 8px;
}
.hero-stat-divider { width: 1px; height: 50px; background: rgba(255, 255, 255, 0.15); }
@keyframes heroFadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    opacity: 0; animation: heroFadeUp 1s 1.6s var(--ease-luxury) forwards;
}
.hero-scroll-indicator span { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--rose-gold), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* =====================================================
   2. ABOUT SECTION
   ===================================================== */
.about-section { background: var(--off-white); overflow: hidden; overflow-x: clip; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-image-wrapper { position: relative; }
.about-image-main {
    width: 100%; aspect-ratio: 3 / 4; overflow: hidden;
    border: 1px solid var(--border-light);
}
.about-image-main img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
    filter: contrast(1.05) saturate(0.95);
}
.about-image-main:hover img { transform: scale(1.03); }
.about-image-accent {
    position: absolute; top: -20px; right: -20px;
    width: 150px; height: 150px; border: 1px solid var(--rose-gold); opacity: 0.3; z-index: -1;
}
.about-signature { position: absolute; bottom: -10px; right: 30px; width: 200px; }
.signature-svg { width: 100%; }
.signature-path { stroke-dasharray: 300; stroke-dashoffset: 300; animation: none; }
.about-signature.animated .signature-path { animation: signatureDraw 2s var(--ease-luxury) forwards; }
@keyframes signatureDraw { to { stroke-dashoffset: 0; } }

.about-content-col .section-title { text-align: left; font-size: 2.8rem; }
.about-divider { display: flex; align-items: center; gap: 20px; margin: 30px 0; }
.about-divider::before, .about-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-medium); }
.divider-diamond { color: var(--rose-gold); font-size: 0.6rem; }
.about-text { font-size: 1rem; font-weight: 300; color: var(--text-secondary); line-height: 1.9; margin-bottom: 20px; }
.about-credentials { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.credential {
    display: flex; align-items: center; gap: 18px; padding: 18px 24px;
    background: var(--cream); border: 1px solid var(--border-light); transition: all var(--transition-base);
}
.credential:hover { background: var(--white); box-shadow: var(--shadow-soft); transform: translateX(5px); }
.credential-icon { color: var(--rose-gold); flex-shrink: 0; }
.credential strong { display: block; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; color: var(--charcoal); }
.credential span { font-size: 0.78rem; color: var(--text-light); font-weight: 400; }

/* =====================================================
   3. TREATMENTS
   ===================================================== */
.treatments-section { background: var(--cream); }
.treatments-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.treatment-card {
    position: relative; overflow: hidden; aspect-ratio: 3 / 4;
    cursor: pointer; border: 1px solid var(--border-light);
}
.treatment-image { position: absolute; inset: 0; transition: transform 0.8s var(--ease-luxury); }
.treatment-image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
}
.treatment-card:hover .treatment-image { transform: scale(1.08); }
.treatment-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 26, 0.9) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 30px 24px; transition: all var(--transition-base);
}
.treatment-overlay h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.treatment-overlay p {
    font-size: 0.78rem; font-weight: 300; color: rgba(255, 255, 255, 0.65);
    line-height: 1.6; margin-bottom: 16px; opacity: 0; transform: translateY(10px);
    transition: all 0.5s var(--ease-luxury);
}
.treatment-card:hover .treatment-overlay p { opacity: 1; transform: translateY(0); }
.treatment-link {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    color: var(--rose-gold); display: inline-flex; align-items: center; gap: 8px;
    opacity: 0; transform: translateY(10px); transition: all 0.5s 0.1s var(--ease-luxury);
}
.treatment-card:hover .treatment-link { opacity: 1; transform: translateY(0); }
.treatment-link span { transition: transform 0.3s ease; }
.treatment-link:hover span { transform: translateX(5px); }

/* =====================================================
   4. GALLERY
   ===================================================== */
.gallery-section { background: var(--off-white); }
.gallery-filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 50px; flex-wrap: wrap; }
.gallery-filter {
    padding: 10px 24px; font-size: 0.72rem; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-secondary);
    background: transparent; border: 1px solid var(--border-light); transition: all var(--transition-base);
}
.gallery-filter:hover, .gallery-filter.active {
    color: var(--white); background: var(--rose-gold); border-color: var(--rose-gold);
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.gallery-item { transition: all 0.5s var(--ease-luxury); }
.gallery-item.hidden { display: none; }
.gallery-card {
    position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
    background: var(--white); padding: 15px; border: 1px solid var(--border-light);
    cursor: pointer; transition: all var(--transition-base);
}
.gallery-card:hover { box-shadow: var(--shadow-medium); transform: translateY(-5px); }
.gallery-before, .gallery-after { position: relative; aspect-ratio: 1; overflow: hidden; }
.gallery-before img, .gallery-after img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-luxury); }
.gallery-card:hover .gallery-before img,
.gallery-card:hover .gallery-after img { transform: scale(1.05); }
.gallery-label {
    position: absolute; bottom: 8px; left: 8px; font-size: 0.6rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--white);
    background: rgba(0, 0, 0, 0.5); padding: 4px 10px; backdrop-filter: blur(4px); z-index: 2;
}
.gallery-info { grid-column: 1 / -1; padding: 15px 5px 5px; }
.gallery-info h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; color: var(--charcoal); }
.gallery-info p { font-size: 0.78rem; color: var(--text-light); font-weight: 400; }

/* Lightbox */
.lightbox-modal {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.92); backdrop-filter: blur(20px);
    z-index: 99999; display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.5s var(--ease-luxury);
}
.lightbox-modal.active { opacity: 1; visibility: visible; }
.lightbox-close { position: absolute; top: 30px; right: 30px; color: var(--white); opacity: 0.7; transition: opacity 0.3s; z-index: 10; }
.lightbox-close:hover { opacity: 1; }
.lightbox-content { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; width: 90%; }
.lightbox-before, .lightbox-after { position: relative; }
.lightbox-before img, .lightbox-after img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; }
.lightbox-info { text-align: center; color: var(--white); margin-top: 20px; font-family: var(--font-serif); font-size: 1.2rem; }

/* =====================================================
   5. WHY CHOOSE LUMIERE
   ===================================================== */
.why-section { position: relative; overflow: hidden; }
.why-bg-image { position: absolute; inset: 0; z-index: 0; }
.why-bg-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.15) contrast(1.1); }
.why-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(250,246,241,0.92) 0%, rgba(250,246,241,0.88) 100%);
}
.why-section .container { position: relative; z-index: 2; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card {
    text-align: center; padding: 50px 35px; background: rgba(255,255,255,0.85);
    border: 1px solid var(--border-light); transition: all var(--transition-base);
    position: relative; backdrop-filter: blur(10px);
}
.why-card::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--rose-gold); transition: width var(--transition-base);
}
.why-card:hover::before { width: 60px; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-elevated); background: var(--white); }
.why-icon { color: var(--rose-gold); margin-bottom: 25px; display: flex; justify-content: center; }
.why-card h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 15px; }
.why-card p { font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }

/* =====================================================
   6. EXPERTS
   ===================================================== */
.experts-section { background: var(--off-white); }
.experts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.expert-card {
    text-align: center; background: var(--white); border: 1px solid var(--border-light);
    overflow: hidden; transition: all var(--transition-base);
}
.expert-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-elevated); }
.expert-image { position: relative; overflow: hidden; }
.expert-image img {
    width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
    filter: contrast(1.05) saturate(0.95);
}
.expert-card:hover .expert-image img { transform: scale(1.05); }
.expert-info { padding: 30px 20px 35px; }
.expert-info h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: var(--charcoal); margin-bottom: 5px; }
.expert-title { display: block; font-size: 0.78rem; font-weight: 500; color: var(--rose-gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.expert-qual { display: block; font-size: 0.78rem; color: var(--text-light); margin-bottom: 20px; }

/* =====================================================
   7. TESTIMONIALS
   ===================================================== */
.testimonials-section { background: var(--near-black); padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.testimonials-bg-image { position: absolute; inset: 0; z-index: 0; }
.testimonials-bg-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.1) contrast(1.1); }
.testimonials-section .container { position: relative; z-index: 1; }
.testimonials-section .section-label { color: var(--rose-gold); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-title em { color: var(--rose-gold-light); }
.testimonial-slider { position: relative; overflow: hidden; max-width: 800px; margin: 0 auto; }
.testimonial-track { display: flex; transition: transform 0.7s var(--ease-luxury); }
.testimonial-slide { min-width: 100%; padding: 0 20px; }
.testimonial-card { text-align: center; padding: 50px 40px; }
.testimonial-quote-icon {
    font-family: var(--font-serif); font-size: 6rem; line-height: 0.6;
    color: var(--rose-gold); opacity: 0.4; margin-bottom: 20px;
}
.testimonial-text {
    font-family: var(--font-display); font-size: 1.45rem; font-weight: 400;
    font-style: italic; color: rgba(255, 255, 255, 0.85); line-height: 1.8; margin-bottom: 30px;
}
.testimonial-stars { font-size: 1.1rem; color: var(--rose-gold); letter-spacing: 4px; margin-bottom: 25px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 15px; }
.testimonial-author-avatar {
    width: 50px; height: 50px; border-radius: 50%; overflow: hidden;
    border: 2px solid var(--rose-gold); flex-shrink: 0;
}
.testimonial-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; font-weight: 500; }
.testimonial-author span { font-size: 0.75rem; color: var(--rose-gold); font-weight: 400; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.testimonial-btn {
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white); transition: all var(--transition-base);
}
.testimonial-btn:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.testimonial-dots { display: flex; gap: 10px; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); cursor: pointer; transition: all 0.3s ease; }
.testimonial-dot.active { background: var(--rose-gold); transform: scale(1.3); }

/* =====================================================
   8. MEDICAL TOURISM
   ===================================================== */
.tourism-section { background: var(--off-white); }
.tourism-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tourism-text { font-size: 1rem; font-weight: 300; color: var(--text-secondary); line-height: 1.9; margin-bottom: 40px; }
.tourism-content .section-title { text-align: left; font-size: 2.8rem; }
.tourism-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.tourism-feature {
    display: flex; align-items: center; gap: 20px; padding: 18px 24px;
    background: var(--cream); border: 1px solid var(--border-light); transition: all var(--transition-base);
}
.tourism-feature:hover { background: var(--white); transform: translateX(5px); box-shadow: var(--shadow-soft); }
.tourism-feature-icon { color: var(--rose-gold); flex-shrink: 0; }
.tourism-feature strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.tourism-feature span { font-size: 0.78rem; color: var(--text-light); }
.tourism-visual { display: flex; align-items: center; justify-content: center; }
.tourism-image-wrapper {
    position: relative; width: 100%; border: 1px solid var(--border-light); overflow: hidden;
}
.tourism-image-wrapper img {
    width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
    filter: contrast(1.05) saturate(0.95);
}
.tourism-image-wrapper:hover img { transform: scale(1.03); }
.tourism-image-badge {
    position: absolute; bottom: 30px; left: 30px; background: rgba(17,17,17,0.8);
    backdrop-filter: blur(12px); padding: 20px 28px; text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.3);
}
.tourism-badge-number {
    display: block; font-family: var(--font-serif); font-size: 2.4rem;
    font-weight: 400; color: var(--rose-gold); line-height: 1;
}
.tourism-badge-text {
    display: block; font-size: 0.65rem; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 6px;
}

/* =====================================================
   9. CONSULTATION FORM
   ===================================================== */
.consultation-section { background: var(--cream); }
.consultation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.consultation-info .section-title { text-align: left; font-size: 2.6rem; }
.consultation-desc { font-size: 1rem; font-weight: 300; color: var(--text-secondary); line-height: 1.9; margin-bottom: 30px; }
.consultation-image-feature {
    width: 100%; margin-bottom: 30px; overflow: hidden; border: 1px solid var(--border-light);
}
.consultation-image-feature img {
    width: 100%; aspect-ratio: 16/9; object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
}
.consultation-assurance { display: flex; flex-direction: column; gap: 15px; }
.assurance-item { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--text-secondary); }
.assurance-item svg { color: var(--rose-gold); flex-shrink: 0; }
.consultation-form-wrapper { position: relative; }
.consultation-form {
    background: var(--white); padding: 50px; border: 1px solid var(--border-light); box-shadow: var(--shadow-medium);
}
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
    display: block; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 16px 20px; font-size: 0.9rem; font-weight: 300;
    color: var(--charcoal); background: var(--off-white); border: 1px solid var(--border-light);
    outline: none; transition: all var(--transition-base);
    -webkit-appearance: none; appearance: none; border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--rose-gold); box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); font-weight: 300; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-error { display: block; font-size: 0.72rem; color: #c0392b; margin-top: 6px; min-height: 18px; }
.form-group.error input, .form-group.error select { border-color: #c0392b; }
.form-privacy {
    font-size: 0.72rem; color: var(--text-light); margin-bottom: 25px;
    display: flex; align-items: center; gap: 8px; line-height: 1.6;
}
.form-privacy svg { color: var(--rose-gold); flex-shrink: 0; }
.form-success {
    display: none; text-align: center; padding: 80px 50px; background: var(--white);
    border: 1px solid var(--border-light); box-shadow: var(--shadow-medium);
}
.form-success.active { display: block; animation: fadeInUp 0.6s var(--ease-luxury); }
.success-icon { color: var(--rose-gold); margin-bottom: 25px; }
.form-success h3 { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 15px; }
.form-success p { font-size: 0.95rem; font-weight: 300; color: var(--text-secondary); line-height: 1.8; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* =====================================================
   10. INSTAGRAM
   ===================================================== */
.instagram-section { background: var(--off-white); }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.insta-item { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.insta-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease-luxury);
}
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
    position: absolute; inset: 0; background: rgba(201, 169, 110, 0.8);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); opacity: 0; transition: opacity 0.4s var(--ease-luxury);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-cta-item { background: var(--near-black); }
.insta-cta {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    color: var(--rose-gold); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; transition: all var(--transition-base);
}
.insta-cta:hover { color: var(--white); }

/* =====================================================
   11. CONTACT
   ===================================================== */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.contact-map { width: 100%; border: 1px solid var(--border-light); overflow: hidden; }
.contact-map iframe { display: block; width: 100%; min-height: 420px; }
.contact-details { display: flex; flex-direction: column; gap: 25px; }
.contact-item {
    display: flex; align-items: flex-start; gap: 18px; padding: 20px 24px;
    background: var(--white); border: 1px solid var(--border-light); transition: all var(--transition-base);
}
.contact-item:hover { box-shadow: var(--shadow-soft); transform: translateX(5px); }
.contact-icon { color: var(--rose-gold); flex-shrink: 0; padding-top: 2px; }
.contact-item strong { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 5px; }
.contact-item span { font-size: 0.88rem; color: var(--text-secondary); font-weight: 300; line-height: 1.6; }
.contact-socials { display: flex; gap: 15px; margin-top: 10px; }
.social-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-light); color: var(--text-secondary); transition: all var(--transition-base);
}
.social-icon:hover { background: var(--rose-gold); border-color: var(--rose-gold); color: var(--white); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--near-black); padding: 80px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-logo { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; letter-spacing: 6px; color: var(--rose-gold); margin-bottom: 15px; }
.footer-brand p { font-size: 0.88rem; font-weight: 300; color: rgba(255, 255, 255, 0.4); line-height: 1.8; max-width: 300px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 25px; }
.footer-col a { display: block; font-size: 0.85rem; font-weight: 300; color: rgba(255, 255, 255, 0.4); padding: 5px 0; transition: all 0.3s ease; }
.footer-col a:hover { color: var(--rose-gold); transform: translateX(5px); }
.footer-divider { height: 1px; background: rgba(255, 255, 255, 0.08); margin-bottom: 30px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; font-weight: 300; color: rgba(255, 255, 255, 0.3); }
.footer-credit { color: var(--rose-gold); font-weight: 500; transition: color 0.3s ease; }
.footer-credit:hover { color: var(--rose-gold-light); }

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */
.floating-cta {
    position: fixed; right: 30px; bottom: 110px; display: flex; align-items: center;
    gap: 10px; padding: 16px 28px; background: var(--rose-gold); color: var(--white);
    font-size: 0.7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4); z-index: 9990;
    opacity: 0; transform: translateY(20px); transition: all var(--transition-base); pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-cta:hover { background: var(--rose-gold-dark); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201, 169, 110, 0.5); }
.whatsapp-float {
    position: fixed; left: 30px; bottom: 30px; width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: #25D366; border-radius: 50%; color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 9990;
    opacity: 0; transform: scale(0.8); transition: all var(--transition-base); pointer-events: none;
}
.whatsapp-float.visible { opacity: 1; transform: scale(1); pointer-events: all; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); }
.back-to-top {
    position: fixed; right: 30px; bottom: 30px; width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--charcoal); color: var(--white); z-index: 9990;
    opacity: 0; transform: translateY(20px); transition: all var(--transition-base); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--rose-gold); }

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
[data-animate] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].animated { opacity: 1; transform: translate(0, 0); }

/* =====================================================
   RESPONSIVE - TABLET
   ===================================================== */
@media (max-width: 1200px) {
    :root { --section-pad: 100px; }
    .container { padding: 0 40px; }
    .nav-container { padding: 0 40px; }
    .hero-title { font-size: 3.8rem; }
    .hero-line-italic { font-size: 4rem; }
    .treatments-grid { grid-template-columns: repeat(3, 1fr); }
    .experts-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 992px) {
    .container { padding: 0 30px; }
    .nav-container { padding: 0 30px; }
    .section-title { font-size: 2.4rem; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-content-col .section-title { text-align: center; }
    .about-divider::before, .about-divider::after { max-width: 80px; }
    .about-image-wrapper { max-width: 400px; margin: 0 auto; }
    .tourism-grid { grid-template-columns: 1fr; gap: 50px; }
    .tourism-content .section-title { text-align: center; }
    .consultation-grid { grid-template-columns: 1fr; gap: 50px; }
    .consultation-info .section-title { text-align: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   RESPONSIVE - MOBILE
   ===================================================== */
@media (max-width: 768px) {
    :root { --section-pad: 80px; }
    .container { padding: 0 20px; }
    .nav-container { padding: 0 20px; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px;
        height: 100vh; background: var(--near-black); flex-direction: column;
        padding: 100px 40px 40px; gap: 25px; transition: right 0.5s var(--ease-luxury); z-index: 9998;
    }
    .nav-menu.active { right: 0; }
    .nav-link { color: var(--white) !important; font-size: 0.85rem; }
    .nav-cta { margin-top: 20px; }
    .hero-title { font-size: 2.5rem; }
    .hero-line-italic { font-size: 2.7rem; }
    .hero-subtitle { font-size: 0.9rem; letter-spacing: 2px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 15px; }
    .hero-stats { flex-direction: column; gap: 25px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .hero-stat-number { font-size: 2.2rem; }
    .about-image-accent { display: none; }
    .about-signature { display: none; }
    .section-header { margin-bottom: 50px; }
    .section-title { font-size: 2rem; }
    .treatments-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-filters { gap: 6px; }
    .gallery-filter { padding: 8px 16px; font-size: 0.65rem; }
    .lightbox-content { grid-template-columns: 1fr; gap: 15px; }
    .why-grid { grid-template-columns: 1fr; }
    .experts-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .testimonial-text { font-size: 1.15rem; }
    .testimonial-card { padding: 30px 15px; }
    .consultation-form { padding: 30px 25px; }
    .form-row { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .floating-cta { right: 15px; bottom: 100px; padding: 12px 18px; font-size: 0.65rem; }
    .floating-cta span { display: none; }
    .whatsapp-float { left: 15px; bottom: 20px; width: 48px; height: 48px; }
    .back-to-top { right: 15px; bottom: 20px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-line-italic { font-size: 2.2rem; }
    .treatments-grid { grid-template-columns: 1fr; }
    .treatment-card { aspect-ratio: 4 / 3; }
    .btn { padding: 15px 30px; font-size: 0.72rem; }
    .container { padding: 0 15px; }
    .nav-container { padding: 0 15px; }
}
