/* ============================================================
   SAYE SİGORTA — ULTRA PREMIUM VIP KURUMSAL STYLESHEET
   ============================================================ */

/* ── 1. CSS Custom Properties ───────────────────────────── */
:root {
  /* Lüks Yeşil Paleti */
  --green-primary:  #0d3a1a;
  --green-dark:     #061e0d;
  --green-deeper:   #092612;
  --green-medium:   #154c22;
  --green-light:    #1f6e32;
  --green-pale:     #eef7f2;
  --green-ultra:    #f4fbf6;
  --green-muted:    #89c09b;

  /* Altın Vurgu Paleti */
  --gold-primary:   #c8a84b;
  --gold-light:     #e5cb7a;
  --gold-dark:      #997d2e;
  --gold-pale:      #fcf8ec;

  /* Nötr Renkler */
  --white:          #ffffff;
  --gray-50:        #f8faf9;
  --gray-100:       #f1f5f3;
  --gray-200:       #e2e8f0;
  --gray-300:       #cbd5e1;
  --gray-400:       #94a3b8;
  --gray-500:       #64748b;
  --gray-600:       #475569;
  --gray-700:       #334155;
  --gray-800:       #1e293b;
  --gray-900:       #0f172a;

  /* Lüks Gölgeler */
  --shadow-xs:  0 2px 6px rgba(13,58,26,0.04);
  --shadow-sm:  0 4px 14px rgba(13,58,26,0.06);
  --shadow-md:  0 8px 24px rgba(13,58,26,0.09);
  --shadow-lg:  0 16px 40px -10px rgba(13,58,26,0.12);
  --shadow-xl:  0 24px 60px -12px rgba(13,58,26,0.18);
  --shadow-gold:0 8px 24px rgba(200,168,75,0.25);

  /* Border Radius */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Transitions */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --t-fast:     0.2s var(--ease);
  --t-base:     0.35s var(--ease);
  --t-slow:     0.5s var(--ease);

  /* Typography */
  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-gap: clamp(70px, 9vw, 110px);
}

/* ── 2. Reset & Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.2; }

/* ── 3. Utility Classes ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 900px; }
.container--wide   { max-width: 1440px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid        { display: grid; }

/* Section Heading */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green-primary);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-primary);
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
}
.section-title span { color: var(--green-primary); }

.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 580px;
  margin-top: 14px;
  line-height: 1.7;
}
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ── 4. Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-full);
  transition: var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--t-fast);
}
.btn:hover::after { background: rgba(255,255,255,.08); }
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,92,42,.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 24px rgba(26,92,42,.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
}

