/* ═══════════════════════════════════════════════════
   ALES SİGORTA BROKERLİĞİ — Paylaşılan Stil Dosyası
   ═══════════════════════════════════════════════════ */

/* ── Renk Paleti ve Değişkenler ── */
/* Burada sitede kullanılan tüm renkler, gölgeler ve
   yuvarlatma değerleri tanımlı. İstediğin renkleri
   tek bir yerden değiştirebilirsin.                    */
html { overflow-x: hidden; }
:root {
  --blue-deep: #0d2b5e;        /* En koyu lacivert  */
  --blue-primary: #1a5fb4;     /* Ana mavi renk      */
  --blue-medium: #24a3e2;      /* Orta ton mavi      */
  --blue-light: #4db8e8;       /* Açık mavi (vurgu)  */
  --blue-accent: #1e73be;      /* Alternatif mavi    */
  --blue-bg: #e8f4fd;          /* Mavi arkaplan tonu */
  --blue-dark: #0a1f3d;        /* Footer koyusu      */
  --offwhite: #f5f7fa;         /* Sayfa zemini       */
  --offwhite-dark: #eef1f5;    /* Daha koyu zemin    */
  --text-dark: #1a2a3a;        /* Koyu yazı rengi    */
  --text-muted: #5a6a7a;       /* Soluk yazı rengi   */
  --text-light: #8a9aaa;       /* En soluk yazı      */
  --white: #ffffff;
  --shadow: 0 2px 16px rgba(13,43,94,0.06);
  --shadow-hover: 0 8px 40px rgba(13,43,94,0.1);
  --shadow-lg: 0 8px 40px rgba(13,43,94,0.1);
  --shadow-xl: 0 16px 60px rgba(13,43,94,0.12);
  --radius: 16px;              /* Büyük köşe yumuşatma */
  --radius-sm: 10px;           /* Küçük köşe yumuşatma */
}

/* ── Temel Sıfırlama ve Varsayılanlar ── */
/* Tüm elementlerin margin/padding'ini sıfırlar,
   yumuşak kaydırma ve Inter fontu ayarlar.          */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--offwhite);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }


/* ═══════════════════════════════════════════════════
   1. EN ÜST İLETİŞİM ÇUBUĞU (Top Bar)
   Telefon, e-posta ve sosyal medya linkleri
   ═══════════════════════════════════════════════════ */
