/* ══════════════════════════════════════════
   BRITISH TOWN — Ana Stil Dosyası
   Tasarım: Özgün Premium, Outfit Font
   ══════════════════════════════════════════ */

/* ── RESET & BASE ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: var(--leading-normal);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── CSS VARIABLES ──────────────────────── */
:root {
  /* Renkler */
  --color-primary:        #003366;
  --color-primary-light:  #0052A5;
  --color-primary-dark:   #001F40;
  --color-accent:         #C8102E;
  --color-accent-light:   #E63950;
  --color-cyan:           #00D4FF;
  --color-cyan-dark:      #00B8E0;
  --color-whatsapp:       #25D366;
  --color-dark:           #0A0E1A;
  --color-text:           #1A2340;
  --color-text-muted:     #6B7A9A;
  --color-border:         #DDE3EE;
  --color-light:          #F5F7FA;
  --color-white:          #FFFFFF;

  /* Gradients */
  --gradient-hero:    linear-gradient(135deg, #001229 0%, #002855 45%, #003D82 100%);
  --gradient-primary: linear-gradient(135deg, #003366, #0052A5);
  --gradient-accent:  linear-gradient(135deg, #C8102E, #E63950);
  --gradient-cyan:    linear-gradient(135deg, #00D4FF, #00B8E0);
  --gradient-dark:    linear-gradient(180deg, #0A0E1A 0%, #001F40 100%);

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --font-light:     300;
  --font-regular:   400;
  --font-medium:    500;
  --font-semibold:  600;
  --font-bold:      700;
  --font-extrabold: 800;
  --font-black:     900;
  --leading-tight:   1.2;
  --leading-snug:    1.375;
  --leading-normal:  1.6;
  --leading-relaxed: 1.75;

  /* Spacing (8px grid) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --section-py: var(--space-20);

  /* Border Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   18px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,51,102,.10);
  --shadow-lg:   0 8px 32px rgba(0,51,102,.15);
  --shadow-xl:   0 16px 48px rgba(0,51,102,.20);
  --shadow-card: 0 2px 12px rgba(0,51,102,.08);
  --shadow-card-hover: 0 12px 40px rgba(0,51,102,.18);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1280px;
  --navbar-h: 72px;
}

/* ── CONTAINER ──────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (max-width: 768px) { .container { padding: 0 var(--space-4); } }

/* ── SECTION HELPERS ────────────────────── */
.section { padding: var(--section-py) 0; }
.section-light { background: var(--color-light); }
.section-dark  { background: var(--gradient-dark); color: white; }
.section-primary { background: var(--gradient-primary); color: white; }

.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
}
.section-dark .section-title,
.section-primary .section-title { color: white; }
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}
.section-dark .section-subtitle,
.section-primary .section-subtitle { color: rgba(255,255,255,.75); }

/* ── BUTTONS ────────────────────────────── */
.btn-primary, .btn-secondary, .btn-outline, .btn-accent {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  letter-spacing: .015em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-accent);
  color: white;
  border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,.40);
}
.btn-secondary {
  background: var(--gradient-primary);
  color: white;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,51,102,.35);
}
.btn-accent {
  background: var(--gradient-cyan);
  color: var(--color-dark);
  font-weight: var(--font-bold);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,255,.40); }
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: white; }
.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-primary:hover { background: var(--color-primary); color: white; }
.btn-sm  { padding: 10px 22px; font-size: var(--text-sm); }
.btn-lg  { padding: 18px 44px; font-size: var(--text-lg); }
.btn-full { width: 100%; justify-content: center; }
.btn-text-muted { color: var(--color-text-muted); font-size: var(--text-sm); padding: var(--space-2) 0; background:none; border:none; }
.btn-text-muted:hover { color: var(--color-text); }

/* Bento CTA Button (Standalone) */
.btn-bento-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--gradient-accent);
  color: white;
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  max-width: 340px;
  margin: 0 auto;
  border: 1.5px solid transparent;
}
.btn-bento-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,51,102,.12);
  color: white;
}
.btn-bento-cta i {
  font-size: 1.2rem;
  color: white;
  transition: transform .2s;
}
.btn-bento-cta:hover i {
  transform: translateX(6px);
}

/* ── CARDS ──────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

/* Premium Branch Contact Card */
.branch-contact-premium {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 51, 102, 0.08);
  border: 1px solid rgba(0, 51, 102, 0.05);
  margin-bottom: var(--space-8);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.branch-contact-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}
.bcp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.bcp-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(200, 16, 46, 0.06);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.bcp-content h4 {
  font-size: 0.8rem; font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.35rem; display:block;
}
.bcp-content p, .bcp-content a, .bcp-content span {
  font-size: .95rem; font-weight: 600; color: var(--color-primary); text-decoration: none; line-height: 1.5; display:block;
  word-wrap: break-word; overflow-wrap: break-word; word-break: break-word;
}
.bcp-content a:hover { color: var(--color-accent); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }

/* Course Card */
.course-card .card-icon {
  background: var(--gradient-primary);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.course-card .card-icon::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.course-card .card-icon i { font-size: 2.5rem; color: white; position: relative; }
.course-card .card-body { padding: var(--space-6); }
.course-card .card-body h3 { font-size: var(--text-xl); font-weight: var(--font-bold); color: var(--color-primary); margin-bottom: var(--space-2); }
.course-card .card-body p  { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-relaxed); }
.course-card .card-footer {
  padding: var(--space-4) var(--space-6);
  border-top: 3px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-card .card-link { font-size: var(--text-sm); font-weight: var(--font-semibold); color: var(--color-accent); }
.course-card .card-link i { transition: transform var(--transition-base); }
.course-card:hover .card-link i { transform: translateX(4px); }

/* ── FORMS ──────────────────────────────── */
.form-group { margin-bottom: var(--space-4); }
.form-label { display: block; font-size: var(--text-sm); font-weight: var(--font-medium); color: var(--color-text); margin-bottom: var(--space-2); }
.form-label span { color: var(--color-accent); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text);
  background: white;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,51,102,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7A9A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-error { font-size: var(--text-xs); color: var(--color-accent); margin-top: var(--space-1); display: flex; align-items: center; gap: 4px; }
.form-hint  { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: var(--space-1); }

/* Lead Card */
.lead-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: 0 20px 60px rgba(0,0,0,.20);
  max-width: 420px;
  width: 100%;
}
.lead-card-header { margin-bottom: var(--space-6); }
.lead-card-header h3 { font-size: var(--text-2xl); font-weight: var(--font-bold); color: var(--color-primary); }
.lead-card-header p  { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-1); }
.lead-card-divider { height: 3px; background: var(--gradient-accent); border-radius: 2px; margin-bottom: var(--space-5); width: 50px; }