/* ── 2000 LEGACY & SLOGAN PRESTİJ KARTI — ULTRA PREMIUM ───── */
.legacy-slogan-card {
  background: linear-gradient(135deg, #0a2d13 0%, #154c22 50%, #071f0d 100%);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 24px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 1140px;
  margin: 40px auto 0 auto;
  box-shadow: 0 20px 50px rgba(7, 31, 13, 0.25), 0 2px 6px rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.legacy-slogan-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.lsc-left {
  flex-shrink: 0;
}

.lsc-year-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 20px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.lsc-year-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.lsc-year-val {
  display: block;
  font-size: 42px;
  font-weight: 900;
  font-family: var(--font-head);
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.lsc-year-sub {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
  white-space: nowrap;
}

.lsc-center {
  flex: 1;
}

.lsc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lsc-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.lsc-title {
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.lsc-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 620px;
}

.lsc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.lsc-features span {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lsc-right {
  flex-shrink: 0;
}

.lsc-btn {
  padding: 16px 32px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35) !important;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .legacy-slogan-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  .lsc-features {
    justify-content: center;
  }
}

/* ── SUBMİT BUTTONS — ZÜMRÜT YEŞİLİ KURUMSAL TEMA ───────── */
.btn-submit,
.btn-gold,
button[type="submit"] {
  background: linear-gradient(135deg, #154c22 0%, #0d3b19 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  padding: 16px 24px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
  box-shadow: 0 8px 20px rgba(13, 59, 25, 0.25) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  text-align: center !important;
  text-decoration: none !important;
}

.btn-submit:hover,
.btn-gold:hover,
button[type="submit"]:hover {
  background: linear-gradient(135deg, #1e602c 0%, #154c22 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 26px rgba(13, 59, 25, 0.35) !important;
  color: #ffffff !important;
}

/* ── MÜŞTERİ YORUMLARI (TESTIMONIALS) LÜKS STİLLERİ ──────── */
.testimonials-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(21, 76, 34, 0.12);
  border-color: rgba(21, 76, 34, 0.25);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-badge {
  background: rgba(21, 76, 34, 0.08);
  color: #154c22;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(21, 76, 34, 0.15);
}

.testimonial-quote {
  font-size: 14px;
  color: #334155;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #154c22, #0d3b19);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d4af37;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-info-name {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

.testimonial-info-loc {
  font-size: 12px;
  color: #64748b;
}

.btn-white {
  background: var(--white);
  color: var(--green-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,168,75,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,.5);
}

.btn-lg { font-size: 17px; padding: 17px 36px; }
.btn-sm { font-size: 13px; padding: 10px 20px; }

/* ── 5. TOP BAR ─────────────────────────────────────────── */
.top-bar {
  background: var(--green-dark);
  padding: 6px 0;
  font-size: 11.5px;
  color: rgba(255,255,255,.85);
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap !important;
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-top: 0 !important;
}
.top-bar a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.85);
  transition: var(--t-fast);
}
.top-bar a:hover { color: var(--white); }
.top-bar__divider {
  width: 1px; height: 10px;
  background: rgba(255,255,255,.2);
}
.top-bar__social { display: flex; gap: 6px; align-items: center; }
.top-bar__social a {
  width: 24px; height: 24px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: var(--t-base);
}
.top-bar__social a:hover {
  background: var(--green-medium);
  color: var(--white);
}

/* ── 6. MAIN HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 999999 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
}
.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(0,0,0,.14) !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 0;
}

/* Logo */
.site-logo { flex-shrink: 0; }
.site-logo img {
  height: 52px;
  width: auto;
  transition: var(--t-base);
}
.site-logo:hover img { opacity: .85; }

/* Nav */
.main-nav, .main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav__item { position: relative; }
.main-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  transition: all 0.25s ease;
  font-family: var(--font-head);
  position: relative;
}
.main-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: #c8a84b;
  border-radius: 4px;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-nav__link:hover,
.main-nav__link.active {
  color: #154c22 !important;
  background: transparent !important;
  font-weight: 800 !important;
}
.main-nav__link:hover::after,
.main-nav__link.active::after {
  transform: scaleX(1) !important;
}
.main-nav__link svg { transition: transform var(--t-fast); }
.main-nav__item:hover .main-nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  min-width: 250px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  border: 1px solid var(--gray-200);
  z-index: 999999 !important;
  pointer-events: auto !important;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -20px;
  right: -20px;
  height: 24px;
  background: transparent;
}
.main-nav__item:hover .nav-dropdown,
.main-nav__item.open .nav-dropdown,
.main-nav__item:focus-within .nav-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.nav-dropdown a:hover {
  background: var(--green-pale);
  color: var(--green-primary);
}
.nav-dropdown a .dd-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--green-pale);
  color: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  background: var(--green-pale);
  color: var(--green-primary);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  transition: var(--t-base);
}
.header-phone:hover { background: var(--green-pale); transform: translateY(-1px); }
.header-phone .phone-icon {
  width: 28px; height: 28px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  animation: phone-ring 3s ease-in-out infinite;
}
@keyframes phone-ring {
  0%,90%,100% { transform: rotate(0deg); }
  92% { transform: rotate(-15deg); }
  96% { transform: rotate(15deg); }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: var(--t-base);
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-toggle:hover { background: var(--green-pale); }
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: var(--t-base);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* RESPONSIVE NAV DISPLAY RULES */
@media (max-width: 992px) {
  .main-nav {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
    z-index: 10000 !important;
  }
}
@media (min-width: 993px) {
  .menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
  .main-nav__item:hover .nav-dropdown,
  .main-nav__item.open .nav-dropdown,
  .main-nav__item:focus-within .nav-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999999 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.open {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-nav__panel {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 92vw);
  height: 100vh;
  background: var(--white);
  padding: 24px 24px 120px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99999999 !important;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.mobile-nav.open .mobile-nav__panel {
  transform: translateX(0) !important;
}

/* Hide AI Robot & Floating Widgets when Mobile Menu is open */
body.menu-open .saye-support-wrapper,
body.menu-open .saye-support-panel,
body.menu-open .sticky-bottom-bar,
body.menu-open .floating-whatsapp,
body.menu-open .scroll-top,
.mobile-nav.open ~ .saye-support-wrapper,
.mobile-nav.open ~ .sticky-bottom-bar {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: var(--t-fast);
}
.mobile-nav__close:hover { background: var(--red-alert); color: var(--white); }

.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__links a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  font-size: 15px; font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  transition: var(--t-fast);
}
.mobile-nav__links a:hover {
  background: var(--green-pale);
  color: var(--green-primary);
  padding-left: 20px;
}
.mobile-nav__divider { height: 1px; background: var(--gray-200); margin: 12px 0; }
.mobile-nav__contact { margin-top: 24px; }
.mobile-nav__contact h4 {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gray-400); margin-bottom: 12px;
}
.mobile-nav__contact a {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 8px;
}

/* ── 7. HERO SECTION (ULTRA PREMIUM CORPORATE) ──────────── */
.hero {
  position: relative;
  min-height: min(740px, 92vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #05190b 0%, #0d3a1a 45%, #154c22 80%, #082410 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(200, 168, 75, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(31, 110, 50, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}
.hero__bg::after {
  content: '';
  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' fill-rule='evenodd'%3E%3Cg fill='%23c8a84b' fill-opacity='0.04'%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");
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 85px 0;
}

.hero__text { color: var(--white); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(200, 168, 75, 0.35);
  color: #fdfbf7;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 20px 8px 12px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.hero__badge-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #c8a84b;
  box-shadow: 0 0 10px #c8a84b;
  animation: pulse-gold 2s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 0 0 rgba(200, 168, 75, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(200, 168, 75, 0); }
}

.hero__title {
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--white);
}
.hero__title .highlight {
  position: relative;
  color: #e5cb7a;
  background: linear-gradient(135deg, #fefefe 0%, #e5cb7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

/* Page Hero Header Banner */
.page-hero {
  background: linear-gradient(135deg, #092c12 0%, #154c22 60%, #1b632d 100%) !important;
  padding: 60px 0 50px !important;
  text-align: center !important;
  color: #ffffff !important;
  border-bottom: 3.5px solid #c8a84b !important;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 46px) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  margin-bottom: 10px !important;
  font-family: var(--font-head) !important;
}
.page-hero p {
  font-size: 17px !important;
  color: #fce8ad !important;
  font-weight: 600 !important;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero__stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 168, 75, 0.2);
  border-radius: 16px;
  padding: 14px 16px;
  text-align: center;
}
.hero__stat-value {
  font-size: 26px;
  font-weight: 900;
  color: #e5cb7a;
  font-family: var(--font-head);
}
.hero__stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

/* Hero Form Card (Lüks Porselen Kart) */
.hero__form-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 24px 70px -15px rgba(5, 25, 11, 0.45);
  position: relative;
  border: 1px solid rgba(200, 168, 75, 0.2);
}
.hero__form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 4px;
  background: linear-gradient(90deg, #0d3a1a 0%, #c8a84b 50%, #154c22 100%);
  border-radius: 28px 28px 0 0;
}

.form-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  font-family: var(--font-head);
  letter-spacing: -0.01em;
}
.form-card__subtitle {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 24px;
}

/* ── 8. QUOTE FORM TABS ─────────────────────────────────── */
.quote-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  background: var(--gray-100);
  padding: 4px;
  border-radius: var(--r-md);
}
.quote-tab {
  flex: 1;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  font-family: var(--font-head);
  transition: var(--t-base);
  cursor: pointer;
  border: 2px solid transparent;
}
.quote-tab:hover {
  color: var(--green-primary);
  background: rgba(255,255,255,.6);
}
.quote-tab.active {
  background: var(--white);
  color: var(--green-primary);
  box-shadow: var(--shadow-sm);
  border-color: var(--green-pale);
}
.quote-tab .tab-icon {
  font-size: 20px;
  display: block;
}

/* Form Panel */
.quote-panel { display: none; }
.quote-panel.active { display: block; }

/* Form Fields */
.form-group {
  margin-bottom: 14px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  font-family: var(--font-head);
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  transition: var(--t-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(26,92,42,.1);
}
.form-control::placeholder { color: var(--gray-400); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Plakam Yok Toggle */
.plate-toggle-group { position: relative; }
.plate-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.toggle-switch {
  width: 40px; height: 22px;
  background: var(--gray-300);
  border-radius: 11px;
  position: relative;
  transition: var(--t-base);
  flex-shrink: 0;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  top: 3px; left: 3px;
  transition: var(--t-base);
  box-shadow: var(--shadow-xs);
}
.toggle-input:checked + .toggle-switch {
  background: var(--green-primary);
}
.toggle-input:checked + .toggle-switch::after {
  transform: translateX(18px);
}
.toggle-input { display: none; }
.toggle-label { font-size: 13px; font-weight: 600; color: var(--gray-600); }

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: var(--white);
  border-radius: var(--r-sm);
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-head);
  letter-spacing: .02em;
  box-shadow: 0 4px 20px rgba(26,92,42,.4);
  transition: var(--t-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,92,42,.5);
}
.btn-submit:active { transform: translateY(0); }

.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--gray-400);
}
.form-note svg { color: var(--green-medium); flex-shrink: 0; }

