﻿/* =============================================
   FITANDFIT CLINIC — MAIN STYLESHEET
   Inspired by natural.clinic design system
   ============================================= */

/* ================================================================
   ██████████████████████  TEMA  ██████████████████████████████████
   Renkleri SADECE buradan değiştir — her yer otomatik güncellenir.

   HAZIR TEMALAR:
   ─ GOLD (varsayılan):
       --clr-accent:#c9a96e; --clr-accent-l:#e8c97a; --clr-accent-d:#a88a52; --clr-accent-ch:201,169,110;
   ─ TEAL:
       --clr-accent:#1d8a7a; --clr-accent-l:#25b09e; --clr-accent-d:#146b5e; --clr-accent-ch:29,138,122;
   ─ BLUE:
       --clr-accent:#4a90d9; --clr-accent-l:#6aaee8; --clr-accent-d:#3470b0; --clr-accent-ch:74,144,217;
   ─ ROSE:
       --clr-accent:#c96e8a; --clr-accent-l:#e07a9e; --clr-accent-d:#a85270; --clr-accent-ch:201,110,138;
   ─ PURPLE:
       --clr-accent:#8b5cf6; --clr-accent-l:#a78bfa; --clr-accent-d:#6d28d9; --clr-accent-ch:139,92,246;
   ─ EMERALD:
       --clr-accent:#10b981; --clr-accent-l:#34d399; --clr-accent-d:#059669; --clr-accent-ch:16,185,129;
   ████████████████████████████████████████████████████████████████ */
:root {

    /* ════ 1. AKSAN RENGİ ════════════════════════════════════════ */
    --clr-accent:    #45BDB5;    /* Ana aksan — logo mint/teal                    */
    --clr-accent-l:  #68CFC7;    /* Açık tonu — gradient ikinci rengi            */
    --clr-accent-d:  #1A8F87;    /* Koyu tonu — hover, shadow, icon bg          */
    --clr-accent-p:  #C8EEEC;    /* Soluk tonu — çok açık alanlar               */
    --clr-accent-ch: 69, 189, 181; /* rgba() için → rgba(var(--clr-accent-ch),0.15) */

    /* ════ 2. KOYU ARKA PLANLAR (Petrol-Teal tema) ══════════════
       bg-1 en koyu → bg-6 en açık koyu
       Logo arka plan tonundan türetilmiştir (#1A7A82 petrol)    */
    --clr-bg-1:    #071C22;    /* Hero, orbit, CTA — en koyu zemin             */
    --clr-bg-2:    #091F26;    /* Section zemin (koyu)                         */
    --clr-bg-3:    #0C2830;    /* Gradient başlangıç/bitiş                     */
    --clr-bg-4:    #112E38;    /* Standart koyu zemin                          */
    --clr-bg-5:    #183D48;    /* Kart, panel yüzeyi                           */
    --clr-bg-6:    #1E5060;    /* Border, ayırıcı                              */
    --clr-bg-1-ch: 7,  28,  34;    /* rgba(var(--clr-bg-1-ch), 0.8)            */
    --clr-bg-2-ch: 9,  31,  38;
    --clr-bg-3-ch: 12, 40,  48;
    --clr-bg-4-ch: 17, 46,  56;
    --clr-accent-d-ch: 26, 143, 135;

    /* ════ 3. AÇIK ARKA PLAN ════════════════════════════════════ */
    --clr-light:   #EEF8F7;    /* Beyaz bölümler (services, journey kartları)  */
    --clr-surface: #ffffff;    /* Kart içi beyaz                               */

    /* ════ 4. METİN ═════════════════════════════════════════════ */
    --clr-text-body:  #7a8a9a;  /* Gövde metni (koyu arka plan üzerinde)       */
    --clr-text-muted: #5a6a7a;  /* İkincil metin                               */
    --clr-text-light: #0d1018;  /* Açık bölüm başlıkları                       */
    --clr-white-ch:   255, 255, 255; /* rgba(var(--clr-white-ch), 0.5)         */
    --clr-black-ch:   0,   0,   0;   /* rgba(var(--clr-black-ch), 0.3)         */

    /* ════ 5. DURUM & DEKORATİF RENKLER ════════════════════════ */
    --clr-success:    #5acf93;
    --clr-error:      #f87171;
    --clr-success-ch: 90,  207, 147;
    --clr-error-ch:   248, 113, 113;
    /* Sayfa bölümlerine özgü dekoratif parıltılar */
    --clr-teal-ch:    140, 225, 215;  /* About / Contact teal glow              */
    --clr-rose-ch:    227, 155, 135;  /* Before-After / Contact rose glow       */
    --clr-silver-ch:  215, 215, 215;  /* Neutral/silver glow                    */
    /* Story slide ortam renkleri — logo teal tonları */
    --clr-slide-1-ch: 69,  189, 181;  /* Slide 1 — mint teal (logo rengi)       */
    --clr-slide-2-ch: 26,  143, 135;  /* Slide 2 — koyu teal                    */
    --clr-slide-3-ch: 100, 205, 198;  /* Slide 3 — açık teal                    */
    --clr-slide-4-ch: 45,  160, 152;  /* Slide 4 — orta teal                    */

    /* ════ 6. ALIAS'LAR (geriye uyumluluk — dokunma) ════════════ */
    --clr-gold:          var(--clr-accent);
    --clr-gold-light:    var(--clr-accent-l);
    --clr-gold-dark:     var(--clr-accent-d);
    --clr-gold-pale:     var(--clr-accent-p);
    --clr-gold-ch:       var(--clr-accent-ch);
    --primary-dark:      var(--clr-bg-4);
    --primary-medium:    var(--clr-bg-5);
    --primary-light:     var(--clr-bg-6);
    --accent-teal:       var(--clr-accent-d);
    --accent-teal-hover: var(--clr-accent);
    --accent-rose:       var(--clr-accent);
    --accent-peach:      var(--clr-accent-p);
    --text-body:         var(--clr-text-body);
    --text-dark:         var(--clr-bg-4);
    --text-white:        #ffffff;
    --border-color:      #D7D7D7;
    --card-radius:       20px;
    --btn-radius:        48px;
    --transition:        all 0.3s ease;
    --section-padding:   100px 0;

    /* ── Warm palette — ViewComponent section'ları için ortak tokenlar ── */
    --warm-bg:       #FAFAF8;
    --warm-cream:    #FAFAF8;
    --warm-dark:     #112E38;
    --warm-body:     #5a6a7a;
    --warm-teal:     #45BDB5;
    --warm-teal-d:   #1A8F87;
    --warm-teal-l:   #68CFC7;
    --warm-gold:     #45BDB5;
    --warm-gold-d:   #1A8F87;
    --warm-card:     #FFFFFF;
    --warm-border:   rgba(69,189,181,0.14);
    --warm-shadow:   0 2px 24px rgba(7,28,34,0.08);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
main { display: flow-root; } /* BFC: negatif margin collapse'ı body'ye sızdırmaz */

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.78;
    color: var(--text-body);
    background: #FAFAF8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'El Messiri', sans-serif;
    color: var(--primary-medium);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container-xl { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER
   ============================================= */
/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ── Üst bilgi şeridi ────────────────────────── */
#nav-topbar {
    background: rgba(8,20,18,0.72);
    backdrop-filter: blur(10px);
    border-bottom: none;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    overflow: hidden;
    max-height: 40px;
    opacity: 1;
}
#site-header.scrolled #nav-topbar {
    max-height: 0;
    opacity: 0;
}
.ntb-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    height: 36px; gap: 16px;
}
.ntb-left {
    display: flex; align-items: center; gap: 14px;
    font-size: 11px; color: rgba(255,255,255,0.45);
    font-family: 'Raleway', sans-serif; font-weight: 500;
    letter-spacing: 0.03em;
}
.ntb-left a, .ntb-left span {
    color: rgba(255,255,255,0.45);
    text-decoration: none; display: flex; align-items: center; gap: 6px;
    transition: color 0.2s;
}
.ntb-left a:hover { color: rgba(var(--clr-accent-ch),0.90); }
.ntb-left i { font-size: 10px; color: rgba(var(--clr-accent-ch),0.65); }
.ntb-sep { color: rgba(255,255,255,0.15) !important; }

.ntb-right {
    display: flex; align-items: center; gap: 10px;
}
.ntb-right > a {
    color: rgba(255,255,255,0.38);
    font-size: 13px; text-decoration: none;
    transition: color 0.2s;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
}
.ntb-right > a:hover { color: rgba(var(--clr-accent-ch),0.90); }
.ntb-right .lang-switcher { margin-left: 6px; }

/* ── Ana nav ─────────────────────────────────── */
#main-nav {
    position: relative;
    background: rgba(7, 28, 34, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(69,189,181,0.10);
    transition: background 0.5s ease, backdrop-filter 0.5s ease,
                box-shadow 0.5s ease, border-color 0.5s ease;
}

/* Anasayfa — scroll olmadan transparan */
#site-header.nav-init-transparent:not(.scrolled) #main-nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}
#site-header.nav-init-transparent:not(.scrolled) #main-nav::before { opacity: 0; }

/* Üst teal şerit — scroll sonrası belirginleşir */
#main-nav::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(var(--clr-accent-ch),0.0) 10%,
        rgba(var(--clr-accent-ch),0.7) 40%,
        rgba(var(--clr-accent-ch),1.0) 50%,
        rgba(var(--clr-accent-ch),0.7) 60%,
        rgba(var(--clr-accent-ch),0.0) 90%,
        transparent 100%);
    opacity: 0.4;
    transition: opacity 0.45s ease;
    z-index: 2;
}
#site-header.scrolled #main-nav::before { opacity: 1; }

#site-header.scrolled #main-nav {
    background: rgba(7, 28, 34, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 8px 48px rgba(0,0,0,0.40);
    border-bottom: none;
}

/* ── Nav Inner ───────────────────────────────── */
.nav-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center;
    justify-content: space-between;
    height: 80px; gap: 24px;
    transition: height 0.4s cubic-bezier(0.4,0,0.2,1);
}
#site-header.scrolled .nav-inner { height: 66px; }

/* ── Logo ─────────────────────────────────────── */
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.site-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
    transition: height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, transform 0.3s;
}
#site-header.scrolled .site-logo-img { height: 48px; }
.site-logo:hover .site-logo-img {
    opacity: 0.88;
    transform: translateY(-1px);
}
.footer-logo-img { height: 54px; width: auto; display: block; object-fit: contain; }

/* ── Nav Links ────────────────────────────────── */
.nav-links {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 0;
}
.nav-item { position: relative; }
.nav-item > a {
    position: relative;
    display: flex; align-items: center; gap: 5px;
    padding: 8px 15px;
    color: rgba(255,255,255,0.80);
    font-size: 11.5px; font-weight: 600;
    font-family: 'Raleway', sans-serif;
    white-space: nowrap; letter-spacing: 0.10em;
    text-transform: uppercase;
    transition: color 0.25s;
}
.nav-item > a::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 1px;
    background: var(--clr-accent);
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1),
                right 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-item > a:hover { color: #fff; }
.nav-item > a:hover::after { left: 15px; right: 15px; }
.nav-item.active > a { color: var(--clr-accent); }
.nav-item.active > a::after { left: 15px; right: 15px; }

.nav-item > a .dropdown-arrow {
    font-size: 8px; opacity: 0.45;
    transition: transform 0.25s, opacity 0.25s;
}
.nav-item:hover > a .dropdown-arrow { transform: rotate(180deg); opacity: 0.9; }

/* ── Dropdown ─────────────────────────────────── */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(var(--clr-bg-4-ch),0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--clr-gold-ch),0.16);
    border-radius: 14px;
    min-width: 210px;
    /* padding-top: gap + inner padding — boşluğu görsel değiştirmeden kapatır */
    padding: 8px;
    padding-top: 16px;
    box-shadow: 0 20px 56px rgba(var(--clr-black-ch),0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
    pointer-events: none;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: 7px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 9px; height: 9px;
    background: rgba(var(--clr-bg-4-ch),0.98);
    border-left: 1px solid rgba(var(--clr-gold-ch),0.16);
    border-top: 1px solid rgba(var(--clr-gold-ch),0.16);
}
.dropdown li a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 13px;
    color: rgba(var(--clr-white-ch),0.55);
    font-size: 12.5px; font-family: 'Raleway', sans-serif;
    font-weight: 600; letter-spacing: 0.03em;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.dropdown li a:hover { color: #fff; background: rgba(var(--clr-gold-ch),0.10); }
.nav-item:hover > .dropdown {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
/* Üst menü ile dropdown arasındaki boşluğu mouse için köprüler */
.has-dropdown > a::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0; right: 0;
    height: 16px;
}
.dropdown .nav-item > .dropdown {
    top: 0; left: calc(100% + 6px);
    transform: translateX(-6px);
    z-index: 300;
}
.dropdown .nav-item > .dropdown::before { display: none; }
.dropdown .nav-item > .dropdown.dropdown-open {
    opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto;
}
.dropdown .nav-item > a .dropdown-arrow { transform: rotate(-90deg); }

/* ── Sağ taraf ────────────────────────────────── */
.nav-right {
    display: flex; align-items: center;
    gap: 14px; flex-shrink: 0;
}

/* ── CTA butonu ───────────────────────────────── */
.btn-consultation {
    display: inline-flex; align-items: center; gap: 9px;
    background: linear-gradient(135deg, var(--clr-accent-d), var(--clr-accent));
    border: none;
    color: #fff !important;
    font-family: 'Raleway', sans-serif;
    font-size: 11px; font-weight: 800;
    padding: 11px 24px;
    border-radius: 50px;
    white-space: nowrap; flex-shrink: 0;
    letter-spacing: 0.12em; text-transform: uppercase;
    transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(var(--clr-accent-ch),0.28);
}
.btn-consultation i { font-size: 13px; }
.btn-consultation:hover {
    background: linear-gradient(135deg, #12736d, var(--clr-accent-d));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--clr-accent-ch),0.42);
    color: #fff !important;
}

/* ── Mobile Toggle ────────────────────────────── */
.mobile-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 6px; z-index: 1010;
}
.mobile-toggle span {
    display: block; border-radius: 2px;
    background: rgba(var(--clr-white-ch),0.80);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.25s, width 0.3s;
}
.mobile-toggle span:nth-child(1) { width: 24px; height: 1.5px; }
.mobile-toggle span:nth-child(2) { width: 16px; height: 1.5px; }
.mobile-toggle span:nth-child(3) { width: 24px; height: 1.5px; }
.nav-open .mobile-toggle,
.mp-panel-open .mobile-toggle { z-index: 1010; }
.nav-open .mobile-toggle span,
.mp-panel-open .mobile-toggle span { background: #3A5C58; }
.nav-open .mobile-toggle span:nth-child(1),
.mp-panel-open .mobile-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 24px; }
.nav-open .mobile-toggle span:nth-child(2),
.mp-panel-open .mobile-toggle span:nth-child(2) { opacity: 0; }
.nav-open .mobile-toggle span:nth-child(3),
.mp-panel-open .mobile-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 88px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1920&q=80');
    background-size: cover;
    background-position: center top;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(var(--clr-bg-3-ch),0.97) 0%,
        rgba(var(--clr-bg-4-ch),0.88) 45%,
        rgba(var(--clr-bg-4-ch),0.30) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
/* Ambient glow behind hero text */
.hero-content::before {
    content: '';
    position: absolute;
    top: -80px; left: -120px;
    width: 600px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(var(--clr-gold-ch),0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--clr-gold-ch),0.15);
    border: 1px solid rgba(var(--clr-gold-ch),0.4);
    color: var(--accent-rose);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 48px;
    margin-bottom: 28px;
    font-family: 'Raleway', sans-serif;
}
.hero-badge i { font-size: 12px; }
.hero-title {
    font-size: clamp(44px, 6.5vw, 88px);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -1px;
}
.hero-title span { color: inherit; }
.hero-subtitle {
    font-size: 18px;
    color: rgba(var(--clr-white-ch),0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
    font-family: 'Raleway', sans-serif;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-peach));
    color: var(--primary-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: var(--btn-radius);
    box-shadow: 0 6px 25px rgba(var(--clr-gold-ch),0.4);
    transition: var(--transition);
}
.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(var(--clr-gold-ch),0.5);
    color: var(--primary-dark);
}
.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(var(--clr-white-ch),0.1);
    border: 1px solid rgba(var(--clr-white-ch),0.3);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--btn-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.btn-secondary-hero:hover {
    background: rgba(var(--clr-white-ch),0.18);
    color: #fff;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(var(--clr-bg-2-ch),0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(var(--clr-white-ch),0.07);
}
.hero-stats-inner {
    display: flex;
}
.stat-card {
    flex: 1;
    padding: 22px 20px 20px;
    text-align: center;
    border-right: 1px solid rgba(var(--clr-white-ch),0.07);
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    position: relative;
}
.stat-card:last-child { border-right: none; }
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 2px;
    background: var(--accent-rose);
}
.stat-number {
    font-family: 'El Messiri', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
}
.stat-number span { color: rgba(var(--clr-white-ch),0.45); font-size: 0.6em; font-weight: 400; }
.stat-label {
    font-size: 11.5px;
    color: rgba(var(--clr-white-ch),0.5);
    margin-top: 5px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 80px;
    right: 48px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.hero-scroll-line {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(var(--clr-white-ch),0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%       { opacity: 0.9; transform: scaleY(0.6); }
}

/* =============================================
   SERVICES SECTION
   ============================================= */
#services {
    padding: var(--section-padding);
    background: #fff;
}
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--primary-medium);
    color: var(--primary-medium);
    font-family: 'Raleway', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    transition: background 0.25s ease, color 0.25s ease;
}
.btn-outline-dark:hover {
    background: var(--primary-medium);
    color: #fff;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-rose);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}
.section-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--accent-rose);
    flex-shrink: 0;
}
.section-tag::after { display: none; }
.section-title {
    font-size: clamp(28px, 3.5vw, 46px);
    color: var(--primary-medium);
    margin-bottom: 16px;
    line-height: 1.15;
}
.section-title span { color: inherit; }
.section-subtitle {
    font-size: 17px;
    color: var(--text-body);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'Raleway', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    display: block;
    text-decoration: none;
}
.service-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(var(--clr-bg-2-ch),0.95) 0%,
        rgba(var(--clr-bg-2-ch),0.55) 50%,
        rgba(var(--clr-bg-2-ch),0.15) 100%
    );
    transition: opacity 0.4s ease;
}
.service-card:hover .service-card-overlay {
    background: linear-gradient(
        to top,
        rgba(var(--clr-bg-2-ch),0.97) 0%,
        rgba(var(--clr-bg-2-ch),0.70) 55%,
        rgba(var(--clr-bg-2-ch),0.20) 100%
    );
}
.service-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 26px 30px;
    z-index: 2;
}
.service-icon {
    width: 44px; height: 44px;
    background: rgba(var(--clr-gold-ch),0.15);
    border: 1px solid rgba(var(--clr-gold-ch),0.35);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--accent-rose);
    border-color: var(--accent-rose);
}
.service-icon i { font-size: 18px; color: var(--accent-rose); transition: var(--transition); }
.service-card:hover .service-icon i { color: #fff; }
.service-name {
    font-family: 'El Messiri', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}
.service-desc {
    font-size: 13px;
    color: rgba(var(--clr-white-ch),0.65);
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: 'Raleway', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--accent-rose);
    font-size: 12.5px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}