/* Alert */
.alert {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}
.alert-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.alert-error   { background: #f8d7da; color: #721c24; border-left: 4px solid var(--color-accent); }
.alert-info    { background: #d1ecf1; color: #0c5460; border-left: 4px solid #17a2b8; }

/* ── TOP HEADER (Logo + Mobile) ─────────── */
.top-header {
  background: white;
  padding: var(--space-4) 0; /* Slightly tighter on pad/mob */
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  position: relative;
  z-index: 1010;
}
@media (max-width: 991px) {
  .top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2010; /* high z-index to stay above content */
  }
  body {
    padding-top: 80px; /* Compensate for header height to prevent content jump */
  }
}
.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar-logo img { height: 46px; width: auto; display: block; }
.logo-fallback { display: flex; align-items: center; gap: var(--space-2); }
.logo-text { font-size: var(--text-xl); font-weight: var(--font-black); color: var(--color-primary); letter-spacing: -.02em; }
.logo-text strong { color: var(--color-accent); }
.logo-flag { font-size: 1.5rem; }

/* ── HEADER ACTIONS (Search & Level Test) ─ */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: 1;
  margin-left: var(--space-12);
}
.header-search {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 400px; /* Büyütüldü */
  margin: 0 auto;   /* Ortalandı */
}
.header-search input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: all var(--transition-base);
  background: var(--color-light);
  outline: none;
}
.header-search input:focus {
  border-color: var(--color-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(0,51,102,.08);
}
.header-search button {
  position: absolute;
  right: 14px;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  transition: color var(--transition-base);
}
.header-search input:focus + button, .header-search button:hover {
  color: var(--color-primary);
}

.btn-top-test {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 180px;
  padding: 10px 22px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  transition: all var(--transition-base);
  margin-left: auto;
}
.btn-top-test:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,51,102,.25);
  color: white;
}

/* ── NAV RIBBON (Desktop Red Menu) ──────── */
.nav-ribbon {
  background: var(--gradient-accent); /* Kırmızı arkaplan şeridi */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(200,16,46,.25);
}

/* ── HAMBURGER MENU BUTTON ────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2005; /* Above mobile menu */
}
.hamburger span {
  width: 32px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
.hamburger.open span:first-child { transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg); }

@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  .header-actions {
    display: none; /* Hide search and top CTA on mobile */
  }
  .nav-ribbon {
    display: none; /* Hide red desktop navbar on mobile */
  }
  .sube-detay-wrapper { flex-direction: column; }
  .sube-detay-wrapper aside { width: 100%; }
}
.navbar-nav { width: 100%; }
.navbar-nav ul { display: flex; align-items: center; gap: 0; margin: 0; padding: 0; }
.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: white;
  padding: 12px 20px;
  transition: all var(--transition-base);
  position: relative;
  display: flex; align-items: center; gap: 6px;
}
.nav-link:hover { color: white; background: rgba(0,0,0,.15); }
.nav-link.active { color: white; font-weight: var(--font-bold); background: rgba(0,0,0,.25); }
.nav-link.active::after { display: none; }

.nav-item-cta { margin-left: auto; }
.nav-cta { background: white !important; color: var(--color-accent) !important; font-weight: var(--font-bold) !important; padding: 10px 22px !important; border-radius: 0 !important; gap: 0 !important; min-width: 180px !important; justify-content: center !important; box-shadow: -6px 0 16px rgba(0,0,0,0.18), 6px 0 16px rgba(0,0,0,0.18) !important; }
.nav-cta:hover { background: var(--color-light) !important; box-shadow: -8px 0 20px rgba(0,0,0,0.22), 8px 0 20px rgba(0,0,0,0.22) !important; }

/* Menü altındaki 1px beyaz çizgiyi gidermek için (Subpixel rendering) */
#main-content { position: relative; z-index: 10; }

/* Dropdown */
.has-dropdown { position: relative; }
.navbar-nav .dropdown {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: var(--space-2) 0;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; transform: translateY(0); visibility: visible;
}
.dropdown li a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text);
  transition: background var(--transition-fast), color var(--transition-fast), padding var(--transition-fast);
}
.dropdown li a:hover { background: var(--color-light); color: var(--color-primary); padding-left: var(--space-6); }

/* Mobile Menu Fullscreen Slidedown */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex !important;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

/* Mobile Menu Header (Logo + Close btn) */
.mobile-header {
  padding: 1.5rem var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

/* Mobile Menu Links */
.mobile-menu nav {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) 0;
}
.mobile-menu ul {
  list-style: none;
  padding: 0; margin: 0;
}
.mobile-menu ul li a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: 1.1rem;
  font-weight: var(--font-semibold);
  color: var(--color-text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--transition-fast), padding var(--transition-fast);
}
.mobile-menu ul li a:hover {
  color: var(--color-primary);
  padding-left: var(--space-6);
}