/* EQUAL 7-COLUMN PARTNER LOGO GRID */
.partner-logos-equal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  align-items: center;
}
@media (max-width: 1200px) {
  .partner-logos-equal-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
  }
}
@media (max-width: 992px) {
  .partner-logos-equal-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
@media (max-width: 576px) {
  .partner-logos-equal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}


/* ── 9. TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: var(--green-dark);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-head);
}
.trust-item__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ── 10. STATS SECTION ──────────────────────────────────── */
.stats-section {
  padding: var(--section-gap) 0;
  background: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--gray-100);
  transition: var(--t-slow);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  transform: scaleX(0);
  transition: var(--t-base);
}
.stat-card:hover {
  border-color: var(--green-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.stat-card:hover::before { transform: scaleX(1); }

.stat-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: var(--green-pale);
  color: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.stat-card__value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--green-primary);
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-600);
  font-family: var(--font-head);
}

/* ── 11. SERVICES SECTION (ULTRA PREMIUM CORPORATE) ───── */
.services-section {
  padding: var(--section-gap) 0;
  background: #f8faf9;
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 75, 0.3), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1.5px solid rgba(13, 58, 26, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: rgba(200, 168, 75, 0.5);
  box-shadow: 0 20px 40px -10px rgba(13, 58, 26, 0.12);
  transform: translateY(-8px);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d3a1a 0%, #1a5c2a 100%);
  color: #c8a84b;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(13, 58, 26, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.service-card__icon svg {
  width: 26px; height: 26px;
  stroke-width: 1.8;
}

.service-card:hover .service-card__icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, #145228 0%, #0d3a1a 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(13, 58, 26, 0.35);
}

.service-card__badge {
  font-size: 11px;
  font-weight: 700;
  color: #0d3a1a;
  background: rgba(13, 58, 26, 0.06);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(13, 58, 26, 0.12);
  letter-spacing: 0.02em;
  font-family: var(--font-head);
}

.service-card__title {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  font-family: var(--font-head);
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #0d3a1a;
  font-family: var(--font-head);
  transition: color 0.2s ease, transform 0.2s ease;
  margin-top: auto;
}

.service-card__link svg {
  transition: transform 0.2s ease;
}

.service-card:hover .service-card__link {
  color: #c8a84b;
}

.service-card:hover .service-card__link svg {
  transform: translateX(5px);
}

/* ── 12. WHY US SECTION ─────────────────────────────────── */
.whyus-section {
  padding: var(--section-gap) 0;
  background: var(--white);
  overflow: hidden;
}
.whyus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.whyus-visual {
  position: relative;
}
.whyus-main-card {
  background: linear-gradient(135deg, var(--green-primary), var(--green-deeper));
  border-radius: var(--r-xl);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.whyus-badge-year {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}
.whyus-main-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.whyus-main-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.whyus-big-number {
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,.15);
  font-family: var(--font-head);
  line-height: 1;
  position: absolute;
  bottom: 20px; right: 30px;
}
.whyus-main-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.whyus-main-card p {
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  position: relative;
}

.whyus-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-head);
}
.whyus-badge__value { font-size: 28px; font-weight: 900; }
.whyus-badge__label { font-size: 12px; font-weight: 600; opacity: .9; }

.whyus-features { margin-top: 24px; }
.whyus-feature {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}
.whyus-feature:last-child { border-bottom: none; }
.whyus-feature__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--green-pale);
  color: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--t-spring);
}
.whyus-feature:hover .whyus-feature__icon {
  background: var(--green-primary);
  color: var(--white);
  transform: scale(1.1);
}
.whyus-feature__title {
  font-size: 16px; font-weight: 700;
  color: var(--gray-800); margin-bottom: 4px;
  font-family: var(--font-head);
}
.whyus-feature__desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ── 13. PARTNERS SECTION — ULTRA PREMIUM ────────────────── */
.partners-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.07) 0%, rgba(248, 250, 252, 0.98) 60%, #f1f5f9 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.partners-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }

/* 14 Partner Grid - Ultra Lüks Cam Kartlar */
.partner-brands-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .partner-brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .partner-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.partner-brand-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 92px;
  box-shadow: 0 8px 20px -6px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.partner-brand-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-brand-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 35px -10px rgba(16, 185, 129, 0.22), 0 0 0 2px rgba(16, 185, 129, 0.25);
  border-color: rgba(16, 185, 129, 0.4);
  background: #ffffff;
}

.partner-brand-card:hover::after {
  opacity: 1;
}

.partner-brand-card img {
  max-width: 88%;
  max-height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.03));
  transition: transform 0.35s ease;
}

.partner-brand-card:hover img {
  transform: scale(1.08);
}

/* ── 14. SEO CONTENT SECTION ────────────────────────────── */
.seo-section {
  padding: var(--section-gap) 0;
  background: var(--white);
}
.seo-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.seo-content h2 {
  font-size: 28px; font-weight: 800;
  color: var(--gray-900); margin-bottom: 16px;
}
.seo-content h3 {
  font-size: 20px; font-weight: 700;
  color: var(--green-primary); margin: 28px 0 12px;
}
.seo-content p {
  font-size: 15px; color: var(--gray-600); line-height: 1.8;
  margin-bottom: 14px;
}
.seo-content ul {
  list-style: disc; padding-left: 20px;
  color: var(--gray-600); font-size: 15px; line-height: 1.8;
  margin-bottom: 14px;
}

/* Districts Sidebar */
.districts-sidebar {
  position: sticky;
  top: 100px;
}
.districts-card {
  background: var(--green-pale);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1.5px solid rgba(26,92,42,.1);
}
.districts-card h3 {
  font-size: 16px; font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 16px;
  font-family: var(--font-head);
  display: flex; align-items: center; gap: 8px;
}
.districts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.district-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-primary);
  background: var(--white);
  transition: var(--t-fast);
  border: 1px solid transparent;
  font-family: var(--font-head);
}
.district-link:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateX(2px);
}
.district-link::before { content: '📍'; font-size: 11px; }