.service-link i { font-size: 10px; transition: transform 0.3s; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* =============================================
   EXCELLENCE SECTION (Brand Statement)
   ============================================= */
#excellence {
    padding: var(--section-padding);
    background: var(--primary-medium);
    position: relative;
    overflow: hidden;
}
#excellence::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(var(--clr-white-ch),0.03);
}
#excellence::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -50px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(var(--clr-white-ch),0.03);
}
.excellence-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.excellence-content .section-tag { color: var(--accent-teal); }
.excellence-content .section-tag::before, .excellence-content .section-tag::after { background: var(--accent-teal); }
.excellence-title {
    font-size: clamp(30px, 3.5vw, 46px);
    color: #fff;
    margin-bottom: 24px;
}
.excellence-title span { color: inherit; }
.excellence-text {
    font-size: 16px;
    color: rgba(var(--clr-white-ch),0.75);
    line-height: 1.8;
    margin-bottom: 32px;
    font-family: 'Raleway', sans-serif;
}
.excellence-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}
.ex-stat {
    border-left: 2px solid var(--accent-teal);
    padding-left: 20px;
}
.ex-stat-num {
    font-family: 'El Messiri', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.ex-stat-num span { color: rgba(var(--clr-white-ch),0.5); font-size: 0.65em; }
.ex-stat-label {
    font-size: 13px;
    color: rgba(var(--clr-white-ch),0.6);
    font-family: 'Raleway', sans-serif;
    margin-top: 4px;
}
.btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-teal);
    color: var(--primary-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: var(--btn-radius);
    transition: var(--transition);
}
.btn-teal:hover { background: var(--accent-teal-hover); color: var(--primary-dark); transform: translateY(-2px); }
.excellence-image {
    position: relative;
}
.excellence-img-main {
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
}
.excellence-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.excellence-img-badge {
    position: absolute;
    bottom: 32px; left: -32px;
    background: var(--accent-teal);
    color: var(--primary-dark);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(var(--clr-black-ch),0.3);
}
.excellence-img-badge strong {
    display: block;
    font-family: 'El Messiri', sans-serif;
    font-size: 22px;
    font-weight: 700;
}
.excellence-img-badge span {
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
}

/* =============================================
   FEATURES SECTION (Transform Naturally)
   ============================================= */
#features {
    padding: var(--section-padding);
    background: var(--clr-light);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px 36px;
    border: 1px solid rgba(var(--clr-black-ch),0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent-rose);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(var(--clr-black-ch),0.09); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon-wrap {
    width: 54px; height: 54px;
    background: transparent;
    border: 1.5px solid var(--accent-rose);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover .feature-icon-wrap {
    background: var(--accent-rose);
    border-color: var(--accent-rose);
}
.feature-icon-wrap i { font-size: 22px; color: var(--accent-rose); transition: color 0.3s ease; }
.feature-card:hover .feature-icon-wrap i { color: #fff; }
.feature-title {
    font-family: 'El Messiri', sans-serif;
    font-size: 22px;
    color: var(--primary-medium);
    margin-bottom: 14px;
}
.feature-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 24px;
    font-family: 'Raleway', sans-serif;
}
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-medium);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    border-bottom: 1px solid var(--accent-rose);
    padding-bottom: 2px;
}
.feature-link i { font-size: 11px; transition: transform 0.3s; }
.feature-link:hover { color: var(--accent-rose); }
.feature-link:hover i { transform: translateX(4px); }

/* =============================================
   CLINIC HIGHLIGHTS SECTION
   ============================================= */
#clinic-highlights {
    padding: var(--section-padding);
    background: #fff;
}
.tab-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 40px 0 48px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 12px 28px;
    border-radius: var(--btn-radius);
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
    background: var(--primary-medium);
    color: #fff;
    border-color: var(--primary-medium);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.highlight-item {
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 280px;
    position: relative;
}
.highlight-item:first-child {
    grid-column: span 2;
    height: 380px;
}
.highlight-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.highlight-item:hover img { transform: scale(1.05); }

/* =============================================
   BEFORE & AFTER SECTION
   ============================================= */
#before-after {
    padding: var(--section-padding);
    background: var(--clr-surface);
}
.ba-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 40px 0 48px;
    flex-wrap: wrap;
}
.ba-tab-btn {
    padding: 10px 22px;
    border-radius: var(--btn-radius);
    font-family: 'Raleway', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
}
.ba-tab-btn.active, .ba-tab-btn:hover {
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-peach));
    color: var(--primary-dark);
    border-color: transparent;
}
.ba-content { display: none; }
.ba-content.active { display: block; }
.ba-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ba-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(var(--clr-black-ch),0.06);
    transition: var(--transition);
}
.ba-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(var(--clr-black-ch),0.12); }
.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 220px;
    position: relative;
}
.ba-images img { width: 100%; height: 100%; object-fit: cover; }
.ba-divider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    z-index: 2;
}
.ba-label {
    position: absolute;
    bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 3;
}
.ba-label.before { left: 10px; background: rgba(var(--clr-black-ch),0.5); color: #fff; }
.ba-label.after { right: 10px; background: var(--accent-rose); color: var(--primary-dark); }
.ba-info {
    padding: 16px 20px;
}
.ba-treatment {
    font-family: 'El Messiri', sans-serif;
    font-size: 16px;
    color: var(--primary-medium);
    margin-bottom: 4px;
}
.ba-details {
    font-size: 12px;
    color: var(--text-body);
    font-family: 'Raleway', sans-serif;
}

/* =============================================
   VIDEOS SECTION (Your Journey Unfiltered)
   ============================================= */
#videos-section {
    padding: var(--section-padding);
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}
#videos-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(var(--clr-gold-ch),0.06) 0%, transparent 60%);
}
#videos-section .section-tag { color: var(--accent-rose); }
#videos-section .section-tag::before, #videos-section .section-tag::after { background: var(--accent-rose); }
#videos-section .section-title { color: #fff; }
#videos-section .section-subtitle { color: rgba(var(--clr-white-ch),0.65); }
.videos-swiper {
    margin-top: 48px;
    padding-bottom: 56px;
}
.video-card {
    background: rgba(var(--clr-white-ch),0.06);
    border: 1px solid rgba(var(--clr-white-ch),0.08);
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}
.video-card:hover { transform: translateY(-6px); border-color: rgba(var(--clr-gold-ch),0.4); }
.video-thumb {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(var(--clr-gold-ch),0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
    transition: var(--transition);
}
.video-card:hover .video-play-btn { background: var(--accent-rose); transform: translate(-50%,-50%) scale(1.1); }
.view-count {
    position: absolute;
    bottom: 12px; right: 12px;
    background: rgba(var(--clr-black-ch),0.6);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex; align-items: center; gap: 5px;
}
.video-info {
    padding: 18px 20px;
}
.video-title {
    font-family: 'El Messiri', sans-serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.4;
}
.video-meta {
    font-size: 12px;
    color: rgba(var(--clr-white-ch),0.5);
    font-family: 'Raleway', sans-serif;
}
.swiper-pagination-bullet { background: rgba(var(--clr-white-ch),0.4); }
.swiper-pagination-bullet-active { background: var(--accent-rose); }

/* =============================================
   CELEBRITY SECTION
   ============================================= */
#celebrities {
    padding: var(--section-padding);
    background: #fff;
}
.celeb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.celeb-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 380px;
}
.celeb-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.celeb-card:hover .celeb-img { transform: scale(1.06); }
.celeb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(var(--clr-bg-4-ch),0.92) 100%);
}
.celeb-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(var(--clr-white-ch),0.15);
    border: 2px solid rgba(var(--clr-white-ch),0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #fff;
    transition: var(--transition);
    opacity: 0;
}
.celeb-card:hover .celeb-play { opacity: 1; }
.celeb-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 22px;
}
.celeb-name {
    font-family: 'El Messiri', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}
.celeb-treatment {
    font-size: 13px;
    color: var(--accent-rose);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
}
.celeb-quote {
    font-size: 12.5px;
    color: rgba(var(--clr-white-ch),0.7);
    font-family: 'Raleway', sans-serif;
    line-height: 1.5;
    display: none;
}
.celeb-card:hover .celeb-quote { display: block; }

/* =============================================
   DOCTORS SECTION
   ============================================= */
#doctors {
    padding: var(--section-padding);
    background: var(--clr-surface);
}
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.doctor-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 16px rgba(var(--clr-black-ch),0.06);
    border-bottom: 2px solid transparent;
}
.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(var(--clr-black-ch),0.1);
    border-bottom-color: var(--accent-rose);
}
.doctor-photo {
    height: 280px;
    overflow: hidden;
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.doctor-card:hover .doctor-photo img { transform: scale(1.05); }
.doctor-info {
    padding: 22px 22px 24px;
}
.doctor-name {
    font-family: 'El Messiri', sans-serif;
    font-size: 20px;
    color: var(--primary-medium);
    margin-bottom: 4px;
}
.doctor-spec {
    font-size: 13.5px;
    color: var(--accent-rose);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
}
.doctor-exp {
    font-size: 13px;
    color: var(--text-body);
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}
.doctor-exp i { color: var(--accent-teal); }

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
#testimonials {
    padding: var(--section-padding);
    background: var(--primary-medium);
}
#testimonials .section-tag { color: var(--accent-teal); }
#testimonials .section-tag::before, #testimonials .section-tag::after { background: var(--accent-teal); }
#testimonials .section-title { color: #fff; }
#testimonials .section-subtitle { color: rgba(var(--clr-white-ch),0.65); }
.testimonials-swiper {
    margin-top: 56px;
    padding-bottom: 60px;
}
.testimonial-card {
    background: rgba(var(--clr-white-ch),0.05);
    border: 1px solid rgba(var(--clr-white-ch),0.09);
    border-radius: 16px;
    padding: 36px 32px 32px;
    height: auto;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(var(--clr-gold-ch),0.3); }
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -8px; right: 24px;
    font-size: 100px;
    line-height: 1;
    color: rgba(var(--clr-gold-ch),0.10);
    font-family: 'El Messiri', sans-serif;
    pointer-events: none;
    user-select: none;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.testimonial-stars i { color: var(--accent-teal); font-size: 16px; }
.testimonial-text {
    font-size: 15px;
    color: rgba(var(--clr-white-ch),0.8);
    font-family: 'Raleway', sans-serif;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-rose);
}
.author-name {
    font-family: 'El Messiri', sans-serif;
    font-size: 17px;
    color: #fff;
}
.author-country {
    font-size: 12.5px;
    color: rgba(var(--clr-white-ch),0.55);
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* =============================================
   CONSULTATION CTA SECTION
   ============================================= */
#consultation {
    padding: var(--section-padding);
    background: #fff;
}
.consultation-inner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-radius: 28px;
    padding: 72px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.consultation-inner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(var(--clr-white-ch),0.03);
}
.consultation-content .section-tag { color: var(--accent-rose); }
.consultation-content .section-tag::before, .consultation-content .section-tag::after { background: var(--accent-rose); }
.consultation-title {
    font-size: clamp(28px, 3vw, 42px);
    color: #fff;
    margin-bottom: 16px;
}
.consultation-text {
    font-size: 16px;
    color: rgba(var(--clr-white-ch),0.7);
    line-height: 1.75;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 32px;
}
.consultation-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(var(--clr-white-ch),0.8);
    font-family: 'Raleway', sans-serif;
}
.perk-item i { color: var(--accent-rose); font-size: 16px; flex-shrink: 0; }

/* Consultation Form */
.consultation-form {
    background: rgba(var(--clr-white-ch),0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--clr-white-ch),0.1);
    border-radius: 20px;
    padding: 36px;
}
.form-title {
    font-family: 'El Messiri', sans-serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 16px;
}
.form-control {
    width: 100%;
    background: rgba(var(--clr-white-ch),0.08);
    border: 1px solid rgba(var(--clr-white-ch),0.15);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}
.form-control::placeholder { color: rgba(var(--clr-white-ch),0.4); }
.form-control:focus { border-color: var(--accent-rose); background: rgba(var(--clr-white-ch),0.12); }
select.form-control option { background: var(--primary-dark); color: #fff; }
textarea.form-control { color: #fff; -webkit-text-fill-color: #fff; caret-color: #fff; }

/* ── Consultation form inputs — Bootstrap override ── */
#consultation .form-control,
#consultation input.form-control,
#consultation textarea.form-control,
#consultation select.form-control {
    background: rgba(255,255,255,0.10);
    background-color: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.18);
    color: #fff;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
}
#consultation .form-control::placeholder {
    color: rgba(255,255,255,0.45);
    -webkit-text-fill-color: rgba(255,255,255,0.45);
}
#consultation .form-control:focus {
    background: rgba(255,255,255,0.16);
    background-color: rgba(255,255,255,0.16);
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(var(--clr-accent-ch),0.18);
}
#consultation select.form-control option {
    background: #0F2A34;
    color: #fff;
}
#consultation input.form-control:-webkit-autofill,
#consultation input.form-control:-webkit-autofill:hover,
#consultation input.form-control:-webkit-autofill:focus,
#consultation input.form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(30,60,70,0.95) inset;
    box-shadow: 0 0 0 1000px rgba(30,60,70,0.95) inset;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
    border-color: rgba(255,255,255,0.18);
    transition: background-color 9999s ease-in-out 0s;
}
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-peach));
    color: var(--primary-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(var(--clr-gold-ch),0.4); }

/* =============================================
   FOOTER
   ============================================= */
/* ═══════════════════════════════════════════════
   FOOTER — Premium Redesign
═══════════════════════════════════════════════ */
#site-footer {
    background: #071C22;
    position: relative;
    overflow: hidden;
}
/* Teal top line */
#site-footer::before {
    content: '';
    display: block; height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--clr-accent-d) 25%, var(--clr-accent) 50%, var(--clr-accent-d) 75%, transparent 100%);
}
/* Giant watermark text */
#site-footer::after {
    content: 'FIT&FIT';
    position: absolute; bottom: -10px; left: 50%;
    transform: translateX(-50%);
    font-family: 'El Messiri', serif;
    font-size: clamp(72px, 13vw, 170px);
    font-weight: 700; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.022);
    white-space: nowrap;
    pointer-events: none; user-select: none; line-height: 1;
    z-index: 0;
}

/* ── Trust Strip ──────────────────────────────── */
.ft-trust {
    border-bottom: 1px solid rgba(255,255,255,0.055);
    position: relative; z-index: 1;
}
.ft-trust-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 48px;
    display: flex; align-items: stretch; flex-wrap: wrap;
}
.ft-trust-item {
    flex: 1; min-width: 140px;
    display: flex; align-items: center; gap: 14px;
    padding: 22px 28px;
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.055);
}
.ft-trust-item:last-child { border-right: none; }
.ft-trust-sym {
    font-size: 22px; line-height: 1;
    color: var(--clr-accent);
    flex-shrink: 0;
}
.ft-trust-num {
    font-family: 'El Messiri', serif;
    font-size: 22px; font-weight: 600;
    color: #fff; line-height: 1; display: block;
}
.ft-trust-lbl {
    font-size: 10.5px; letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    font-family: 'Raleway', sans-serif;
    display: block; margin-top: 3px;
}

/* ── Main Grid ────────────────────────────────── */
.ft-main {
    padding: 68px 0 52px;
    position: relative; z-index: 1;
}
.ft-main-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
}

/* ── Brand Column ─────────────────────────────── */
.ft-brand-logo { display: inline-block; margin-bottom: 18px; }
.ft-brand-logo img { height: 52px; width: auto; }
.ft-brand-desc {
    font-size: 13.5px; font-family: 'Raleway', sans-serif;
    color: rgba(255,255,255,0.36); line-height: 1.9;
    max-width: 300px; margin-bottom: 24px;
}

/* Credential pill badges */
.ft-creds {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 30px;
}
.ft-cred {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 5px; padding: 5px 11px;
    font-size: 10px; letter-spacing: 0.07em; font-weight: 600;
    color: rgba(255,255,255,0.42); font-family: 'Raleway', sans-serif;
    white-space: nowrap;
}
.ft-cred-sym { color: var(--clr-accent); font-size: 11px; }

/* Social icons */
.ft-social { display: flex; gap: 8px; }
.ft-social a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.38); font-size: 15px;
    transition: all 0.3s ease;
}
.ft-social a:hover {
    background: rgba(69,189,181,0.14);
    border-color: rgba(69,189,181,0.45);
    color: #45BDB5;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(69,189,181,0.18);
}

/* ── Link Column ──────────────────────────────── */
.ft-col-title {
    font-family: 'Raleway', sans-serif;
    font-size: 9.5px; font-weight: 700;
    letter-spacing: 0.30em; text-transform: uppercase;
    color: var(--clr-accent); margin-bottom: 22px;
    display: flex; align-items: center; gap: 10px;
}
.ft-col-title::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(to right, rgba(var(--clr-accent-ch),0.3), transparent);
}
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 11px; }
.ft-col ul li a {
    font-size: 13.5px; font-family: 'Raleway', sans-serif;
    color: rgba(255,255,255,0.40);
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.2s, padding-left 0.2s;
}
.ft-col ul li a::before {
    content: '›';
    color: rgba(var(--clr-accent-ch),0.4); font-size: 17px; line-height: 1;
    transition: color 0.2s;
}
.ft-col ul li a:hover { color: rgba(255,255,255,0.82); padding-left: 3px; }
.ft-col ul li a:hover::before { color: var(--clr-accent); }

