/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --color-bg: #EAE3D4;
    --color-bg-alt: #E0D8C8;
    --color-dark: #1C3E40;
    --color-accent: #BD985B;
    --color-accent-light: #D4B87A;
    --color-gold: #BD985B;
    --color-orange: #F44418;
    --color-white: #FFFFFF;
    --color-text: #2A3A3A;
    --color-text-light: #5A6A6A;
    --color-glass: rgba(255, 255, 255, 0.15);
    --color-glass-border: rgba(255, 255, 255, 0.25);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== 3D CURSOR GLOW EFFECT ===== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ===== GLASSMORPHISM NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-glass-border);
    box-shadow: var(--shadow-glass);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--color-dark);
    text-decoration: none;
    text-transform: uppercase;
}

.logo span {
    display: block;
    font-size: 0.55em;
    letter-spacing: 0.6em;
    font-weight: 400;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.navbar .logo img {
    transition: var(--transition);
    filter: brightness(10);
}

.navbar.scrolled .logo img {
    filter: brightness(1);
}

/* Inner page navbar - always scrolled style */
.navbar.navbar-inner-page {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-glass-border);
    box-shadow: var(--shadow-glass);
}

.navbar.navbar-inner-page .logo img {
    filter: brightness(1);
}

.navbar.navbar-inner-page .nav-links a {
    color: var(--color-dark);
}

.navbar.navbar-inner-page .hamburger span {
    background: var(--color-dark);
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--color-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-links a.active {
    color: var(--color-gold) !important;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-dark) !important;
    color: var(--color-white) !important;
    padding: 0.75rem 1.8rem !important;
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--color-accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

.nav-cta::after { display: none !important; }

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    display: none !important;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.25rem;
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.85rem !important;
    color: var(--color-text) !important;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: var(--color-bg);
    color: var(--color-accent) !important;
}

/* ===== MOBILE MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--color-dark);
}

.hamburger.active span { background: var(--color-dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION - 3D PARALLAX ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 62, 64, 0.55) 0%, rgba(28, 62, 64, 0.35) 40%, rgba(189, 152, 91, 0.15) 100%);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 115, 85, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(184, 160, 128, 0.12) 0%, transparent 50%);
}

/* 3D Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.hero-orb:nth-child(1) {
    width: 400px; height: 400px;
    background: rgba(201, 169, 110, 0.15);
    top: 10%; left: -5%;
    animation-delay: 0s;
}

.hero-orb:nth-child(2) {
    width: 300px; height: 300px;
    background: rgba(139, 115, 85, 0.1);
    top: 60%; right: -5%;
    animation-delay: -3s;
}

.hero-orb:nth-child(3) {
    width: 200px; height: 200px;
    background: rgba(184, 160, 128, 0.12);
    top: 30%; right: 20%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* 3D Geometric grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(500px) rotateX(60deg) translateZ(-100px);
    transform-origin: center top;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    animation: heroFadeIn 1.2s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.hero-badge .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page hero - smaller version for inner pages */
.page-hero {
    min-height: 70vh;
    padding: 8rem 0 4rem;
}

.page-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(28, 62, 64, 0.88) 0%, rgba(28, 62, 64, 0.82) 40%, rgba(20, 20, 20, 0.80) 100%);
    z-index: 2;
}

.page-hero .hero-bg::before {
    display: none;
}

.page-hero .hero-orb {
    display: none;
}

.page-hero .hero-content {
    max-width: 800px;
    padding: 0 3rem;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #FFFFFF;
    text-shadow: 0 3px 30px rgba(0, 0, 0, 0.5), 0 1px 8px rgba(0, 0, 0, 0.4);
}

.page-hero .hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.page-hero + .breadcrumb {
    padding: 1.5rem 2rem 1rem;
    overflow: visible;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(139, 115, 85, 0.3); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-ghost:hover {
    background: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-dark:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 115, 85, 0.3);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-accent-light);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 50%;
    background: var(--color-gold);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* ===== SECTION LABELS & HEADERS ===== */
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    perspective: 800px;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: rotateY(-5deg) rotateX(3deg) scale(1.02);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.5;
}

.about-content .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-accent);
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
}