/* ── 15. FAQ SECTION (ULTRA PREMIUM CORPORATE) ────────── */
.faq-section {
  padding: var(--section-gap) 0;
  background: #f8faf9;
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 868px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1.5px solid rgba(13, 58, 26, 0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.faq-item.open {
  border-color: #c8a84b;
  box-shadow: 0 12px 32px -8px rgba(13, 58, 26, 0.12);
  background: #ffffff;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-head);
  transition: color 0.2s ease;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}

.faq-question:hover {
  color: #0d3a1a;
}

.faq-item.open .faq-question {
  color: #0d3a1a;
}

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0d3a1a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  background: #0d3a1a;
  color: #c8a84b;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* ── 16. TESTIMONIALS SECTION ───────────────────────────── */
.testimonials-section {
  padding: var(--section-gap) 0;
  background: var(--white);
  overflow: hidden;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1.5px solid var(--gray-100);
  transition: var(--t-slow);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-pale);
}
.testimonial-card--featured {
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  border-color: transparent;
}

.review-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card--featured .review-stars { color: var(--gold-light); }

.review-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card--featured .review-text { color: rgba(255,255,255,.9); }

.review-quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 60px;
  color: var(--gray-100);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card--featured .review-quote { color: rgba(255,255,255,.1); }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 17px;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.testimonial-card--featured .reviewer-avatar {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.reviewer-name {
  font-size: 15px; font-weight: 700;
  color: var(--gray-800); font-family: var(--font-head);
}
.testimonial-card--featured .reviewer-name { color: var(--white); }
.reviewer-detail { font-size: 13px; color: var(--gray-400); }
.testimonial-card--featured .reviewer-detail { color: rgba(255,255,255,.65); }

/* ── 17. CTA SECTION ────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2d13 0%, #154c22 60%, #082910 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
}
.cta-section h2 {
  font-size: clamp(26px, 3.8vw, 42px) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
  line-height: 1.25 !important;
}
.cta-section p {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  max-width: 600px !important;
  margin: 0 auto 36px !important;
  line-height: 1.6 !important;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 18. FOOTER — 4 SÜTUNLU LÜKS KURUMSAL DÜZEN ──────────── */
.site-footer {
  background: #071f0d;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 72px;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social a:hover {
  background: var(--green-primary);
  color: #ffffff;
  border-color: var(--green-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  font-family: var(--font-head);
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gold);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0; margin: 0;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-top: 2px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}


/* ── 19. WHATSAPP BUTTON ────────────────────────────────── */
/* ── 19. WHATSAPP FLOAT — ÇİFT TEMSİLCİ ────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Toggle butonu (yeşil yuvarlak) */
.whatsapp-toggle {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  cursor: pointer;
  border: none;
  position: relative;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
  flex-shrink: 0;
}
.whatsapp-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: wa-pulse 2.5s ease-out infinite;
}
.whatsapp-toggle:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); }
.whatsapp-toggle[aria-expanded="true"] { background: #128C7E; }
.whatsapp-toggle[aria-expanded="true"]::before { animation: none; opacity: 0; }

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(2); opacity: 0; }
}

/* Temsilci paneli */
.whatsapp-panel {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  overflow: hidden;
  width: 290px;
  opacity: 0;
  transform: translateY(12px) scale(.95);
  pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-spring);
  border: 1px solid var(--gray-200);
}
.whatsapp-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Panel başlık */
.wa-panel-header {
  background: #075E54;
  padding: 16px 18px;
  color: #fff;
}
.wa-panel-header h4 {
  font-size: 14px; font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: 2px;
}
.wa-panel-header p {
  font-size: 12px; opacity: .8; margin: 0;
}
.wa-online-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #4AEC8C;
  border-radius: 50%;
  margin-right: 5px;
  animation: blink-dot 1.5s ease infinite;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* Temsilci kartları */
.wa-agents { padding: 12px; display: flex; flex-direction: column; gap: 8px; }

.wa-agent {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--green-ultra);
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all .2s ease;
}
.wa-agent:hover {
  background: var(--green-pale);
  border-color: var(--green-muted);
  transform: translateX(-2px);
}
.wa-agent:active { transform: scale(.98); }

.wa-agent-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
}
.wa-agent-avatar::after {
  content: '';
  position: absolute;
  bottom: 1px; right: 1px;
  width: 11px; height: 11px;
  background: #4AEC8C;
  border-radius: 50%;
  border: 2px solid #fff;
}

.wa-agent-info { flex: 1; min-width: 0; }
.wa-agent-name {
  font-size: 13px; font-weight: 700;
  color: var(--gray-800);
  font-family: var(--font-head);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wa-agent-role {
  font-size: 11px; color: var(--gray-500); margin-top: 1px;
}
.wa-agent-phone {
  font-size: 11px; font-weight: 600;
  color: var(--green-primary);
  margin-top: 3px;
}

.wa-agent-arrow {
  color: #25D366;
  font-size: 18px;
  flex-shrink: 0;
}

/* Panel alt not */
.wa-panel-footer {
  padding: 10px 16px;
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

/* Eski .whatsapp-btn uyumluluğu */
.whatsapp-btn {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--t-spring);
  position: relative;
}
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: wa-pulse 2.5s ease-out infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); }

/* Eski popup gizle (yeni panelle değiştirildi) */
.whatsapp-popup { display: none !important; }



/* ── 20. ANIMATION HELPERS ──────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.delay-100 { transition-delay: .1s; }
.delay-200 { transition-delay: .2s; }
.delay-300 { transition-delay: .3s; }
.delay-400 { transition-delay: .4s; }
.delay-500 { transition-delay: .5s; }

/* ── 21. PAGE HERO (Alt Sayfalar) ───────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__content { position: relative; }
.page-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  color: var(--gold-light);
  font-size: 13px; font-weight: 700;
  padding: 6px 16px; border-radius: var(--r-full);
  margin-bottom: 20px; border: 1px solid rgba(255,255,255,.2);
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 28px;
  font-size: 13px; color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: var(--t-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .4; }

/* ── 22. DISTRICT SEO GRID ──────────────────────────────── */
.district-seo-section {
  padding: var(--section-gap) 0;
  background: var(--green-ultra);
}
.district-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 36px;
}
.district-seo-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--t-base);
  font-size: 13px; font-weight: 700;
  color: var(--gray-700); font-family: var(--font-head);
}
.district-seo-card:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.district-seo-card .d-icon { font-size: 24px; display: block; margin-bottom: 8px; }

/* ── 23. RESPONSIVE — MOBİL ÖNCE ────────────────────────── */

/* Tablet (≤1200px) */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .whyus-inner        { grid-template-columns: 1fr; gap: 40px; }
  .seo-inner          { grid-template-columns: 1fr; }
  .districts-sidebar  { position: static; }
  .hero__content      { grid-template-columns: 1fr; }
  .hero__form-card    { max-width: 580px; margin: 0 auto; }
  .faq-grid           { grid-template-columns: 1fr; }
  .trust-bar__inner   { gap: 20px; }
}