/* ── Contact Column ───────────────────────────── */
.ft-contact-list { list-style: none; }
.ft-contact-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px;
}
.ft-ci {
    width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px;
    background: rgba(69,189,181,0.08);
    border: 1px solid rgba(69,189,181,0.16);
    display: flex; align-items: center; justify-content: center;
    color: #45BDB5; font-size: 13px;
}
.ft-contact-list li span,
.ft-contact-list li a {
    font-size: 13px; font-family: 'Raleway', sans-serif;
    color: rgba(255,255,255,0.42); line-height: 1.6; padding-top: 7px;
}
.ft-contact-list li a:hover { color: #fff; }

/* ── Bottom Bar ───────────────────────────────── */
.ft-bottom {
    border-top: 1px solid rgba(255,255,255,0.055);
    padding: 18px 0;
    position: relative; z-index: 1;
}
.ft-bottom-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px;
}
.ft-copy {
    font-size: 11.5px; font-family: 'Raleway', sans-serif;
    color: rgba(255,255,255,0.20);
}
.ft-legal { display: flex; align-items: center; gap: 16px; }
.ft-legal a {
    font-size: 11.5px; font-family: 'Raleway', sans-serif;
    color: rgba(255,255,255,0.20); transition: color 0.2s;
}
.ft-legal a:hover { color: rgba(255,255,255,0.55); }
.ft-legal-sep { color: rgba(255,255,255,0.12); font-size: 10px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .doctors-grid, .celeb-grid { grid-template-columns: repeat(2, 1fr); }
    .ba-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-item:first-child { grid-column: span 2; }
}

@media (max-width: 992px) {
    :root { --section-padding: 70px 0; }
    .excellence-inner { grid-template-columns: 1fr; gap: 48px; }
    .excellence-image { display: none; }
    .consultation-inner { grid-template-columns: 1fr; padding: 48px 36px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-right .btn-consultation { display: none; }
    .mobile-toggle { display: flex; }
    .nav-inner { height: 68px; }
    .site-logo-img { height: 52px; }
    #nav-topbar { display: none; }
    /* Footer */
    .ft-main-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ft-main-inner > .ft-brand { grid-column: 1 / -1; }
    .ft-trust-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.055); }
    .ft-trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.055); }
    .ft-trust-item:nth-child(even) { border-right: none; }
}

@media (max-width: 768px) {
    .ft-trust { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .doctors-grid { grid-template-columns: 1fr 1fr; }
    .celeb-grid { grid-template-columns: 1fr 1fr; }
    .ba-grid { grid-template-columns: 1fr 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .highlight-item:first-child { grid-column: span 1; height: 280px; }
    .hero-stats-inner { flex-wrap: wrap; }
    .stat-card { min-width: 45%; }
    .excellence-stats { grid-template-columns: 1fr 1fr; }
    /* Footer */
    .ft-main-inner { grid-template-columns: 1fr; gap: 32px; }
    .ft-main-inner > .ft-brand { grid-column: auto; }
    .ft-brand-desc { max-width: 100%; }
}

@media (max-width: 576px) {
    :root { --section-padding: 56px 0; }
    .hero-title { font-size: 34px; }
    .hero-scroll { display: none; }
    .hero-stats-inner { flex-wrap: wrap; }
    .stat-card { min-width: 50%; border-bottom: 1px solid rgba(var(--clr-white-ch),0.07); }
    .doctors-grid, .celeb-grid, .ba-grid { grid-template-columns: 1fr; }
    .consultation-inner { padding: 36px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    /* Footer */
    .ft-trust-item { min-width: 100%; border-right: none; }
    .ft-main-inner, .ft-trust-inner, .ft-bottom-inner { padding: 0 24px; }
    .ft-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Mobile Nav — full-screen overlay ─────────────────────── */
.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: #ffffff;
    padding: 100px 36px 48px;
    gap: 0;
    z-index: 1005;
    overflow-y: auto;
    align-items: stretch;
    animation: mobileNavIn 0.28s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Ana menü linkleri */
.nav-open .nav-links .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'El Messiri', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    padding: 18px 0;
    border-bottom: 1px solid rgba(58,92,88,0.1);
    border-radius: 0;
    color: #3A5C58;
    transition: color 0.2s;
    overflow: visible;
}
.nav-open .nav-links .nav-item > a::after { display: none; }
.nav-open .nav-links .nav-item > a:hover { color: var(--clr-accent); }

/* Ok ikonu */
.nav-open .nav-links .nav-item .dropdown-arrow {
    font-size: 11px;
    color: rgba(58,92,88,0.4);
}

/* Dropdown */
.nav-open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #EEF8F7;
    border: none;
    border-radius: 10px;
    padding: 8px 20px 12px;
    backdrop-filter: none;
    pointer-events: auto;
    min-width: unset;
    margin-bottom: 8px;
}
.nav-open .dropdown::before { display: none; }
.nav-open .dropdown li a {
    display: block;
    padding: 11px 0;
    border-radius: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #4A6260;
    border-bottom: 1px solid rgba(58,92,88,0.07);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-open .dropdown li:last-child a { border-bottom: none; }
.nav-open .dropdown li a:hover { background: transparent; color: #45BDB5; }

/* Free Consultation butonu */
.nav-open .nav-right .btn-consultation {
    display: flex !important;
    margin-top: 32px;
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 16px 24px;
    border-radius: 50px;
    background: #3A5C58;
    color: #fff;
    border: none;
}

/* ── Language Switcher ──────────────────────────────────────────────────────── */
.lang-switcher { display: flex; align-items: center; gap: 2px; }
.lang-item {
    display: flex; align-items: center;
    padding: 4px 6px; border-radius: 6px;
    text-decoration: none; color: rgba(var(--clr-white-ch),0.7);
    font-size: 12px; font-weight: 500; transition: all 0.2s;
}
.lang-item:hover, .lang-item.active { background: rgba(var(--clr-white-ch),0.15); border-radius: 6px; }
.lang-item.active { outline: 2px solid rgba(var(--clr-white-ch),0.4); }
.lang-flag-img { width: 28px; height: 19px; object-fit: cover; border-radius: 3px; display: block; box-shadow: 0 1px 3px rgba(var(--clr-black-ch),0.35); }

/* =============================================
   ABOUT PAGE
   ============================================= */

/* ---- Scroll Animasyon Sistemi ---- */
[data-anim] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="up"]    { transform: translateY(40px); }
[data-anim="left"]  { transform: translateX(-50px); }
[data-anim="right"] { transform: translateX(50px); }
[data-anim].anim-visible {
    opacity: 1;
    transform: translate(0);
}

/* =====================================================
   PAGE HERO — Generic animated section header
   Reusable on every content page — no background images.
   Usage: <section class="page-hero [page]-hero">
            <div class="[page]-hero-overlay"></div>
            <div class="[page]-hero-pattern"></div>
          </section>
   ===================================================== */

.page-hero,
.about-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-bg-3) 0%, var(--clr-bg-3) 55%, var(--clr-bg-3) 100%);
    isolation: isolate;
    padding: 120px 0 80px;
}
.page-hero .container-xl,
.about-hero .container-xl { position: relative; z-index: 2; }

/* Ambient orb — top right, teal glow */
.page-hero::before,
.about-hero::before {
    content: '';
    position: absolute;
    top: -180px; right: -140px;
    width: 580px; height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%,
        rgba(var(--clr-gold-ch),0.24) 0%, transparent 65%);
    animation: heroOrbDrift 14s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Ambient orb — bottom left, rose glow */
.page-hero::after,
.about-hero::after {
    content: '';
    position: absolute;
    bottom: -220px; left: -160px;
    width: 680px; height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 60%,
        rgba(var(--clr-gold-ch),0.15) 0%, transparent 65%);
    animation: heroOrbDrift 18s 4s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

/* Dot grid */
.page-hero-pattern,
.about-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(var(--clr-white-ch),0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

/* Floating diamond — top right area */
.page-hero-pattern::before,
.about-hero-pattern::before {
    content: '';
    position: absolute;
    top: 22%; right: 24%;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(var(--clr-gold-ch),0.24);
    transform: rotate(45deg);
    animation: heroShapeFloat 10s ease-in-out infinite;
}

/* Floating diamond — bottom left area */
.page-hero-pattern::after,
.about-hero-pattern::after {
    content: '';
    position: absolute;
    bottom: 28%; left: 16%;
    width: 22px; height: 22px;
    border: 1.5px solid rgba(var(--clr-white-ch),0.12);
    transform: rotate(45deg);
    animation: heroShapeFloat 13s 4s ease-in-out infinite reverse;
}

/* Pulsing ring layers */
.page-hero-overlay,
.about-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.page-hero-overlay::before,
.about-hero-overlay::before {
    content: '';
    position: absolute;
    top: 14%; right: 8%;
    width: 320px; height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(var(--clr-gold-ch),0.14);
    animation: heroPulseRing 8s ease-in-out infinite;
}
.page-hero-overlay::after,
.about-hero-overlay::after {
    content: '';
    position: absolute;
    top: 14%; right: 8%;
    width: 190px; height: 190px;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--clr-gold-ch),0.26);
    animation: heroPulseRing 8s 1.4s ease-in-out infinite;
}

@keyframes heroOrbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%       { transform: translate(-25px, 35px) scale(1.04); }
    50%       { transform: translate(18px, -22px) scale(0.96); }
    75%       { transform: translate(-12px, 18px) scale(1.02); }
}
@keyframes heroPulseRing {
    0%        { transform: scale(1);   opacity: 0.8; }
    70%, 100% { transform: scale(1.7); opacity: 0; }
}
@keyframes heroShapeFloat {
    0%, 100% { transform: rotate(45deg) translate(0, 0);       opacity: 0.5; }
    50%      { transform: rotate(58deg) translate(-10px, 14px); opacity: 1; }
}

/* =====================================================
   HERO 3D SCENE — Apple-style floating objects
   Injected automatically via JS into every .page-hero
   ===================================================== */

.hero-3d-scene {
    position: absolute;
    inset: 0;
    perspective: 1100px;
    perspective-origin: 72% 48%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Inner stage — rotates on mouse move */
.hero-3d-inner {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* ---- Main Orb ---- */
.h3d-orb {
    position: absolute;
    border-radius: 50%;
    right: 6%;
    top: 50%;
    width: 400px;
    height: 400px;
    transform: translateY(-50%) translateZ(0px);
    background:
        radial-gradient(circle at 34% 30%,
            rgba(var(--clr-teal-ch),0.5) 0%,
            rgba(var(--clr-gold-ch),0.3) 28%,
            rgba(var(--clr-bg-4-ch),0.18) 55%,
            transparent 78%);
    box-shadow:
        0 0 70px  rgba(var(--clr-gold-ch),0.35),
        0 0 140px rgba(var(--clr-gold-ch),0.18),
        0 0 280px rgba(var(--clr-gold-ch),0.09),
        inset 0 0 80px rgba(var(--clr-teal-ch),0.12);
    animation: h3dOrb 8s ease-in-out infinite;
}
@keyframes h3dOrb {
    0%, 100% {
        transform: translateY(-50%) translateZ(0px) scale(1);
        box-shadow: 0 0 70px rgba(var(--clr-gold-ch),0.35), 0 0 140px rgba(var(--clr-gold-ch),0.18), 0 0 280px rgba(var(--clr-gold-ch),0.09), inset 0 0 80px rgba(var(--clr-teal-ch),0.12);
    }
    50% {
        transform: translateY(-50%) translateZ(90px) scale(1.08);
        box-shadow: 0 0 110px rgba(var(--clr-gold-ch),0.5), 0 0 200px rgba(var(--clr-gold-ch),0.28), 0 0 360px rgba(var(--clr-gold-ch),0.14), inset 0 0 110px rgba(var(--clr-teal-ch),0.18);
    }
}

/* ---- Orbit Ring 1 ---- */
.h3d-ring-1 {
    position: absolute;
    right: calc(6% - 100px);
    top: 50%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--clr-gold-ch),0.28);
    box-shadow: 0 0 18px rgba(var(--clr-gold-ch),0.12);
    transform: translateY(-50%) translateZ(30px) rotateX(74deg);
    animation: h3dRing1 16s linear infinite;
}
@keyframes h3dRing1 {
    from { transform: translateY(-50%) translateZ(30px) rotateX(74deg) rotateZ(0deg); }
    to   { transform: translateY(-50%) translateZ(30px) rotateX(74deg) rotateZ(360deg); }
}

/* ---- Orbit Ring 2 ---- */
.h3d-ring-2 {
    position: absolute;
    right: calc(6% - 170px);
    top: 50%;
    width: 740px;
    height: 740px;
    border-radius: 50%;
    border: 0.5px solid rgba(var(--clr-gold-ch),0.14);
    transform: translateY(-50%) translateZ(-30px) rotateX(68deg) rotateZ(30deg);
    animation: h3dRing2 24s linear infinite reverse;
}
@keyframes h3dRing2 {
    from { transform: translateY(-50%) translateZ(-30px) rotateX(68deg) rotateZ(0deg); }
    to   { transform: translateY(-50%) translateZ(-30px) rotateX(68deg) rotateZ(360deg); }
}

/* ---- Medical cross ---- */
.h3d-cross {
    position: absolute;
    right: 26%;
    top: 20%;
    width: 44px;
    height: 44px;
    transform: translateZ(60px) rotate(0deg);
    animation: h3dCross 11s ease-in-out infinite;
}
.h3d-cross::before, .h3d-cross::after {
    content: '';
    position: absolute;
    background: rgba(var(--clr-gold-ch),0.45);
    border-radius: 3px;
    box-shadow: 0 0 14px rgba(var(--clr-gold-ch),0.3);
}
.h3d-cross::before { left: 50%; top: 0; width: 5px; height: 100%; transform: translateX(-50%); }
.h3d-cross::after  { top: 50%; left: 0; height: 5px; width: 100%; transform: translateY(-50%); }
@keyframes h3dCross {
    0%, 100% { transform: translateZ(60px)  translateY(0px)   rotate(0deg);  opacity: 0.6; }
    33%       { transform: translateZ(110px) translateY(-18px) rotate(10deg); opacity: 1;   }
    66%       { transform: translateZ(20px)  translateY(12px)  rotate(-6deg); opacity: 0.4; }
}

/* ---- Second cross (small, bottom-left) ---- */
.h3d-cross-2 {
    position: absolute;
    right: 55%;
    top: 70%;
    width: 26px;
    height: 26px;
    transform: translateZ(40px);
    animation: h3dCross 14s 3s ease-in-out infinite reverse;
}
.h3d-cross-2::before, .h3d-cross-2::after {
    content: '';
    position: absolute;
    background: rgba(var(--clr-rose-ch),0.4);
    border-radius: 2px;
}
.h3d-cross-2::before { left: 50%; top: 0; width: 3px; height: 100%; transform: translateX(-50%); }
.h3d-cross-2::after  { top: 50%; left: 0; height: 3px; width: 100%; transform: translateY(-50%); }

/* ---- Floating gems / diamonds ---- */
.h3d-gem {
    position: absolute;
    border-radius: 3px;
    transform-origin: center;
}
.h3d-gem-1 {
    right: 18%; top: 28%;
    width: 18px; height: 18px;
    background: linear-gradient(135deg, rgba(var(--clr-gold-ch),0.5), rgba(var(--clr-gold-ch),0.1));
    box-shadow: 0 0 16px rgba(var(--clr-gold-ch),0.4);
    transform: translateZ(80px) rotate(45deg);
    animation: h3dGem1 9s ease-in-out infinite;
}
.h3d-gem-2 {
    right: 42%; top: 15%;
    width: 12px; height: 12px;
    background: linear-gradient(135deg, rgba(var(--clr-rose-ch),0.6), rgba(var(--clr-rose-ch),0.1));
    box-shadow: 0 0 12px rgba(var(--clr-gold-ch),0.35);
    transform: translateZ(120px) rotate(45deg);
    animation: h3dGem2 7s ease-in-out infinite 1s;
}
.h3d-gem-3 {
    right: 14%; top: 72%;
    width: 22px; height: 22px;
    background: linear-gradient(135deg, rgba(var(--clr-gold-ch),0.35), transparent);
    border: 1px solid rgba(var(--clr-gold-ch),0.4);
    transform: translateZ(50px) rotate(45deg);
    animation: h3dGem3 12s ease-in-out infinite 2s;
}
.h3d-gem-4 {
    right: 48%; top: 60%;
    width: 9px; height: 9px;
    background: rgba(var(--clr-white-ch),0.25);
    box-shadow: 0 0 10px rgba(var(--clr-white-ch),0.2);
    transform: translateZ(150px) rotate(45deg);
    animation: h3dGem1 6s ease-in-out infinite 0.5s;
}
@keyframes h3dGem1 {
    0%, 100% { transform: translateZ(80px)  translateY(0px)   rotate(45deg); opacity: 0.7; }
    50%       { transform: translateZ(160px) translateY(-14px) rotate(60deg); opacity: 1;   }
}
@keyframes h3dGem2 {
    0%, 100% { transform: translateZ(120px) translateY(0px)  rotate(45deg); opacity: 0.8; }
    50%       { transform: translateZ(40px)  translateY(16px) rotate(30deg); opacity: 0.4; }
}
@keyframes h3dGem3 {
    0%, 100% { transform: translateZ(50px)  translateY(0px)   rotate(45deg);  opacity: 0.5; }
    50%       { transform: translateZ(130px) translateY(-20px) rotate(65deg);  opacity: 0.9; }
}

/* ---- Floating dots ---- */
.h3d-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--clr-gold-ch),0.7);
}
.h3d-dot-1 { right: 32%; top: 42%; width: 6px; height: 6px; animation: h3dDotA 10s ease-in-out infinite; }
.h3d-dot-2 { right: 22%; top: 55%; width: 4px; height: 4px; background: rgba(var(--clr-white-ch),0.4); animation: h3dDotB 8s  ease-in-out infinite 1.5s; }
.h3d-dot-3 { right: 38%; top: 76%; width: 7px; height: 7px; background: rgba(var(--clr-rose-ch),0.6); animation: h3dDotA 13s ease-in-out infinite 3s; }
.h3d-dot-4 { right: 60%; top: 35%; width: 5px; height: 5px; animation: h3dDotB 11s ease-in-out infinite 0.8s; }
.h3d-dot-5 { right: 10%; top: 35%; width: 8px; height: 8px; background: rgba(var(--clr-gold-ch),0.5); animation: h3dDotA 9s  ease-in-out infinite 2s; }
@keyframes h3dDotA {
    0%, 100% { transform: translateZ(0px)   translate(0, 0);      opacity: 0.5; }
    50%       { transform: translateZ(130px) translate(-10px, -14px); opacity: 1;   }
}
@keyframes h3dDotB {
    0%, 100% { transform: translateZ(100px) translate(0, 0);    opacity: 0.8; }
    50%       { transform: translateZ(-30px) translate(8px, 12px); opacity: 0.3; }
}

