/*
 * NİL DURUSOY - Premium Health & Wellness
 * Main Stylesheet
 */

/* --- 1. TEMEL AYARLAR & DEĞİŞKENLER --- */
:root {
    /* Main Color Palette */
    --col-moss: #6e705b;    /* Primary Color */
    --col-clay: #6e705b;    /* Primary Color (same as moss) */
    --col-slate: #2D2C2A;   /* Dark Color */
    --col-oat: #eee9e5;     /* Background/Light Color */

    /* Legacy variable mapping for backward compatibility */
    --col-dark: var(--col-moss);
    --col-darker: #5a5c4a;  /* Darker shade of primary */
    --col-gold: var(--col-clay);
    --col-cream: var(--col-oat);
    --col-white: var(--col-oat);

    /* Splash Screen Colors */
    --splash-bg: #6e705b;
    --splash-text: #eee9e5;

    --font-disp: 'Cormorant Garamond', serif;
    --font-body: 'General Sans', sans-serif;

    --ease-lux: cubic-bezier(0.22, 1, 0.36, 1); /* Ultra Smooth Easing */
    --pad-section: 8rem 2rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth; /* CSS Smooth Scroll fallback */
    font-size: 16px;
}

body {
    background-color: var(--col-cream);
    color: var(--col-slate);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Premium Noise Dokusu */
body::before {
    content: "";
    position: fixed;
    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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { width: 100%; display: block; }

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--col-slate);
    color: var(--col-oat);
    padding: 1rem 2rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 500;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--col-moss);
    outline-offset: 2px;
}

/* Selection Rengi */
::selection { background: var(--col-moss); color: var(--col-oat); }

/* --- 2. PRELOADER (Giriş Animasyonu) --- */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--splash-bg);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1.2s var(--ease-lux);
}

.preloader.hide {
    transform: translateY(-100%);
}

.preloader-text {
    font-family: var(--font-disp);
    color: var(--splash-text);
    font-size: 2rem;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
    text-shadow: 0 2px 10px var(--splash-text);
}

@keyframes pulse { 0%,100% {opacity:1;} 50% {opacity:0.5;} }

/* --- 3. HEADER & NAV --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.8rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s var(--ease-lux);
}

header.scrolled {
    padding: 1rem 3rem;
    background: rgba(235, 235, 235, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124, 128, 111, 0.05);
    box-shadow: 0 4px 20px rgba(45, 44, 42, 0.04);
}

.logo {
    font-family: var(--font-disp);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--col-slate);
    position: relative;
    z-index: 1001;
}

/* Desktop Menu */
.desktop-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    color: var(--col-slate);
    transition: color 0.3s ease;
}

.nav-item::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--col-gold); transition: width 0.4s var(--ease-lux);
}
.nav-item:hover::after { width: 100%; }

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

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-arrow {
    transition: transform 0.3s var(--ease-lux);
    margin-top: 2px;
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 340px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 1.2rem 0;
    box-shadow:
        0 20px 60px rgba(45, 44, 42, 0.15),
        0 8px 16px rgba(45, 44, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(124, 128, 111, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s var(--ease-lux);
    z-index: 1000;
    pointer-events: none;
}

/* Invisible hover bridge to prevent dropdown from closing */
.dropdown-menu::after {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(124, 128, 111, 0.1);
    border-left: 1px solid rgba(124, 128, 111, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.dropdown-item {
    display: block;
    padding: 0.9rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--col-clay), var(--col-moss));
    transform: translateX(-3px);
    transition: transform 0.3s var(--ease-lux);
}

.dropdown-item:hover::before {
    transform: translateX(0);
}

.dropdown-item:hover {
    background: linear-gradient(90deg,
        rgba(124, 128, 111, 0.04) 0%,
        transparent 100%);
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.dropdown-item-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--col-slate);
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.dropdown-item:hover .dropdown-item-title {
    color: var(--col-moss);
}

.dropdown-item-desc {
    font-size: 0.75rem;
    color: #3a3d36;
    line-height: 1.4;
    opacity: 0.85;
}

.dropdown-item + .dropdown-item {
    border-top: 1px solid rgba(124, 128, 111, 0.05);
}

/* Butonlar */
.btn-main {
    padding: 0.9rem 2.2rem;
    background-color: var(--col-moss);
    color: var(--col-white);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid var(--col-moss);
}
.btn-main:hover {
    background-color: transparent;
    color: var(--col-moss);
    transform: translateY(-2px);
}

/* --- 4. HAMBURGER & MOBILE MENU --- */
.hamburger-wrapper {
    display: none; /* Desktopta gizli */
    position: fixed;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    z-index: 10001; /* En üst katman */
    background: transparent;
    border: 1px solid rgba(124, 128, 111, 0.15);
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

header.scrolled ~ .hamburger-wrapper { top: 16px; }

.hamburger-line {
    position: absolute;
    background-color: var(--col-dark);
    height: 2px;
    border-radius: 2px;
    transition: all 0.4s var(--ease-lux);
}

.hamburger-line:nth-child(1) { width: 22px; transform: translateY(-4px); }
.hamburger-line:nth-child(2) { width: 14px; transform: translateY(4px) translateX(4px); }

/* Menü Açıkken Overlay */
.mobile-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--col-dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.8s var(--ease-lux);
    pointer-events: none;
    overflow-y: auto;
    padding: 2rem 0;
}

body.menu-open .mobile-overlay {
    clip-path: circle(150% at 100% 0);
    pointer-events: all;
}

/* Menü Açıkken Buton Değişimi */
body.menu-open .hamburger-wrapper { border-color: rgba(255, 255, 255, 0.2); }
body.menu-open .hamburger-line { background-color: var(--col-cream); width: 22px; margin: 0; }
body.menu-open .hamburger-line:nth-child(1) { transform: rotate(45deg); }
body.menu-open .hamburger-line:nth-child(2) { transform: rotate(-45deg); }

/* Link Animasyonları */
.mobile-link {
    font-family: var(--font-disp);
    font-size: 2.5rem;
    color: var(--col-cream);
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s ease;
    position: relative;
}

.mobile-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--col-clay);
    transition: width 0.4s var(--ease-lux);
}

.mobile-link:hover::after {
    width: 100%;
}