/* Mobil (≤768px) */
@media (max-width: 768px) {
  /* Partner Grid Mobile */
  .partner-brands-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .pb-badge { width: 44px; height: 44px; font-size: 15px; }
  .psb-text strong { font-size: 16px; }
  .partner-slogan-band { padding: 16px 20px; gap: 12px; }
  /* Genel */
  :root { --section-gap: clamp(40px, 8vw, 60px); }

  /* Header */
  .top-bar { display: none; }
  .main-nav { display: none; }
  .header-inner { padding: 12px 0; }
  .site-logo img { height: 42px; }
  .header-phone span { display: none; }
  .header-phone { padding: 8px 12px; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }

  /* Hero */
  .hero { min-height: auto; }
  .hero__content {
    grid-template-columns: 1fr;
    padding: 40px 0 32px;
    gap: 32px;
  }
  .hero__title { font-size: clamp(26px, 7vw, 36px); }
  .hero__subtitle { font-size: 15px; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 16px; flex-wrap: wrap; }
  .hero__stat-value { font-size: 22px; }
  .hero__badge { font-size: 12px; padding: 5px 12px; }

  /* Hero Form Card */
  .hero__form-card {
    margin: 0;
    padding: 20px 16px;
    border-radius: var(--r-lg);
  }
  .form-card__title { font-size: 16px; }

  /* Quote Tabs — 3+3 satır düzeni */
  .quote-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 4px;
  }
  .quote-tab {
    padding: 8px 4px;
    font-size: 10.5px;
    min-width: unset;
    flex-direction: column;
    gap: 3px;
  }
  .quote-tab .tab-icon { font-size: 18px; }

  /* Form rows tek sütun */
  .form-row { grid-template-columns: 1fr; gap: 10px; }
  .form-control { font-size: 16px; } /* iOS zoom önleme — min 16px! */
  .form-label { font-size: 11px; }
  .btn-submit { font-size: 15px; padding: 14px; }

  /* Trust Bar */
  .trust-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .trust-item { font-size: 13px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 24px 16px; }
  .stat-card__icon { width: 48px; height: 48px; font-size: 22px; margin-bottom: 14px; }
  .stat-card__value { font-size: 28px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 20px; }
  .service-card__icon { width: 52px; height: 52px; font-size: 22px; }

  /* Why Us */
  .whyus-inner { gap: 28px; }
  .whyus-main-card { padding: 32px 24px; }
  .whyus-badge { display: none; }
  .whyus-feature { gap: 12px; padding: 14px 0; }
  .whyus-feature__icon { width: 40px; height: 40px; font-size: 18px; flex-shrink: 0; }

  /* Partners Slider */
  .partners-section { padding: 40px 0; }
  .partner-logo { min-width: 110px; height: 60px; padding: 12px 20px; font-size: 13px; }

  /* SEO Content */
  .seo-content h2 { font-size: 22px; }
  .seo-content h3 { font-size: 17px; }
  .districts-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* FAQ */
  .faq-question { font-size: 14px; padding: 16px 18px; }
  .faq-answer { font-size: 14px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 22px 18px; }

  /* CTA */
  .cta-section { padding: 48px 0; }
  .cta-inner h2 { font-size: clamp(22px, 6vw, 32px); }
  .cta-inner p { font-size: 15px; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 32px; }
  .footer-brand { grid-column: auto; }
  .footer-col ul { gap: 8px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* District Grid */
  .district-seo-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .district-seo-card { padding: 12px 8px; font-size: 12px; }
  .district-seo-card .d-icon { font-size: 20px; }

  /* Page Hero */
  .page-hero { padding: 52px 0 40px; }
  .page-hero h1 { font-size: clamp(24px, 7vw, 36px); }
  .page-hero p { font-size: 15px; }

  /* Section Headers */
  .section-title { font-size: clamp(22px, 6vw, 32px); }
  .section-desc { font-size: 15px; }

  /* WhatsApp */
  .whatsapp-float { bottom: 20px; right: 16px; }
  .whatsapp-btn { width: 52px; height: 52px; font-size: 22px; }
  .whatsapp-popup { display: none; } /* Mobilde popup gizle */

  /* Cookie */
  .cookie-banner { flex-direction: column; gap: 10px; }
  .cookie-icon { font-size: 24px; }
}