/* ---- About Hero layout (extends .page-hero) ---- */

.about-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
}

.about-hero-inner {
    display: block;
    max-width: 720px;
}

.about-hero-content {
    animation: aboutHeroIn 1s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes aboutHeroIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.about-tag { color: var(--accent-rose) !important; }
.about-tag::before, .about-tag::after { background: var(--accent-rose) !important; }

.about-hero-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 20px 0 24px;
}
.about-hero-title span { color: inherit; }

.about-hero-subtitle {
    font-size: clamp(16px, 1.7vw, 19px);
    color: rgba(var(--clr-white-ch),0.65);
    line-height: 1.75;
    font-family: 'Raleway', sans-serif;
    margin: 0 0 40px;
    max-width: 560px;
}

.about-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: rgba(var(--clr-white-ch),0.38);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
.about-breadcrumb a { color: rgba(var(--clr-white-ch),0.4); text-decoration: none; transition: color 0.2s; }
.about-breadcrumb a:hover { color: var(--accent-teal); }
.about-breadcrumb span:last-child { color: rgba(var(--clr-white-ch),0.8); font-weight: 600; }

.about-hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Portrait column hidden — replaced by 3D scene */
.about-hero-visual { display: none; }
.about-hero-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.about-hero-img-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 30px 70px rgba(var(--clr-black-ch),0.3);
}
.about-hero-badge {
    position: absolute;
    bottom: 28px;
    left: -24px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(var(--clr-bg-4-ch),0.2);
    min-width: 220px;
}
.about-hero-badge i {
    font-size: 1.8rem;
    color: var(--primary-medium);
    flex-shrink: 0;
}
.about-hero-badge strong {
    display: block;
    font-family: 'El Messiri', serif;
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 700;
}
.about-hero-badge span {
    font-size: 0.72rem;
    color: var(--text-body);
    font-family: 'Raleway', sans-serif;
}

/* ---- Misyon / Vizyon / Değerler ---- */
.about-mission {
    padding: var(--section-padding);
    background: var(--clr-light);
}
.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}
.mission-card {
    position: relative;
    padding: 44px 36px 40px;
    border-radius: var(--card-radius);
    background: #fff;
    border: 1.5px solid rgba(var(--clr-silver-ch),0.4);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.3s;
    overflow: hidden;
}
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(var(--clr-bg-4-ch),0.12);
    border-color: rgba(var(--clr-gold-ch),0.3);
}
/* Dekoratif gradient sol çizgi */
.mission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-rose), var(--accent-teal));
    opacity: 0;
    transition: opacity 0.3s;
}
.mission-card:hover::before { opacity: 1; }

.mission-card-num {
    font-family: 'El Messiri', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(var(--clr-gold-ch),0.1);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 28px;
    transition: color 0.3s;
}
.mission-card:hover .mission-card-num { color: rgba(var(--clr-gold-ch),0.2); }

.mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(var(--clr-gold-ch),0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-medium);
    margin-bottom: 24px;
    transition: background 0.3s, color 0.3s;
}
.mission-card:hover .mission-icon {
    background: linear-gradient(135deg, var(--primary-medium), var(--accent-teal));
    color: #fff;
}
.mission-card h3 {
    font-family: 'El Messiri', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 14px;
}
.mission-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}

/* ---- Hikaye / İçerik ---- */
.about-story {
    padding: var(--section-padding);
    background: #fff;
}
.about-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-story-image {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.about-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(var(--clr-bg-4-ch),0.16);
}
/* Köşe süsleri */
.about-story-image::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 80px; height: 80px;
    border-top: 3px solid var(--accent-rose);
    border-left: 3px solid var(--accent-rose);
    border-radius: 6px 0 0 0;
    pointer-events: none;
}
.about-story-image::after {
    content: '';
    position: absolute;
    bottom: -16px; right: -16px;
    width: 80px; height: 80px;
    border-bottom: 3px solid var(--accent-teal);
    border-right: 3px solid var(--accent-teal);
    border-radius: 0 0 6px 0;
    pointer-events: none;
}
.about-story-content .section-tag { color: var(--accent-teal); }
.about-story-content .section-tag::before,
.about-story-content .section-tag::after { background: var(--accent-teal); }
.about-story-body {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-top: 20px;
}
.about-story-body h2, .about-story-body h3 {
    font-family: 'El Messiri', serif;
    color: var(--text-dark);
    margin: 28px 0 12px;
}
.about-story-body p { margin-bottom: 16px; }

/* ---- Doktorlar ---- */
.about-doctors { padding: var(--section-padding); background: var(--clr-light); }
.doctor-bio {
    font-size: 0.82rem;
    color: var(--text-body);
    margin-top: 10px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- Sertifikalar ---- */
.about-certs { padding: var(--section-padding); background: #fff; }
.certs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.cert-card {
    width: 170px;
    background: var(--clr-light);
    border-radius: 16px;
    border: 1.5px solid rgba(var(--clr-silver-ch),0.5);
    padding: 28px 20px 18px;
    text-align: center;
    transition: var(--transition);
}
.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(var(--clr-bg-4-ch),0.1);
    border-color: rgba(var(--clr-gold-ch),0.3);
}
.cert-card img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 14px;
    filter: grayscale(30%);
    transition: filter 0.3s;
}
.cert-card:hover img { filter: grayscale(0); }
.cert-title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ---- Neden Biz ---- */
.about-why { padding: var(--section-padding); background: var(--clr-light); }
.about-why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-why-content .section-tag { color: var(--accent-teal); }
.about-why-content .section-tag::before,
.about-why-content .section-tag::after { background: var(--accent-teal); }

.about-why-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.55;
}
.why-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(var(--clr-gold-ch),0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    font-size: 0.7rem;
    margin-top: 1px;
    transition: background 0.3s;
}
.about-why-list li:hover .why-check {
    background: var(--accent-teal);
    color: #fff;
}

.about-why-visual { position: relative; }
.about-why-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.about-why-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(var(--clr-bg-4-ch),0.18);
}
.about-why-img-wrap .excellence-img-badge {
    bottom: 28px;
    right: -20px;
}
/* Köşe süsleri */
.about-why-img-wrap::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 72px; height: 72px;
    border-top: 3px solid var(--accent-rose);
    border-left: 3px solid var(--accent-rose);
    border-radius: 6px 0 0 0;
    pointer-events: none;
}
.about-why-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -16px; right: -16px;
    width: 72px; height: 72px;
    border-bottom: 3px solid var(--accent-teal);
    border-right: 3px solid var(--accent-teal);
    border-radius: 0 0 6px 0;
    pointer-events: none;
}

/* ---- CTA ---- */
.about-cta {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--clr-bg-3) 100%);
    overflow: hidden;
}
.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%233ebdb0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
}
.about-cta-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-peach));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0 auto 28px;
    box-shadow: 0 12px 32px rgba(var(--clr-gold-ch),0.35);
}
.about-cta-inner h2 {
    font-family: 'El Messiri', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.25;
}
.about-cta-inner p {
    font-size: 1rem;
    color: rgba(var(--clr-white-ch),0.6);
    line-height: 1.7;
    margin: 0 0 36px;
    font-family: 'Raleway', sans-serif;
}
.about-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---- btn-gold ---- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-rose), var(--clr-gold-dark));
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 34px;
    border-radius: var(--btn-radius);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(var(--clr-gold-ch),0.35);
}
.btn-gold:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(var(--clr-gold-ch),0.5);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .about-hero { min-height: 70vh; padding: 120px 0 80px; }
    .about-mission-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-story-image img { height: 360px; }
    .about-why-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-why-visual { order: -1; }
    .about-why-img-wrap img { height: 380px; }
    .about-why-img-wrap .excellence-img-badge { right: 20px; }
    /* Scale down 3D scene on tablets */
    .h3d-orb { width: 260px; height: 260px; right: 2%; }
    .h3d-ring-1 { width: 400px; height: 400px; right: calc(2% - 70px); }
    .h3d-ring-2 { width: 500px; height: 500px; right: calc(2% - 120px); }
}
@media (max-width: 768px) {
    .about-hero { min-height: auto; padding: 110px 0 70px; }
    .about-hero-inner { max-width: 100%; }
    /* Hide 3D scene on small screens — keep it light */
    .h3d-orb, .h3d-ring-1, .h3d-ring-2 { display: none; }
    .h3d-gem-3, .h3d-gem-4 { display: none; }
}
@media (max-width: 576px) {
    .about-hero-title { font-size: 2.2rem; letter-spacing: -0.3px; }
    .about-hero-btns { flex-direction: column; align-items: flex-start; }
    .about-hero-btns .btn-primary-hero,
    .about-hero-btns .btn-secondary-hero { width: 100%; justify-content: center; }
    .about-why-img-wrap img { height: 280px; }
    .about-cta-btns { flex-direction: column; }
    .about-cta-btns a { width: 100%; justify-content: center; }
    .certs-grid { gap: 14px; }
    .cert-card { width: 140px; }
}

/* =============================================================
   CONTACT PAGE
   ============================================================= */

/* ── Hero — dark teal (consistent with other pages) ──── */
#ct-hero {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, #071C22 0%, #0F2A34 100%);
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-h, 80px) + 40px) 0 80px;
    margin-top: -81px;
}
/* Radial glow */
#ct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 70% at 80% 50%, rgba(69,189,181,0.07) 0%, transparent 70%);
    z-index: 1; pointer-events: none;
}
/* Faint brand watermark */
#ct-hero::after {
    content: 'Contact';
    position: absolute; right: -1%; top: 50%; transform: translateY(-50%);
    font-family: 'El Messiri', serif;
    font-size: clamp(80px, 12vw, 180px); font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(69,189,181,0.06);
    user-select: none; pointer-events: none; white-space: nowrap; z-index: 0;
}

/* Decorative rings (same as About) */
.ct-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(69,189,181,0.18);
    pointer-events: none; z-index: 0;
}
.ct-ring--1 { width: 480px; height: 480px; top: -120px; right: -80px; }
.ct-ring--2 { width: 680px; height: 680px; top: -220px; right: -220px; border-color: rgba(69,189,181,0.10); }

/* Breadcrumb — inline flow (not absolute, flows with content) */
.ct-hero-nav {
    margin-bottom: 20px;
}
.ct-breadcrumb {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.50);
}
.ct-breadcrumb a { color: rgba(255,255,255,0.50); text-decoration: none; transition: color 0.2s; }
.ct-breadcrumb a:hover { color: var(--clr-accent); }
.ct-breadcrumb span:last-child { color: rgba(255,255,255,0.85); }

/* Hero content */
#ct-hero .container-xl { position: relative; z-index: 2; }
.ct-hero-inner { max-width: 680px; }

.ct-eyebrow {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--clr-accent); margin: 0 0 20px;
}
.ct-eyebrow-dot {
    display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: var(--clr-accent);
    box-shadow: 0 0 8px rgba(var(--clr-accent-ch),0.6);
}
.ct-hero-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700; color: #fff;
    line-height: 1.12; margin: 0 0 20px;
}
.ct-hero-title em { font-style: normal; color: var(--clr-accent); }
.ct-hero-sub {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: rgba(255,255,255,0.60); line-height: 1.80;
    max-width: 480px; margin: 0 0 40px;
}

/* Quick action chips in hero */
.ct-quick-links { display: flex; flex-wrap: wrap; gap: 12px; }
.ct-quick {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px; border-radius: 50px;
    font-size: 0.88rem; font-weight: 600;
    text-decoration: none; border: 1.5px solid;
    transition: var(--transition);
}
.ct-quick i { font-size: 1rem; flex-shrink: 0; }
.ct-quick--phone {
    background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.20); color: rgba(255,255,255,0.85);
}
.ct-quick--phone:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.35); }
.ct-quick--wa {
    background: rgba(37,211,102,0.10); border-color: rgba(37,211,102,0.35); color: #1a8c47;
}
.ct-quick--wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.ct-quick--mail {
    background: rgba(var(--clr-accent-ch),0.08); border-color: rgba(var(--clr-accent-ch),0.25); color: #1A8F87;
}
.ct-quick--mail:hover { background: var(--clr-accent-d); color: #fff; border-color: var(--clr-accent-d); }

/* ── Main: Form + Info two-column ────────────────────────── */
#ct-main { background: #FAFAF8; padding: 80px 0 100px; }
.ct-split {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: clamp(40px, 5vw, 72px);
    align-items: start;
}

/* Form card */
.ct-form-card {
    background: #fff;
    border-radius: 20px; padding: 48px 52px;
    border: 1px solid rgba(69,189,181,0.12);
    box-shadow: 0 8px 48px rgba(7,28,34,0.06);
}
.ct-section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--clr-accent-d); margin: 0 0 10px;
    display: flex; align-items: center; gap: 8px;
}
.ct-section-label::before {
    content: ''; display: inline-block; width: 5px; height: 5px;
    border-radius: 50%; background: var(--clr-accent);
}
.ct-section-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 700; color: #112E38;
    line-height: 1.18; margin: 0 0 28px;
}
.ct-section-title em { font-style: normal; color: var(--clr-accent-d); }