body.menu-open .mobile-link { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
body.menu-open .mobile-link:nth-child(2) { transition-delay: 0.2s; }
body.menu-open .mobile-link:nth-child(4) { transition-delay: 0.4s; }
body.menu-open .mobile-link:nth-child(5) { transition-delay: 0.5s; }

/* Mobile Dropdown */
.mobile-dropdown {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

body.menu-open .mobile-dropdown {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.mobile-dropdown-trigger {
    font-family: var(--font-disp);
    font-size: 2.5rem;
    color: var(--col-cream);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    position: relative;
    transition: color 0.3s ease;
}

.mobile-dropdown-trigger:hover {
    color: var(--col-clay);
}

.mobile-dropdown-arrow {
    transition: transform 0.5s var(--ease-lux);
    margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-out, margin-top 0.5s ease-in-out;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    opacity: 0;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 600px;
    margin-top: 1rem;
    opacity: 1;
    transition: max-height 1s ease-in-out, opacity 0.8s ease-in-out 0.2s, margin-top 1s ease-in-out;
}

.mobile-submenu-link {
    display: block;
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(235, 235, 235, 0.8);
    padding: 0.8rem 0;
    transition: all 0.3s ease, transform 0.6s ease-out, opacity 0.6s ease-out;
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
}

.mobile-dropdown.active .mobile-submenu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-dropdown.active .mobile-submenu-link:nth-child(1) {
    transition-delay: 0.3s;
}

.mobile-dropdown.active .mobile-submenu-link:nth-child(2) {
    transition-delay: 0.45s;
}

.mobile-dropdown.active .mobile-submenu-link:nth-child(3) {
    transition-delay: 0.6s;
}

.mobile-dropdown.active .mobile-submenu-link:nth-child(4) {
    transition-delay: 0.75s;
}

.mobile-submenu-link::before {
    content: "→";
    position: absolute;
    left: 50%;
    transform: translateX(-4rem);
    color: var(--col-clay);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    color: var(--col-oat);
}

.mobile-submenu-link:hover::before {
    opacity: 1;
    transform: translateX(-3rem);
}

/* --- 5. SCROLL ANIMATION CLASS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-lux);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- 6. SECTIONS --- */

/* HERO */
.hero {
    min-height: 100vh;
    padding: 0 3rem;
    padding-top: 100px;
    padding-bottom: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Ambient Background Glow */
.hero::before {
    content: "";
    position: absolute;
    top: 15%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(167, 140, 121, 0.06) 0%, rgba(124, 128, 111, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: ambientPulse 12s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 128, 111, 0.04) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    animation: ambientPulse 15s ease-in-out infinite reverse;
}

@keyframes ambientPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Premium Typography */
.hero-content h1 {
    font-family: var(--font-disp);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.15;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: var(--col-slate);
    background: linear-gradient(135deg, var(--col-slate) 0%, #4a4845 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.1em;
    overflow: visible;
}

.hero-content h1 i {
    font-weight: 300;
    background: linear-gradient(135deg, var(--col-clay) 0%, #b89985 50%, var(--col-clay) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-tag {
    color: var(--col-clay);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.hero-tag::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--col-clay), transparent);
    transition: width 0.6s var(--ease-lux);
}

.hero-tag:hover::after {
    width: 100%;
}

.hero-subtitle {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(124, 128, 111, 0.08);
}

.subtitle-main {
    font-family: var(--font-disp);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--col-slate);
    line-height: 1.2;
}

.subtitle-secondary {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--col-clay);
    letter-spacing: 0.5px;
}

.hero-sub {
    font-size: 1rem;
    color: #2a2d26;
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    letter-spacing: 0.01em;
    font-weight: 400;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1.15rem 3rem;
    background: linear-gradient(135deg, var(--col-moss) 0%, #626657 100%);
    color: var(--col-oat);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.5s var(--ease-lux);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    box-shadow:
        0 8px 20px rgba(124, 128, 111, 0.15),
        0 2px 6px rgba(124, 128, 111, 0.1);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, var(--col-clay), var(--col-moss));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s var(--ease-lux);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(124, 128, 111, 0.3),
        0 5px 15px rgba(124, 128, 111, 0.15);
}

.btn-primary:active {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(124, 128, 111, 0.25),
        0 3px 10px rgba(124, 128, 111, 0.12);
}

.btn-secondary {
    padding: 1.15rem 3rem;
    background: transparent;
    color: var(--col-slate);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-lux);
    display: inline-block;
    border: 2px solid rgba(45, 44, 42, 0.15);
    font-weight: 600;
    position: relative;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, var(--col-clay), var(--col-moss));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--ease-lux);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 128, 111, 0.15);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Visual Card - Premium Portrait */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3/3;
    background: linear-gradient(165deg, #d9d9d9 0%, #c9c9c9 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 60px 120px rgba(45,44,42,0.1),
        0 25px 50px rgba(45,44,42,0.06),
        inset 0 1px 0 rgba(255,255,255,0.7),
        inset 0 -1px 0 rgba(0,0,0,0.05);
    border: 1px solid rgba(235,235,235,0.9);
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-lux);
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.025);
    box-shadow:
        0 70px 140px rgba(45,44,42,0.12),
        0 30px 60px rgba(45,44,42,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8),
        inset 0 -1px 0 rgba(0,0,0,0.06);
}

/* Subtle Shine Effect */
.visual-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shine 8s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Decorative Frame */
.visual-card::after {
    content: "";
    position: absolute;
    top: 12px; left: 12px; right: 12px; bottom: 12px;
    border: 1px solid rgba(124, 128, 111, 0.08);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

/* Portrait Image */
.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    display: block;
}

/* Glassmorphism Badge */
.float-badge {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.85) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    bottom: 30px;
    left: -25px;
    box-shadow:
        0 25px 50px rgba(45,44,42,0.1),
        0 10px 20px rgba(45,44,42,0.06),
        inset 0 1px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.6);
    animation: floatY 6s ease-in-out infinite;
    transition: all 0.5s var(--ease-lux);
}

.float-badge::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(167, 140, 121, 0.2), rgba(124, 128, 111, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s var(--ease-lux);
}

.float-badge:hover::before {
    opacity: 1;
}

.float-badge:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 60px rgba(45,44,42,0.14),
        0 12px 25px rgba(45,44,42,0.08),
        inset 0 1px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(0,0,0,0.04);
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Credential Badges */
.credential-badges {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 10;
}

.credential-badge {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 15px 40px rgba(45, 44, 42, 0.12),
        0 5px 15px rgba(45, 44, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(167, 140, 121, 0.25);
    font-family: var(--font-disp);
    transition: all 0.5s var(--ease-lux);
    animation: fadeInRotate 0.8s ease backwards;
    position: relative;
}

.credential-badge::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--col-clay), var(--col-moss));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s var(--ease-lux);
}

.credential-badge:hover::before {
    opacity: 1;
}

.credential-badge:nth-child(1) { animation-delay: 0.4s; }
.credential-badge:nth-child(2) { animation-delay: 0.6s; }
.credential-badge:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeInRotate {
    0% {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }
    60% {
        transform: rotate(10deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.credential-badge:hover {
    transform: scale(1.12) rotate(8deg);
    box-shadow:
        0 20px 50px rgba(167, 140, 121, 0.25),
        0 8px 20px rgba(45, 44, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(167, 140, 121, 0.4);
}

.credential-badge span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--col-slate);
    letter-spacing: -0.02em;
}

.credential-badge small {
    font-size: 0.54rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--col-moss);
    margin-top: 0.25rem;
    font-weight: 600;
    font-family: var(--font-body);
}

/* Ornamental Divider */
.ornamental-divider {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem 0;
    opacity: 0.5;
}

.ornamental-divider::before,
.ornamental-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 140, 121, 0.3), transparent);
    position: relative;
}

.ornamental-divider::before {
    background: linear-gradient(90deg, transparent, rgba(167, 140, 121, 0.3));
}

.ornamental-divider::after {
    background: linear-gradient(90deg, rgba(167, 140, 121, 0.3), transparent);
}

.ornamental-divider span {
    font-size: 1.4rem;
    color: var(--col-clay);
    animation: ornamentRotate 8s ease-in-out infinite;
}

@keyframes ornamentRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(90deg); }
}

/* MARQUEE - Ultra Premium */
.marquee-section {
    padding: clamp(3rem, 5vw, 5rem) 0;
    border-top: 1px solid rgba(124, 128, 111, 0.08);
    border-bottom: 1px solid rgba(124, 128, 111, 0.08);
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(to bottom, var(--col-oat) 0%, rgba(235, 235, 235, 0.5) 50%, var(--col-oat) 100%);
    position: relative;
    min-height: clamp(80px, 12vw, 150px);
    display: flex;
    align-items: center;
}

.marquee-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        var(--col-oat) 0%,
        transparent 10%,
        transparent 90%,
        var(--col-oat) 100%);
    pointer-events: none;
    z-index: 2;
}

.marquee-track {
    display: inline-block;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-family: var(--font-disp);
    font-size: clamp(1.4rem, 3.5vw, 2.5rem);
    font-style: italic;
    font-weight: 500;
    color: rgba(124, 128, 111, 0.7);
    margin: 0 clamp(2rem, 4vw, 4rem);
    display: inline-block;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
    line-height: 1.2;
}

.marquee-item:hover {
    color: rgba(167, 140, 121, 0.85);
}

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