/* Küçük Mobil (≤480px) */
@media (max-width: 480px) {
  /* Partner Grid Small Mobile */
  .partner-brands-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pb-name { font-size: 11px; }
  .container { padding: 0 14px; }

  /* Hero */
  .hero__content { padding: 32px 0 24px; gap: 24px; }
  .hero__title { font-size: clamp(22px, 7.5vw, 30px); letter-spacing: -.01em; }
  .hero__subtitle { font-size: 14px; }
  .hero__stats { gap: 12px; }
  .hero__stat-value { font-size: 20px; }
  .hero__stat-label { font-size: 11px; }
  .hero__badge { font-size: 11px; }

  /* Form */
  .hero__form-card { padding: 16px 14px; border-radius: var(--r-md); }
  .quote-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 3px;
  }
  .quote-tab { padding: 7px 2px; font-size: 10px; }
  .quote-tab .tab-icon { font-size: 16px; }
  .form-control { padding: 11px 12px; }
  .btn-submit { padding: 13px; font-size: 14px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card { padding: 20px 12px; }
  .stat-card__value { font-size: 26px; }
  .stat-card__label { font-size: 13px; }

  /* Services */
  .service-card { padding: 20px 16px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-logo { height: 36px; }
  .footer-bottom-links { flex-direction: column; align-items: center; gap: 8px; }

  /* District Grid */
  .district-seo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Partners */
  .partner-logo { min-width: 100px; height: 54px; font-size: 12px; padding: 10px 16px; }

  /* Trust Bar */
  .trust-bar__inner { gap: 8px; }
  .trust-item { font-size: 12px; }
  .trust-item__icon { width: 30px; height: 30px; font-size: 15px; }

  /* Section Tags */
  .section-tag { font-size: 11px; padding: 5px 12px; }
}

/* Çok Küçük (≤360px — Galaxy S8 vb.) */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero__title { font-size: 21px; }
  .quote-tab { font-size: 9px; }
  .quote-tab .tab-icon { font-size: 15px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .district-seo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── iOS Spesifik Düzeltmeler ────────────────────────────── */
@supports (-webkit-touch-callout: none) {
  /* iOS'ta input zoom sorununu önle */
  input, select, textarea { font-size: 16px !important; }
  /* iOS safe area padding */
  .site-header { padding-top: env(safe-area-inset-top); }
  .whatsapp-float { bottom: calc(20px + env(safe-area-inset-bottom)); }
  .cookie-banner { bottom: calc(20px + env(safe-area-inset-bottom)); }
}

/* ── Touch Optimizasyonu ─────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Dokunmatik cihazlarda hover efektleri kaldır */
  .service-card:hover { transform: none; box-shadow: var(--shadow-card); }
  .stat-card:hover { transform: none; }
  .btn:hover { transform: none; }
  .district-seo-card:hover { transform: none; }

  /* Dokunmatik için daha büyük tıklama alanları */
  .main-nav__link { padding: 12px 16px; }
  .nav-dropdown a { padding: 14px 16px; }
  .faq-question { padding: 18px 20px; }
  .quote-tab { min-height: 44px; }
  .form-control { min-height: 48px; }
  .btn-submit { min-height: 52px; }
  .mobile-nav__links a { min-height: 48px; }

  /* Aktif state — hover yerine */
  .service-card:active { transform: scale(.98); }
  .btn:active { transform: scale(.97); }
}

/* ── 24. SCROLL PROGRESS BAR ────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  z-index: 9999;
  transition: width .1s linear;
}

/* ── 25. COOKIE BANNER ──────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px;
  right: 20px; max-width: 480px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  z-index: 999999;
  border: 1px solid var(--gray-200);
  transform: translateY(30px);
  opacity: 0;
  transition: var(--t-spring);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  pointer-events: auto !important;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-icon { font-size: 32px; flex-shrink: 0; }
.cookie-text { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.cookie-text strong { color: var(--gray-800); }
.cookie-actions { display: flex; gap: 8px; margin-top: 12px; }

/* ── 26. SECTION SEPARATOR ──────────────────────────────── */
.wave-sep {
  width: 100%; overflow: hidden;
  line-height: 0;
  background: var(--white);
}
.wave-sep svg { display: block; }



/* ── STORY SLIDER ────────────────────────────────────────── */
.story-slider-wrap {
  overflow-x: auto;
  overflow-y: visible;
  padding: 16px 0 8px;
  margin: 0 -8px 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.story-slider-wrap::-webkit-scrollbar { display: none; }

.story-slider {
  display: flex;
  gap: 20px;
  padding: 0 8px;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

/* Story Item (daire + etiket) */
.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: transform .2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.story-item:hover { transform: scale(1.07); }
.story-item:active { transform: scale(.96); }

/* Gradient halka (Instagram ring efekti) */
.story-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: conic-gradient(from 135deg, var(--c1), var(--c2), var(--c1));
  padding: 3px;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
  transition: box-shadow .3s ease, transform .3s ease;
  animation: ring-rotate 6s linear infinite;
  animation-play-state: paused;
}
.story-item:hover .story-ring {
  animation-play-state: running;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  transform: scale(1.05);
}

@keyframes ring-rotate {
  0% { background: conic-gradient(from 0deg, var(--c1), var(--c2), var(--c1)); }
  50% { background: conic-gradient(from 180deg, var(--c1), var(--c2), var(--c1)); }
  100% { background: conic-gradient(from 360deg, var(--c1), var(--c2), var(--c1)); }
}

/* İç daire */
.story-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 3px solid white;
  overflow: hidden;
}
.story-abbr {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1;
}
.story-sub {
  font-size: 7px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: .12em;
  line-height: 1;
}

/* Etiket altı */
.story-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  font-family: var(--font-head);
  text-align: center;
  max-width: 88px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── SLOGAN HERO ─────────────────────────────────────────── */
.partners-slogan-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 60%, #2d8a4e 100%);
  border-radius: 24px;
  padding: 36px 48px;
  box-shadow: 0 8px 32px rgba(26,92,42,.35);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.partners-slogan-hero::before {
  content: '';
  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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%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");
  opacity: 1;
}
.psh-emoji {
  font-size: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
  position: relative;
}
.psh-content { position: relative; }
.psh-sub {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 8px;
}
.psh-main {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.psh-desc {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

/* ── STORY MODAL (Eski kutular kaldırıldı) ──────────────── */
.story-modal {
  display: none !important;
}



/* Mobile overrides */
@media (max-width: 768px) {
  .story-slider { justify-content: flex-start; flex-wrap: nowrap; }
  .story-ring { width: 76px; height: 76px; }
  .story-abbr { font-size: 18px; }
  .partners-slogan-hero { padding: 28px 24px; gap: 16px; flex-direction: column; }
  .psh-emoji { font-size: 36px; }
  .psh-main { font-size: 26px; }
}
@media (max-width: 480px) {
  .story-ring { width: 68px; height: 68px; }
  .story-label { font-size: 11px; max-width: 72px; }
  .partners-slogan-hero { border-radius: 16px; }
}


/* ── Partner Logo Img ── */
.story-circle--logo {
  background: transparent !important;
  padding: 0 !important;
  overflow: hidden;
}
.partner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.story-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   INSTAGRAM STORIES OVERLAY
   ═══════════════════════════════════════════════════════════ */
.ig-story-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.ig-story-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Story Kartı — telefon oranı */
.ig-story-card {
  position: relative;
  width: min(380px, 90vw);
  height: min(680px, 88vh);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  flex-shrink: 0;
}

/* Progress Barlar */
.ig-progress {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 4px;
  z-index: 10;
}
.ig-prog-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.4);
  border-radius: 3px;
  overflow: hidden;
}
.ig-prog-fill {
  height: 100%;
  background: #fff;
  border-radius: 3px;
  width: 0%;
  transition: width linear;
}
.ig-prog-bar.done .ig-prog-fill { width: 100%; transition: none; }
.ig-prog-bar.active .ig-prog-fill { width: 0%; }

/* Üst Bar */
.ig-topbar {
  position: absolute;
  top: 24px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.ig-topbar-left { display: flex; align-items: center; gap: 10px; }
.ig-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}
.ig-meta { display: flex; flex-direction: column; gap: 1px; }
.ig-meta-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.ig-meta-date {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.ig-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  backdrop-filter: blur(4px);
}
.ig-close:hover { background: rgba(0,0,0,.5); }

/* Logo Alanı — ortada */
.ig-logo-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
}
.ig-logo-wrap {
  width: 100%;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: igLogoIn .35s cubic-bezier(.34,1.56,.64,1);
}
.ig-logo-wrap img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.12));
}