/* Mobile Accordions */
.mobile-accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: var(--space-3) var(--space-5);
  font-size: 1.1rem;
  font-weight: var(--font-semibold);
  color: var(--color-text);
  cursor: pointer;
  transition: color var(--transition-fast), padding var(--transition-fast);
  font-family: inherit;
}
.mobile-accordion-btn:hover {
  color: var(--color-primary);
  padding-left: var(--space-6);
}
.mobile-accordion-btn i {
  transition: transform 0.3s ease;
}
.mobile-accordion-btn.open i {
  transform: rotate(180deg);
  color: var(--color-primary);
}
.mobile-accordion-content {
  display: none;
  background: var(--color-light);
}
.mobile-accordion-content ul {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-accordion-content a {
  padding-left: 2.5rem !important;
  font-size: 0.95rem !important;
  opacity: 0.85;
  border-bottom: 1px solid rgba(0,0,0,0.03) !important;
}
.mobile-accordion-content li:last-child a {
  border-bottom: none !important;
}
.mobile-accordion-content a:hover {
  padding-left: 3rem !important;
  opacity: 1;
}

/* Mobile Menu Footer Actions */
.mobile-footer {
  padding: var(--space-6) var(--space-5);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--color-light);
}
.mobile-cta, .mobile-test {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 14px 20px !important;
  font-weight: 700 !important;
  border-radius: var(--radius-lg) !important;
  text-align: center;
  width: 100%;
  font-size: 1rem !important;
}
.mobile-cta {
  background: var(--color-accent) !important;
  color: white !important;
  border: none !important;
}
.mobile-test {
  background: var(--color-primary) !important;
  color: white !important;
}

/* ── HERO ───────────────────────────────── */
.hero {
  background: var(--gradient-hero);
  min-height: calc(100vh - var(--navbar-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-20) 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Crect width='60' height='40' fill='none'/%3E%3Crect width='60' height='13' fill='%23C8102E' opacity='.06'/%3E%3Crect y='13' width='60' height='14' fill='none'/%3E%3Crect y='27' width='60' height='13' fill='%23C8102E' opacity='.06'/%3E%3Crect x='20' width='20' height='40' fill='%23C8102E' opacity='.06'/%3E%3Crect x='28' width='4' height='40' fill='white' opacity='.04'/%3E%3Crect y='18' width='60' height='4' fill='white' opacity='.04'/%3E%3C/svg%3E");
  background-size: 120px auto;
  opacity: 1;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-16);
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0,212,255,.12);
  border: 1px solid rgba(0,212,255,.30);
  color: var(--color-cyan);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}
.hero-title {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  font-weight: var(--font-black);
  color: white;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}
.hero-title .accent { color: var(--color-cyan); }
.hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(255,255,255,.75);
  font-weight: var(--font-light);
  margin-bottom: var(--space-8);
}
.hero-divider { width: 60px; height: 3px; background: var(--gradient-accent); border-radius: 2px; margin-bottom: var(--space-8); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-10); }
.hero-stats { display: flex; gap: var(--space-8); }
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-size: var(--text-3xl);
  font-weight: var(--font-black);
  color: var(--color-cyan);
  line-height: 1;
}
.hero-stat-label { font-size: var(--text-xs); color: rgba(255,255,255,.65); font-weight: var(--font-medium); text-transform: uppercase; letter-spacing: .08em; }

/* ── HERO CAMPAIGN SLIDER (Vertical) ──── */
.hero-campaign-slider {
  position: relative;
  width: 100%;
  height: 540px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hcs-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.08); /* Stronger glassmorphism */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.85);
  z-index: 1;
}
/* Active (Center) */
.hcs-item.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  border-top: 4px solid var(--color-accent);
}
/* Next (Comes from Bottom) */
.hcs-item.next {
  opacity: 0.3;
  visibility: visible;
  transform: translate(-50%, calc(-50% + 120px)) scale(0.85); /* Offset down */
  z-index: 2;
}
/* Prev (Goes to Top) */
.hcs-item.prev {
  opacity: 0.3;
  visibility: visible;
  transform: translate(-50%, calc(-50% - 120px)) scale(0.85); /* Offset up */
  z-index: 1;
}
.hcs-item.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.6);
  z-index: 1;
}

.hcs-img {
  position: relative;
  height: 250px;
  width: 100%;
}
.hcs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hcs-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--gradient-accent);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  box-shadow: 0 4px 10px rgba(200,16,46,0.3);
}
.hcs-body {
  padding: var(--space-6);
  text-align: left;
}
.hcs-fomo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
}
.fomo-red {
  background: rgba(220, 38, 38, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(220, 38, 38, 0.3);
}
.fomo-orange {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.pulse-fomo {
  animation: pulseFomo 2s infinite;
}
@keyframes pulseFomo {
  0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}
.hcs-body h3 {
  font-size: 1.35rem;
  font-weight: var(--font-bold);
  color: white;
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}
.hcs-body p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}
.btn-hcs {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-cyan);
  transition: all var(--transition-base);
}
.btn-hcs:hover {
  color: white;
  gap: var(--space-3);
}

/* ── STATS BAND ─────────────────────────── */
.stats-band { background: var(--gradient-primary); padding: var(--space-12) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); text-align: center; }

.stat-num {
  font-size: var(--text-5xl);
  font-weight: var(--font-black);
  color: var(--color-cyan);
  line-height: 1;
  display: block;
}
.stat-suffix { color: var(--color-cyan-dark); }
.stat-label { font-size: var(--text-sm); color: rgba(255,255,255,.75); font-weight: var(--font-medium); margin-top: var(--space-2); text-transform: uppercase; letter-spacing: .08em; }

/* ── GRID LAYOUTS ───────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }

/* ── LAYOUT SIDEBAR GRIDS ───────────────────────── */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-8);
  align-items: start;
}
.layout-sidebar-narrow {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-12);
  align-items: start;
}
.layout-sidebar-2fr {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 991px) {
  .layout-sidebar, 
  .layout-sidebar-narrow, 
  .layout-sidebar-2fr {
    grid-template-columns: 1fr;
  }
}

/* ── WHY BRITISH TOWN (Animated Card) ───── */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why-carousel-wrap {
  position: relative;
  width: 100%;
  height: 440px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.why-carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  min-height: 360px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-carousel-item.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  border-top: 4px solid var(--color-accent);
}

.why-carousel-item.prev {
  opacity: 0.4;
  visibility: visible;
  transform: translate(-105%, -50%) scale(0.85);
  z-index: 2;
}

.why-carousel-item.next {
  opacity: 0.4;
  visibility: visible;
  transform: translate(5%, -50%) scale(0.85);
  z-index: 2;
}

.why-carousel-item.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.6);
  z-index: 1;
}