/* ABOUT SECTION - Premium & Elegant */
.section-about-new {
    padding: clamp(6rem, 10vw, 10rem) clamp(2rem, 5vw, 4rem);
    background:
        linear-gradient(135deg, #f8f6f4 0%, #ebe9e5 25%, #f1eeea 50%, #e8e4df 75%, #f3f1ed 100%);
    position: relative;
    overflow: hidden;
}

/* Layered atmospheric background */
.section-about-new::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 140, 121, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: aboutFloat 20s ease-in-out infinite alternate;
    filter: blur(60px);
}

.section-about-new::after {
    content: "";
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(124, 128, 111, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: aboutFloat 15s ease-in-out infinite alternate-reverse;
    filter: blur(60px);
}

@keyframes aboutFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, -20px); }
}

.about-container-new {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(4rem, 8vw, 8rem);
    align-items: start;
}

/* Left Column - Header */
.about-header {
    position: sticky;
    top: 120px;
}

.sec-title-large {
    font-family: var(--font-disp);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--col-slate);
    line-height: 1.05;
    margin: 1.5rem 0 2rem 0;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.sec-title-large::after {
    content: "";
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--col-clay), transparent);
    animation: titleUnderline 1.2s ease-out 0.8s forwards;
}

@keyframes titleUnderline {
    to { width: 80px; }
}

.about-intro {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.75;
    color: #2a2d26;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(124, 128, 111, 0.15);
}

/* Right Column - Journey Timeline */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.journey-item {
    position: relative;
    padding-left: clamp(2rem, 4vw, 3rem);
    border-left: 2px solid rgba(124, 128, 111, 0.2);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateX(-20px);
}

.journey-item.active {
    opacity: 1;
    transform: translateX(0);
}

/* Timeline dot accent */
.journey-item::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--col-clay), var(--col-moss));
    box-shadow: 0 0 0 4px rgba(235, 235, 235, 0.8), 0 0 0 6px rgba(167, 140, 121, 0.2);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Remove dot from "Bugün" card */
.journey-current::before {
    display: none;
}

.journey-item:hover {
    border-left-color: var(--col-clay);
    transform: translateX(12px);
}

.journey-item:hover::before {
    box-shadow: 0 0 0 6px rgba(235, 235, 235, 0.9), 0 0 0 10px rgba(167, 140, 121, 0.3);
    transform: scale(1.3);
}

.journey-year,
.journey-label,
.journey-label-accent {
    font-family: var(--font-disp);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--col-clay);
    margin-bottom: 1rem;
    display: inline-block;
}

.journey-label-accent {
    color: var(--col-moss);
    font-size: 1rem;
    background: rgba(124, 128, 111, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 4px;
}

.journey-text h3 {
    font-family: var(--font-disp);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 500;
    color: var(--col-slate);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.journey-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: #2a2d26;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
}

.journey-current {
    background:
        linear-gradient(135deg,
            rgba(167, 140, 121, 0.08) 0%,
            rgba(235, 235, 235, 0.6) 50%,
            rgba(124, 128, 111, 0.06) 100%);
    padding: 2.5rem;
    padding-left: clamp(2rem, 4vw, 3rem);
    border-radius: 16px;
    border-left: 4px solid var(--col-moss);
    margin-left: -1rem;
    position: relative;
    overflow: hidden;
}

/* Distinctive shimmer effect - stays inside card */
.journey-current::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(167, 140, 121, 0.15) 50%,
        transparent 100%);
    transition: left 1.2s ease;
    pointer-events: none;
    z-index: 1;
}

.journey-current:hover::after {
    left: 100%;
}

/* Ensure content stays above shimmer */
.journey-current .journey-label-accent,
.journey-current .journey-text {
    position: relative;
    z-index: 2;
}

.journey-current:hover {
    transform: translateX(8px);
    box-shadow:
        0 12px 40px rgba(124, 128, 111, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-left-color: var(--col-clay);
}

.journey-philosophy {
    font-family: var(--font-body);
    font-style: italic;
    color: var(--col-slate);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(124, 128, 111, 0.1);
}

.journey-philosophy strong {
    color: var(--col-moss);
    font-weight: 600;
    font-style: normal;
}

/* SERVICES - Ultra Premium & Refined - NEW VERSION */
.section-services-new {
    padding: clamp(6rem, 10vw, 9rem) clamp(2rem, 5vw, 4rem);
    background:
        linear-gradient(135deg, #f8f6f4 0%, #ebe9e5 25%, #f1eeea 50%, #e8e4df 75%, #f3f1ed 100%);
    position: relative;
    overflow: hidden;
}

.section-services-new::before {
    content: "";
    position: absolute;
    top: 15%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 140, 121, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: serviceFloat 25s ease-in-out infinite alternate;
    filter: blur(80px);
}

.section-services-new::after {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 128, 111, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: serviceFloat 20s ease-in-out infinite alternate-reverse;
    filter: blur(80px);
}

@keyframes serviceFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, -30px); }
}

.services-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
}

.services-intro {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.75;
    color: #2a2d26;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* Service Card - Premium Design */
.service-card {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(250, 250, 250, 0.92) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(124, 128, 111, 0.1);
    box-shadow:
        0 20px 60px rgba(45, 44, 42, 0.08),
        0 8px 20px rgba(45, 44, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.6s var(--ease-lux);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--col-clay), var(--col-moss));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s var(--ease-lux);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 30px 80px rgba(45, 44, 42, 0.15),
        0 12px 30px rgba(45, 44, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(167, 140, 121, 0.2);
}

/* Service Card Header */
.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(124, 128, 111, 0.08);
}

.service-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 128, 111, 0.08), rgba(167, 140, 121, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--col-moss);
    transition: all 0.5s var(--ease-lux);
    border: 1px solid rgba(124, 128, 111, 0.1);
    position: relative;
    overflow: hidden;
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--col-clay), var(--col-moss));
    opacity: 0;
    transition: opacity 0.5s var(--ease-lux);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(167, 140, 121, 0.15), rgba(124, 128, 111, 0.12));
    transform: scale(1.08) rotate(5deg);
    border-color: rgba(167, 140, 121, 0.2);
}

.service-card:hover .service-icon::before {
    opacity: 0.1;
}

.service-icon svg {
    position: relative;
    z-index: 1;
}

.service-card-header h3 {
    font-family: var(--font-disp);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 500;
    color: var(--col-slate);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
    flex: 1;
}

/* Service Card Description */
.service-card-description {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.65;
    color: #2a2d26;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

/* Service Features List */
.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: #3a3d36;
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--col-clay);
    font-size: 1rem;
    transition: all 0.3s var(--ease-lux);
}

.service-card:hover .service-features li::before {
    left: 0.3rem;
}

.service-features li:hover {
    color: var(--col-slate);
    padding-left: 2.5rem;
}

/* Service CTA Button */
.service-cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--col-moss) 0%, #626657 100%);
    color: var(--col-oat);
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.5s var(--ease-lux);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    align-self: flex-start;
    box-shadow:
        0 8px 20px rgba(124, 128, 111, 0.15),
        0 2px 6px rgba(124, 128, 111, 0.1);
}

.service-cta::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.service-cta:hover::before {
    left: 100%;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(124, 128, 111, 0.25),
        0 4px 12px rgba(124, 128, 111, 0.15);
}

/* Service Info Box (for Longevity setup card) */
.service-info-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg,
        rgba(124, 128, 111, 0.04) 0%,
        rgba(167, 140, 121, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(124, 128, 111, 0.08);
    position: relative;
}

.service-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--col-clay), var(--col-moss));
    border-radius: 12px 12px 0 0;
    opacity: 0.3;
}

.service-info-box h4 {
    font-family: var(--font-disp);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--col-slate);
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

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