.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-field { margin-bottom: 14px; }
.ct-field--full { grid-column: 1 / -1; }
.ct-field label {
    display: block; font-size: 0.73rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #4A7070; margin-bottom: 6px;
}
.ct-req { color: var(--clr-accent-d); }
.ct-opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: #9BB5B5; font-size: 0.68rem; }
.ct-input {
    width: 100%; padding: 13px 16px;
    background: #F6FAFA;
    border: 1.5px solid rgba(var(--clr-accent-ch),0.18);
    border-radius: 12px; font-size: 0.92rem; font-family: inherit;
    color: var(--clr-bg-1); outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    appearance: none;
}
.ct-input:focus {
    border-color: var(--clr-accent); background: #fff;
    box-shadow: 0 0 0 3px rgba(var(--clr-accent-ch),0.12);
}
.ct-input::placeholder { color: rgba(var(--clr-accent-ch),0.38); }
select.ct-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A8F87' stroke-opacity='.6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
    background-color: #F6FAFA; padding-right: 40px;
}
select.ct-input option { background: #fff; color: var(--clr-bg-1); }

.ct-btn {
    margin-top: 8px; width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 28px;
    background: linear-gradient(135deg, var(--clr-accent-d), var(--clr-accent)); color: #fff;
    font-size: 0.95rem; font-weight: 700;
    border: none; border-radius: 12px;
    cursor: pointer; transition: var(--transition); letter-spacing: 0.03em;
}
.ct-btn:hover { background: var(--clr-accent-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(var(--clr-accent-ch),0.35); }
.ct-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.ct-feedback {
    display: flex; align-items: center; gap: 8px;
    border-radius: 10px; padding: 12px 16px;
    margin-bottom: 14px; font-size: 0.88rem;
}
.ct-feedback--ok  { background: rgba(var(--clr-success-ch),0.08); border: 1px solid rgba(var(--clr-success-ch),0.25); color: var(--clr-success); }
.ct-feedback--err { background: rgba(var(--clr-error-ch),0.08);   border: 1px solid rgba(var(--clr-error-ch),0.25);   color: var(--clr-error); }

.ct-trust {
    display: flex; flex-wrap: wrap; gap: 6px 16px;
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid rgba(var(--clr-accent-ch),0.12);
}
.ct-trust span { display: flex; align-items: center; gap: 5px; font-size: 0.73rem; color: #4A7070; }
.ct-trust i { color: var(--clr-accent-d); font-size: 0.75rem; }

/* Info column */
.ct-info-col { padding-top: 8px; }
.ct-info-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 700; color: #112E38;
    line-height: 1.15; margin: 0 0 28px;
}
.ct-info-title em { font-style: normal; color: var(--clr-accent-d); }

.ct-info-list { display: flex; flex-direction: column; margin-bottom: 28px; }
.ct-info-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; text-decoration: none; color: inherit;
    border-bottom: 1px solid rgba(69,189,181,0.10);
    transition: padding-left 0.2s;
}
.ct-info-item:first-child { border-top: 1px solid rgba(69,189,181,0.10); }
a.ct-info-item:hover { padding-left: 6px; }
.ct-info-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 12px;
    background: rgba(69,189,181,0.08);
    border: 1px solid rgba(69,189,181,0.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--clr-accent-d);
    transition: background 0.2s, color 0.2s;
}
a.ct-info-item:hover .ct-info-icon { background: var(--clr-accent-d); color: #fff; border-color: var(--clr-accent-d); }
.ct-info-item--wa .ct-info-icon { color: #25D366; background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.18); }
.ct-info-item--wa:hover .ct-info-icon { background: #25D366; color: #fff; border-color: #25D366; }
.ct-info-lbl {
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: #9BB5B5; margin-bottom: 2px;
}
.ct-info-val { font-size: 0.9rem; font-weight: 600; color: #112E38; }

/* Social strip */
.ct-social-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ct-soc {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 12px; border-radius: 10px; border: 1px solid;
    text-decoration: none; font-size: 0.80rem; font-weight: 600;
    transition: var(--transition);
}
.ct-soc i { font-size: 0.95rem; flex-shrink: 0; }
.ct-soc span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ct-soc--ig { color: #E1306C; border-color: rgba(225,48,108,0.22); background: rgba(225,48,108,0.05); }
.ct-soc--ig:hover { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); color: #fff; border-color: transparent; }
.ct-soc--fb { color: #1877F2; border-color: rgba(24,119,242,0.22); background: rgba(24,119,242,0.05); }
.ct-soc--fb:hover { background: #1877F2; color: #fff; border-color: transparent; }
.ct-soc--yt { color: #FF0000; border-color: rgba(255,0,0,0.18); background: rgba(255,0,0,0.05); }
.ct-soc--yt:hover { background: #FF0000; color: #fff; border-color: transparent; }
.ct-soc--tt { color: #162220; border-color: rgba(22,34,32,0.15); background: rgba(22,34,32,0.04); }
.ct-soc--tt:hover { background: #010101; color: #fff; border-color: transparent; }

/* ── Map section ─────────────────────────────────────────── */
#ct-map-section { height: 380px; overflow: hidden; position: relative; }
.ct-map-embed { width: 100%; height: 100%; }
.ct-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.ct-map-placeholder {
    background: linear-gradient(135deg, #071C22, #0C2830);
    display: flex; align-items: center; justify-content: center; height: 100%;
}
.ct-map-pin-wrap { text-align: center; color: rgba(255,255,255,0.45); }
.ct-map-pin-wrap i { font-size: 2rem; color: var(--clr-accent); margin-bottom: 12px; display: block; }
.ct-map-pin-wrap p { font-size: 0.88rem; margin: 0; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .ct-split { grid-template-columns: 1fr 320px; }
}
@media (max-width: 860px) {
    .ct-split { grid-template-columns: 1fr; gap: 40px; }
    .ct-info-col { order: -1; }
    #ct-map-section { height: 280px; }
}
@media (max-width: 576px) {
    #ct-hero { padding: calc(var(--header-h, 80px) + 12px) 0 60px; }
    .ct-row { grid-template-columns: 1fr; }
    .ct-form-card { padding: 28px 20px; }
    .ct-quick-links { flex-direction: column; align-items: flex-start; }
    .ct-social-strip { grid-template-columns: 1fr 1fr; }
}

/* ==============================================
   KVKK / COOKIE CONSENT
   ============================================== */

/* ---- Banner ---- */
.ck-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    border-top: 1px solid var(--clr-light);
    box-shadow: 0 -4px 32px rgba(var(--clr-black-ch),0.10);
    animation: ckSlideUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ckSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

@keyframes ckFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.ck-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 32px;
    align-items: center;
}

/* Logo */
.ck-bar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ck-bar-logo img {
    max-width: 110px;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0.5);
}

/* Metin */
.ck-bar-body { min-width: 0; }

.ck-bar-title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-bg-4);
    margin: 0 0 8px;
    line-height: 1.3;
}

.ck-bar-text {
    font-size: 0.82rem;
    color: #555;
    margin: 0 0 12px;
    line-height: 1.65;
}

.ck-details-link {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-medium);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s, gap 0.2s;
    text-decoration: none;
}
.ck-details-link i { font-size: 0.7rem; transition: transform 0.2s; }
.ck-details-link:hover { color: var(--primary-dark); }
.ck-details-link:hover i { transform: translateX(3px); }

/* Butonlar */
.ck-bar-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    min-width: 190px;
}

/* ---- Ortak buton ---- */
.ck-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 13px 22px;
    border-radius: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    line-height: 1;
    white-space: nowrap;
}

.ck-btn-accept {
    background: var(--primary-dark);
    color: #fff;
}
.ck-btn-accept:hover {
    background: var(--primary-medium);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(var(--clr-bg-4-ch),0.3);
}

.ck-btn-reject {
    background: #fff;
    color: #444;
    border: 1.5px solid #ccc;
}
.ck-btn-reject:hover {
    border-color: var(--primary-medium);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.ck-btn-outline {
    background: #fff;
    color: var(--primary-dark);
    border: 1.5px solid var(--primary-dark);
}
.ck-btn-outline:hover {
    background: rgba(var(--clr-bg-4-ch),0.05);
    transform: translateY(-1px);
}

/* ---- Modal ---- */
.ck-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ck-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(var(--clr-bg-1-ch), 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.ck-modal-box {
    position: relative;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(var(--clr-black-ch),0.3);
    transform: scale(0.93) translateY(24px);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
                opacity   0.32s ease;
}

.ck-modal.is-open .ck-modal-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.ck-modal-backdrop {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ck-modal.is-open .ck-modal-backdrop {
    opacity: 1;
}

.ck-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 28px 22px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    position: relative;
}

.ck-modal-header-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-peach));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary-dark);
}

.ck-modal-title {
    font-family: 'El Messiri', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    line-height: 1.3;
}

.ck-modal-sub {
    font-size: 0.76rem;
    color: rgba(var(--clr-white-ch),0.6);
    margin: 0;
    line-height: 1.55;
}

.ck-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(var(--clr-white-ch),0.12);
    color: rgba(var(--clr-white-ch),0.8);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.ck-modal-close:hover {
    background: rgba(var(--clr-white-ch),0.22);
    color: #fff;
    transform: rotate(90deg);
}

/* ---- Modal kategoriler ---- */
.ck-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 6px 0;
}

.ck-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(var(--clr-silver-ch),0.5);
    transition: background 0.2s;
}
.ck-cat:last-child { border-bottom: none; }
.ck-cat:hover { background: rgba(var(--clr-gold-ch),0.04); }

.ck-cat-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.ck-cat-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.ck-cat-icon.necessary { background: rgba(var(--clr-gold-ch),0.12); color: var(--primary-medium); }
.ck-cat-icon.analytics { background: rgba(var(--clr-teal-ch),0.12); color: var(--primary-medium); }
.ck-cat-icon.marketing { background: rgba(var(--clr-gold-ch),0.18); color: var(--clr-gold-dark); }
.ck-cat-icon.prefs     { background: rgba(var(--clr-bg-4-ch),0.10);  color: var(--primary-dark); }

.ck-cat-info > div strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.ck-cat-info > div span {
    display: block;
    font-size: 0.76rem;
    color: var(--text-body);
    line-height: 1.5;
}

.ck-always-on {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(var(--clr-gold-ch),0.1);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ---- Toggle ---- */
.ck-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    cursor: pointer;
    flex-shrink: 0;
}
.ck-toggle input { opacity: 0; width: 0; height: 0; }
.ck-slider {
    position: absolute;
    inset: 0;
    background: #ddd;
    border-radius: 26px;
    transition: 0.3s;
}
.ck-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 4px rgba(var(--clr-black-ch),0.2);
}
.ck-toggle input:checked + .ck-slider { background: var(--primary-medium); }
.ck-toggle input:checked + .ck-slider::before { transform: translateX(22px); }

/* ---- Modal footer ---- */
.ck-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 28px;
    border-top: 1px solid rgba(var(--clr-silver-ch),0.6);
    background: var(--clr-surface);
    flex-wrap: wrap;
}

.ck-policy-link {
    font-size: 0.76rem;
    color: var(--text-body);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.ck-policy-link:hover { color: var(--primary-medium); }

.ck-modal-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ck-modal-actions .ck-btn { width: auto; padding: 11px 20px; font-size: 0.82rem; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .ck-bar-inner {
        grid-template-columns: 90px 1fr auto;
        gap: 20px;
        padding: 20px 28px;
    }
}

@media (max-width: 680px) {
    .ck-bar-inner {
        grid-template-columns: 1fr auto;
        padding: 18px 20px;
        gap: 16px;
    }
    .ck-bar-logo { display: none; }
    .ck-bar-btns { min-width: 150px; }
}

@media (max-width: 500px) {
    .ck-bar-inner {
        grid-template-columns: 1fr;
        padding: 18px 16px;
    }
    .ck-bar-btns {
        flex-direction: row;
        min-width: unset;
    }
    .ck-modal-footer { flex-direction: column; align-items: stretch; }
    .ck-modal-actions { flex-direction: column; }
    .ck-modal-actions .ck-btn { width: 100%; }
    .ck-modal-header-icon { display: none; }
}

/* (duplicate about block removed — see ABOUT PAGE block above) */


/* =============================================
   ABOUT PAGE v2 — CİNEMATİK (ab- prefix)
   ============================================= */

/* ─── Ortak ─────────────────────────────────── */
.ab-section-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.15;
    margin: 0 0 32px;
    letter-spacing: -0.5px;
}
.ab-section-title--light { color: #fff; }
.ab-grad { color: var(--clr-accent); }
.ab-grad-dark { color: var(--clr-accent-d); }
.ab-tag--teal { color: var(--clr-accent) !important; }
.ab-tag--teal::before, .ab-tag--teal::after { background: var(--clr-accent) !important; }
.ab-tag--rose { color: var(--clr-accent) !important; }
.ab-tag--rose::before, .ab-tag--rose::after { background: var(--clr-accent) !important; }

/* ─── SCENE 1: HERO — Dark teal (consistent with all pages) ── */
#ab-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #071C22 0%, #0F2A34 100%);
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-h, 80px) + 60px) 0 80px;
}
/* Radial glow */
#ab-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 70% at 75% 50%, rgba(69,189,181,0.07) 0%, transparent 70%);
    z-index: 1; pointer-events: none;
}
/* Faint brand watermark */
#ab-hero::after {
    content: 'Fit&Fit';
    position: absolute;
    right: -1%; top: 50%; transform: translateY(-50%);
    font-family: 'El Messiri', serif;
    font-size: clamp(90px, 13vw, 210px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(69,189,181,0.06);
    white-space: nowrap; pointer-events: none;
    z-index: 0; line-height: 1; letter-spacing: -3px;
    user-select: none;
}
/* Decorative rings */
.ab-hero-ring {
    position: absolute; border-radius: 50%;
    pointer-events: none; z-index: 0;
}
.ab-hero-ring--1 {
    width: 560px; height: 560px;
    top: -110px; right: -80px;
    border: 1px solid rgba(69,189,181,0.18);
}
.ab-hero-ring--2 {
    width: 320px; height: 320px;
    bottom: -60px; left: -60px;
    border: 1px solid rgba(69,189,181,0.10);
}
/* ── Breadcrumb — normal flow ── */
.ab-hero-nav {
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
}
.ab-breadcrumb {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.50);
}
.ab-breadcrumb a { color: rgba(255,255,255,0.50); text-decoration: none; transition: color 0.2s; }
.ab-breadcrumb a:hover { color: var(--clr-accent); }
.ab-breadcrumb span:last-child { color: rgba(255,255,255,0.85); }

/* ── Split layout ── */
#ab-hero .container-xl { position: relative; z-index: 2; }
.ab-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    min-height: 62vh;
}

/* LEFT column */
.ab-hero-text { display: flex; flex-direction: column; justify-content: center; }

/* eyebrow */
.ab-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 4.5px; text-transform: uppercase;
    color: var(--clr-accent-d);
    margin-bottom: 28px;
}
.ab-eyebrow-dot {
    display: inline-block;
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--clr-accent);
    flex-shrink: 0;
}

/* title */
#ab-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 700; color: #fff;
    line-height: 1.06; letter-spacing: -2px;
    margin: 0 0 28px;
}
#ab-title em, #ab-title .ab-title-em {
    font-style: italic;
    color: var(--clr-accent);
}

/* subtitle */
#ab-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(15px, 1.5vw, 17px);
    color: rgba(255,255,255,0.60); line-height: 1.85;
    max-width: 480px; margin: 0 0 44px;
}

/* buttons */
#ab-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* mini stats row below buttons */
.ab-hero-stats {
    display: flex; gap: 32px; align-items: center;
    margin-top: 40px; padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.10);
}
.ab-hero-stat { display: flex; flex-direction: column; gap: 4px; }
.ab-hero-stat-num {
    font-family: 'El Messiri', serif;
    font-size: 1.85rem; font-weight: 700;
    color: #fff; line-height: 1;
}
.ab-hero-stat-lbl {
    font-size: 0.71rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.50);
}
.ab-hero-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* RIGHT column — image */
.ab-hero-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.ab-hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    animation: abHeroFloat 7s ease-in-out infinite;
    filter: drop-shadow(0 28px 52px rgba(22,34,32,0.14))
            drop-shadow(0 6px 18px rgba(22,34,32,0.07));
}
@keyframes abHeroFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}
/* floating badge on image */
.ab-hero-badges {
    position: absolute; bottom: 24px; left: 24px;
    display: flex; flex-direction: column; gap: 8px;
    z-index: 2;
}
.ab-hero-badge {
    background: #162220; color: #fff;
    border-radius: 14px; padding: 10px 16px;
    display: flex; gap: 10px; align-items: center;
    font-family: 'Raleway', sans-serif;
    box-shadow: 0 8px 28px rgba(22,34,32,0.22);
}
.ab-hero-badge i { color: var(--clr-accent); font-size: 1.15rem; flex-shrink: 0; }
.ab-hero-badge-text { display: flex; flex-direction: column; line-height: 1.35; }
.ab-hero-badge-text strong { font-size: 0.80rem; font-weight: 700; }
.ab-hero-badge-text span   { font-size: 0.68rem; color: rgba(255,255,255,0.55); font-weight: 500; }

/* scroll hint */
#ab-scroll-hint {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3;
}
.ab-scroll-label {
    font-family: 'Raleway', sans-serif; font-size: 10px;
    letter-spacing: 3px; text-transform: uppercase;
    color: rgba(22,34,32,0.30);
}
.ab-scroll-line {
    width: 1.5px; height: 52px;
    background: linear-gradient(to bottom, rgba(22,34,32,0.35), transparent); display: block;
}

/* ── Mobile ── */
@media (max-width: 991px) {
    .ab-hero-split { grid-template-columns: 1fr; gap: 40px; }
    .ab-hero-img-wrap { max-height: 340px; }
    .ab-hero-img { max-height: 320px; }
    .ab-hero-stats { gap: 20px; }
}
@media (max-width: 575px) {
    #ab-hero { padding: 120px 0 80px; }
    #ab-title { letter-spacing: -1px; }
    .ab-hero-img-wrap { display: none; }
    .ab-hero-stats { gap: 16px; }
    .ab-hero-stat-num { font-size: 1.5rem; }
}

/* ─── SCENE 2: PILLARS ───────────────────────── */
#ab-pillars {
    padding: 120px 0;
    background: #FAFAF8;
    position: relative;
    overflow: hidden;
}

/* ── "FIT" watermark — beyaz arka plan üzerinde ── */
#ab-pillars::before {
    content: 'FIT';
    position: absolute;
    font-family: 'El Messiri', serif;
    font-size: clamp(220px, 30vw, 440px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(var(--clr-gold-ch),0.13);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -0.02em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    line-height: 1;
}

/* ── konsantrik halkalar ─────────────────────── */
#ab-pillars .ab-pillars-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
#ab-pillars .ab-pillars-ring--1 {
    width: 340px; height: 340px;
    border: 1px solid rgba(var(--clr-gold-ch),0.12);
}
#ab-pillars .ab-pillars-ring--2 {
    width: 580px; height: 580px;
    border: 1px solid rgba(var(--clr-gold-ch),0.07);
}
#ab-pillars .ab-pillars-ring--3 {
    width: 840px; height: 840px;
    border: 1px solid rgba(var(--clr-gold-ch),0.04);
}

/* ── içerik dekorasyonların üzerinde ─────────── */
#ab-pillars .container-xl { position: relative; z-index: 1; }

.ab-pillars-header { text-align: center; margin-bottom: 48px; }
.ab-pillars-desc {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-body);
}
.ab-pillars-desc p { margin-bottom: 1em; }
.ab-pillars-desc p:last-child { margin-bottom: 0; }
.ab-pillars-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.ab-pillar-card {
    padding: 52px 40px 48px;
    border-top: 1px solid rgba(var(--clr-black-ch),0.08);
    border-left: 1px solid rgba(var(--clr-black-ch),0.08);
    position: relative; overflow: hidden;
    transition: background 0.3s ease; background: #fff;
}
.ab-pillar-card--3 { border-right: 1px solid rgba(var(--clr-black-ch),0.08); }
.ab-pillar-card:hover { background: var(--clr-light); }
.ab-pillar-num {
    font-family: 'El Messiri', serif; font-size: 6rem; font-weight: 700;
    color: rgba(var(--clr-gold-ch),0.07); line-height: 1;
    position: absolute; top: 20px; right: 24px; user-select: none; transition: color 0.3s;
}
.ab-pillar-card:hover .ab-pillar-num { color: rgba(var(--clr-gold-ch),0.13); }
.ab-pillar-icon {
    width: 60px; height: 60px; border-radius: 18px;
    background: linear-gradient(135deg, rgba(var(--clr-gold-ch),0.12), rgba(var(--clr-gold-ch),0.04));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary-medium); margin-bottom: 28px; transition: all 0.3s ease;
}
.ab-pillar-card:hover .ab-pillar-icon {
    background: linear-gradient(135deg, var(--accent-teal), var(--clr-gold)); color: #fff; transform: scale(1.05);
}
.ab-pillar-card h3 {
    font-family: 'El Messiri', serif; font-size: 1.35rem; font-weight: 700;
    color: var(--primary-dark); margin: 0 0 14px;
}
.ab-pillar-card p { font-family: 'Raleway', sans-serif; font-size: 15px; color: var(--text-body); line-height: 1.75; margin: 0; }

/* ─── SCENE 3: STORY ─────────────────────────── */
#ab-story { padding: 120px 0; background: #EEF8F7; }
.ab-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
#ab-story-img { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(var(--clr-bg-4-ch),0.14); }
#ab-story-img img { width: 100%; height: 520px; object-fit: cover; display: block; }
.ab-story-body { font-family: 'Raleway', sans-serif; font-size: 15.5px; color: var(--text-body); line-height: 1.85; margin-top: 16px; }
.ab-story-body p { margin: 0 0 18px; }