.wci-icon {
  width: 64px; height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.8rem;
  margin: 0 auto var(--space-5);
  box-shadow: 0 8px 16px rgba(0,0,0,.2);
}

.why-carousel-item h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: white;
  margin-bottom: var(--space-3);
}

.why-carousel-item p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

.wax-progress-bar {
  flex-grow: 1;
  height: 6px;
  background: var(--color-light);
  border-radius: 3px;
  overflow: hidden;
}

.wax-progress-fill {
  height: 100%;
  width: 0%; /* Default */
  background: var(--gradient-accent);
  border-radius: 3px;
}

.wax-counter {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* ── BRANCH CARD ────────────────────────── */
.branch-card .card-body { padding: var(--space-6); }
.branch-card .branch-name { font-size: var(--text-xl); font-weight: var(--font-bold); color: var(--color-primary); margin-bottom: var(--space-4); display: flex; align-items: center; gap: var(--space-2); }
.branch-card .branch-info-list { display: flex; flex-direction: column; gap: var(--space-3); }
.branch-card .branch-info-item { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-sm); color: var(--color-text-muted); }
.branch-card .branch-info-item i { color: var(--color-accent); margin-top: 3px; min-width: 16px; }
.branch-card .card-footer { padding: var(--space-4) var(--space-6); border-top: 1px solid var(--color-border); display: flex; gap: var(--space-3); }

/* ── BLOG CARD ──────────────────────────── */
.blog-card .card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .card-img img { transform: scale(1.05); }
.blog-card .card-body { padding: var(--space-5); }
.blog-card .blog-meta { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: var(--space-3); }
.blog-card .blog-cat { background: var(--color-light); color: var(--color-primary); padding: 3px 10px; border-radius: var(--radius-full); font-weight: var(--font-semibold); }
.blog-card h3 { font-size: var(--text-xl); font-weight: var(--font-bold); color: var(--color-primary); margin-bottom: var(--space-2); line-height: var(--leading-snug); }
.blog-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-relaxed); }
.blog-card .read-more { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-sm); font-weight: var(--font-semibold); color: var(--color-accent); margin-top: var(--space-4); }
.blog-card .read-more i { transition: transform var(--transition-base); }
.blog-card:hover .read-more i { transform: translateX(4px); }

/* ── FAQ ACCORDION ──────────────────────── */
.faq-item { border: 1.5px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--transition-base); }
.faq-item.open { border-color: var(--color-primary); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-weight: var(--font-semibold);
  color: var(--color-text);
  border: none;
  background: transparent;
  transition: color var(--transition-base);
  user-select: none;
}
.faq-item.open .faq-question { color: var(--color-primary); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--color-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition-base); }
.faq-item.open .faq-toggle { background: var(--color-primary); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-answer-inner { padding: 0 var(--space-6) var(--space-5); color: var(--color-text-muted); line-height: var(--leading-relaxed); font-size: var(--text-sm); }
.faq-item.open .faq-answer { max-height: 500px; }

/* ── CTA SECTION ────────────────────────── */
.cta-section {
  background: var(--gradient-hero);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '🇬🇧';
  position: absolute;
  font-size: 300px;
  opacity: .03;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl)); font-weight: var(--font-black); color: white; margin-bottom: var(--space-4); }
.cta-section p { font-size: var(--text-lg); color: rgba(255,255,255,.75); margin-bottom: var(--space-8); }
.cta-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────── */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,.85); }
.footer-top { padding: var(--space-20) 0 var(--space-12); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: var(--space-10); }

.footer-logo img { height: 40px; width: auto; margin-bottom: var(--space-5); }
.logo-text-footer { font-size: var(--text-xl); font-weight: var(--font-black); color: white; letter-spacing: -.02em; }
.footer-desc { font-size: var(--text-sm); color: rgba(255,255,255,.6); line-height: var(--leading-relaxed); margin-top: var(--space-4); }
.footer-desc em { color: var(--color-cyan); font-style: normal; font-weight: 600; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-6); }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: var(--text-sm);
  transition: all var(--transition-base);
}
.footer-social a:hover { border-color: var(--color-cyan); color: var(--color-cyan); transform: translateY(-2px); }
.footer-heading { font-size: var(--text-base); font-weight: var(--font-bold); color: white; margin-bottom: var(--space-5); position: relative; padding-bottom: var(--space-3); }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--color-accent); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a { font-size: var(--text-sm); color: rgba(255,255,255,.65); transition: color var(--transition-base), padding var(--transition-base); display: inline-flex; align-items: center; gap: var(--space-2); }
.footer-links a::before { content: '›'; color: var(--color-accent); font-size: 1rem; }
.footer-links a:hover { color: white; padding-left: var(--space-1); }
.footer-contact { display: flex; flex-direction: column; gap: var(--space-5); }
.footer-contact li { display: flex; flex-direction: column; gap: 4px; }
.footer-contact li strong { font-size: var(--text-sm); font-weight: var(--font-semibold); color: white; }
.footer-contact li span { font-size: var(--text-xs); color: rgba(255,255,255,.55); display: flex; align-items: center; gap: var(--space-2); }
.footer-contact li span i { color: var(--color-accent); min-width: 12px; }
.footer-contact li span a { color: inherit; }
.footer-contact li span a:hover { color: white; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: var(--space-5) 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); }
.footer-bottom p { font-size: var(--text-sm); color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: var(--space-5); }
.footer-legal a { font-size: var(--text-sm); color: rgba(255,255,255,.45); transition: color var(--transition-base); }
.footer-legal a:hover { color: white; }

/* ── COOKIE CONSENT ─────────────────────── */
.cookie-banner {
  position: fixed; 
  bottom: 30px; 
  left: 30px; 
  width: 340px;
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--color-accent);
  z-index: 9950;
  transform: translateY(150%);
  transition: transform .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
  display: flex; 
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
}
.cookie-icon { font-size: 1.5rem; color: var(--color-cyan); }
.cookie-content p { font-size: var(--text-sm); margin: 0; color: rgba(255,255,255,.85); line-height: 1.5; }
.cookie-content p a { color: var(--color-cyan); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--space-3); width: 100%; }
.btn-cookie-accept { flex: 1; text-align: center; background: var(--color-accent); color: white; padding: 10px 0; border-radius: var(--radius-md); font-size: var(--text-sm); font-weight: var(--font-semibold); transition: background var(--transition-base); }
.btn-cookie-accept:hover { background: var(--color-accent-light); }
.btn-cookie-more { flex: 1; text-align: center; font-size: var(--text-sm); color: rgba(255,255,255,.7); padding: 10px 0; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); transition: all var(--transition-base); }
.btn-cookie-more:hover { color: white; border-color: rgba(255,255,255,.5); }