.top-bar {
  background: rgba(36,163,226,0.92);           /* Mavi cam arkaplan */
  backdrop-filter: blur(12px);                 /* Apple liquid glass efekti */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0;
  font-size: 0.78rem;
  color: #fff;                                  /* Tüm yazılar beyaz */
}
.top-bar .container {
  display: flex;
  justify-content: space-between;               /* Sol ve sağ içerik ayrılsın */
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}
.top-bar-left svg { flex-shrink: 0; opacity: 0.7; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.top-bar-link {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.top-bar-link:hover { color: rgba(255,255,255,0.7); }
.top-bar-link svg { flex-shrink: 0; }
.top-bar-divider {
  color: rgba(255,255,255,0.2);
  font-size: 0.6rem;
  user-select: none;
}
.top-bar-social {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s;
  text-decoration: none;
}
.top-bar-social:hover { background: rgba(255,255,255,0.1); color: #fff; }


/* ═══════════════════════════════════════════════════
   2. LOGO ALANI (Header Top)
   ALES logosu ortalanmış şekilde
   ═══════════════════════════════════════════════════ */
.header-top {
  background: var(--white);
  border-bottom: 1px solid rgba(13,43,94,0.06);
  padding: 1.5rem 0;
  text-align: center;
}
.header-top .logo { display: inline-block; }
.header-top .logo img {
  height: 83px;          /* Logo yüksekliği (tüm sayfalarda aynı) */
  width: auto;
}


/* ═══════════════════════════════════════════════════
   3. MENÜ ÇUBUĞU (Navbar)
   Apple liquid glass tarzında koyu lacivert menü
   ═══════════════════════════════════════════════════ */
.navbar {
  position: sticky;                              /* Scroll'da yapışır */
  top: 0;
  z-index: 1000;
  background: rgba(13,43,94,0.88);               /* Lacivert cam */
  backdrop-filter: blur(20px) saturate(180%);    /* Liquid glass */
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0;
  transition: all 0.3s ease;
  box-shadow:
    0 2px 4px rgba(13,43,94,0.04),
    0 8px 32px rgba(13,43,94,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1);         /* Üstte ince ışık */
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar.scrolled {                                /* Sayfa aşağı kayınca */
  background: rgba(13,43,94,0.95);               /* Daha opak */
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow:
    0 2px 4px rgba(13,43,94,0.04),
    0 12px 40px rgba(13,43,94,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

/* ── Menü Linkleri ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
}
.nav-links > li { position: relative; }          /* Dropdown için referans */
.nav-links > li > a {
  display: block;
  padding: 1rem 1.25rem;
  color: rgba(255,255,255,0.9);                 /* Beyaz yazı */
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  text-transform: uppercase;                     /* BÜYÜK HARF */
  border-bottom: 2px solid transparent;          /* Aktif sayfa çizgisi */
}
.nav-links > li > a:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);            /* Hover'da cam efekti */
  transform: translateY(-1px);
}
.nav-links > li > a.active {                     /* Bulunulan sayfa */
  color: #fff;
  border-bottom-color: #fff;                     /* Altında beyaz çizgi */
}

/* ── Açılır Menü (Dropdown) ── */
.dropdown-menu {
  position: absolute;
  top: 100%;                                    /* Menünün hemen altında */
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(255,255,255,0.98);            /* Beyaz cam */
  backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 0.5rem;
  opacity: 0;                                    /* Gizli başlar */
  pointer-events: none;                          /* Tıklanamaz */
  transition: all 0.25s ease;
  z-index: 100;
  box-shadow: 0 12px 48px rgba(13,43,94,0.15);
  border: 1px solid rgba(13,43,94,0.06);
}
.dropdown:hover .dropdown-menu,                  /* Hover'da görünür */
.dropdown.active .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem !important;
  border-radius: 8px !important;
  color: var(--text-dark) !important;
  font-size: 0.82rem !important;
  white-space: nowrap;
  text-transform: none !important;               /* Normal yazı (büyük değil) */
  border-bottom: none !important;
  transition: all 0.2s;
}
.dropdown-menu a:hover {
  background: var(--blue-primary) !important;
  color: #fff !important;
}

/* ═══ Mega Menü (Tüm hizmetler) ═══ */
.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1280px;
  padding: 1.5rem 2rem !important;
  border-radius: 0 0 20px 20px !important;
}
.dropdown-mega:hover .mega-menu { transform: translateX(-50%); }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);          /* 7 sütunlu grid */
  gap: 0.5rem;
}
.mega-col { display: flex; flex-direction: column; gap: 0.15rem; }
.mega-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-primary);
  padding: 0.5rem 0.75rem 0.2rem;
  border-bottom: 1px solid rgba(13,43,94,0.06);
  margin-bottom: 0.15rem;
  display: block;
}
.mega-col a { padding: 0.3rem 0.75rem !important; font-size: 0.78rem !important; border-radius: 6px !important; }
.mega-col a:hover { background: var(--blue-primary) !important; color: #fff !important; }
.dropdown-sub { position: relative; }
.dropdown-sub .dropdown-menu { left: 100%; top: 0; transform: translateX(6px) translateY(0); }
.dropdown-sub:hover .dropdown-menu { transform: translateX(0) translateY(0); }

/* ── Dropdown oku ── */
.dropdown-arrow { font-size: 0.5rem; margin-left: 0.35rem; display: inline-block; transition: transform 0.25s; vertical-align: middle; }
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* ── Mobil Menü Butonu (Hamburger) ── */
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 1rem; }


/* ═══════════════════════════════════════════════════
   4. SAYFA BAŞLIĞI (Page Hero)
   Her sayfanın üstündeki büyük banner
   ═══════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {                           /* Koyu mavi katman */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,94,0.6), rgba(26,95,180,0.4));
}
.page-hero .content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.page-hero .content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);         /* Duyarlı boyut */
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}
.page-hero .content h1 em { color: var(--blue-light); font-style: normal; }
.page-hero .content .breadcrumb { font-size: 0.85rem; opacity: 0.7; }
.page-hero .content .breadcrumb a { color: var(--blue-light); }


