/* ═══════════════════════════════════════════
   ADRTÜRK Kurumsal Tema — Main CSS
   ═══════════════════════════════════════════ */

/* ── Variables ─────────────────────────────── */
:root {
  --primary: #0d1b2a;
  --primary-light: #1b2a4a;
  --primary-lighter: #243b63;
  --accent: #ff6f00;
  --accent-light: #ffa040;
  --accent-dark: #e65100;
  --teal: #00897b;
  --teal-light: #e0f2f1;
  --purple: #6a1b9a;
  --purple-light: #f3e5f5;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --emerald: #00695c;
  --emerald-light: #e0f2f1;
  --orange-light: #fff3e0;
  --red: #c62828;
  --white: #ffffff;
  --bg: #f8f9fc;
  --bg-light: #f0f2f5;
  --text: #1a1a2e;
  --text-secondary: #555e70;
  --border: #e2e6ed;
  --shadow: 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --container: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.7; font-size: 15px; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.3; }

/* ── Container ─────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ── Topbar ────────────────────────────────── */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  padding: 6px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; }
.topbar a { color: rgba(255,255,255,.8); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--accent-light); }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right span { display: inline-flex; align-items: center; gap: 6px; }

/* ── Header ────────────────────────────────── */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--primary); }
.logo-text strong { font-size: 1.3rem; display: block; letter-spacing: -.5px; }
.logo-text small { font-size: .7rem; color: var(--text-secondary); display: block; }
.logo img { max-height: 48px; }

/* Nav */
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list a {
  padding: 8px 14px;
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-list a:hover { color: var(--accent); background: var(--bg-light); }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--accent-dark) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 8px 12px; border-radius: 6px; font-size: .85rem; }
.dropdown-menu a:hover { background: var(--bg-light); }

/* Mobile Toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: var(--primary); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ── Hero ──────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-lighter) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,.9) 0%, rgba(27,42,74,.7) 100%); }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,111,0,.15);
  border: 1px solid rgba(255,111,0,.3);
  color: var(--accent-light);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .3px;
}
.hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 20px; line-height: 1.15; }
.hero h1 span { color: var(--accent-light); }
.hero p { font-size: 1.1rem; opacity: .85; margin-bottom: 32px; line-height: 1.8; max-width: 600px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Shapes */
.hero-shapes { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.shape-1 { width: 500px; height: 500px; background: var(--accent); top: -20%; right: -10%; }
.shape-2 { width: 300px; height: 300px; background: var(--teal); bottom: -15%; left: 10%; }
.shape-3 { width: 200px; height: 200px; background: var(--white); top: 30%; right: 20%; }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.4;
}
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.8); border: none; padding-left: 0; }
.btn-ghost:hover { color: var(--accent-light); }
.btn-whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; color: var(--white); }

/* ── Stats Bar ─────────────────────────────── */
.stats-bar {
  background: var(--white);
  margin-top: -40px;
  position: relative;
  z-index: 5;
  padding: 0 20px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--accent); display: block; }
.stat-label { font-size: .82rem; color: var(--text-secondary); font-weight: 500; margin-top: 4px; }

/* ── Sections ──────────────────────────────── */
.section { padding: 80px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.section-header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; color: var(--primary); }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; }

/* ── Service Cards ─────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card--featured { border-color: var(--accent); border-width: 2px; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--white);
}
.service-icon--orange { background: var(--accent); }
.service-icon--teal { background: var(--teal); }
.service-icon--purple { background: var(--purple); }
.service-icon--green { background: var(--green); }
.service-icon--emerald { background: var(--emerald); }
.service-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(13,27,42,.08);
  color: var(--primary);
  margin-bottom: 10px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.service-badge--orange { background: var(--orange-light); color: var(--accent-dark); }
.service-badge--teal { background: var(--teal-light); color: var(--teal); }
.service-badge--purple { background: var(--purple-light); color: var(--purple); }
.service-badge--green { background: var(--green-light); color: var(--green); }
.service-badge--emerald { background: var(--emerald-light); color: var(--emerald); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.service-card p { font-size: .88rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.7; flex: 1; }
.service-features { margin-bottom: 20px; }
.service-features li {
  font-size: .82rem;
  color: var(--text-secondary);
  padding: 4px 0 4px 18px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── Why Us ────────────────────────────────── */
.why-us-section { background: var(--primary); color: var(--white); }
.why-us-section .section-tag { background: rgba(255,111,0,.2); color: var(--accent-light); }
.why-us-section .section-header h2 { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: .85rem; opacity: .8; line-height: 1.6; }

/* ── Two Col Layout (TMGD Detail) ──────────── */
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.two-col h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; color: var(--primary); }
.two-col p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.8; }
.check-list { margin-bottom: 24px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .92rem;
  color: var(--text);
}
.check-item span { color: var(--accent); font-weight: 700; min-width: 18px; }
.tmgd-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.visual-card--accent { background: var(--accent); color: var(--white); border-color: var(--accent); grid-column: 1 / -1; }
.visual-stat { font-size: 2rem; font-weight: 800; color: var(--accent); }
.visual-card--accent .visual-stat { color: var(--white); }
.visual-label { font-size: .82rem; color: var(--text-secondary); margin-top: 4px; }
.visual-card--accent .visual-label { color: rgba(255,255,255,.8); }