/* ── WHATSAPP WIDGET ────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  z-index: 9900;
  width: 60px; height: 60px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.50);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  overflow: visible;
  color: white;
  font-size: 1.6rem;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,.60); }
.whatsapp-tooltip {
  position: absolute;
  right: 70px; top: 50%;
  transform: translateY(-50%);
  background: var(--color-dark);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.whatsapp-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--color-dark); }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-float .fa-whatsapp { position: relative; z-index: 1; }

/* WA Modal Overlay */
.wa-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9950;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 0 30px 100px;
}
.wa-modal-overlay[hidden] { display: none; }
.wa-modal {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  width: 320px;
  box-shadow: var(--shadow-xl);
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.wa-modal-header {
  background: var(--color-whatsapp);
  padding: var(--space-5) var(--space-6);
  display: flex; align-items: center; gap: var(--space-4);
  color: white;
}
.wa-modal-header .fab { font-size: 2rem; }
.wa-modal-header h3 { font-size: var(--text-lg); font-weight: var(--font-bold); }
.wa-modal-header p { font-size: var(--text-xs); opacity: .9; }
.wa-modal-close { margin-left: auto; color: white; font-size: 1.5rem; opacity: .8; transition: opacity var(--transition-fast); }
.wa-modal-close:hover { opacity: 1; }
.wa-modal-body { padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3); }
.wa-branch-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base), background var(--transition-base);
}
.wa-branch-item:hover { border-color: var(--color-whatsapp); background: #f0fff4; }
.wa-branch-info strong { display: block; font-size: var(--text-sm); font-weight: var(--font-semibold); color: var(--color-text); }
.wa-branch-info span  { font-size: var(--text-xs); color: var(--color-text-muted); }
.wa-branch-item i { color: var(--color-border); transition: color var(--transition-base); }
.wa-branch-item:hover i { color: var(--color-whatsapp); }

/* ── SCROLL TO TOP ──────────────────────── */
.scroll-top {
  position: fixed; bottom: 100px; right: 30px;
  z-index: 9800;
  width: 44px; height: 44px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-base);
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(10px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ── EXIT INTENT POPUP ──────────────────── */
.exit-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,10,30,.70);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
}
.exit-popup-overlay[hidden] { display: none; }
.exit-popup-box {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-8);
  max-width: 460px; width: 100%;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: popIn .3s ease;
  text-align: center;
}
@keyframes popIn { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
.exit-popup-close { position: absolute; top: var(--space-4); right: var(--space-5); font-size: 1.5rem; color: var(--color-text-muted); transition: color var(--transition-fast); }
.exit-popup-close:hover { color: var(--color-text); }
.exit-popup-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.exit-popup-box h3 { font-size: var(--text-3xl); font-weight: var(--font-black); color: var(--color-primary); margin-bottom: var(--space-3); }
.exit-popup-box p { color: var(--color-text-muted); line-height: var(--leading-relaxed); margin-bottom: var(--space-2); }
.exit-popup-actions { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-6); }

/* ── FADE IN UP ANIMATION ───────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger-children .fade-in-up:nth-child(1) { transition-delay: .0s; }
.stagger-children .fade-in-up:nth-child(2) { transition-delay: .1s; }
.stagger-children .fade-in-up:nth-child(3) { transition-delay: .2s; }
.stagger-children .fade-in-up:nth-child(4) { transition-delay: .3s; }
.stagger-children .fade-in-up:nth-child(5) { transition-delay: .4s; }
.stagger-children .fade-in-up:nth-child(6) { transition-delay: .5s; }

/* ── PAGE HEADER ────────────────────────── */
.page-header {
  background: var(--gradient-primary);
  padding: var(--space-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Crect width='60' height='13' fill='%23C8102E' opacity='.07'/%3E%3Crect y='27' width='60' height='13' fill='%23C8102E' opacity='.07'/%3E%3Crect x='20' width='20' height='40' fill='%23C8102E' opacity='.07'/%3E%3C/svg%3E"); background-size: 90px; }
.page-header h1 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); font-weight: var(--font-black); color: white; position: relative; }
.page-header .breadcrumb { display: flex; align-items: center; justify-content: center; gap: var(--space-2); margin-top: var(--space-4); font-size: var(--text-sm); color: rgba(255,255,255,.65); position: relative; }
.page-header .breadcrumb a { color: rgba(255,255,255,.65); }
.page-header .breadcrumb a:hover { color: white; }
.page-header .breadcrumb i { font-size: .6rem; }