/* ═══════════════════════════════════════════════════
   5. BÖLÜMLER (Sections)
   Ortak bölüm başlıkları ve alt yazılar
   ═══════════════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-medium);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-title em { color: var(--blue-primary); font-style: normal; }
.title-suffix {
  color: #1a5fb4;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  position: relative;
}
.title-suffix::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #1a5fb4, #24a3e2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.section-title:hover .title-suffix,
.why-features h3:hover .title-suffix {
  transform: translateX(4px);
  color: #24a3e2;
}
.section-title:hover .title-suffix::after,
.why-features h3:hover .title-suffix::after {
  transform: scaleX(1);
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════
   6. İÇERİK KARTLARI (Content Card)
   Metin kutuları — hover'da mavi bant + yükselme
   ═══════════════════════════════════════════════════ */
.content-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,43,94,0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
}
.content-card::before {                            /* Üstteki mavi gradient bant */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-medium), var(--blue-light));
  opacity: 0;                                      /* Gizli başlar */
  transition: opacity 0.4s ease;
}
.content-card:hover {
  transform: translateY(-6px);                      /* Hover'da yükselir */
  box-shadow: var(--shadow-hover);
}
.content-card:hover::before { opacity: 1; }        /* Bant görünür */
.content-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.content-card h2 em { color: var(--blue-primary); font-style: normal; }
.content-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}


/* ═══════════════════════════════════════════════════
   7. GRİD SİSTEMLERİ
   ═══════════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }


/* ═══════════════════════════════════════════════════
   8. CAM KART (Glass Card)
   ═══════════════════════════════════════════════════ */
.glass-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  border: 1px solid rgba(13,43,94,0.04);
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}


/* ═══════════════════════════════════════════════════
   9. CTA KARTI (Harekete Geçirici Mesaj)
   "BİZE DANIŞIN" butonlu beyaz cam kart
   ═══════════════════════════════════════════════════ */