/* ===== MARQUEE SECTION ===== */
.marquee-section {
    padding: 3rem 0;
    background: var(--color-dark);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.marquee-item .sep {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== TREATMENTS SECTION ===== */
.treatments {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.treatment-card {
    display: block;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    group: true;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.treatment-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.treatment-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.treatment-card:hover .treatment-card-bg {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.treatment-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(26, 42, 42, 0.85) 100%);
    z-index: 1;
}

.treatment-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.treatment-card:hover .treatment-card-content {
    transform: translateY(0);
}

.treatment-card-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.treatment-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.treatment-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
}

.treatment-card:hover p { opacity: 1; }

.treatment-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease 0.2s;
}

.treatment-card:hover .treatment-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== CONFIDENCE / CTA SECTION ===== */
.confidence {
    padding: 8rem 2rem;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.confidence-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.confidence-orb:nth-child(1) {
    width: 500px; height: 500px;
    background: rgba(201, 169, 110, 0.08);
    top: -20%; left: -10%;
}

.confidence-orb:nth-child(2) {
    width: 400px; height: 400px;
    background: rgba(139, 115, 85, 0.06);
    bottom: -20%; right: -10%;
}

.confidence-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.confidence h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.confidence h2 em {
    font-style: italic;
    color: var(--color-gold);
}

.confidence p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

/* ===== WHY LUMEN SECTION ===== */
.why-lumen {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.instagram-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.instagram-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.instagram-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-dark);
}

.instagram-header a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.instagram-header a:hover { color: var(--color-gold); gap: 0.8rem; }

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.instagram-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--color-bg);
}

.instagram-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 42, 42, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-item:hover::after { opacity: 1; }

.instagram-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    font-size: 2rem;
    color: var(--color-accent-light);
    transition: transform 0.5s ease;
}

.instagram-item a,
a.instagram-item {
    text-decoration: none;
    display: block;
}

a.instagram-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

a.instagram-item:hover img { transform: scale(1.05); }

.instagram-item:hover .instagram-placeholder { transform: scale(1.05); }

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-detail-text h4 {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.contact-detail-text a,
.contact-detail-text p {
    font-size: 1rem;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-detail-text a:hover { color: var(--color-accent); }

/* Contact Form - Glassmorphism */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    background: var(--color-bg);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

/* ===== MAP SECTION ===== */
.map-section {
    height: 400px;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-dark);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 350px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover { color: var(--color-gold); }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a svg {
    fill: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
    fill: var(--color-dark);
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark) !important;
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.floating-btn.whatsapp {
    background: #25D366;
    color: white;
}

.floating-btn.phone {
    background: var(--color-dark);
    color: var(--color-white);
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== 3D TILT EFFECT ON CARDS ===== */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ===== TREATMENT PAGE SPECIFIC ===== */
.treatment-overview {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.treatment-overview h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.treatment-overview p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.treatment-overview ul {
    list-style: none;
    margin-bottom: 2rem;
}

.treatment-overview ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.treatment-overview ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
}

.treatment-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.treatment-two-col img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

/* Benefits Grid */
.benefits-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.benefits-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.benefit-card .benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Process / What to Expect */
.process-section {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.process-step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--color-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
}

.process-step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.process-step-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* FAQ Accordion */
.faq-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question .faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--color-gold);
    min-width: 24px;
    text-align: center;
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* CTA Banner */
.cta-banner {
    padding: 6rem 2rem;
    background: var(--color-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-banner h2 em {
    font-style: italic;
    color: var(--color-gold);
}

.cta-banner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-banner .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Specific */
.values-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.value-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.value-card .value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.story-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 7rem;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

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

.breadcrumb a:hover {
    color: var(--color-dark);
}

.breadcrumb li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--color-text-light);
}

.breadcrumb li:last-child::after {
    display: none;
}

/* ===== LOADING SCREEN ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--color-dark);
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .treatments-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .treatment-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.active a {
        font-size: 1.2rem;
        color: var(--color-dark) !important;
    }

    .nav-links.active .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        padding: 0;
    }

    .nav-links.active .nav-dropdown-menu a {
        font-size: 1rem !important;
        color: var(--color-text-light) !important;
        padding: 0.4rem 0 !important;
    }

    .navbar .logo img { height: 70px !important; }

    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .treatments-grid a:last-child { grid-column: span 2; }

    .hero h2 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; gap: 0.75rem; }
    .hero-buttons .btn { width: 100%; text-align: center; }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { height: 400px; }
    .contact-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .instagram-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

    .hero h1 { font-size: 2.8rem; }
    .hero-badge { font-size: 0.65rem; }

    .benefits-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .treatment-two-col { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .treatments-grid { grid-template-columns: 1fr; }
    .treatments-grid a:last-child { grid-column: auto; }
    .treatment-card { height: 300px; }
    .navbar .logo img { height: 55px !important; }
    .hero h1 { font-size: 2rem; }
    .floating-cta { bottom: 1rem; right: 1rem; }
    .floating-btn { width: 48px; height: 48px; }
    .about-stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