/* ── PAGINATION ─────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: var(--space-2); margin-top: var(--space-12); }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  transition: all var(--transition-base);
}
.pagination a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.pagination .active { background: var(--gradient-primary); border-color: transparent; color: white; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .lead-card { max-width: 100%; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-ribbon, .navbar-phone, .header-actions { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  :root { --section-py: var(--space-16); }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-stats { gap: var(--space-5); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; }
  .wa-modal-overlay { justify-content: center; align-items: center; padding: var(--space-4); }
  .wa-modal { width: 100%; max-width: 380px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; }
  .cookie-banner { bottom: 80px; left: 15px; right: 15px; width: auto; z-index: 10000; }
  .cookie-content { flex-direction: column; }
  .scroll-top { bottom: 90px; right: 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

/* ── ACCESSIBILITY ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ── LIGHTBOX ───────────────────────────── */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 10000; display: flex; align-items: center; justify-content: center; }
.lightbox-overlay[hidden] { display: none; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-lg); animation: fadeIn .3s ease; }
.lightbox-close { position: absolute; top: var(--space-5); right: var(--space-5); color: white; font-size: 2rem; opacity: .7; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; color: white; opacity: .7; padding: var(--space-4); }
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: var(--space-5); }
.lightbox-next { right: var(--space-5); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ════════════════════════════════════════════════════
   2026 HOMEPAGE COMPONENTS
════════════════════════════════════════════════════ */

/* ── HERO 2026 ──────────────────────────────────── */
.hero-2026 {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: #000e24;
  overflow: hidden;
  padding: 4rem 0 3rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  --mx: 0px;
  --my: 0px;
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #003D82 0%, transparent 70%);
  top: -150px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #C8102E 0%, transparent 70%);
  top: 40%; right: -100px;
  opacity: .25;
  animation-delay: 3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #00D4FF 0%, transparent 70%);
  bottom: 0; left: 35%;
  opacity: .20;
  animation-delay: 5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(var(--mx), var(--my)) scale(1); }
  50%       { transform: translate(var(--mx), calc(var(--my) - 30px)) scale(1.05); }
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-2026-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content {
  text-align: left;
  padding-right: 2rem;
  position: relative;
}

/* Rotating Sticker */
.hero-rotating-sticker {
  position: absolute;
  top: 5%;
  right: -20px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  text-decoration: none;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.hero-rotating-sticker:hover {
  transform: scale(1.1);
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--color-cyan);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}
.hero-rotating-sticker .sticker-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spinSticker 13s linear infinite;
}
.hero-rotating-sticker .sticker-icon {
  font-size: 2.2rem;
  color: var(--color-cyan);
  transition: background 0.3s ease;
  z-index: 2;
}
@keyframes spinSticker {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 991px) {
  .hero-rotating-sticker {
    width: 100px;
    height: 100px;
    top: -30px;
    right: 0;
  }
  .hero-rotating-sticker .sticker-icon { font-size: 1.5rem; }
  .hero-content { padding-right: 0; }
}
.hero-card-wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
}

/* Hero Pill Badge */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,212,255,.10);
  border: 1px solid rgba(0,212,255,.25);
  color: var(--color-cyan);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

/* Hero Title */
.hero-title-2026 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
  text-align: left;
}
.hero-title-2026 .title-outline {
  -webkit-text-stroke: 2px white;
  color: transparent;
}
.hero-title-2026 em {
  font-style: normal;
  color: var(--color-cyan);
}
#hero-lang-word::after {
  content: '\200B'; /* Zero-width space ensures no vertical collapse when empty */
}


.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.70);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
  text-align: left;
}

/* Hero Action Buttons */
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 28px;
  background: var(--color-accent);
  color: white;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all .25s;
}
.btn-hero-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,16,46,.4);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 28px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .25s;
}
.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.07);
}
.btn-hero-ghost i { transition: transform .2s; }
.btn-hero-ghost:hover i { transform: translateX(4px); }

/* Trust badges */
.hero-trust { display: flex; flex-wrap: wrap; gap: .75rem; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.trust-badge i { color: var(--color-cyan); font-size: .85rem; }

/* Glass Lead Card */
.hero-card-wrap { position: relative; }
.hero-campaign-strip {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--color-accent), #FF4D6A);
  color: white;
  padding: 10px 16px;
  border-radius: 10px 10px 0 0;
  font-size: .85rem;
  font-weight: 600;
}
.hero-campaign-strip a { color: white; margin-left: auto; opacity: .9; }
.hero-campaign-strip a:hover { opacity: 1; }
.glass-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 0 0 18px 18px;
  padding: 2rem;
}
.hero-campaign-strip + .glass-card { border-radius: 0 0 18px 18px; }
.glass-card:first-child { border-radius: 18px; }
.glass-card-header { margin-bottom: 1.5rem; }
.glass-card-header h2 { font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: .3rem; }
.glass-card-header p { font-size: .875rem; color: rgba(255,255,255,.6); }
.glass-card .form-label { color: rgba(255,255,255,.8); }
.glass-card .form-input,
.glass-card .form-select {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: white;
}
.glass-card .form-input::placeholder { color: rgba(255,255,255,.35); }
.glass-card .form-input:focus,
.glass-card .form-select:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,.15);
  background: rgba(255,255,255,.12);
}
.glass-card option { background: #001F40; color: white; }
.btn-submit-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #C8102E, #E63950);
  color: white;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .25s;
  margin-top: .5rem;
}
.btn-submit-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,.4); }
.form-kvkk {
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-top: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}
.form-kvkk a { color: rgba(255,255,255,.6); text-decoration: underline; }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, white, transparent);
  margin: auto;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ── MARQUEE STATS STRIP ──────────────────────── */
.stats-marquee-wrap {
  background: #001F40;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  padding: 1rem 0;
}
.stats-marquee {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.stats-marquee:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}
.marquee-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-cyan);
  line-height: 1;
}
.marquee-label {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}
.marquee-sep {
  color: rgba(255,255,255,.15);
  font-size: 1rem;
  padding: 0 .5rem;
}

/* ── COURSE GRID PRO (Corporate & Premium) ── */
.course-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.course-card-pro {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}

.course-card-pro:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 51, 102, 0.12);
  border-color: rgba(0, 51, 102, 0.1);
}

.ccp-img-link {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ccp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.course-card-pro:hover .ccp-img img {
  transform: scale(1.06);
}

.ccp-icon {
  position: absolute;
  bottom: -20px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(0, 51, 102, 0.25);
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}

.course-card-pro:hover .ccp-icon {
  transform: translateY(-4px);
  background: var(--gradient-accent);
}

.ccp-body {
  padding: 2.5rem 1.75rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ccp-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ccp-body h3 a {
  transition: color 0.2s ease;
}
.ccp-body h3 a:hover {
  color: var(--color-accent);
}

.ccp-body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.ccp-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ccp-btn {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.course-card-pro:hover .ccp-btn {
  color: var(--color-accent);
}

.ccp-btn i {
  transition: transform 0.3s ease;
}

.course-card-pro:hover .ccp-btn i {
  transform: translateX(6px);
}

@media (max-width: 1024px) {
  .course-grid-pro {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .course-grid-pro {
    grid-template-columns: 1fr;
  }
}

/* ── WHY SECTION ──────────────────────────────── */
.why-section { position: relative; }
.why-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: start;
}
.why-left { position: sticky; top: 6rem; }
.btn-why-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 8px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
}
.btn-why-more:hover { border-color: var(--color-cyan); color: var(--color-cyan); }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1.25rem;
  transition: background .25s, border-color .25s;
}
.why-feature-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(0,212,255,.20);
}
.why-feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0,212,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-feature-card strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: white;
  margin-bottom: .3rem;
}
.why-feature-card p {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}