.cta-card {
  background: rgba(255,255,255,0.85);             /* Beyaz cam */
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(26,95,180,0.15);         /* İnce mavi çerçeve */
  border-radius: 20px;
  padding: 2.5rem 3rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(13,43,94,0.04), 0 8px 24px rgba(13,43,94,0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.cta-card:hover {
  border-color: rgba(26,95,180,0.35);             /* Hover'da çerçeve belirginleşir */
  box-shadow: 0 2px 4px rgba(13,43,94,0.04), 0 8px 24px rgba(13,43,94,0.08), 0 0 0 1px rgba(26,95,180,0.06);
}
.cta-card::before {                                /* Arkaplandaki hafif ışıma */
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(26,95,180,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card h2 {
  position: relative;
  z-index: 1;
  color: #1a3a6b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;                             /* Tek satır (mobilde kırılır) */
}
.cta-card p {
  position: relative;
  z-index: 1;
  color: #6b7280;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.cta-btn {                                         /* "BİZE DANIŞIN" butonu */
  position: relative;
  z-index: 1;
  display: inline-block;
  background: linear-gradient(135deg, #1a5fb4, #0d2b5e);
  color: #fff;
  padding: 0.85rem 2.5rem;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 1.2px;
}
.cta-btn:hover {
  background: linear-gradient(135deg, #24a3e2, #1a5fb4);  /* Hover'da renk açılır */
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(36,163,226,0.2);
}


/* ═══════════════════════════════════════════════════
   10. ANLAŞMALI KURUMLAR (Partner Grid)
   ═══════════════════════════════════════════════════ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.partner-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(13,43,94,0.08);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow:
    0 1px 3px rgba(13,43,94,0.04),
    0 4px 16px rgba(13,43,94,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);           /* Üstte ışık */
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 12px rgba(13,43,94,0.06),
    0 12px 40px rgba(13,43,94,0.1),
    inset 0 1px 0 rgba(255,255,255,0.6);
  border-color: rgba(36,163,226,0.2);
}
.partner-logo {
  width: 100%; height: 100px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; padding: 0.5rem;
}
.partner-logo img { max-height: 100%; max-width: 100%; object-fit: contain; border-radius: 8px; }
.partner-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 0.75rem; }
.partner-links { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; }
.partner-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 500;
  color: var(--blue-primary);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: rgba(36,163,226,0.06);
  border: 1px solid rgba(36,163,226,0.12);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.partner-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.partner-link:hover {
  background: var(--blue-primary); color: #fff;
  border-color: var(--blue-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,95,180,0.2);
}


/* ═══════════════════════════════════════════════════
   11. ÖZELLİK LİSTESİ (Feature List)
   Tik işaretli maddeler
   ═══════════════════════════════════════════════════ */
.feature-list { list-style: none; }
.feature-list li {
  display: flex; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(13,43,94,0.04);
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  width: 26px; height: 26px; min-width: 26px;
  background: var(--blue-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-primary); font-size: 0.8rem; font-weight: 700; margin-top: 2px;
}
.feature-list li span { font-size: 0.92rem; line-height: 1.5; color: var(--text-dark); }
.feature-list li small { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }


/* ═══════════════════════════════════════════════════
   12. BUTONLAR
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.88rem; font-weight: 600;
  transition: all 0.3s ease;
  border: none; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,95,180,0.3); }
.btn-light { background: var(--blue-medium); color: #fff; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(36,163,226,0.3); }
.btn-outline-blue {
  border: 2px solid var(--blue-primary);
  color: var(--blue-primary);
  background: transparent;
}
.btn-outline-blue:hover { background: var(--blue-primary); color: #fff; }


/* ═══════════════════════════════════════════════════
   13. ALT BİLGİ (Footer)
   ═══════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));  /* Koyu gradient */
  padding: 4rem 0 2rem;
  color: #fff;
}
.footer .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .footer-logo-img {
  height: 48px; width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);               /* Logoyu beyaz yapar */
  opacity: 0.9;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: #fff; max-width: 300px; }
.footer h4 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 1.25rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: #fff; font-size: 0.85rem; transition: color 0.25s; }
.footer ul a:hover { color: var(--blue-light); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  transition: all 0.25s;
}
.footer-social a:hover { border-color: var(--blue-light); color: var(--blue-light); background: rgba(36,163,226,0.1); }

/* ── Footer alt şeridi (© 2026) ── */
.footer-bottom {
  background: rgba(36,163,226,0.92);             /* Mavi cam */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: #fff;
  /* Tam genişlik (viewport) — container'dan taşar */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50% + 2rem);
  padding-right: calc(50vw - 50% + 2rem);
}

/* ── WhatsApp Chat Widget ── */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-bubble {
  background: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  color: #fff;
  font-size: 28px;
}
.wa-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}
.wa-popup {
  background: #fff;
  border-radius: 16px;
  width: 320px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  flex-direction: column;
  min-height: 357px;
}
.wa-popup.open { display: flex; }
.wa-popup-header {
  background: #075e54;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-popup-header .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.wa-popup-header .info h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}
.wa-popup-header .info span {
  font-size: 0.75rem;
  opacity: 0.8;
}
.wa-popup .msg {
  padding: 16px 20px;
  background: #dcf8c6;
  margin: 14px 14px 0;
  border-radius: 8px 8px 8px 0;
  font-size: 0.85rem;
  color: #303030;
  line-height: 1.5;
  position: relative;
}
.wa-popup .msg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -6px;
  border: 6px solid transparent;
  border-right-color: #dcf8c6;
  border-bottom-color: #dcf8c6;
}
.wa-popup .wa-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
}
.wa-popup .wa-input-row input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 24px;
  padding: 14px 18px;
  font-size: 0.85rem;
  outline: none;
  transition: border 0.2s;
  color: #303030;
}
.wa-popup .wa-input-row input:focus {
  border-color: #25d366;
}
.wa-popup .wa-input-row button {
  background: #25d366;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.wa-popup .wa-input-row button:hover {
  background: #1da851;
}