/* ── SRC5 Grid ─────────────────────────────── */
.src5-section { background: var(--bg-light); }
.src5-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.src5-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.src5-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.src5-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--primary); }
.src5-card p { font-size: .85rem; color: var(--text-secondary); line-height: 1.6; }
.src5-card--cta { background: var(--accent); color: var(--white); border-color: var(--accent); }
.src5-card--cta h4 { color: var(--white); }
.src5-card--cta p { color: rgba(255,255,255,.85); }

/* ── Eligibility ───────────────────────────── */
.eligibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.elig-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.elig-card:hover { box-shadow: var(--shadow-lg); }
.elig-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.elig-card p { font-size: .88rem; color: var(--text-secondary); line-height: 1.6; }

/* ── CTA Band ──────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 60px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.cta-inner p { opacity: .9; font-size: .95rem; }
.cta-buttons { display: flex; gap: 12px; flex-shrink: 0; }

/* ── Page Headers ──────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lighter) 100%);
  color: var(--white);
  padding: 48px 0 40px;
}
.page-header h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.page-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.breadcrumb { font-size: .82rem; opacity: .7; }
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { margin: 0 6px; }

.page-header--dark { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.page-header--orange { background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%); }
.page-header--teal { background: linear-gradient(135deg, #004d40 0%, var(--teal) 100%); }
.page-header--purple { background: linear-gradient(135deg, #4a148c 0%, var(--purple) 100%); }
.page-header--green { background: linear-gradient(135deg, #1b5e20 0%, var(--green) 100%); }
.page-header--emerald { background: linear-gradient(135deg, #004d40 0%, var(--emerald) 100%); }

/* ── Content Layout ────────────────────────── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.content-main h2 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin: 32px 0 12px; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.content-list { margin: 0 0 24px 20px; }
.content-list li {
  padding: 4px 0;
  font-size: .9rem;
  color: var(--text-secondary);
  list-style: disc;
}

/* Feature Grid (inside content) */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 16px 0 24px; }
.feature-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}
.feature-card--highlight { border-color: var(--accent); background: var(--orange-light); }
.feature-card h4 { font-size: .95rem; margin-bottom: 8px; color: var(--primary); }
.feature-card p { font-size: .85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0; }

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lighter) 100%);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-top: 32px;
}
.cta-box h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cta-box p { opacity: .85; margin-bottom: 16px; font-size: .92rem; }

/* Sidebar */
.content-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.sidebar-card--accent { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lighter) 100%); color: var(--white); border: none; }
.sidebar-card--accent strong { color: var(--accent-light); }
.sidebar-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.sidebar-card--accent h4 { color: var(--white); }
.sidebar-card p { font-size: .88rem; color: var(--text-secondary); margin-bottom: 10px; }
.sidebar-card--accent p { color: rgba(255,255,255,.8); }
.sidebar-links li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { font-size: .88rem; color: var(--text); font-weight: 500; }
.sidebar-links a:hover { color: var(--accent); }
.sidebar-stat { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .88rem; }
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat strong { font-size: 1.2rem; display: block; }

/* Brands section */
.brands-section { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
.brand-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}
.brand-item strong { font-size: 1.1rem; color: var(--primary); display: block; margin-bottom: 8px; }
.brand-item p { font-size: .88rem; color: var(--text-secondary); margin-bottom: 0; }

/* ── Contact ───────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-info-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); }
.icon-circle {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.icon-circle svg { width: 20px; height: 20px; fill: currentColor; }
.icon-circle--green { background: #25d366; }
.contact-info-card h4 { font-size: .88rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.contact-info-card p { font-size: .85rem; color: var(--text-secondary); line-height: 1.6; }
.contact-info-card a { color: var(--accent); }

.contact-form { background: var(--white); padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); }
.contact-form h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 16px; }
.contact-form label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 4px; margin-top: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .88rem;
  font-family: var(--font);
  transition: var(--transition);
  background: var(--bg);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,111,0,.1); }

/* ── Footer ────────────────────────────────── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-logo strong { font-size: 1.4rem; color: var(--white); display: block; margin-bottom: 4px; }
.footer-logo p { font-size: .82rem; opacity: .6; margin-bottom: 12px; }
.footer-desc { font-size: .85rem; line-height: 1.7; opacity: .7; margin-bottom: 16px; }
.footer-brands { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.brand-badge {
  background: rgba(255,111,0,.15);
  color: var(--accent-light);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}
.brand-badge-muted { font-size: .7rem; color: rgba(255,255,255,.4); }
.footer h4 { font-size: .92rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer ul { padding: 0; }
.footer li { padding: 5px 0; }
.footer li a { color: rgba(255,255,255,.6); font-size: .85rem; }
.footer li a:hover { color: var(--accent-light); }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; font-size: .82rem; padding: 6px 0; }
.footer-contact svg { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: var(--accent-light); }
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  opacity: .5;
}
.footer-legal { font-size: .75rem; }

/* ── WhatsApp Float ────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 9999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .eligibility-grid { grid-template-columns: repeat(2, 1fr); }
  .src5-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}

@media (max-width: 768px) {
  .topbar-left, .topbar-right { width: 100%; justify-content: center; }
  .menu-toggle { display: block; }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow-lg);
  }
  .nav-list.open { display: flex; }
  .nav-list a { width: 100%; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--bg-light);
    border-radius: 8px;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }

  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: .95rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .eligibility-grid { grid-template-columns: 1fr 1fr; }
  .src5-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .brands-section { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: 1fr; }
  .eligibility-grid { grid-template-columns: 1fr; }
}