/* ── BRANCHES STRIP ───────────────────────────── */
.branches-strip {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.branch-strip-card {
  display: grid;
  grid-template-columns: 48px 1fr auto 28px;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  transition: border-color .25s, transform .2s, box-shadow .2s;
  color: var(--color-text);
}
.branch-strip-card:hover {
  border-color: var(--color-primary);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,51,102,.08);
}
.bsc-icon {
  width: 48px; height: 48px;
  background: var(--color-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.bsc-body strong { display: block; font-size: .95rem; font-weight: 700; color: var(--color-primary); }
.bsc-body span { font-size: .8rem; color: var(--color-text-muted); }
.bsc-meta {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  align-items: flex-end;
}
.bsc-meta span {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--color-text-muted);
}
.bsc-meta i { color: var(--color-accent); font-size: .7rem; }
.bsc-arrow {
  color: var(--color-border);
  font-size: .9rem;
  transition: color .2s, transform .2s;
}
.branch-strip-card:hover .bsc-arrow {
  color: var(--color-primary);
  transform: translateX(4px);
}

/* ── CTA 2026 ─────────────────────────────────── */
.cta-2026 {
  position: relative;
  padding: 6rem 0;
  background: #000e24;
  overflow: hidden;
  text-align: center;
}
.cta-2026-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,.25), transparent 70%);
  top: 50%; left: 20%;
  transform: translate(-50%, -50%);
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,.15), transparent 70%);
  top: 50%; right: 15%;
  transform: translateY(-50%);
}
.cta-2026-inner { position: relative; z-index: 2; }
.cta-icon-big {
  width: 72px; height: 72px;
  background: rgba(200,16,46,.15);
  border: 1.5px solid rgba(200,16,46,.35);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--color-accent);
  margin: 0 auto 1.5rem;
}
.cta-2026-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-2026-inner h2 span { color: var(--color-cyan); }
.cta-2026-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.cta-2026-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FAQ 2026 LAYOUT ──────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.faq-grid-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.blog-img-placeholder {
  background: var(--gradient-primary);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 3rem;
}

/* ── ANIMATIONS ───────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE 2026 ──────────────────────────── */
@media (max-width: 1024px) {
  .hero-2026-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .glass-card { max-width: 480px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; grid-row: span 1; }
  .bento-tall  { grid-row: span 1; }
  .bento-wide  { grid-column: span 2; }
  .why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .why-left { position: static; }
  .why-carousel-wrap { height: 440px; }
  .why-carousel-item { width: 280px; min-height: 340px; padding: var(--space-6) var(--space-5); }
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .branch-strip-card { grid-template-columns: 48px 1fr 28px; }
  .bsc-meta { display: none; }
}
@media (max-width: 768px) {
  .hero-2026 { padding: 4rem 0 3rem; }
  .hero-title-2026 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-ghost { width: 100%; justify-content: center; }
  .hero-trust { gap: .5rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-tall, .bento-wide { grid-column: auto; grid-row: auto; }
  .bento-cta { grid-column: auto; }
  .why-features { grid-template-columns: 1fr; }
  .why-carousel-wrap { height: 420px; }
  .why-carousel-item { width: 260px; min-height: 320px; }
  .why-carousel-item.prev { transform: translate(-80%, -50%) scale(0.8); opacity: 0.2; }
  .why-carousel-item.next { transform: translate(-20%, -50%) scale(0.8); opacity: 0.2; }
  .branch-strip-card { grid-template-columns: 48px 1fr 28px; }
}

/* ── DELAYED LEAD FORM POPUP ───────────────────── */
.delayed-popup-wrapper[hidden] {
  display: none !important;
}
.delayed-popup-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 25, 51, 0.45);
  backdrop-filter: blur(4px);
  padding: var(--space-4);
  pointer-events: none;
}
.delayed-popup-wrapper:not([hidden]) {
  pointer-events: auto;
}
.delayed-popup-wrapper:not([hidden]) .delayed-popup-box {
  transform: translateY(0) !important;
  opacity: 1;
}
.delayed-popup-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 25px 60px rgba(0,25,51,.25);
  border: 1px solid rgba(0,0,0,.05);
  animation: slideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.delayed-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,.05);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all .25s ease;
  z-index: 10;
}
.delayed-popup-close:hover {
  background: var(--color-accent);
  color: white;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .delayed-popup-close {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
}
.delayed-popup-box .card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.delayed-popup-box .card-header p {
  font-size: .85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.delayed-popup-box .input-icon i {
  left: 14px;
  font-size: .9rem;
  opacity: .5;
}
@media (max-width: 480px) {
  .delayed-popup-wrapper {
    align-items: center;
    padding: var(--space-4);
  }
  .delayed-popup-box {
    border-radius: var(--radius-xl);
    max-width: 100%;
  }
}

/* ── INPUT ICON FIX ── */
.input-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon i {
  position: absolute;
  left: 1rem;
  color: var(--color-text-muted);
  pointer-events: none;
}
.input-icon .form-input, .input-icon .form-select {
  padding-left: 2.8rem;
}

/* ── KVKK MODAL ── */
.kvkk-modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 25, 51, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.kvkk-modal-wrapper.visible {
  opacity: 1;
  pointer-events: auto;
}
.kvkk-modal-wrapper.visible .kvkk-modal-box {
  transform: translateY(0) scale(1);
}
.kvkk-modal-box {
  background: white;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.kvkk-modal-header {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kvkk-modal-header h3 {
  margin: 0;
  font-size: var(--text-lg);
  color: var(--color-primary);
}
.kvkk-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.kvkk-modal-close:hover {
  color: var(--color-primary);
}
.kvkk-modal-body {
  padding: var(--space-6);
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: var(--leading-relaxed);
  color: var(--color-text);
}
.kvkk-modal-body p {
  margin-bottom: 1rem;
}
.kvkk-modal-footer {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-border);
  text-align: right;
  background: var(--color-bg-alt);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Form Validation Styles */
.is-invalid {
  border-color: var(--color-primary) !important;
  background-color: rgba(200, 16, 46, 0.05) !important;
}
.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 500;
  animation: fadeIn 0.3s ease;
}

/* ── WA MODAL (WHATSAPP BRANCH SELECTOR) ────────────────── */
.wa-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 51, 102, 0.4);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  padding: var(--space-4);
}
.wa-modal-overlay[hidden] { display: none; }
.wa-modal {
  background: white;
  width: 100%; max-width: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wa-modal-header {
  background: #25D366;
  color: white;
  padding: var(--space-6);
  display: flex; align-items: center; gap: var(--space-4);
  position: relative;
}
.wa-modal-header i.fa-whatsapp { font-size: 3rem; }
.wa-modal-header h3 { margin: 0; font-size: var(--text-xl); font-weight: var(--font-bold); color: white; }
.wa-modal-header p { margin: 0; font-size: var(--text-sm); opacity: 0.95; padding-top: 4px; }
.wa-modal-close {
  position: absolute; top: var(--space-4); right: var(--space-4);
  background: rgba(255,255,255,0.2);
  border: none; color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.wa-modal-close:hover { background: rgba(255,255,255,0.4); }
.wa-modal-body {
  padding: var(--space-4);
  max-height: 55vh;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: var(--space-3);
  background: var(--color-bg-alt);
}
.wa-branch-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4);
  background: white; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); text-decoration: none; color: var(--color-text);
  transition: all 0.2s;
}
.wa-branch-item:hover {
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37,211,102,0.15);
}
.wa-branch-info strong { display: block; font-size: 1.1rem; color: var(--color-primary); margin-bottom: 4px; }
.wa-branch-info span { display: block; font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wa-branch-item i.fa-chevron-right { color: #25D366; font-size: 1.2rem; transition: transform 0.2s; }
.wa-branch-item:hover i.fa-chevron-right { transform: translateX(4px); }

/* ── BUTTON MICRO-INTERACTIONS ────────────────────────── */
.btn-primary:active, 
.btn-hero-primary:active, 
.btn-submit-hero:active, 
.btn-hcs:active, 
.btn-why-more:active, 
.btn-bento-cta:active, 
.msc-btn:active,
.pulse-btn:active,
.tab-btn:active {
  transform: scale(0.95) !important;
  transition: transform 0.1s ease !important;
}

/* ── MOBILE QUICK ACTIONS ────────────────────────────── */
.site-footer-bar {
  display: none;
}
@media (max-width: 991px) {
  .whatsapp-float { display: none !important; }
  .site-footer-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10500;
    background: white;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
  }
  .sfb-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: white !important;
    text-decoration: none;
    transition: background 0.2s;
    height: 64px;
  }
  .sfb-primary {
    background: #25D366;
  }
  .sfb-primary:hover {
    background: #1da851;
  }
  .sfb-secondary {
    background: var(--color-accent);
  }
  .sfb-secondary:hover {
    background: #a00d25;
  }
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
}