/* ═══════════════════════════════════════════════════
   14. RESPONSIVE — Mobil/Tablet Uyumluluğu
   ═══════════════════════════════════════════════════ */

/* 1024px ve altı (tablet) */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links > li > a { padding: 1rem 0.9rem; font-size: 0.75rem; }
  .top-bar .container { justify-content: center; gap: 0.4rem; }
  .top-bar-right { gap: 0.5rem; }
}

/* 768px ve altı (telefon) */
@media (max-width: 768px) {
  .menu-toggle { display: block; }               /* Hamburger görünür */

  /* Mobil menü — sağdan kayan panel */
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: rgba(13,43,94,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 3.5rem 2rem 2rem;
    transition: right 0.35s ease; z-index: 999;
    overflow-y: auto; overflow-x: hidden; align-items: stretch; gap: 0;
  }
  .nav-links.open { right: 0; }
  .nav-links > li > a { padding: 0.75rem 1rem !important; border-bottom: none !important; }

  /* Mobilde dropdown'lar açılır/kapanır */
  .dropdown-menu {
    position: static; opacity: 1; pointer-events: all; transform: none;
    background: transparent; border: none; padding: 0 0 0 1rem; display: none;
    box-shadow: none;
  }
  .mega-menu {
    width: auto !important; max-width: none !important; border-radius: 0 !important;
    padding: 0.5rem 0 0.5rem 1rem !important;
    transform: none !important;
  }
  .dropdown-mega:hover .mega-menu { transform: none !important; }
  .dropdown:hover .dropdown-menu,
  .dropdown.active .dropdown-menu { opacity: 1; pointer-events: all; transform: none !important; }
  .dropdown.open .dropdown-menu,
  .dropdown-sub.open .dropdown-menu { display: block; }
  .dropdown-menu a { color: rgba(255,255,255,0.7) !important; }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.05) !important; color: #fff !important; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .mega-grid { display: flex; flex-direction: column; gap: 0.15rem; }
  .mega-heading {
    font-size: 0.7rem; padding: 0.5rem 0.6rem; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    border-radius: 8px; transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .mega-heading:hover { background: rgba(255,255,255,0.06); }
  .mega-heading::after {
    content: '▶'; font-size: 0.45rem;
    color: rgba(255,255,255,0.35);
    transition: transform 0.25s; margin-left: 0.5rem;
  }
  .mega-col.open .mega-heading::after { transform: rotate(90deg); }
  .mega-col > a { display: none; padding: 0.35rem 0.75rem !important; font-size: 0.72rem !important; }
  .mega-col.open > a { display: block; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; padding-left: calc(50vw - 50% + 1rem); padding-right: calc(50vw - 50% + 1rem); }
  .header-top .logo img { height: 56px; }
  .top-bar { font-size: 0.7rem; padding: 0.35rem 0; }
  .top-bar .container { flex-direction: column; gap: 0.2rem; }
  .top-bar-left, .top-bar-right { width: 100%; justify-content: center; flex-wrap: wrap; gap: 0.35rem; }
  .top-bar-social { width: 24px; height: 24px; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .page-hero .content h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section { padding: 3rem 0; }
  .content-card { padding: 1.5rem; }
  .cta-card { padding: 1.5rem 1.5rem; }
  .cta-card h2 { font-size: 0.9rem; margin-bottom: 1rem; white-space: normal; }
  .cta-btn { padding: 0.7rem 2rem; font-size: 0.8rem; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .partner-logo { height: 80px; }
  .partner-card { padding: 1.25rem 1rem; }
  .container { padding: 0 1rem; }
}

/* 480px ve altı (küçük telefon) */
@media (max-width: 480px) {
  .page-hero { padding: 2.5rem 0 2rem; }
  .page-hero .content h1 { font-size: clamp(1.3rem, 6vw, 1.6rem); }
  .section { padding: 2.5rem 0; }
  .content-card { padding: 1.25rem; }
  .cta-card { padding: 1.25rem 1.25rem; }
  .cta-card h2 { font-size: 0.85rem; margin-bottom: 0.85rem; white-space: normal; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-logo { height: 70px; }
  .grid-4 { gap: 1rem; }
}