.info-col strong {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--col-clay);
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.info-col p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.6;
    color: #3a3d36;
    margin: 0;
}

/* Service Note */
.service-note {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: rgba(167, 140, 121, 0.04);
    border-left: 3px solid var(--col-clay);
    border-radius: 8px;
}

.service-note p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.65;
    color: #2a2d26;
    margin: 0;
}

.service-note strong {
    color: var(--col-moss);
    font-weight: 600;
}

/* Service Disclaimer */
.service-disclaimer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(124, 128, 111, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(124, 128, 111, 0.08);
}

.service-disclaimer small {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.5;
    color: #5a5e54;
    font-style: italic;
    display: block;
}

/* Small Service Card (for Bireysel Danışmanlık) */
.service-card-small {
    grid-column: auto;
    max-width: 100%;
}

/* OLD SERVICES STYLES (kept for backward compatibility if needed elsewhere) */
.section-services {
    padding: 10rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(124, 128, 111, 0.05) 20%,
        rgba(124, 128, 111, 0.05) 80%,
        transparent 100%);
    pointer-events: none;
}

.sec-header {
    margin-bottom: 6rem;
    text-align: center;
    position: relative;
}

.sec-tag {
    color: var(--col-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sec-tag::before,
.sec-tag::after {
    content: "";
    flex: 0 0 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--col-gold));
}

.sec-tag::after {
    transform: rotate(180deg);
}

.sec-title {
    font-family: var(--font-disp);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.01em;
    max-width: 800px;
    margin: 0 auto;
}

.service-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    border-bottom: 1px solid rgba(124, 128, 111, 0.08);
    padding: 2.5rem 0;
    cursor: pointer;
    position: relative;
    transition: all 0.4s var(--ease-lux);
}

.service-item::before {
    content: "";
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--col-gold);
    transition: width 0.5s var(--ease-lux);
    opacity: 0;
}

.service-item:hover::before {
    width: 2rem;
    opacity: 1;
}

.service-item:hover {
    padding-left: 0.5rem;
}

.service-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.srv-name {
    font-family: var(--font-disp);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 0.4s var(--ease-lux);
    flex: 1;
}

.srv-icon {
    font-size: 1.8rem;
    transition: all 0.5s var(--ease-lux);
    font-weight: 300;
    color: var(--col-clay);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 140, 121, 0.05);
    border: 1px solid rgba(167, 140, 121, 0.1);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.7s var(--ease-lux);
    opacity: 0;
}

.service-details p {
    padding-top: 2rem;
    color: #3a3d36;
    max-width: 700px;
    font-size: 1.08rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.service-item:hover .srv-name {
    color: var(--col-slate);
    transform: translateX(4px);
}

.service-item.active {
    border-bottom-color: rgba(167, 140, 121, 0.15);
}

.service-item.active .service-details {
    max-height: 300px;
    opacity: 1;
}

.service-item.active .srv-icon {
    transform: rotate(45deg);
    background: rgba(167, 140, 121, 0.1);
    border-color: var(--col-clay);
    color: var(--col-moss);
}

.service-item.active .srv-name {
    color: var(--col-slate);
}

/* TALKS & PRESENTATIONS - Premium Section */
.section-talks {
    padding: clamp(6rem, 10vw, 9rem) clamp(2rem, 5vw, 4rem);
    background: var(--col-oat);
    position: relative;
    overflow: hidden;
}

.section-talks::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(124, 128, 111, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: talksFloat 22s ease-in-out infinite alternate;
    filter: blur(70px);
}

.section-talks::after {
    content: "";
    position: absolute;
    bottom: 15%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 140, 121, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: talksFloat 18s ease-in-out infinite alternate-reverse;
    filter: blur(70px);
}

@keyframes talksFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, -20px); }
}

.talks-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.talks-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.talks-intro {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.75;
    color: #2a2d26;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.talks-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Empty State - Premium Design */
.talks-empty-state {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(250, 250, 250, 0.8) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 24px;
    padding: 5rem 3rem;
    text-align: center;
    border: 1px solid rgba(124, 128, 111, 0.1);
    box-shadow:
        0 20px 60px rgba(45, 44, 42, 0.06),
        0 8px 20px rgba(45, 44, 42, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.talks-empty-state::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--col-clay), var(--col-moss));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.15;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 128, 111, 0.06), rgba(167, 140, 121, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--col-moss);
    border: 1px solid rgba(124, 128, 111, 0.1);
    position: relative;
}

.empty-state-icon::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 140, 121, 0.08) 0%, transparent 70%);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.talks-empty-state h3 {
    font-family: var(--font-disp);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--col-slate);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.talks-empty-state > p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: #3a3d36;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    letter-spacing: 0.01em;
}

.empty-state-note {
    padding: 1.5rem 2rem;
    background: rgba(124, 128, 111, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(124, 128, 111, 0.08);
    display: inline-block;
    text-align: center;
}

.empty-state-note strong {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--col-slate);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.empty-state-note a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--col-clay);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.empty-state-note a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--col-clay);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-lux);
}

.empty-state-note a:hover {
    color: var(--col-moss);
}

.empty-state-note a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Talk Card (for future content) */
.talk-card {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(250, 250, 250, 0.92) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(124, 128, 111, 0.1);
    box-shadow:
        0 20px 60px rgba(45, 44, 42, 0.08),
        0 8px 20px rgba(45, 44, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.6s var(--ease-lux);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.talk-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(45, 44, 42, 0.12),
        0 12px 30px rgba(45, 44, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.talk-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(167, 140, 121, 0.1), rgba(124, 128, 111, 0.08));
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--col-clay);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(167, 140, 121, 0.15);
}

.talk-title {
    font-family: var(--font-disp);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 500;
    color: var(--col-slate);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.talk-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3a3d36;
    margin-bottom: 1.5rem;
}

.talk-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(124, 128, 111, 0.08);
}

.talk-date,
.talk-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #5a5e54;
    font-weight: 500;
}

.talk-date svg,
.talk-location svg {
    color: var(--col-clay);
}

/* BLOG / WRITINGS - Premium Section */
.section-blog {
    padding: clamp(6rem, 10vw, 9rem) clamp(2rem, 5vw, 4rem);
    background:
        linear-gradient(135deg, #f8f6f4 0%, #ebe9e5 25%, #f1eeea 50%, #e8e4df 75%, #f3f1ed 100%);
    position: relative;
    overflow: hidden;
}

.section-blog::before {
    content: "";
    position: absolute;
    top: 15%;
    right: 8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 140, 121, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: blogFloat 24s ease-in-out infinite alternate;
    filter: blur(80px);
}

.section-blog::after {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(124, 128, 111, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: blogFloat 20s ease-in-out infinite alternate-reverse;
    filter: blur(80px);
}

@keyframes blogFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(25px, -25px); }
}

.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-intro {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.75;
    color: #2a2d26;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Blog Empty State - Same style as Talks */
.blog-empty-state {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(250, 250, 250, 0.8) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 24px;
    padding: 5rem 3rem;
    text-align: center;
    border: 1px solid rgba(124, 128, 111, 0.1);
    box-shadow:
        0 20px 60px rgba(45, 44, 42, 0.06),
        0 8px 20px rgba(45, 44, 42, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.blog-empty-state::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--col-clay), var(--col-moss));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.15;
}

.blog-empty-state .empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 128, 111, 0.06), rgba(167, 140, 121, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--col-moss);
    border: 1px solid rgba(124, 128, 111, 0.1);
    position: relative;
}

.blog-empty-state .empty-state-icon::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 140, 121, 0.08) 0%, transparent 70%);
    animation: iconPulse 3s ease-in-out infinite;
}

.blog-empty-state h3 {
    font-family: var(--font-disp);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--col-slate);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.blog-empty-state > p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: #3a3d36;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    letter-spacing: 0.01em;
}