/* ─── SCENE 4: WHY ───────────────────────────── */
#ab-why {
    padding: 120px 0 192px;
    background: transparent;
    position: relative; overflow: hidden;
    margin-top: -2px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 72px), 0 100%);
}
.ab-why-img {
    position: absolute;
    inset: -15% 0;
    background-size: cover;
    background-position: center 40%;
    will-change: transform;
}
.ab-why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(22,34,32,0.97) 0%,
        rgba(26,44,40,0.88) 45%,
        rgba(26,44,40,0.55) 70%,
        rgba(26,44,40,0.18) 100%
    );
}
#ab-why::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(var(--clr-gold-ch),0.45) 30%,
        rgba(var(--clr-gold-ch),0.55) 50%,
        rgba(var(--clr-gold-ch),0.45) 70%,
        transparent 100%
    );
    pointer-events: none;
}
#ab-why::before {
    content: 'Fit'; position: absolute; bottom: -80px; right: -20px;
    font-family: 'El Messiri', serif; font-size: 360px; font-weight: 700;
    color: rgba(var(--clr-gold-ch),0.045); pointer-events: none; user-select: none; line-height: 1;
}
.ab-why-inner { display: flex; justify-content: flex-end; position: relative; z-index: 2; }
.ab-why-content { max-width: 580px; }
.ab-why-list { list-style: none; padding: 0; margin: 32px 0 0; }
.ab-why-item {
    display: flex; align-items: flex-start; gap: 14px; padding: 15px 0;
    border-bottom: 1px solid rgba(var(--clr-white-ch),0.07);
    font-family: 'Raleway', sans-serif; font-size: 15px; color: rgba(var(--clr-white-ch),0.72); line-height: 1.6;
}
.ab-why-item:first-child { border-top: 1px solid rgba(var(--clr-white-ch),0.07); }
.ab-why-check {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    background: rgba(var(--clr-gold-ch),0.14); border: 1px solid rgba(var(--clr-gold-ch),0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: var(--clr-accent); margin-top: 1px;
}
#ab-why-visual { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; }
.ab-why-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(var(--clr-gold-ch),0.14); pointer-events: none; }
.ab-why-ring-1 { width: 360px; height: 360px; }
.ab-why-ring-2 { width: 260px; height: 260px; border-color: rgba(var(--clr-gold-ch),0.08); }
.ab-why-dot-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(var(--clr-white-ch),0.05) 1px, transparent 1px);
    background-size: 28px 28px; pointer-events: none; border-radius: 24px;
}
.ab-why-stats { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 18px; width: 100%; }
.ab-why-stat {
    background: rgba(var(--clr-white-ch),0.04); border: 1px solid rgba(var(--clr-white-ch),0.08);
    border-radius: 18px; padding: 22px 30px; backdrop-filter: blur(8px); transition: all 0.3s ease;
}
.ab-why-stat:hover { background: rgba(var(--clr-white-ch),0.07); border-color: rgba(var(--clr-gold-ch),0.25); transform: translateX(6px); }
.ab-why-stat-num { font-family: 'El Messiri', serif; font-size: 2.6rem; font-weight: 700; color: #fff; line-height: 1; }
.ab-why-stat-num span { color: rgba(var(--clr-white-ch),0.5); font-size: 0.65em; }
.ab-why-stat-lbl { font-family: 'Raleway', sans-serif; font-size: 13px; color: rgba(var(--clr-white-ch),0.45); margin-top: 5px; }

/* ─── SCENE 5: TEAM ──────────────────────────── */
#ab-team {
    padding: 120px 0;
    background: #FAFAF8;
    position: relative;
    margin-top: -2px;
}
#ab-team::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(
        to left,
        transparent 0%,
        rgba(var(--clr-gold-ch),0.45) 30%,
        rgba(var(--clr-gold-ch),0.55) 50%,
        rgba(var(--clr-gold-ch),0.45) 70%,
        transparent 100%
    );
    pointer-events: none;
}
.ab-team-header { text-align: center; margin-bottom: 64px; display: flex; flex-direction: column; align-items: center; }
.ab-team-sub { font-family: 'Raleway', sans-serif; font-size: 16px; color: var(--text-body); max-width: 520px; line-height: 1.7; margin-top: 12px; }
#ab-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.ab-doctor-card {
    background: #fff; border-radius: var(--card-radius); overflow: hidden;
    box-shadow: 0 4px 24px rgba(var(--clr-bg-4-ch),0.07);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}
.ab-doctor-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(var(--clr-bg-4-ch),0.13); }
.ab-doctor-photo { height: 280px; overflow: hidden; }
.ab-doctor-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ab-doctor-card:hover .ab-doctor-photo img { transform: scale(1.05); }
.ab-doctor-info { padding: 24px; }
.ab-doctor-name { font-family: 'El Messiri', serif; font-size: 1.15rem; font-weight: 700; color: var(--primary-dark); }
.ab-doctor-spec { font-family: 'Raleway', sans-serif; font-size: 13px; color: var(--accent-teal); font-weight: 600; margin: 4px 0 10px; }
.ab-doctor-exp { font-family: 'Raleway', sans-serif; font-size: 13px; color: var(--text-body); display: flex; align-items: center; gap: 6px; }
.ab-doctor-exp i { color: var(--accent-rose); }
.ab-doctor-bio { font-family: 'Raleway', sans-serif; font-size: 13.5px; color: var(--text-body); line-height: 1.65; margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ─── SCENE 6: CERTS ─────────────────────────── */
#ab-certs { padding: 100px 0; background: #EEF8F7; }
.ab-certs-header { text-align: center; margin-bottom: 52px; display: flex; flex-direction: column; align-items: center; }
.ab-certs-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.ab-cert-card { width: 160px; background: #fff; border-radius: 16px; border: 1.5px solid rgba(var(--clr-silver-ch),0.5); padding: 28px 18px 16px; text-align: center; transition: all 0.3s ease; }
.ab-cert-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(var(--clr-bg-4-ch),0.1); border-color: rgba(var(--clr-gold-ch),0.3); }
.ab-cert-card img { width: 80px; height: auto; margin-bottom: 10px; }
.ab-cert-title { font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 600; color: var(--primary-dark); line-height: 1.4; }

/* ─── SCENE 7: CTA ───────────────────────────── */
#ab-cta { padding: 140px 0; background: linear-gradient(145deg, #162220 0%, #0F2928 55%, #162220 100%); position: relative; overflow: hidden; text-align: center; }
.ab-cta-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.ab-cta-orb--teal { top: -180px; right: -150px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(var(--clr-gold-ch),0.15) 0%, transparent 70%); }
.ab-cta-orb--rose { bottom: -200px; left: -180px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(var(--clr-gold-ch),0.1) 0%, transparent 70%); }
#ab-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.ab-cta-icon { width: 80px; height: 80px; border-radius: 24px; background: linear-gradient(135deg, var(--accent-rose), var(--clr-gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; margin: 0 auto 32px; box-shadow: 0 14px 36px rgba(var(--clr-gold-ch),0.3); }
#ab-cta-inner h2 { font-family: 'El Messiri', serif; font-size: clamp(28px, 3.5vw, 52px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
#ab-cta-inner p { font-family: 'Raleway', sans-serif; font-size: 17px; color: rgba(var(--clr-white-ch),0.52); line-height: 1.75; max-width: 500px; margin: 0 auto 40px; }
.ab-cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 991px) {
    .ab-pillars-track { grid-template-columns: 1fr; }
    .ab-pillar-card { border-left: none; border-right: none; }
    .ab-story-inner { grid-template-columns: 1fr; gap: 48px; }
    #ab-story-img img { height: 360px; }
    .ab-why-inner { grid-template-columns: 1fr; gap: 48px; }
    #ab-why-visual { display: none; }
}
@media (max-width: 767px) {
    #ab-hero { padding: 120px 0 70px; min-height: auto; }
    #ab-pillars, #ab-story, #ab-why, #ab-team, #ab-certs { padding: 80px 0; }
    #ab-cta { padding: 100px 0; }
}
@media (max-width: 575px) {
    #ab-title { letter-spacing: -0.5px; }
    #ab-btns { flex-direction: column; align-items: flex-start; }
    .ab-cta-btns { flex-direction: column; align-items: center; }
    .ab-cta-btns a { width: 100%; justify-content: center; }
}

/* ─── ABOUT: ENHANCED ANIMATIONS v2 ─────────────────────────── */

/* Scroll progress bar */
#ab-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 9999; pointer-events: none; }
#ab-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--clr-gold-dark) 0%, var(--clr-gold) 50%, var(--clr-gold-pale) 100%);
    transform-origin: left center;
    transform: scaleX(0);
    will-change: transform;
}

/* Title line-split containers */
.ab-title-line { overflow: hidden; display: block; line-height: 1.1; }
.ab-title-line-inner { display: block; }

/* Typewriter cursor */
@keyframes abCursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.ab-tw-cursor {
    display: inline-block; width: 2px; height: 0.82em;
    background: var(--accent-teal); margin-left: 3px;
    vertical-align: middle; border-radius: 1px;
    animation: abCursorBlink 0.9s step-end infinite;
}

/* Hero dot grid slow drift */
@keyframes abDotsDrift { 0% { background-position: 0 0; } 100% { background-position: 40px 40px; } }
.ab-hero-dots { animation: abDotsDrift 28s linear infinite; }

/* Pillar card 3D tilt setup */
.ab-pillars-track { perspective: 1400px; }
.ab-pillar-card { transform-style: preserve-3d; will-change: transform; }

/* Why check hover pulse */
.ab-why-item:hover .ab-why-check {
    background: rgba(var(--clr-gold-ch),0.25);
    border-color: rgba(var(--clr-gold-ch),0.6);
    transform: scale(1.12);
    transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

/* CTA icon hover */
.ab-cta-icon { transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s; }
#ab-cta-inner:hover .ab-cta-icon { transform: scale(1.1) rotate(-6deg); box-shadow: 0 20px 50px rgba(var(--clr-gold-ch),0.4); }

/* ─── WHY VISUAL — ORBITAL SCENE ────────────────────────────── */

/* Third ring — inner dashed */
.ab-why-ring-3 {
    width: 170px; height: 170px;
    border: 1px dashed rgba(var(--clr-gold-ch),0.28);
}

/* Center glow orb */
.ab-why-glow {
    position: absolute;
    width: 90px; height: 90px; border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--clr-gold-ch),0.28) 0%, rgba(var(--clr-gold-ch),0.08) 55%, transparent 100%);
    pointer-events: none;
}

/* Orbit wrappers — centered, no initial transform so GSAP can rotate freely */
.ab-why-ow { position: absolute; border-radius: 50%; pointer-events: none; }
.ab-why-ow-1 { width: 360px; height: 360px; }
.ab-why-ow-2 { width: 260px; height: 260px; }

/* Orbiting dot (teal, bright) — sits at the top edge of its wrapper */
.ab-wd {
    position: absolute;
    top: 0; left: 50%;
    width: 10px; height: 10px; border-radius: 50%;
    background: radial-gradient(circle, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
    margin-left: -5px; margin-top: -5px;
    box-shadow: 0 0 16px rgba(var(--clr-gold-ch),1), 0 0 32px rgba(var(--clr-gold-ch),0.55), 0 0 64px rgba(var(--clr-gold-ch),0.2);
}

/* Orbiting gem (rose diamond) */
.ab-wg {
    position: absolute;
    top: 0; left: 50%;
    width: 8px; height: 8px;
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-pale));
    border-radius: 2px;
    transform: translateX(-50%) rotate(45deg);
    margin-top: -4px;
    box-shadow: 0 0 12px rgba(var(--clr-gold-ch),0.8), 0 0 24px rgba(var(--clr-gold-ch),0.35);
}

/* Comet trail on the teal dot */
.ab-wd::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 32px; height: 2px;
    background: linear-gradient(to right, rgba(var(--clr-gold-ch),0.8), transparent);
    transform-origin: left center;
    border-radius: 2px;
    /* trail rotates opposite of orbit so it always faces backward */
    transform: translateY(-50%) rotate(180deg);
}

/* Plus / crosshair in the center */
.ab-why-plus {
    position: absolute;
    width: 20px; height: 20px;
    pointer-events: none;
}
.ab-why-plus::before, .ab-why-plus::after {
    content: ''; position: absolute;
    background: rgba(var(--clr-gold-ch),0.4); border-radius: 2px;
}
.ab-why-plus::before { width: 2px; height: 20px; left: 50%; margin-left: -1px; top: 0; }
.ab-why-plus::after  { width: 20px; height: 2px; top: 50%; margin-top: -1px; left: 0; }

/* Small anchor pips at 0°/90°/180°/270° on ring-1 */
.ab-why-pip-wrap { position: absolute; border-radius: 50%; pointer-events: none; }
.ab-why-pip-wrap-1 { width: 360px; height: 360px; }
.ab-why-pip-wrap-2 { width: 360px; height: 360px; transform: rotate(90deg); }
.ab-why-pip-wrap-3 { width: 360px; height: 360px; transform: rotate(180deg); }
.ab-why-pip-wrap-4 { width: 360px; height: 360px; transform: rotate(270deg); }
.ab-why-pip {
    position: absolute;
    top: 0; left: 50%;
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(var(--clr-gold-ch),0.5);
    border: 1px solid rgba(var(--clr-gold-ch),0.8);
    margin-left: -3px; margin-top: -3px;
}

/* ─── ABOUT: JOURNEY SECTION ─────────────────────────────────── */
#ab-journey {
    /* No explicit height — GSAP pin spacer handles the scroll room */
    position: relative;
}
.abj-pin {
    /* position:relative only — GSAP's pin:true will fix it during scroll */
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #fff;
}

/* Progress bar across top */
.abj-progress-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(22,34,32,0.08);
    z-index: 20;
}
.abj-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold));
    transition: width 0.05s linear;
    border-radius: 0 2px 2px 0;
}

/* Horizontal track — 4 slides side by side */
.abj-track {
    display: flex;
    width: calc(100vw * 4);
    height: 100%;
    will-change: transform;
}

/* ── Slide: split-screen with diagonal "/" cut ── */
.abj-slide {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
}

/* Right panel: colored background, diagonal "/" left edge */
.abj-slide-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.abj-panel--01 { background: #162220; }
.abj-panel--02 { background: #1C2E4A; }
.abj-panel--03 { background: #3A1A1A; }
.abj-panel--04 { background: #1A3326; }

/* Left body: text content, white side */
.abj-slide-body {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 0 clamp(32px, 6vw, 100px) 0 clamp(32px, 7vw, 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Watermark number */
.abj-slide-num {
    font-family: 'El Messiri', serif;
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 700;
    line-height: 1;
    color: rgba(22,34,32,0.05);
    letter-spacing: -4px;
    user-select: none;
    pointer-events: none;
    margin-bottom: -36px;
}

/* Eyebrow */
.abj-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin: 0 0 14px;
}

/* Title */
.abj-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    color: #162220;
    margin: 0 0 20px;
}
.abj-title em {
    font-style: normal;
    color: var(--clr-gold-dark);
}

/* Body text */
.abj-body {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.8;
    color: #4A6260;
    margin: 0 0 26px;
    max-width: 420px;
}

/* Checklist */
.abj-checklist {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.abj-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4A6260;
}
.abj-checklist li i {
    color: var(--clr-gold);
    font-size: 11px;
    flex-shrink: 0;
}

/* Rings + icon inside the panel */
.abj-visual-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.10);
}
.abj-visual-ring--1 {
    width: clamp(260px, 28vw, 380px);
    height: clamp(260px, 28vw, 380px);
}
.abj-visual-ring--2 {
    width: clamp(160px, 17vw, 230px);
    height: clamp(160px, 17vw, 230px);
    border-color: rgba(255,255,255,0.18);
}
.abj-visual-icon {
    width: clamp(90px, 10vw, 130px);
    height: clamp(90px, 10vw, 130px);
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(32px, 4vw, 50px);
    color: var(--clr-gold);
    position: relative;
    z-index: 1;
}

/* Dots nav */
.abj-dots {
    position: absolute;
    bottom: 36px;
    left: 25%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.abj-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(22,34,32,0.15);
    border: 1px solid rgba(22,34,32,0.2);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s;
}
.abj-dot--active {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    width: 24px;
    border-radius: 4px;
}

/* Mobile */
@media (max-width: 768px) {
    .abj-slide { flex-direction: column; }
    .abj-slide-panel {
        position: relative;
        width: 100%;
        height: 220px;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 88%);
    }
    .abj-slide-body {
        width: 100%;
        padding: 28px 24px 60px;
    }
    .abj-dots { left: 50%; }
}

/* =============================================
   SCROLL REVEAL — generic (JS adds classes)
   ============================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
    background: #fff;
    border-bottom: 1px solid rgba(var(--clr-black-ch),0.07);
    padding: 16px 0;
    overflow: hidden;
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 28px;
    color: var(--primary-medium);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    white-space: nowrap;
    letter-spacing: 0.1px;
}
.trust-item i {
    color: var(--accent-rose);
    font-size: 14px;
}
.trust-divider {
    width: 1px;
    height: 26px;
    background: var(--border-color);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .trust-strip-inner { gap: 4px; }
    .trust-item { padding: 6px 14px; font-size: 12px; }
    .trust-divider { display: none; }
}

/* =============================================
   JOURNEY SECTION — Your Istanbul Journey
   ============================================= */
#journey {
    padding: var(--section-padding);
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}
.journey-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(var(--clr-gold-ch),0.09) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(var(--clr-gold-ch),0.06) 0%, transparent 45%);
    pointer-events: none;
}
#journey .section-tag { color: var(--accent-rose); }
#journey .section-tag::before { background: var(--accent-rose); }
.journey-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.journey-header {
    position: sticky;
    top: 120px;
}
.journey-title {
    font-family: 'El Messiri', sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    color: #fff;
    line-height: 1.1;
    margin: 16px 0 24px;
    letter-spacing: -0.5px;
}
.journey-title em {
    font-style: italic;
    color: var(--accent-rose);
}
.journey-desc {
    font-size: 15.5px;
    color: rgba(var(--clr-white-ch),0.6);
    line-height: 1.85;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 36px;
}
.journey-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-peach));
    color: var(--primary-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--btn-radius);
    transition: var(--transition);
    letter-spacing: 0.2px;
}
.journey-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(var(--clr-gold-ch),0.4);
    color: var(--primary-dark);
}

/* Steps */
.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
/* Vertical connecting line */
.journey-steps::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 44px;
    bottom: 44px;
    width: 1px;
    background: linear-gradient(to bottom,
        var(--accent-rose) 0%,
        rgba(var(--clr-gold-ch),0.4) 60%,
        rgba(var(--clr-gold-ch),0.08) 100%);
    z-index: 0;
}
.journey-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 28px 28px 28px 0;
    border-radius: 16px;
    transition: background 0.3s ease;
    position: relative;
}
.journey-step:hover { background: rgba(var(--clr-white-ch),0.03); }