@keyframes igLogoIn {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* Alt Şerit */
.ig-bottom {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-bottom-name {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .02em;
}

/* Sol / Sağ Navigasyon */
.ig-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
  user-select: none;
}
.ig-nav:hover { background: rgba(255,255,255,.3); transform: scale(1.1); }
.ig-nav--left  span { margin-right: 2px; }
.ig-nav--right span { margin-left: 2px; }

/* Touch alanları (mobil) */
@media (max-width: 600px) {
  .ig-nav { display: none; }
  .ig-story-card { width: 100vw; height: 100dvh; border-radius: 0; }
  .ig-story-overlay { gap: 0; background: #000; }
}


.main-nav__item.open .nav-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}
/* ── 20. MÜŞTERİ YORUMLARI SIFIR BOŞLUKSUZ KESİNTİSİZ MARQUEE ── */
.testimonials-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.testimonials-marquee-content {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: seamlessMarquee 75s linear infinite;
  will-change: transform;
}

.testimonials-marquee-wrapper:hover .testimonials-marquee-content {
  animation-play-state: paused !important;
}

@keyframes seamlessMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

/* ── 21. MOBİL YAPIŞKAN TEKLİF BARI VE BOTTOM SHEET MODAL ────────── */
.mobile-sticky-bar,
.mobile-sheet-overlay {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0d3a1a;
    background: linear-gradient(135deg, #0d3a1a 0%, #1a5c2a 100%);
    padding: 10px 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    border-top: 2px solid #c8a84b;
    align-items: center;
    justify-content: space-between;
  }
  
  .mobile-sticky-bar__left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-head);
  }
  
  .btn-mobile-quote {
    background: var(--gold-primary, #c8a84b);
    color: #000000;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(200, 168, 75, 0.4);
    transition: transform 0.15s ease;
    font-family: var(--font-head);
  }
  .btn-mobile-quote:active {
    transform: scale(0.95);
  }
  
  /* Bottom Sheet Overlay (Sadece Mobilde Tıklanınca Açılır) */
  .mobile-sheet-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .mobile-sheet-overlay.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-sheet-content {
    background: #ffffff;
    width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 24px 20px 32px 20px;
    max-height: 88vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  }
  
  .mobile-sheet-overlay.active .mobile-sheet-content {
    transform: translateY(0);
  }
  
  .mobile-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .mobile-sheet-title {
    font-size: 17px;
    font-weight: 800;
    color: #0d3a1a;
    font-family: var(--font-head);
    margin: 0;
  }
  
  .mobile-sheet-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── SCROLL TO TOP BUTTON (PERMANENTLY REMOVED UPON USER REQUEST) ── */
.scroll-top,
#scrollTopBtn,
#scroll-top,
.back-to-top,
.scroll-to-top,
.scroll-top-btn,
.btn-scroll-top,
.scroll-up,
#scrollUp,
a[href="#top"],
a[aria-label*="Yukarı"],
button[aria-label*="Yukarı"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* ── ULTRA SHOWY FLOATING WHATSAPP WIDGET (AT BOTTOM RIGHT) ── */
.wa-widget-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
}

/* TOBB & SEDDK ACCREDITATION TRUST SHOWCASE CARD */
.tobb-showcase-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(5, 25, 11, 0.92), rgba(13, 58, 26, 0.96));
  border: 2px solid #c8a84b;
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(200, 168, 75, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tobb-showcase-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5), 0 0 36px rgba(200, 168, 75, 0.5);
  border-color: #ffd700;
}

.tobb-showcase-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 75, 0.25), transparent);
  animation: waShimmer 3.5s infinite;
}

@keyframes waShimmer {
  0% { left: -100%; }
  30%, 100% { left: 100%; }
}

.tobb-showcase-emblem {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #c8a84b, #96772b);
  color: #05190b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(200, 168, 75, 0.4);
  border: 1px solid #ffffff;
}

.tobb-showcase-content strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #ffffff !important;
  font-family: var(--font-head);
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tobb-showcase-content span {
  font-size: 13px;
  color: #f1f5f9 !important;
  font-weight: 700;
  display: block;
  margin-top: 3px;
  letter-spacing: 0.01em;
}

.tobb-verified-seal {
  background: linear-gradient(135deg, #c8a84b, #dfb858);
  color: #05190b !important;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ── ULTRA SHOWY CTA BUTTONS (PHONE & WHATSAPP) ── */
.cta-btns-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 100%);
  color: #05190b !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 16px;
  font-family: var(--font-head);
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(200, 168, 75, 0.4), 0 0 20px rgba(200, 168, 75, 0.2);
  border: 2px solid #ffffff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-cta-phone:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(200, 168, 75, 0.6), 0 0 30px rgba(200, 168, 75, 0.4);
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
}

.btn-cta-phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #05190b;
  color: #c8a84b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 16px;
  font-family: var(--font-head);
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.2);
  border: 2px solid #ffffff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-cta-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.4);
}

.btn-cta-wa-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn-cta-wa-icon svg {
  width: 22px;
  height: 22px;
  fill: #25d366;
}

.btn-cta-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.btn-cta-label {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-cta-val {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

/* Floating Trigger Button */
.wa-widget-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff !important;
  padding: 12px 20px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 20px rgba(37, 211, 102, 0.2);
  cursor: pointer;
  border: none;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font-head);
  position: relative;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: waBounceAttention 4s ease-in-out infinite;
}

.wa-widget-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.4);
}

.wa-widget-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Dynamic Notification Badge */
.wa-badge {
  position: absolute;
  top: -6px;
  right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.5);
  animation: waBadgePulse 1.5s infinite;
}