/* ── MEGAMENU ────────────────────────────── */
.has-mega-menu { position: static !important; }
.navbar-nav .dropdown.mega-menu-container {
    width: 100%;
    left: 0;
    right: 0;
    padding: var(--space-8) 0;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-4);
}
.mega-menu-item {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    text-decoration: none !important;
}
.mega-menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}
.mega-menu-item .mm-img {
    height: 120px;
    width: 100%;
    overflow: hidden;
    background: var(--color-light);
}
.mega-menu-item .mm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.mega-menu-item:hover .mm-img img {
    transform: scale(1.05);
}
.mega-menu-item .mm-title {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--color-primary);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* ── RESPONSIVE HERO SLIDER FIX ────────────────── */
@media (max-height: 850px) and (min-width: 1025px) {
  .hero-campaign-slider { height: 420px; }
  .hcs-img { height: 180px; }
  .hcs-item { max-width: 360px; }
  .hcs-item.next { transform: translate(-50%, calc(-50% + 90px)) scale(0.85); }
  .hcs-item.prev { transform: translate(-50%, calc(-50% - 90px)) scale(0.85); }
}

@media (max-width: 1024px) {
  .hero-2026-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-content { padding-right: 0; }
  .hero-title-2026 { text-align: center !important; }
  .hero-desc { margin: 0 auto 2rem; max-width: 600px; text-align: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  
  .hero-campaign-slider { height: 440px; margin-top: 4rem; }
  .hcs-img { height: 200px; }
  .hcs-item { max-width: 380px; }
  .hcs-item.next { transform: translate(-50%, calc(-50% + 100px)) scale(0.85); }
  .hcs-item.prev { transform: translate(-50%, calc(-50% - 100px)) scale(0.85); }
}

@media (max-width: 768px) {
  .hero-campaign-slider { height: 500px; margin-top: 3rem; }
  .hcs-img { height: auto; }
  .hcs-img img { height: auto; object-fit: cover; }
  .hcs-item { max-width: 320px; }
  .hcs-item.next { transform: translate(-50%, calc(-50% + 80px)) scale(0.85); }
  .hcs-item.prev { transform: translate(-50%, calc(-50% - 80px)) scale(0.85); }
  .hcs-body { padding: 1.25rem; }
  .hcs-body h3 { font-size: 1.1rem; }
  .blog-cat, .hide-mobile { display: none !important; }
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge { visibility: hidden !important; }

/* Seviye Tespit Yüzeyi Işık Süzmesi Efekti */
.btn-top-test {
  position: relative;
  overflow: hidden;
}
.btn-top-test::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: testShine 3s infinite;
}
@keyframes testShine {
  0% { left: -150%; }
  50% { left: 200%; }
  100% { left: 200%; }
}