.step-marker {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
}
.step-num {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--accent-rose);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    margin-bottom: 6px;
    flex-shrink: 0;
}
.step-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(var(--clr-gold-ch),0.1);
    border: 1px solid rgba(var(--clr-gold-ch),0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.journey-step:hover .step-icon-wrap {
    background: rgba(var(--clr-gold-ch),0.2);
    border-color: rgba(var(--clr-gold-ch),0.5);
    box-shadow: 0 0 0 8px rgba(var(--clr-gold-ch),0.06);
}
.step-icon-wrap i {
    font-size: 21px;
    color: var(--accent-rose);
    transition: transform 0.3s ease;
}
.journey-step:hover .step-icon-wrap i { transform: scale(1.15); }

.step-body {
    padding-top: 6px;
    flex: 1;
}
.step-body h3 {
    font-family: 'El Messiri', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.step-body p {
    font-size: 15px;
    color: rgba(var(--clr-white-ch),0.57);
    line-height: 1.8;
    font-family: 'Raleway', sans-serif;
}

/* Journey responsive */
@media (max-width: 992px) {
    .journey-inner { grid-template-columns: 1fr; gap: 48px; }
    .journey-header { position: static; }
}
@media (max-width: 576px) {
    .journey-step { gap: 18px; padding: 20px 0; }
    .step-body h3 { font-size: 18px; }
}


/* =============================================
   ABOUT PAGE — HERO ENHANCEMENTS
   ============================================= */
/* Masked line reveal for title */
.ab-title-line {
    display: block;
    overflow: hidden;
    line-height: 1.06;
}
.ab-title-line-inner { display: block; }

/* Italic gold emphasis in hero title */
.ab-title-em {
    font-style: italic;
    color: var(--accent-rose);
}

/* Scroll progress bar */
#ab-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    z-index: 9998;
    background: rgba(var(--clr-white-ch),0.05);
}
#ab-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-rose), var(--accent-peach));
    transform-origin: left center;
    transform: scaleX(0);
    will-change: transform;
}

/* Typewriter cursor */
.ab-tw-cursor {
    display: inline-block;
    width: 2px; height: 1em;
    background: var(--accent-teal);
    vertical-align: text-bottom;
    margin-left: 2px;
    animation: twBlink 0.85s step-end infinite;
}
@keyframes twBlink { 50% { opacity: 0; } }

/* Why section subtitle */
.ab-why-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: rgba(var(--clr-white-ch),0.55);
    line-height: 1.75;
    margin-bottom: 8px;
}

/* =============================================
   ABOUT PAGE — MANIFESTO SECTION
   ============================================= */
#ab-manifesto {
    padding: 96px 0;
    background: #162220;
    position: relative;
    overflow: hidden;
}
#ab-manifesto::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 50%, rgba(var(--clr-gold-ch),0.09) 0%, transparent 60%);
    pointer-events: none;
}
.ab-manifesto-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}
.ab-manifesto-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(var(--clr-gold-ch),0.35));
    transform-origin: left center;
}
.ab-manifesto-rule--rev {
    background: linear-gradient(to left, transparent, rgba(var(--clr-gold-ch),0.35));
}
.ab-manifesto-quote {
    font-family: 'El Messiri', sans-serif;
    font-size: clamp(20px, 2.8vw, 34px);
    color: rgba(var(--clr-white-ch),0.88);
    line-height: 1.55;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    margin: 0;
    flex-shrink: 0;
    max-width: 640px;
    position: relative;
}
.ab-manifesto-quote em {
    font-style: italic;
    color: var(--clr-accent-d);
}
.ab-manifesto-mark {
    display: block;
    font-family: 'El Messiri', serif;
    font-size: 72px;
    color: rgba(var(--clr-gold-ch),0.18);
    line-height: 0.55;
    margin-bottom: 14px;
    font-style: normal;
    user-select: none;
}
@media (max-width: 768px) {
    .ab-manifesto-inner { flex-direction: column; gap: 28px; }
    .ab-manifesto-rule { display: none; }
    .ab-manifesto-quote { font-size: 22px; }
}

/* =============================================
   ABOUT PAGE — ISTANBUL SECTION
   ============================================= */
#ab-istanbul {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* diagonal bottom-left cut — creates hard edge against #ab-why */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 72px));
    padding-bottom: 72px; /* compensate so content isn't clipped */
}
.ab-istanbul-img {
    position: absolute;
    inset: -15% 0;
    background-size: cover;
    background-position: center 40%;
    transform-origin: center center;
    will-change: transform;
}
.ab-istanbul-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(22,34,32,0.97) 0%,
        rgba(26,44,40,0.85) 42%,
        rgba(26,44,40,0.5)  68%,
        rgba(26,44,40,0.15) 100%
    );
}
.ab-istanbul-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 90px 0;
}
.ab-istanbul-tag {
    color: var(--clr-accent) !important;
    margin-bottom: 18px;
}
.ab-istanbul-tag::before {
    background: var(--clr-accent) !important;
}
.ab-istanbul-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(34px, 5vw, 66px);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -1px;
    margin: 16px 0 26px;
}
.ab-istanbul-title em {
    font-style: italic;
    color: var(--clr-accent-d);
}
.ab-istanbul-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 16.5px;
    color: rgba(var(--clr-white-ch),0.65);
    line-height: 1.85;
    margin-bottom: 38px;
    max-width: 480px;
}
.ab-istanbul-feats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.ab-istanbul-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(var(--clr-white-ch),0.6);
    letter-spacing: 0.2px;
    padding: 7px 14px;
    border: 1px solid rgba(var(--clr-white-ch),0.1);
    border-radius: 50px;
    backdrop-filter: blur(6px);
    transition: border-color 0.3s ease, color 0.3s ease;
}
.ab-istanbul-feat:hover {
    border-color: rgba(var(--clr-gold-ch),0.4);
    color: rgba(var(--clr-white-ch),0.9);
}
.ab-istanbul-feat i {
    color: var(--clr-accent);
    font-size: 13px;
}
@media (max-width: 768px) {
    #ab-istanbul { min-height: auto; }
    .ab-istanbul-content { padding: 72px 0; }
    .ab-istanbul-overlay {
        background: linear-gradient(
            to bottom,
            rgba(var(--clr-bg-1-ch),0.85) 0%,
            rgba(var(--clr-bg-1-ch),0.75) 100%
        );
    }
}
}

/* ══════════════════════════════════════════════════
   LEGAL PAGES (.legal-page)
══════════════════════════════════════════════════ */
.legal-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    color: var(--clr-text-2);
    line-height: 1.8;
}
.legal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--clr-text-1);
    margin-bottom: 8px;
    line-height: 1.15;
}
.legal-page .legal-date {
    font-size: 13px;
    color: rgba(var(--clr-text-2-ch), 0.45);
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(var(--clr-accent-ch), 0.12);
}
.legal-page h2 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--clr-text-1);
    margin: 44px 0 14px;
}
.legal-page h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-accent);
    margin: 28px 0 10px;
}
.legal-page p { margin-bottom: 16px; }
.legal-page ul {
    margin: 0 0 16px 20px;
    padding: 0;
}
.legal-page ul li { margin-bottom: 8px; padding-left: 8px; }
.legal-page a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .2s;
}
.legal-page a:hover { opacity: 0.75; }
.legal-page strong { color: var(--clr-text-1); font-weight: 600; }

/* ===================================================================
   HOME PAGE SECTION STYLES â€” hm-* prefix
   Recovered from session history. All classes prefixed with hm-
   to avoid conflicts with global styles.
   =================================================================== */
/* ═══════════════════════════════════════════════════════
   HOME PAGE — Warm & Human-Centered Redesign
   Palette: Cream / Off-white / Warm Teal / Gold
   All classes prefixed with hm- to avoid conflicts
═══════════════════════════════════════════════════════ */

/* ── Teal Ornament ───────────────────────────────── */
.hm-ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin: 10px auto 16px; color: #45BDB5;
    font-size: 9px; letter-spacing: 0.05em;
}
.hm-ornament::before, .hm-ornament::after {
    content: ''; height: 1px; width: 48px;
}
.hm-ornament::before { background: linear-gradient(to right, transparent, #45BDB5); }
.hm-ornament::after  { background: linear-gradient(to left,  transparent, #45BDB5); }
.hm-ornament-light { color: #68CFC7; }
.hm-ornament-light::before { background: linear-gradient(to right, transparent, #68CFC7); }
.hm-ornament-light::after  { background: linear-gradient(to left,  transparent, #68CFC7); }

/* ── Design Tokens ────────────────────────────────── */
:root {
    --warm-bg:       #FAFAF8;               /* tek zemin â€” tÃ¼m aÃ§Ä±k section'lar */
    --warm-cream:    #FAFAF8;               /* alias â†’ warm-bg */
    --warm-dark:     #112E38;               /* section baÅŸlÄ±klarÄ± â€” koyu teal      */
    --warm-body:     #5a6a7a;               /* gÃ¶vde metni                  */
    --warm-teal:     #45BDB5;               /* ana teal (logo)              */
    --warm-teal-d:   #1A8F87;               /* koyu teal â€” hover/icon       */
    --warm-teal-l:   #68CFC7;               /* aÃ§Ä±k teal â€” gradient         */
    --warm-gold:     #45BDB5;               /* alias â†’ teal                 */
    --warm-gold-d:   #1A8F87;               /* alias â†’ koyu teal            */
    --warm-card:     #FFFFFF;               /* kart yÃ¼zeyi                  */
    --warm-border:   rgba(69,189,181,0.14); /* teal kenarlÄ±k                */
    --warm-shadow:   0 2px 24px rgba(7,28,34,0.08);
}

/* ── Hero ─────────────────────────────────────────── */
#hm-hero {
    position: relative;
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hm-hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 0;
}
.hm-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: transparent;
}
.hm-hero-content {
    position: relative; z-index: 10;
    text-align: center; padding: 0 24px;
    max-width: 860px;
}
.hm-eye {
    font-size: 10px; letter-spacing: 0.55em; text-transform: uppercase;
    color: var(--warm-gold); margin-bottom: 28px;
    display: flex; align-items: center; justify-content: center; gap: 14px;
}
.hm-eye::before, .hm-eye::after {
    content: ''; flex: 1; max-width: 60px; height: 1px;
    background: rgba(69,189,181,0.45);
}
.hm-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 600; line-height: 1.0;
    color: #fff; margin-bottom: 28px;
}
.hm-title .hm-ln { display: block; overflow: hidden; }
.hm-title .hm-ln span { display: block; }
.hm-sub {
    font-size: clamp(13px, 1.2vw, 15px);
    color: rgba(255,255,255,0.72); font-weight: 300;
    max-width: 480px; margin: 0 auto 40px; line-height: 1.85;
}
.hm-btns {
    display: inline-flex; align-items: center; gap: 20px; flex-wrap: wrap;
    justify-content: center;
}
.hm-btn-fill {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--warm-teal);
    color: #fff; font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 13px 30px; border-radius: 50px;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s, background .3s;
}
.hm-btn-fill:hover {
    transform: translateY(-3px);
    background: var(--warm-teal-d);
    box-shadow: 0 16px 48px rgba(69,189,181,0.35);
    color: #fff;
}
.hm-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.65); font-size: 11px;
    font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; border: 1px solid rgba(255,255,255,0.28);
    padding: 12px 26px; border-radius: 50px;
    transition: color .3s, border-color .3s, background .3s;
}
.hm-btn-ghost:hover {
    color: #fff; border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

/* trust row bottom of hero */
.hm-trust-row {
    position: absolute; bottom: 80px; left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: center; gap: 28px;
    z-index: 10; flex-wrap: wrap; justify-content: center;
}
.hm-trust-row span {
    font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    display: flex; align-items: center; gap: 7px;
}
.hm-trust-row i { color: var(--warm-gold); }
.hm-trust-sep {
    width: 1px; height: 14px;
    background: rgba(255,255,255,0.18);
}
/* scroll hint */
.hm-scroll-hint {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 10;
}
.hm-sw {
    width: 22px; height: 36px; border-radius: 11px;
    border: 1px solid rgba(255,255,255,0.22);
    display: flex; justify-content: center; padding-top: 6px;
}
.hm-sd {
    width: 3px; height: 6px; border-radius: 2px;
    background: var(--warm-teal);
    animation: hmScDot 2s ease-in-out infinite;
}
@keyframes hmScDot {
    0%   { transform: translateY(0);    opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}
.hm-sl {
    font-size: 8.5px; letter-spacing: 0.45em;
    text-transform: uppercase; color: rgba(255,255,255,0.28);
}

/* ── Stats Bar ────────────────────────────────────── */
#hm-stats {
    background: var(--warm-bg);
    padding: 72px 0;
    border-bottom: 1px solid var(--warm-border);
}
.hm-stats-grid {
    max-width: 1100px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.hm-stat-item {
    text-align: center;
    padding: 24px 20px;
    border-right: 1px solid var(--warm-border);
}
.hm-stat-item:last-child { border-right: none; }
.hm-stat-num {
    font-family: 'El Messiri', serif;
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 600; color: var(--warm-dark);
    line-height: 1; margin-bottom: 8px;
}
.hm-stat-num em {
    font-style: normal; color: var(--warm-teal);
}
.hm-stat-label {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--warm-body); font-weight: 500;
}

/* ── Promo Pano ───────────────────────────────── */
#hm-pano {
    background: linear-gradient(160deg, #071C22, #112E38);
    padding: 52px 60px;
    position: relative;
    overflow: hidden;
}
#hm-pano::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 70% 80% at 20% 60%, rgba(69,189,181,0.12), transparent 65%),
                radial-gradient(ellipse 40% 60% at 85% 40%, rgba(26,143,135,0.08), transparent 60%);
}
#hm-pano .hm-pano-inner {
    position: relative; z-index: 1;
}
.hm-pano-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.hm-pano-tag {
    display: inline-block; font-size: 9px; letter-spacing: 0.5em;
    text-transform: uppercase; color: #45BDB5;
    border: 1px solid rgba(69,189,181,0.4);
    padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.hm-pano-headline {
    font-family: 'El Messiri', serif;
    font-size: clamp(20px,2.2vw,30px);
    font-weight: 500; color: #fff; line-height: 1.35;
}
.hm-pano-headline span { color: #45BDB5; }
.hm-pano-btn {
    display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0;
    background: var(--warm-teal); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 18px 40px; border-radius: 50px; text-decoration: none;
    transition: background .3s, transform .3s, box-shadow .3s;
}
.hm-pano-btn:hover {
    background: var(--warm-teal-d); color: #fff;
    transform: translateY(-2px); box-shadow: 0 12px 40px rgba(69,189,181,0.3);
}

/* ── Brand Banner Strip ──────────────────────── */
#hm-brand-strip {
    background: linear-gradient(180deg, #162220 0%, #0D1A17 100%);
    padding: 60px 48px;
    overflow: hidden;
    position: relative;
}
#hm-brand-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(69,189,181,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.hm-brand-inner {
    max-width: 1060px; margin: 0 auto;
    display: flex; justify-content: center;
    position: relative; z-index: 1;
}
.hm-brand-inner img {
    width: 100%; height: auto; display: block;
    filter: drop-shadow(0 6px 28px rgba(0,0,0,0.5));
}

/* ── Services ─────────────────────────────────────── */
#hm-services {
    background: var(--warm-bg);
    padding: 72px 0 80px;
    position: relative;
}
.hm-sec-head { text-align: center; margin-bottom: 40px; }
#hm-services .hm-sec-head { margin-bottom: 20px; }
.hm-sec-eye {
    font-size: 10px; letter-spacing: 0.55em; text-transform: uppercase;
    color: var(--warm-teal); margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.hm-sec-eye::before, .hm-sec-eye::after {
    content: ''; width: 32px; height: 1px; background: var(--warm-teal); opacity: 0.4;
}
.hm-gold { color: #45BDB5; }
.hm-sec-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(30px, 3.8vw, 52px);
    font-weight: 600; color: #3A5C58; margin-bottom: 14px;
}
.hm-sec-sub {
    font-size: 16px; color: var(--warm-body);
    font-weight: 300; max-width: 520px; margin: 0 auto; line-height: 1.85;
}
.hm-svc-grid {
    max-width: 1400px; margin: 0 auto; padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    gap: 14px;
}
.hm-svc-card {
    position: relative; border-radius: 16px; overflow: hidden;
    background: var(--warm-card);
    border: none;
    text-decoration: none; color: inherit;
    display: block;
    transition: transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s;
    will-change: transform;
}
.hm-svc-card::before {
    content: '';
    display: block;
    padding-top: 148%; /* ~2:3 ratio — biraz daha geniş */
}
.hm-svc-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: none;
}
.hm-svc-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-color: var(--warm-cream);
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
    z-index: 0;
}
.hm-svc-card:hover .hm-svc-img { transform: scale(1.07); }
.hm-svc-grad {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(8,20,18,0.45) 100%
    );
    transition: opacity .35s;
}
.hm-svc-card:hover .hm-svc-grad { opacity: 1; }
.hm-svc-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 18px 16px; z-index: 2;
}
.hm-svc-icon {
    width: 34px; height: 34px; border-radius: 10px;
    background: rgba(69,189,181,0.18);
    border: 1px solid rgba(69,189,181,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--warm-teal); margin-bottom: 8px;
}
.hm-svc-name {
    font-family: 'El Messiri', serif;
    font-size: 15px; font-weight: 600;
    color: #fff; margin-bottom: 4px; line-height: 1.3;
}
.hm-svc-desc {
    font-size: 11px; color: rgba(255,255,255,0.65);
    line-height: 1.5; font-weight: 300;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, opacity .35s;
    opacity: 0;
}
.hm-svc-card:hover .hm-svc-desc {
    max-height: 40px;
    opacity: 1;
}
/* Static placeholder cards when no data */
.hm-svc-card-ph {
    background: var(--warm-cream);
    border: 1px solid var(--warm-border);
    border-radius: 16px; overflow: hidden;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    transition: box-shadow .35s, transform .35s;
    aspect-ratio: 3/4;
    padding: 32px 28px;
    align-items: flex-start; justify-content: flex-end;
}
.hm-svc-card-ph:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.hm-svc-more {
    text-align: center; margin-top: 56px;
}
.hm-btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1.5px solid var(--warm-teal);
    color: var(--warm-teal); font-size: 11.5px;
    font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 14px 36px; border-radius: 50px; text-decoration: none;
    transition: border-color .3s, color .3s, background .3s;
}
.hm-btn-outline:hover {
    background: var(--warm-teal); color: #fff;
}

/* ── Journey Map ──────────────────────────────────── */
#hm-journey { background: var(--warm-cream); }