/* Blog Card (for future content) */
.blog-card {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(250, 250, 250, 0.92) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(124, 128, 111, 0.1);
    box-shadow:
        0 20px 60px rgba(45, 44, 42, 0.08),
        0 8px 20px rgba(45, 44, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.6s var(--ease-lux);
    margin-bottom: 2rem;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(45, 44, 42, 0.12),
        0 12px 30px rgba(45, 44, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-lux);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--col-clay);
    border: 1px solid rgba(167, 140, 121, 0.2);
}

.blog-info {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.blog-date,
.blog-read-time {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #5a5e54;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-family: var(--font-disp);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 500;
    color: var(--col-slate);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.blog-excerpt {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3a3d36;
    margin-bottom: 1.5rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--col-clay);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blog-link svg {
    transition: transform 0.3s var(--ease-lux);
}

.blog-link:hover {
    color: var(--col-moss);
}

.blog-link:hover svg {
    transform: translateX(4px);
}

/* IV THERAPY - Ultra Premium Dark Section */
.section-iv {
    background: linear-gradient(165deg, var(--col-slate) 0%, var(--col-moss) 50%, #3a3d36 100%);
    color: var(--col-oat);
    padding: 12rem 3rem;
    position: relative;
    overflow: hidden;
}

.section-iv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(167, 140, 121, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(167, 140, 121, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.iv-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.iv-content {
    position: relative;
}

.iv-content span {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(167, 140, 121, 0.1);
    border: 1px solid rgba(167, 140, 121, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 2.5rem;
}

.iv-content h2 {
    font-family: var(--font-disp);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--col-oat) 0%, rgba(235, 235, 235, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.iv-content p {
    color: rgba(235, 235, 235, 0.8);
    margin-bottom: 3rem;
    font-size: 1.12rem;
    line-height: 1.8;
    max-width: 550px;
    letter-spacing: 0.01em;
}

.iv-image {
    position: relative;
}

.iv-image > div {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-lux);
}

.iv-image > div::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(167, 140, 121, 0.05) 50%,
        transparent 70%
    );
    animation: ivShine 8s ease-in-out infinite;
}

@keyframes ivShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.iv-image > div:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 140, 121, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.iv-image > div > div {
    text-align: center;
    position: relative;
    z-index: 2;
}

.iv-image > div > div span:first-child {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(167, 140, 121, 0.3));
}

.iv-image > div > div span:last-child {
    color: rgba(235, 235, 235, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
}

.iv-circle {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(167, 140, 121, 0.06);
    border-radius: 50%;
    z-index: 1;
}

.iv-circle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(167, 140, 121, 0.04);
    border-radius: 50%;
}

.iv-circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(167, 140, 121, 0.03);
    border-radius: 50%;
}

/* ABOUT SECTION - Editorial Layout */
.section-about {
    padding: 12rem 3rem;
    background: var(--col-oat);
    border-top: 1px solid rgba(124, 128, 111, 0.08);
    position: relative;
    overflow: hidden;
}

.section-about::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 140, 121, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-content .sec-tag {
    text-align: left;
    padding: 0;
    margin-bottom: 1.5rem;
}

.about-content .sec-tag::before,
.about-content .sec-tag::after {
    display: none;
}

.about-content .sec-title {
    text-align: left;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2.5rem;
}

.about-quote {
    font-family: var(--font-disp);
    font-size: 1.35rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--col-slate);
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 2px solid var(--col-gold);
    position: relative;
}

.about-quote::before {
    content: """;
    position: absolute;
    left: -0.3rem;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--col-gold);
    opacity: 0.3;
    font-family: var(--font-disp);
}

.about-description {
    color: #3a3d36;
    font-size: 1.08rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 128, 111, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease-lux);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--col-gold), var(--col-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 128, 111, 0.1);
    border-color: rgba(167, 140, 121, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card-wide {
    grid-column: 1 / -1;
    text-align: center;
}

.stat-number {
    font-family: var(--font-disp);
    font-size: 4rem;
    font-weight: 400;
    color: var(--col-moss);
    line-height: 1;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--col-moss) 0%, #8d9180 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--col-gold);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--col-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 0.95rem;
    color: #3a3d36;
    line-height: 1.5;
}

/* ============================================
   CONTACT FORM SECTION - PREMIUM DESIGN
   ============================================ */

.section-contact {
    padding: clamp(6rem, 10vw, 9rem) clamp(2rem, 5vw, 4rem);
    background: linear-gradient(180deg,
        var(--col-oat) 0%,
        rgba(242, 240, 235, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: "";
    position: absolute;
    top: 20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 128, 111, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: contactFloat 20s ease-in-out infinite alternate;
    filter: blur(80px);
}

.section-contact::after {
    content: "";
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(167, 140, 121, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: contactFloat 18s ease-in-out infinite alternate-reverse;
    filter: blur(80px);
}

@keyframes contactFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.1); }
}

.contact-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    max-width: 700px;
    margin: 0 auto 5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-intro {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.75;
    color: #2a2d26;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-top: 2rem;
}

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

/* Contact Form Wrapper & Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 28px;
    padding: clamp(2.5rem, 4vw, 3.5rem);
    border: 1px solid rgba(124, 128, 111, 0.12);
    box-shadow:
        0 30px 80px rgba(45, 44, 42, 0.08),
        0 10px 30px rgba(45, 44, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
}

.contact-form::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(124, 128, 111, 0.15),
        rgba(167, 140, 121, 0.1),
        rgba(124, 128, 111, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.2rem, 2vw, 1.8rem);
    margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

/* Labels */
.form-group label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--col-slate);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.form-group .optional {
    font-weight: 400;
    color: rgba(90, 94, 84, 0.6);
    font-size: 0.7rem;
    text-transform: lowercase;
    letter-spacing: 0;
    margin-left: 0.3rem;
}

/* Input Wrapper & Styling */
.input-wrapper,
.select-wrapper,
.textarea-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input,
.select-wrapper select,
.textarea-wrapper textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 1rem 1.2rem;
    padding-right: 3rem;
    border: 1.5px solid rgba(124, 128, 111, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--col-slate);
    width: 100%;
    transition: all 0.35s var(--ease-lux);
    outline: none;
}

.input-wrapper input:focus,
.select-wrapper select:focus,
.textarea-wrapper textarea:focus {
    border-color: var(--col-moss);
    background: rgba(255, 255, 255, 1);
    box-shadow:
        0 0 0 3px rgba(124, 128, 111, 0.08),
        0 4px 16px rgba(124, 128, 111, 0.12);
    transform: translateY(-1px);
}

.input-wrapper input::placeholder,
.textarea-wrapper textarea::placeholder {
    color: rgba(90, 94, 84, 0.4);
    font-size: 0.9rem;
}

/* Input Icons */
.input-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(124, 128, 111, 0.4);
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-wrapper input:focus + .input-icon {
    color: var(--col-moss);
}

/* Select Styling */
.select-wrapper select {
    cursor: pointer;
    appearance: none;
    padding-right: 3rem;
}

.select-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(124, 128, 111, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-wrapper select:focus + .select-icon {
    color: var(--col-moss);
    transform: translateY(-50%) rotate(180deg);
}

/* Textarea */
.textarea-wrapper textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.65;
    padding: 1.2rem;
    font-size: 0.95rem;
}

/* Form Footer */
.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 128, 111, 0.1);
}

/* Submit Button */
.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.15rem 2.5rem;
    background: linear-gradient(135deg,
        var(--col-moss) 0%,
        #5a5e52 50%,
        var(--col-moss) 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: var(--col-oat);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s var(--ease-lux);
    box-shadow:
        0 10px 25px rgba(124, 128, 111, 0.25),
        0 4px 10px rgba(124, 128, 111, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.form-submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.form-submit-btn:hover {
    background-position: 100% 0%;
    transform: translateY(-2px);
    box-shadow:
        0 15px 35px rgba(124, 128, 111, 0.35),
        0 6px 15px rgba(124, 128, 111, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.form-submit-btn:hover::before {
    transform: translateX(100%);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn svg {
    transition: transform 0.35s var(--ease-lux);
}

.form-submit-btn:hover svg {
    transform: translateX(4px);
}

.form-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #6b6b6b;
}

.form-submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
    background-position: 0% 0%;
}

.form-submit-btn:disabled:hover svg {
    transform: none;
}

/* Form Note */
.form-note {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(90, 94, 84, 0.7);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.form-note svg {
    color: var(--col-clay);
    flex-shrink: 0;
}

/* Form Status Messages */
.form-status {
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
}

.form-status.success,
.form-status.error {
    display: block;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Field Validation Errors */
.field-error {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #dc2626;
    margin-top: 0.4rem;
    display: none;
    padding-left: 0.25rem;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #dc2626;
}

.form-group input.invalid:focus,
.form-group select.invalid:focus,
.form-group textarea.invalid:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Loading State */
.form-submit-btn.loading {
    opacity: 0.7;
    cursor: wait;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid rgba(124, 128, 111, 0.12);
    box-shadow:
        0 10px 30px rgba(45, 44, 42, 0.06),
        0 4px 12px rgba(45, 44, 42, 0.03);
    transition: all 0.4s var(--ease-lux);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow:
        0 15px 40px rgba(45, 44, 42, 0.1),
        0 6px 15px rgba(45, 44, 42, 0.05);
    border-color: rgba(124, 128, 111, 0.2);
}

.info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg,
        rgba(124, 128, 111, 0.1),
        rgba(167, 140, 121, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--col-moss);
    border: 1px solid rgba(124, 128, 111, 0.12);
    transition: all 0.4s var(--ease-lux);
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg,
        rgba(124, 128, 111, 0.15),
        rgba(167, 140, 121, 0.12));
    transform: rotate(5deg) scale(1.05);
}

.info-content {
    flex: 1;
}

.info-card h4 {
    font-family: var(--font-disp);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--col-slate);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.info-card p,
.info-card a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(58, 61, 54, 0.8);
    line-height: 1.5;
}

.info-card a {
    transition: color 0.3s ease;
    text-decoration: none;
}

.info-card a:hover {
    color: var(--col-clay);
}

/* ============================================
   FOOTER SECTION - PREMIUM DESIGN
   ============================================ */

footer {
    padding: clamp(5rem, 8vw, 7rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 5vw, 4rem);
    background: linear-gradient(180deg,
        rgba(237, 235, 230, 1) 0%,
        rgba(230, 228, 223, 1) 100%);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(124, 128, 111, 0.2) 50%,
        transparent 100%);
}

.footer-decoration {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(124, 128, 111, 0.03) 0%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Footer Brand Section */
.footer-brand-section {
    max-width: 600px;
    margin-bottom: clamp(4rem, 6vw, 5rem);
}

.footer-logo h2 {
    font-family: var(--font-disp);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--col-slate);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: rgba(90, 94, 84, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.75;
    color: rgba(58, 61, 54, 0.8);
    margin-bottom: 2rem;
}

/* Footer Actions (CTA + Social) */
.footer-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: rgba(124, 128, 111, 0.08);
    border: 1.5px solid rgba(124, 128, 111, 0.15);
    border-radius: 50px;
    color: var(--col-slate);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.4s var(--ease-lux);
}

.footer-cta:hover {
    background: var(--col-moss);
    border-color: var(--col-moss);
    color: var(--col-oat);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 128, 111, 0.2);
}

.footer-cta svg {
    transition: transform 0.3s var(--ease-lux);
}

.footer-cta:hover svg {
    transform: translateX(3px);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(124, 128, 111, 0.06);
    border: 1.5px solid rgba(124, 128, 111, 0.12);
    border-radius: 50%;
    color: var(--col-slate);
    text-decoration: none;
    transition: all 0.4s var(--ease-lux);
}

.footer-social a:hover {
    background: var(--col-moss);
    border-color: var(--col-moss);
    color: var(--col-oat);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(124, 128, 111, 0.25);
}

.footer-social a svg {
    transition: transform 0.3s var(--ease-lux);
}

.footer-social a:hover svg {
    transform: scale(1.1);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(3rem, 5vw, 4rem);
    margin-bottom: clamp(3rem, 5vw, 4rem);
}

.footer-col h4 {
    font-family: var(--font-disp);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--col-slate);
    letter-spacing: -0.01em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(58, 61, 54, 0.75);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-lux);
    position: relative;
    padding-left: 0;
}

.footer-col ul li a svg {
    color: rgba(124, 128, 111, 0.4);
    transition: all 0.3s var(--ease-lux);
    flex-shrink: 0;
}

.footer-col ul li a:hover {
    color: var(--col-slate);
    padding-left: 6px;
}

.footer-col ul li a:hover svg {
    color: var(--col-moss);
    transform: scale(1.1);
}

/* Footer Contact List */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(124, 128, 111, 0.08);
    transition: all 0.3s var(--ease-lux);
}

.footer-contact-list li:not(:hover) {
    background: rgba(255, 255, 255, 0.5);
}

.footer-contact-list li:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(124, 128, 111, 0.15);
    transform: translateY(-2px);
}

.footer-contact-list li svg {
    color: var(--col-moss);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list li div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-contact-list li strong {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--col-slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-list li span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(58, 61, 54, 0.75);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(124, 128, 111, 0.15) 50%,
        transparent 100%);
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-left {
    flex: 0 0 auto;
}

.footer-bottom-right {
    flex: 0 0 auto;
    margin-left: auto;
}

.copyright {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(138, 142, 135, 0.8);
    letter-spacing: 0.3px;
}

.mse-credit {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(138, 142, 135, 0.8);
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.mse-credit::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--col-moss);
    transition: width 0.3s var(--ease-lux);
}

.mse-credit:hover {
    color: var(--col-slate);
}

.mse-credit:hover::after {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    header { padding: 1.5rem 2rem; }
    .desktop-nav { display: none; }
    .hamburger-wrapper { display: flex; }

    /* Hide desktop dropdown on tablet/mobile */
    .nav-dropdown { display: none; }

    /* Hero Section - Mobile */
    .hero {
        padding: 0 2rem;
        padding-top: 100px;
        padding-bottom: 5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        max-width: 700px;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 9vw, 5rem);
        line-height: 1;
        margin-bottom: 2rem;
    }

    .hero-tag {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        text-align: center;
        align-items: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-cta-group { justify-content: center; }

    .hero-visual {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .visual-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .credential-badges {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        order: 2;
    }

    .credential-badge {
        width: 75px;
        height: 75px;
        animation: none;
    }

    .float-badge {
        position: static;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 1.5rem;
        animation: none;
        order: 3;
    }

    .float-badge:hover {
        transform: none;
    }

    /* Marquee - Tablet */
    .marquee-section {
        padding: clamp(2.5rem, 4vw, 3.5rem) 0;
        min-height: clamp(70px, 10vw, 120px);
    }

    .marquee-item {
        margin: 0 clamp(1.8rem, 3vw, 3rem);
        font-size: clamp(1.2rem, 3.2vw, 2rem);
    }

    /* About Section - Tablet */
    .section-about-new {
        padding: clamp(6rem, 10vw, 8rem) 2rem;
    }

    .about-container-new {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-header {
        position: static;
        text-align: center;
    }

    .sec-title-large {
        font-size: clamp(2.2rem, 6vw, 3.2rem);
    }

    .about-intro {
        font-size: 1.15rem;
    }

    .journey-item {
        padding-left: 2rem;
    }

    .journey-text h3 {
        font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    }

    .journey-current {
        padding: 2rem;
        padding-left: 2rem;
        margin-left: 0;
    }

    /* Services Section NEW - Tablet */
    .section-services-new {
        padding: clamp(6rem, 10vw, 8rem) 2rem;
    }

    .services-header {
        margin-bottom: 4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-card {
        padding: 2.5rem;
    }

    .service-card-small {
        grid-column: span 1;
        max-width: 100%;
    }

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

    /* Talks Section - Tablet */
    .section-talks {
        padding: clamp(5rem, 8vw, 7rem) 2rem;
    }

    .talks-header {
        margin-bottom: 3rem;
    }

    .talks-empty-state {
        padding: 4rem 2.5rem;
        border-radius: 20px;
    }

    .empty-state-icon {
        width: 100px;
        height: 100px;
    }

    .empty-state-icon svg {
        width: 60px;
        height: 60px;
    }

    /* Blog Section - Tablet */
    .section-blog {
        padding: clamp(5rem, 8vw, 7rem) 2rem;
    }

    .blog-header {
        margin-bottom: 3rem;
    }

    .blog-empty-state {
        padding: 4rem 2.5rem;
        border-radius: 20px;
    }

    .blog-empty-state .empty-state-icon {
        width: 100px;
        height: 100px;
    }

    .blog-empty-state .empty-state-icon svg {
        width: 60px;
        height: 60px;
    }

    /* Services Section OLD - Tablet */
    .section-services {
        padding: 7rem 2rem;
    }

    .sec-header {
        margin-bottom: 4rem;
    }

    .sec-tag {
        gap: 0.75rem;
    }

    .sec-tag::before,
    .sec-tag::after {
        flex: 0 0 30px;
    }

    .service-item {
        padding: 2rem 0;
    }

    .service-item::before {
        display: none;
    }

    .service-item:hover {
        padding-left: 0;
    }

    /* IV Therapy - Tablet */
    .iv-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .section-iv {
        padding: 8rem 2rem;
    }

    .iv-image > div {
        height: 400px;
    }

    .iv-circle {
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
    }

    /* About Section - Tablet */
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .section-about {
        padding: 8rem 2rem;
    }

    .about-content {
        max-width: 100%;
    }

    .about-stats {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Contact Section - Tablet */
    .section-contact {
        padding: clamp(5rem, 8vw, 7rem) 2rem;
    }

    .contact-header {
        margin-bottom: 3.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 2.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    /* Footer - Tablet */
    footer {
        padding: 5rem 2rem 3rem;
    }

    .footer-brand-section {
        max-width: 100%;
        text-align: center;
        margin-bottom: 4rem;
    }

    .footer-actions {
        justify-content: center;
    }

    .footer-cta {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }

    .footer-social {
        gap: 0.6rem;
    }

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

    .footer-col:last-child {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .footer-bottom-right {
        margin-left: auto;
    }
}

@media (max-width: 640px) {
    /* Mobile Dropdown - Smaller screens */
    .mobile-link {
        font-size: 2rem;
    }

    .mobile-dropdown-trigger {
        font-size: 2rem;
        justify-content: center;
    }

    .mobile-submenu-link {
        font-size: 1.1rem;
        padding: 0.6rem 0;
        text-align: center;
    }

    .mobile-submenu-link::before {
        transform: translateX(-3rem);
    }

    .mobile-submenu-link:hover::before {
        transform: translateX(-2.2rem);
    }

    /* Hero Section - Mobile */
    .hero {
        padding: 0 1.25rem;
        padding-top: 90px;
        padding-bottom: 4rem;
        min-height: auto;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 12vw, 3.8rem);
        margin-bottom: 2rem;
        line-height: 1;
    }

    .hero-tag {
        font-size: 0.65rem;
        letter-spacing: 3px;
        margin-bottom: 2rem;
        padding-bottom: 0.4rem;
    }

    .hero-subtitle {
        gap: 0.6rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .subtitle-main {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
    }

    .subtitle-secondary {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }

    .hero-sub {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 2rem;
    }

    .ornamental-divider {
        margin: 1.2rem 0;
    }

    .ornamental-divider::before,
    .ornamental-divider::after {
        display: none;
    }

    .ornamental-divider span {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.95rem 1.8rem;
        font-size: 0.7rem;
        letter-spacing: 1.2px;
        width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .visual-card {
        max-width: 240px;
        border-radius: 10px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    }

    .visual-card::before {
        animation: none;
    }

    .visual-card:hover {
        transform: none;
    }

    .visual-card svg {
        width: 50px !important;
        height: 50px !important;
    }

    .visual-card span {
        font-size: 0.6rem !important;
        margin-top: 0.8rem !important;
    }

    .credential-badge {
        width: 70px;
        height: 70px;
        border-width: 1.5px;
    }

    .credential-badge span {
        font-size: 0.95rem;
        font-weight: 600;
    }

    .credential-badge small {
        font-size: 0.5rem;
        letter-spacing: 0.5px;
    }

    .float-badge {
        padding: 1.2rem 1.3rem;
        border-radius: 10px;
        max-width: 100%;
    }

    .float-badge h4 {
        font-size: 2rem !important;
        margin-bottom: 0.25rem !important;
    }

    .float-badge h4 span {
        font-size: 1.2rem !important;
    }

    .float-badge p {
        font-size: 0.7rem !important;
    }

    .float-badge div {
        margin-top: 0.7rem !important;
        padding-top: 0.7rem !important;
    }

    .float-badge svg {
        width: 14px !important;
        height: 14px !important;
    }

    .float-badge small {
        font-size: 0.6rem !important;
    }

    /* Marquee - Mobile */
    .marquee-section {
        padding: clamp(2rem, 5vw, 2.5rem) 0;
        min-height: clamp(60px, 15vw, 100px);
    }

    .marquee-track {
        animation: marquee 30s linear infinite;
    }

    .marquee-item {
        font-size: clamp(1rem, 5vw, 1.5rem);
        margin: 0 clamp(1.5rem, 4vw, 2rem);
        font-weight: 500;
        color: rgba(124, 128, 111, 0.7);
        letter-spacing: 0.01em;
    }

    .marquee-item:hover {
        color: rgba(167, 140, 121, 0.85);
    }

    /* About Section - Mobile */
    .section-about-new {
        padding: clamp(5rem, 8vw, 6rem) 1.5rem;
    }

    .about-container-new {
        gap: 3rem;
    }

    .about-header {
        text-align: center;
    }

    .sec-title-large {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin: 1rem 0 1.5rem 0;
    }

    .about-intro {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .about-content {
        gap: 2.5rem;
    }

    .journey-item {
        padding-left: 1.5rem;
        border-left-width: 2px;
    }

    .journey-item:hover {
        transform: translateX(4px);
    }

    .journey-year,
    .journey-label,
    .journey-label-accent {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .journey-label-accent {
        padding: 0.3rem 0.8rem;
    }

    .journey-text h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-bottom: 0.8rem;
    }

    .journey-text p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .journey-current {
        padding: 1.8rem;
        padding-left: 1.5rem;
        border-left-width: 2px;
    }

    .journey-philosophy {
        font-size: 1rem;
        margin-top: 1.2rem;
        padding-top: 1.2rem;
    }

    /* Services Section NEW - Mobile */
    .section-services-new {
        padding: clamp(5rem, 8vw, 6rem) 1.5rem;
    }

    .section-services-new::before,
    .section-services-new::after {
        display: none;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-intro {
        font-size: 1rem;
        line-height: 1.65;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .service-card:hover {
        transform: translateY(-6px);
    }

    .service-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 14px;
    }

    .service-card-header h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .service-card-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .service-features {
        margin: 1.5rem 0;
    }

    .service-features li {
        font-size: 0.9rem;
        padding: 0.7rem 0 0.7rem 1.8rem;
    }

    .service-features li::before {
        font-size: 0.9rem;
    }

    .service-features li:hover {
        padding-left: 2rem;
    }

    .service-cta {
        padding: 0.9rem 2rem;
        font-size: 0.75rem;
        letter-spacing: 1.2px;
        margin-top: 1.5rem;
        width: 100%;
        text-align: center;
    }

    .service-info-box {
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .service-info-box h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .info-row {
        gap: 1.2rem;
    }

    .info-col strong {
        font-size: 0.75rem;
        letter-spacing: 1.2px;
        margin-bottom: 0.6rem;
    }

    .info-col p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .service-note {
        margin: 1.5rem 0;
        padding: 1.2rem;
    }

    .service-note p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .service-disclaimer {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .service-disclaimer small {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* Talks Section - Mobile */
    .section-talks {
        padding: clamp(4rem, 7vw, 5rem) 1.5rem;
    }

    .section-talks::before,
    .section-talks::after {
        display: none;
    }

    .talks-header {
        margin-bottom: 2.5rem;
    }

    .talks-intro {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .talks-empty-state {
        padding: 3rem 2rem;
        border-radius: 18px;
    }

    .empty-state-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }

    .empty-state-icon svg {
        width: 50px;
        height: 50px;
    }

    .talks-empty-state h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.2rem;
    }

    .talks-empty-state > p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 2rem;
    }

    .empty-state-note {
        padding: 1.2rem 1.5rem;
        border-radius: 10px;
    }

    .empty-state-note strong {
        font-size: 0.88rem;
    }

    .empty-state-note a {
        font-size: 0.88rem;
    }

    /* Blog Section - Mobile */
    .section-blog {
        padding: clamp(4rem, 7vw, 5rem) 1.5rem;
    }

    .section-blog::before,
    .section-blog::after {
        display: none;
    }

    .blog-header {
        margin-bottom: 2.5rem;
    }

    .blog-intro {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .blog-empty-state {
        padding: 3rem 2rem;
        border-radius: 18px;
    }

    .blog-empty-state .empty-state-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }

    .blog-empty-state .empty-state-icon svg {
        width: 50px;
        height: 50px;
    }

    .blog-empty-state h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.2rem;
    }

    .blog-empty-state > p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 2rem;
    }

    /* Services Section OLD - Mobile */
    .section-services {
        padding: 5rem 1.5rem;
    }

    .section-services::before {
        display: none;
    }

    .sec-header {
        margin-bottom: 3rem;
    }

    .sec-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
        gap: 0.5rem;
    }

    .sec-tag::before,
    .sec-tag::after {
        flex: 0 0 20px;
    }

    .sec-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .service-item {
        padding: 1.5rem 0;
    }

    .service-summary {
        gap: 1rem;
    }

    .srv-name {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .srv-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .service-details p {
        font-size: 0.95rem;
        padding-top: 1.5rem;
    }

    /* IV Therapy - Mobile */
    .section-iv {
        padding: 5rem 1.5rem;
    }

    .iv-container {
        gap: 3rem;
    }

    .iv-content span {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 0.5rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .iv-content h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 1.5rem;
    }

    .iv-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .iv-image > div {
        height: 300px;
        border-radius: 16px;
    }

    .iv-image > div::before {
        animation: none;
    }

    .iv-image > div:hover {
        transform: none;
    }

    .iv-image > div > div span:first-child {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .iv-image > div > div span:last-child {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .iv-circle {
        display: none;
    }

    .btn-main {
        padding: 0.8rem 1.8rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    /* About Section - Mobile */
    .section-about {
        padding: 5rem 1.5rem;
    }

    .section-about::before {
        display: none;
    }

    .about-container {
        gap: 3rem;
    }

    .about-quote {
        font-size: 1.1rem;
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-quote::before {
        font-size: 2.5rem;
        left: -0.2rem;
        top: -0.3rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .stat-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .stat-card:hover {
        transform: translateY(-4px);
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .stat-detail {
        font-size: 0.85rem;
    }

    /* Contact Section - Mobile */
    .section-contact {
        padding: 4rem 1.5rem;
    }

    .contact-header {
        margin-bottom: 2.5rem;
    }

    .contact-intro {
        font-size: 1rem;
        line-height: 1.7;
    }

    .contact-content {
        gap: 2.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .form-group label {
        font-size: 0.7rem;
    }

    .input-wrapper input,
    .select-wrapper select,
    .textarea-wrapper textarea {
        font-size: 0.9rem;
        padding: 0.95rem 1rem;
        padding-right: 2.8rem;
    }

    .input-icon,
    .select-icon {
        right: 1rem;
    }

    .input-icon svg,
    .select-icon svg {
        width: 16px;
        height: 16px;
    }

    .textarea-wrapper textarea {
        min-height: 120px;
        padding: 1rem;
    }

    .form-footer {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        gap: 1.2rem;
    }

    .form-submit-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.75rem;
        letter-spacing: 1.2px;
    }

    .form-note {
        font-size: 0.75rem;
        justify-content: center;
        text-align: center;
    }

    .form-note svg {
        width: 14px;
        height: 14px;
    }

    .contact-info {
        gap: 1.2rem;
    }

    .info-card {
        padding: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }

    .info-card h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .info-card p {
        font-size: 0.85rem;
    }

    /* Footer - Mobile */
    footer {
        padding: 4rem 1.5rem 2.5rem;
    }

    .footer-brand-section {
        margin-bottom: 3rem;
        text-align: center;
    }

    .footer-logo h2 {
        font-size: 1.8rem;
    }

    .footer-tagline {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .footer-actions {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
    }

    .footer-cta {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.85rem 1.5rem;
    }

    .footer-social {
        justify-content: center;
        width: 100%;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }

    .footer-social a svg {
        width: 18px;
        height: 18px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .footer-col:last-child {
        grid-column: span 1;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .footer-col ul {
        gap: 0.6rem;
    }

    .footer-col ul li a {
        font-size: 0.85rem;
    }

    .footer-col ul li a:hover {
        padding-left: 4px;
    }

    .footer-contact-list {
        gap: 1rem;
    }

    .footer-contact-list li {
        padding: 0.9rem;
    }

    .footer-contact-list li svg {
        width: 16px;
        height: 16px;
    }

    .footer-contact-list li strong {
        font-size: 0.75rem;
    }

    .footer-contact-list li span {
        font-size: 0.85rem;
    }

    .footer-divider {
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        margin-left: 0;
    }

    .copyright,
    .mse-credit {
        font-size: 0.8rem;
    }

    .footer-brand::before {
        font-size: 2rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        gap: 0.8rem;
    }

    .copyright,
    .mse-credit {
        font-size: 0.75rem;
    }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-left: 1.5rem;
}

.lang-link {
    color: var(--col-slate);
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    font-weight: 500;
    padding: 0.3rem 0.5rem;
}

.lang-link:hover {
    opacity: 0.8;
}

.lang-link.active {
    opacity: 1;
    color: var(--col-moss);
    font-weight: 600;
    position: relative;
}

.lang-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--col-moss);
    border-radius: 2px;
}

.lang-divider {
    opacity: 0.3;
    color: var(--col-slate);
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-switcher .lang-link {
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
    color: var(--col-oat);
    opacity: 0.5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
}

.mobile-lang-switcher .lang-link:hover {
    opacity: 0.8;
}

.mobile-lang-switcher .lang-link.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--col-oat);
}

.mobile-lang-switcher .lang-divider {
    font-size: 1.1rem;
    color: var(--col-oat);
    opacity: 0.3;
}

/* Hide mobile lang switcher on desktop */
@media (min-width: 1025px) {
    .mobile-lang-switcher {
        display: none;
    }
}

/* Hide desktop lang switcher on mobile */
@media (max-width: 1024px) {
    .lang-switcher {
        display: none;
    }
}