/* Glowing Pulsing Rings */
.wa-ring-pulse {
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border-radius: 60px;
  border: 2px solid #25d366;
  animation: waGlowExpand 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes waGlowExpand {
  0% { transform: scale(0.95); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes waBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes waBounceAttention {
  0%, 100% { transform: translateY(0); }
  10% { transform: translateY(-8px) scale(1.02); }
  20% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
  40% { transform: translateY(0); }
}

.wa-popup-card {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 340px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(37, 211, 102, 0.2);
  overflow: hidden;
  display: none;
  flex-direction: column;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom right;
}

.wa-popup-card.active {
  display: flex;
  transform: scale(1) translateY(0);
  opacity: 1;
}

.wa-popup-header {
  background: linear-gradient(135deg, #0d3a1a, #05190b);
  color: #fff;
  padding: 18px 20px;
  position: relative;
}

.wa-popup-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-popup-status-bar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

.wa-popup-status-bar.online {
  background: rgba(37, 211, 102, 0.18);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.wa-popup-status-bar.offline {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.wa-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.wa-popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Agent List */
.wa-agent-list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8faf9;
}

.wa-agent-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none !important;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.wa-agent-item:hover {
  transform: translateY(-2px);
  border-color: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.18);
  background: #ffffff;
}

.wa-agent-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.wa-agent-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.wa-agent-dot.online { background: #25d366; }
.wa-agent-dot.offline { background: #ef4444; }

.wa-agent-info {
  flex-grow: 1;
}

.wa-agent-name {
  font-weight: 800;
  font-size: 13.5px;
  color: #0d3a1a;
  margin-bottom: 2px;
}

.wa-agent-role {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.wa-agent-status {
  font-size: 10px;
  font-weight: 800;
  margin-top: 3px;
}
.wa-agent-status.online { color: #16a34a; }
.wa-agent-status.offline { color: #dc2626; }

.wa-agent-action {
  background: #25d366;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .wa-widget-wrapper {
    bottom: 80px;
    right: 16px;
  }
  .wa-popup-card {
    width: 300px;
    right: 0;
  }
}

/* ── 22. TEK BİRLEŞİK CANLI DESTEK MERKEZİ (AI ROBOT + WHATSAPP HUB) STYLES ──── */
.saye-support-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999 !important;
  pointer-events: auto !important;
}

.btn-saye-support-trigger {
  background: linear-gradient(135deg, #05190b 0%, #0d3a1a 50%, #165327 100%);
  color: #ffffff;
  border: 3px solid #D4A843;
  border-radius: 50px;
  padding: 8px 26px 8px 8px;
  font-weight: 900;
  font-size: 16px;
  font-family: var(--font-head);
  box-shadow: 0 14px 40px rgba(13, 58, 26, 0.6), 0 0 25px rgba(212, 168, 67, 0.45);
  cursor: pointer !important;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 999999 !important;
  pointer-events: auto !important;
}

.btn-saye-support-trigger:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 48px rgba(13, 58, 26, 0.75), 0 0 35px rgba(212, 168, 67, 0.6);
  background: linear-gradient(135deg, #0d3a1a 0%, #165327 50%, #227035 100%);
}

.saye-support-avatar-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #D4A843;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.saye-support-avatar-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.saye-support-online-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  background: #22c55e;
  border: 2px solid #0d3a1a;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

.saye-support-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.saye-support-badge-title {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.saye-support-badge-sub {
  font-size: 11px;
  color: #D4A843;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
}

.saye-support-num-badge {
  position: absolute;
  top: -6px;
  right: -4px;
  background: #ef4444;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.6);
  animation: waBadgePulse 1.5s infinite;
}

/* UNIFIED SUPPORT PANEL WINDOW */
.saye-support-panel {
  position: fixed;
  bottom: 98px;
  right: 24px;
  width: 390px;
  max-width: calc(100vw - 32px);
  height: min(540px, calc(100vh - 120px));
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(212, 168, 67, 0.15);
  border: 2.5px solid #D4A843;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99999;
  overflow: hidden;
}

.saye-support-panel.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

/* MOBILE SHEET OVERLAY SAFEGUARD */
.mobile-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999990;
  display: none !important;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
}
.mobile-sheet-overlay.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.saye-support-header {
  background: linear-gradient(135deg, #0d3a1a, #1a5c2a);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #D4A843;
  color: #ffffff;
  flex-shrink: 0;
}

.saye-support-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.saye-support-header-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #D4A843;
  padding: 2px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.saye-support-header-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.saye-support-header-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.saye-support-header-status {
  font-size: 11px;
  color: #86efac;
  margin: 2px 0 0 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.saye-support-status-pulse {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseAiGreen 1.8s infinite;
}

.saye-support-close {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.saye-support-close:hover {
  background: #ef4444;
}

/* TAB NAV BAR (SUPER PROMINENT HIGH-CONTRAST PILLS) */
.saye-support-tabs {
  display: flex;
  background: #092611;
  padding: 8px 12px;
  gap: 8px;
  border-bottom: 2px solid #D4A843;
  flex-shrink: 0;
}

.saye-support-tab {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-head);
}

.saye-support-tab:hover {
  background: rgba(255, 255, 255, 0.25);
}

.saye-support-tab.active {
  color: #0d3a1a !important;
  background: linear-gradient(135deg, #D4A843 0%, #f3d078 100%) !important;
  border-color: #ffffff !important;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.5);
}

.saye-support-tab-content {
  display: none;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.saye-support-tab-content.active {
  display: flex;
}

/* CHAT MESSAGES & CHIPS */
.saye-ai-chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.saye-ai-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  font-size: 13px;
  line-height: 1.5;
  animation: fadeInMsg 0.3s ease forwards;
}

.saye-ai-msg.bot { align-self: flex-start; }
.saye-ai-msg.user { align-self: flex-end; }

.saye-ai-bubble {
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.saye-ai-msg.bot .saye-ai-bubble {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-top-left-radius: 4px;
}

.saye-ai-msg.user .saye-ai-bubble {
  background: linear-gradient(135deg, #0d3a1a, #1a5c2a);
  color: #ffffff;
  border-top-right-radius: 4px;
}

.saye-ai-time {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 4px;
  align-self: flex-end;
}

.saye-ai-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.saye-ai-chip {
  background: #fffcf5;
  color: #0d3a1a;
  border: 1.5px solid #D4A843;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.saye-ai-chip:hover {
  background: #0d3a1a;
  color: #D4A843;
  border-color: #0d3a1a;
}

.saye-ai-chat-footer {
  padding: 12px 14px;
  background: #ffffff;
  border-top: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.saye-ai-input {
  flex-grow: 1;
  border: 1.5px solid #cbd5e1;
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.saye-ai-input:focus {
  border-color: #0d3a1a;
  box-shadow: 0 0 0 3px rgba(13, 58, 26, 0.1);
}

.btn-saye-ai-send {
  background: linear-gradient(135deg, #0d3a1a, #1a5c2a);
  color: #D4A843;
  border: 1px solid #D4A843;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}

.btn-saye-ai-send:hover {
  transform: scale(1.08);
  background: #D4A843;
  color: #0d3a1a;
}

/* ── MOBILE OVERFLOW & BOTTOM BAR UNIFIED LAYOUT FIXES ───── */
html, body {
  overflow-x: clip !important;
  max-width: 100vw !important;
}

/* Ensure wide tables or containers wrap on mobile */
.table-responsive,
.comparison-table-wrapper,
.service-table-wrapper {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

table {
  max-width: 100%;
}

@media (max-width: 992px) {
  /* Collapse 2-column service and contact grids to single column */
  .service-page-grid,
  .service-detail-grid,
  .contact-grid,
  .contact-page-grid,
  div[style*="grid-template-columns: 1fr 370px"],
  div[style*="grid-template-columns: 1fr 380px"],
  div[style*="grid-template-columns: 1fr 400px"],
  div[style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .service-sidebar,
  .sidebar-form-card,
  .contact-form-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  /* Floating AI Robot & WhatsApp widget position above bottom sticky bar */
  .saye-support-wrapper {
    bottom: 74px !important;
    right: 14px !important;
  }

  .saye-support-panel {
    bottom: 142px !important;
    right: 12px !important;
    left: 12px !important;
    width: calc(100vw - 24px) !important;
    height: min(480px, calc(100vh - 170px)) !important;
  }

  .btn-saye-support-trigger {
    padding: 6px 12px 6px 6px !important;
  }

  .btn-saye-support-trigger .saye-support-text-title {
    font-size: 13.5px !important;
  }

  .btn-saye-support-trigger .saye-support-text-sub {
    font-size: 10px !important;
  }
}