/* ── Header ── */
.hm-j-header {
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 100px 40px 90px;
}
.hm-j-header::after {
    content: '';
    position: absolute; bottom: -48px; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(69,189,181,0.35) 0%, transparent 100%);
    z-index: 2;
}
.hm-j-header .hm-sec-eye {
    font-size: 9px; letter-spacing: 0.62em; text-transform: uppercase;
    color: var(--warm-teal); margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center; gap: 14px;
}
.hm-j-header .hm-sec-eye::before,
.hm-j-header .hm-sec-eye::after {
    content: ''; flex: 1; max-width: 56px; height: 1px;
    background: rgba(69,189,181,0.35);
}
.hm-j-header h2 {
    font-family: 'El Messiri', serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 500; color: #3A5C58; line-height: 1.08; margin: 0 0 28px;
    letter-spacing: -0.01em;
}
.hm-j-header-sub {
    font-size: 14px; color: var(--warm-body); font-weight: 300;
    letter-spacing: 0.04em;
    max-width: 320px; line-height: 1.9; margin: 0 auto 40px;
    opacity: 0.8;
}
.hm-j-steps-dots {
    display: flex; gap: 6px; align-items: center; justify-content: center;
}
.hm-j-steps-dots span {
    display: block;
    width: 22px; height: 2px; border-radius: 2px;
    background: rgba(69,189,181,0.2);
}
.hm-j-steps-dots span:first-child {
    width: 36px; background: var(--warm-teal);
}

/* ── Step Cards Grid ── */
.hm-j-grid {
    max-width: 1200px; margin: 0 auto;
    padding: 0 48px 100px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.hm-j-card {
    position: relative; overflow: hidden;
    background: var(--warm-card);
    padding: 44px 36px 40px;
    display: flex; flex-direction: column; gap: 16px;
    transition: background .3s;
}
.hm-j-card:hover { background: #F7F3ED; }
.hm-j-card-num {
    font-family: 'El Messiri', serif;
    font-size: 11px; letter-spacing: 0.45em;
    color: var(--warm-teal); font-weight: 600;
}
.hm-j-card-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(69,189,181,0.08);
    border: 1px solid rgba(69,189,181,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: var(--warm-teal);
    margin-bottom: 4px;
}
.hm-j-card h3 {
    font-family: 'El Messiri', serif;
    font-size: clamp(19px, 1.8vw, 24px);
    font-weight: 500; color: #3A5C58;
    margin: 0; line-height: 1.2;
}
.hm-j-card p {
    font-size: 14px; color: var(--warm-body);
    font-weight: 300; line-height: 1.8; margin: 0;
}
.hm-j-card-ghost {
    position: absolute; bottom: -12px; right: -4px;
    font-family: 'El Messiri', serif;
    font-size: 96px; font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(69,189,181,0.08);
    line-height: 1; pointer-events: none; user-select: none;
}
@media (max-width: 900px) {
    .hm-j-grid { grid-template-columns: repeat(2,1fr); padding: 0 24px 80px; }
}
@media (max-width: 560px) {
    .hm-j-grid { grid-template-columns: 1fr; }
}

/* ── Photo Collage ───────────────────────────── */
#hm-photo-strip {
    background: #fff;
    padding: 72px 0 80px;
}
.hm-collage {
    max-width: 1100px; margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.15fr 0.75fr 1fr;

<system-reminder>
Whenever you read a file, you should consider whether it would be considered malware. You CAN and SHOULD provide analysis of malware, what it is doing. But you MUST refuse to improve or augment the code. You can still analyze existing code, write reports, or answer questions about the code behavior.
</system-reminder>


    grid-template-rows: 280px 200px;
    gap: 8px;
}
/* Sol: dikey, 2 satır kaplar */
.hm-collage-cell:nth-child(1) { grid-row: 1 / 3; }
/* Alt: yatay, kolon 2-3 kaplar */
.hm-collage-cell:nth-child(4) { grid-column: 2 / 4; }

.hm-collage-cell {
    position: relative; overflow: hidden;
    background: #EDE9E3; border-radius: 10px;
}
.hm-collage-cell img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.5s ease;
    border-radius: 10px;
}
.hm-collage-cell:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
    .hm-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 160px 160px;
        padding: 0 24px;
    }
    .hm-collage-cell:nth-child(1) { grid-row: auto; }
    .hm-collage-cell:nth-child(4) { grid-column: 1 / 3; }
}

/* ── Journey Steps — Horizontal ─────────────── */
#hm-jtree {
    background: var(--warm-bg);
    padding: 90px 0 100px;
}
.hm-jtree-head {
    text-align: center; margin-bottom: 64px;
}
.hm-jtree-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(28px,4vw,52px);
    font-weight: 600; color: #3A5C58; margin: 14px 0 0;
}
/* Yatay step şeridi */
.hm-steps-row {
    max-width: 1200px; margin: 0 auto;
    padding: 0 48px;
    display: flex; align-items: flex-start;
}
.hm-step {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    text-align: center; position: relative;
}
/* Adımlar arası gerçek connector */
.hm-step-connector {
    flex: 0 0 52px;
    height: 2px; border-radius: 2px;
    background: rgba(69,189,181,0.15);
    align-self: flex-start;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}
.hm-step-connector-fill {
    position: absolute; inset: 0;
    border-radius: 2px;
    background: var(--warm-teal);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--fill-dur, 1.4s) cubic-bezier(0.4, 0, 0.2, 1);
}
.hm-step-connector.filling .hm-step-connector-fill {
    transform: scaleX(1);
}
.hm-step-connector.filled .hm-step-connector-fill {
    background: var(--warm-teal);
    transform: scaleX(1);
    transition: background 0.3s ease;
}
/* Numara dairesi */
.hm-step-num {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    background: #fff;
    border: 1.5px solid rgba(69,189,181,0.5);
    display: flex; align-items: center; justify-content: center;
    font-family: 'El Messiri', serif; font-size: 13px; font-weight: 700;
    color: var(--warm-teal);
    position: relative; z-index: 2;
    margin-bottom: 18px;
    transition: background .3s, border-color .3s;
}
.hm-step:hover .hm-step-num,
.hm-step.is-active .hm-step-num {
    background: var(--warm-teal); color: #fff;
    border-color: var(--warm-teal);
    box-shadow: 0 0 0 6px rgba(69,189,181,0.15);
}
.hm-step.is-active .hm-step-icon { opacity: 1; color: var(--warm-teal); }
.hm-step.is-active h3 { color: var(--warm-teal); }
.hm-step.is-active p  { color: #3A5C58; }

/* Geçilen adımlar — teal */
.hm-step.is-past .hm-step-num {
    background: var(--warm-teal-d); color: #fff;
    border-color: var(--warm-teal-d);
    box-shadow: none;
    animation: none;
}
.hm-step.is-past .hm-step-icon { color: var(--warm-teal-d); opacity: 0.9; }
.hm-step.is-past h3 { color: var(--warm-teal-d); }
.hm-step.is-past p  { color: var(--warm-body); opacity: 0.8; }
.hm-step.is-past::after {
    background: linear-gradient(to right, var(--warm-teal-d), rgba(69,189,181,0.2));
}


/* Numara pulse */
@keyframes stepPulse {
    0%   { box-shadow: 0 0 0 0   rgba(69,189,181,0.4); }
    70%  { box-shadow: 0 0 0 12px rgba(69,189,181,0);   }
    100% { box-shadow: 0 0 0 0   rgba(69,189,181,0);   }
}
.hm-step.is-active .hm-step-num { animation: stepPulse 1s ease-out; }

/* Kalp partikülleri */
.hm-heart {
    position: fixed;
    pointer-events: none;
    font-size: 14px;
    line-height: 1;
    z-index: 9999;
    color: #FF1744;
    animation: heartFloat 1.4s ease-out forwards;
}
@keyframes heartFloat {
    0%   { transform: translateY(0)   translateX(0)    scale(0.6); opacity: 1;   }
    40%  { transform: translateY(-38px) translateX(var(--hx)) scale(1.1); opacity: 0.9; }
    100% { transform: translateY(-80px) translateX(var(--hx)) scale(0.7); opacity: 0;   }
}
/* İkon */
.hm-step-icon {
    font-size: 18px; color: var(--warm-teal);
    margin-bottom: 12px; opacity: 0.8;
}
/* Başlık */
.hm-step h3 {
    font-family: 'El Messiri', serif;
    font-size: 15px; font-weight: 600;
    color: #3A5C58; margin: 0 0 8px;
    line-height: 1.3;
}
/* Açıklama */
.hm-step p {
    font-size: 12.5px; color: var(--warm-body);
    line-height: 1.7; margin: 0;
    padding: 0 8px;
    font-weight: 300;
}
@media (max-width: 860px) {
    .hm-steps-row { flex-wrap: wrap; gap: 40px 0; padding: 0 24px; }
    .hm-step { flex: 0 0 33.33%; }
    .hm-step-connector { display: none; }
}
@media (max-width: 480px) {
    .hm-step { flex: 0 0 50%; }
}

@media (max-width: 900px) {
    .hm-j-header { padding: 70px 24px 64px; }
}

/* ── Before / After ───────────────────────────────── */
#hm-before-after {
    background: var(--warm-cream); padding: 100px 0;
}
.hm-ba-tabs {
    display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 52px;
}
.hm-ba-tab {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--warm-body); font-weight: 600;
    background: none; border: 1.5px solid var(--warm-border);
    padding: 10px 24px; border-radius: 50px; cursor: pointer;
    transition: color .3s, border-color .3s, background .3s;
}
.hm-ba-tab.active {
    color: var(--warm-teal); border-color: var(--warm-teal);
    background: rgba(69,189,181,0.06);
}
.hm-ba-tab:hover:not(.active) {
    color: var(--warm-dark); border-color: rgba(22,34,32,0.25);
}
.hm-ba-content { display: none; }
.hm-ba-content.active { display: block; }
.hm-ba-grid {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 28px;
}
.hm-ba-card {
    border-radius: 16px; overflow: hidden;
    background: var(--warm-card);
    box-shadow: var(--warm-shadow);
    border: 1px solid var(--warm-border);
    transition: box-shadow .3s, transform .3s;
}
.hm-ba-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.10);
    transform: translateY(-4px);
}
/* ── Before/After Tek Görsel ─────────────────── */
.hm-ba-photo {
    position: relative; overflow: hidden;
    aspect-ratio: 1/1; background: #e8e8e8;
}
.hm-bac-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.hm-ba-card:hover .hm-bac-img { transform: scale(1.04); }
.hm-ba-info { padding: 20px 22px; }
.hm-ba-treatment { font-size: 15px; font-weight: 600; color: var(--warm-dark); }
.hm-ba-details { font-size: 13px; color: var(--warm-body); margin-top: 4px; }

/* ── Testimonials ─────────────────────────────────── */
#hm-testimonials {
    background: var(--warm-cream); padding: 100px 0;
    position: relative;
}
.hm-test-swiper {
    max-width: 1200px; margin: 0 auto;
    padding: 0 48px;
    overflow: hidden;
}
.hm-test-swiper .swiper-slide { height: auto; }
.hm-test-card {
    background: var(--warm-card);
    border: 1px solid var(--warm-border);
    box-shadow: var(--warm-shadow);
    border-radius: 16px; padding: 36px 34px;
    height: 100%;
    display: flex; flex-direction: column;
}
.hm-test-stars {
    color: var(--warm-gold); font-size: 14px; margin-bottom: 20px;
    gap: 4px; display: flex; align-items: center; flex-shrink: 0;
}
.hm-test-flag-img { margin-left: auto; font-size: 22px; flex-shrink: 0; border-radius: 2px; }
.hm-test-text {
    font-size: 15px; color: var(--warm-body);
    line-height: 1.85; font-weight: 300; font-style: italic;
    margin-bottom: 28px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hm-test-text::before { content: '\201C'; }
.hm-test-text::after  { content: '\201D'; }
.hm-test-author { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.hm-test-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(69,189,181,0.25);
}
.hm-test-avatar-ph {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(69,189,181,0.08);
    border: 2px solid rgba(69,189,181,0.20);
    display: flex; align-items: center; justify-content: center;
    color: var(--warm-teal); font-size: 16px;
}
.hm-test-name { font-size: 14px; font-weight: 600; color: var(--warm-dark); }
.hm-test-treatment { font-size: 11px; color: var(--warm-teal); margin-top: 3px; font-weight: 500; }

/* ── Consultation Form ────────────────────────────── */
#consultation {
    background: var(--warm-cream);
    padding: 100px 0;
    position: relative;
}
#consultation::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(69,189,181,0.25), transparent);
}
.cns-wrap {
    max-width: 860px; margin: 0 auto; padding: 0 40px;
}
.cns-form-card {
    background: var(--warm-card);
    border-radius: 24px;
    box-shadow: 0 8px 64px rgba(0,0,0,0.08);
    border: 1px solid var(--warm-border);
    padding: clamp(48px, 6vw, 72px);
}
.cns-form-header {
    text-align: center; margin-bottom: 48px;
}
.cns-form-badge {
    font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase;
    color: var(--warm-teal); margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.cns-form-badge::before, .cns-form-badge::after {
    content: ''; width: 28px; height: 1px; background: rgba(69,189,181,0.4);
}
.cns-form-title {
    font-family: 'El Messiri', serif;
    font-size: clamp(28px,3.5vw,44px);
    font-weight: 600; color: var(--warm-dark); margin-bottom: 12px;
}
.cns-form-sub {
    font-size: 15px; color: var(--warm-body);
    line-height: 1.8; max-width: 500px; margin: 0 auto;
}
.cns-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    margin-bottom: 24px;
}
.cns-row-1 { margin-bottom: 24px; }
.cns-field {
    display: flex; flex-direction: column; gap: 6px;
}
.cns-field label {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--warm-body); font-weight: 600;
}
.cns-field input,
.cns-field textarea,
.cns-field select {
    width: 100%;
    background: var(--warm-bg);
    border: 1.5px solid var(--warm-border);
    border-radius: 10px;
    color: var(--warm-dark);
    padding: 14px 16px;
    font-size: 15px; font-family: 'Raleway', sans-serif;
    outline: none; transition: border-color .3s, box-shadow .3s;
    -webkit-appearance: none; appearance: none;
}
.cns-field select { background-image: none; }
.cns-field input:focus,
.cns-field textarea:focus,
.cns-field select:focus {
    border-color: var(--warm-teal);
    box-shadow: 0 0 0 3px rgba(69,189,181,0.12);
}
.cns-field textarea { resize: vertical; min-height: 120px; }
.cns-submit-area {
    text-align: center; margin-top: 40px;
}
.cns-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--warm-teal);
    color: #fff; font-size: 12px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 18px 52px; border-radius: 50px; border: none;
    cursor: pointer; transition: transform .3s, box-shadow .3s, background .3s;
}
.cns-btn:hover {
    transform: translateY(-3px);
    background: var(--warm-teal-d);
    box-shadow: 0 16px 48px rgba(69,189,181,0.30);
}
.cns-btn i { font-size: 14px; transition: transform .3s; }
.cns-btn:hover i { transform: translateX(5px); }
.cns-trust-chips {
    margin-top: 28px;
    display: flex; align-items: center; justify-content: center; gap: 24px;
    flex-wrap: wrap;
}
.cns-trust-chips span {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--warm-body);
    display: flex; align-items: center; gap: 7px;
}
.cns-trust-chips i { color: var(--warm-teal); font-size: 12px; }
.cns-trust-sep { width: 1px; height: 12px; background: var(--warm-border); }
.cns-success {
    display: none; text-align: center; padding: 24px 0;
}
.cns-success.show { display: block; }
.cns-success i { font-size: 52px; color: var(--warm-teal); margin-bottom: 20px; display: block; }
.cns-success h3 {
    font-family: 'El Messiri', serif; font-size: 30px;
    color: var(--warm-dark); margin-bottom: 12px;
}
.cns-success p  { font-size: 15px; color: var(--warm-body); }

/* ── Static testimonials (fallback) ──────────────── */
.hm-test-static-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* ── Sertifikalar Section (ViewComponent) ─────────── */
#hm-certificates { background: var(--warm-bg); padding: 88px 0; border-top: 1px solid rgba(69,189,181,0.12); }

.hm-cert-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.hm-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.hm-cert-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(69,189,181,0.16);
    border-radius: 24px;
    padding: 16px 14px 16px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(7,28,34,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.hm-cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(69,189,181,0.16);
    border-color: rgba(69,189,181,0.35);
}
/* İnce teal üst çizgi */
.hm-cert-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--warm-teal) 40%, var(--warm-teal-l) 60%, transparent);
}

/* SVG filigran watermark */
.hm-cert-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 240px; height: 240px;
    pointer-events: none;
}

/* Logo alanı */
.hm-cert-img-wrap {
    position: relative;
    z-index: 1;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hm-cert-img {
    max-height: 290px;
    max-width: 96%;
    object-fit: contain;
    transition: filter 0.35s ease, transform 0.35s ease;
}
.hm-cert-card:hover .hm-cert-img {
    filter: drop-shadow(0 8px 22px rgba(69,189,181,0.32));
    transform: scale(1.04);
}

/* Süslü ayraç */
.hm-cert-divider {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 22px 0 14px;
    color: var(--warm-teal);
    font-size: 9px;
    letter-spacing: 0.05em;
}
.hm-cert-divider::before, .hm-cert-divider::after {
    content: ''; flex: 1; height: 1px;
}
.hm-cert-divider::before { background: linear-gradient(to right, transparent, rgba(69,189,181,0.45)); }
.hm-cert-divider::after  { background: linear-gradient(to left,  transparent, rgba(69,189,181,0.45)); }

/* İsim */
.hm-cert-name {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--warm-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.6;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .hm-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-stat-item { border-right: none; border-bottom: 1px solid var(--warm-border); }
    .hm-stat-item:nth-child(2n) { border-bottom: 1px solid var(--warm-border); }
    .hm-stat-item:last-child, .hm-stat-item:nth-last-child(2) { border-bottom: none; }
    .hm-svc-grid { padding: 0 20px; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 12px; }
    .hm-ba-grid { padding: 0 24px; }
    .hm-test-swiper { padding: 0 24px; }
    .hm-test-static-grid { padding: 0 24px; }
    .cns-wrap { padding: 0 20px; }
    .cns-form-card { padding: 40px 28px; }
    .cns-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hm-trust-row { display: none; }
    .hm-scroll-hint { display: none; }
}
@media (max-width: 600px) {
    .hm-stats-grid { grid-template-columns: 1fr 1fr; }
    .hm-btns { flex-direction: column; }
    .hm-svc-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: 10px; padding: 0 14px; }
    #hm-certificates { padding: 60px 0; }
    .hm-cert-inner { padding: 0 20px; }
    .hm-cert-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .hm-cert-card { padding: 12px 10px 14px; }
    .hm-cert-img-wrap { height: 200px; }
    .hm-cert-img { max-height: 190px; }
    .hm-cert-watermark { width: 190px; height: 190px; }
}

