/* ============================================================
   JEEGOO DRIVING SCHOOL — Main Stylesheet
   Colour Scheme: Deep Blue #1a3561 | White #fff | Accent Blue #4a9eff
   ============================================================ */

/* ── 1. CSS VARIABLES ───────────────────────────────────────── */
:root {
  --primary:         #1a3561;
  --primary-dark:    #0e2040;
  --primary-mid:     #1e4080;
  --primary-light:   #2d5aa0;
  --accent:          #4a9eff;
  --accent-dark:     #2176d2;
  --accent-hover:    #74b8ff;
  --white:           #ffffff;
  --off-white:       #f8fafc;
  --light-bg:        #eef3fc;
  --text:            #1a2744;
  --text-body:       #4a5a78;
  --text-light:      #8a9ab8;
  --border:          #dce7f8;
  --success:         #22c55e;
  --danger:          #ef4444;
  --shadow-sm:       0 2px 8px rgba(26,53,97,0.08);
  --shadow:          0 4px 20px rgba(26,53,97,0.12);
  --shadow-lg:       0 8px 40px rgba(26,53,97,0.18);
  --shadow-xl:       0 16px 60px rgba(26,53,97,0.22);
  --radius-sm:       6px;
  --radius:          12px;
  --radius-lg:       20px;
  --radius-xl:       30px;
  --transition:      0.3s ease;
  --nav-height:      76px;
}

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

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── 4. LAYOUT UTILITIES ────────────────────────────────────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow{ max-width: 800px; }
.section          { padding: 5rem 0; }
.section--sm      { padding: 3rem 0; }
.section--lg      { padding: 7rem 0; }
.text-center      { text-align: center; }
.bg-light         { background: var(--light-bg); }
.bg-white         { background: var(--white); }
.grid             { display: grid; gap: 1.5rem; }
.grid-2           { grid-template-columns: repeat(2, 1fr); }
.grid-3           { grid-template-columns: repeat(3, 1fr); }
.grid-4           { grid-template-columns: repeat(4, 1fr); }

/* Section header */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74,158,255,0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(74,158,255,0.35);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { color: var(--text-body); font-size: 1.1rem; margin: 0; }

/* ── 5. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(74,158,255,0.35);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74,158,255,0.45);
  color: var(--primary-dark);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--dark:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--lg  { padding: 1rem 2.4rem; font-size: 1rem; }
.btn--sm  { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn--full{ width: 100%; justify-content: center; }

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── 6. NAVIGATION ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled,
.navbar--light {
  background: var(--white);
  box-shadow: var(--shadow);
}

/* Text colours when nav is transparent (over hero) */
.navbar:not(.scrolled):not(.navbar--light) .nav-logo-text { color: var(--white); }
.navbar:not(.scrolled):not(.navbar--light) .nav-link       { color: rgba(255,255,255,0.9); }
.navbar:not(.scrolled):not(.navbar--light) .hamburger span { background: var(--white); }

/* Text colours when nav is solid */
.navbar.scrolled .nav-logo-text,
.navbar--light   .nav-logo-text { color: var(--primary); }
.navbar.scrolled .nav-link,
.navbar--light   .nav-link      { color: var(--text-body); }
.navbar.scrolled .hamburger span,
.navbar--light   .hamburger span { background: var(--primary); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img { opacity: 0.88; }
.footer-brand .nav-logo-img {
  filter: brightness(0) invert(1);
  height: 46px;
}

/* Desktop links */
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }
.nav-link:hover,
.nav-link.active { color: var(--primary) !important; }

.nav-cta { margin-left: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 999;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 2rem;
  flex-direction: column;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}
.mobile-menu.open { display: flex; }

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Poppins', sans-serif;
  transition: color var(--transition);
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--accent); }
.mobile-menu-cta { margin-top: 2rem; }
.mobile-menu-cta .btn { width: 100%; justify-content: center; }

/* ── 7. HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Decorative background shapes */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(74,158,255,0.07);
}
.hero-circle--1 { width: 600px; height: 600px; top: -200px; right: -150px; animation: floatSlow 8s ease-in-out infinite; }
.hero-circle--2 { width: 300px; height: 300px; bottom: -100px; left: -80px;  background: rgba(74,158,255,0.05); animation: floatSlow 6s ease-in-out infinite reverse; }
.hero-circle--3 { width: 150px; height: 150px; top: 30%; right: 25%; background: rgba(255,255,255,0.04); animation: floatSlow 10s ease-in-out infinite; }

/* Road stripe decoration */
.hero-road { position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: rgba(0,0,0,0.2); }
.hero-road::after {
  content: '';
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 8px;
  background: var(--accent);
  border-radius: 4px;
  box-shadow: 200px 0 0 var(--accent), -200px 0 0 var(--accent),
              400px 0 0 var(--accent), -400px 0 0 var(--accent),
              600px 0 0 var(--accent), -600px 0 0 var(--accent);
  opacity: 0.7;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74,158,255,0.2);
  border: 1px solid rgba(74,158,255,0.5);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 { color: var(--white); margin-bottom: 1.5rem; animation: fadeInUp 0.7s ease 0.1s both; }
.hero h1 .highlight { color: var(--accent); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 540px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.7s ease 0.3s both; margin-bottom: 2.5rem; }

.hero-trust { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; animation: fadeInUp 0.7s ease 0.4s both; }
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.hero-trust-item svg { color: var(--accent); flex-shrink: 0; }

/* Stats card */
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 320px;
  animation: fadeInRight 0.8s ease 0.2s both;
  flex-shrink: 0;
}
.hero-card-title {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-stat { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1rem; text-align: center; }
.hero-stat-value { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 0.25rem; }
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.78); font-size: 1.1rem; margin: 0 auto; max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── 8. STATS BAND ──────────────────────────────────────────── */
.stats-band { background: var(--primary-dark); padding: 2.5rem 0; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }

.stat-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { transform: translateY(-3px); }

.stat-value { font-family: 'Poppins', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── 9. BENEFIT CARDS ───────────────────────────────────────── */
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 60px; height: 60px;
  background: var(--light-bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.benefit-card:hover .benefit-icon { background: var(--primary); transform: scale(1.08); }
.benefit-icon svg { color: var(--primary); transition: color var(--transition); }
.benefit-card:hover .benefit-icon svg { color: var(--accent); }
.benefit-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.benefit-card p  { color: var(--text-body); font-size: 0.95rem; margin: 0; }

/* ── 10. SERVICE CARDS ──────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-card-header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  position: relative;
  overflow: hidden;
}
.service-card-header::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.service-card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-card-icon svg { color: var(--accent); }
.service-card-header h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.25rem; }
.service-card-price { color: var(--accent); font-size: 1.5rem; font-weight: 800; font-family: 'Poppins', sans-serif; }
.service-card-price span { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.65); }

.service-card-body { padding: 1.75rem 2rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body p { color: var(--text-body); font-size: 0.95rem; margin-bottom: 1.25rem; }

.service-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--light-bg);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.service-features { list-style: none; margin-bottom: 1.75rem; flex: 1; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(74,158,255,0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232176d2' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
  border-radius: 50%;
}

/* ── 11. TESTIMONIAL CARDS ──────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem; right: 1.75rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  font-family: Georgia, serif;
}

.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star  { color: var(--accent); font-size: 1rem; }

.testimonial-text { color: var(--text-body); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.author-name { font-weight: 700; color: var(--text); font-size: 0.95rem; margin-bottom: 0.1rem; }
.author-meta { font-size: 0.78rem; color: var(--text-light); }

/* ── 12. TEAM CARDS ─────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.team-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-photo::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  background: rgba(74,158,255,0.1);
  border-radius: 50%;
}
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 4px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  position: relative; z-index: 1;
}
.team-info { padding: 1.75rem; }
.team-info h3 { margin-bottom: 0.25rem; font-size: 1.15rem; }
.team-role { color: var(--primary-light); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.team-info p { color: var(--text-body); font-size: 0.88rem; margin-bottom: 1rem; }
.team-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }

.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}
.badge--accent  { background: rgba(74,158,255,0.12); color: var(--primary); border: 1px solid rgba(74,158,255,0.35); }
.badge--primary { background: rgba(26,53,97,0.08);  color: var(--primary); border: 1px solid rgba(26,53,97,0.15); }

/* ── 13. FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-label .required { color: var(--danger); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--primary-light); box-shadow: 0 0 0 4px rgba(45,90,160,0.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a9ab8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-hint { font-size: 0.8rem; color: var(--text-light); margin-top: 0.4rem; }
.form-feedback { display: none; font-size: 0.82rem; margin-top: 0.4rem; }
.form-feedback.error   { color: var(--danger);  display: block; }
.form-feedback.success { color: var(--success); display: block; }
.form-control.is-invalid { border-color: var(--danger); }
.form-control.is-valid   { border-color: var(--success); }

/* ── 14. BOOKING LAYOUT ─────────────────────────────────────── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.booking-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.booking-sidebar { position: sticky; top: calc(var(--nav-height) + 1.5rem); }

.booking-info-card { background: var(--primary); border-radius: var(--radius-lg); padding: 2rem; color: var(--white); margin-bottom: 1.5rem; }
.booking-info-card h3 { color: var(--white); margin-bottom: 1.25rem; font-size: 1.1rem; }

.booking-info-item { display: flex; gap: 0.85rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: flex-start; }
.booking-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.booking-info-icon {
  width: 36px; height: 36px;
  background: rgba(74,158,255,0.18);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-info-icon svg { color: var(--accent); }
.booking-info-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.15rem; }
.booking-info-value { font-size: 0.88rem; color: var(--white); font-weight: 500; }

.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success-icon {
  width: 80px; height: 80px;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 { color: var(--text); margin-bottom: 0.75rem; }
.form-success p  { color: var(--text-body); }

/* ── 15. MAP ─────────────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-wrapper iframe { width: 100%; height: 420px; border: none; display: block; }

/* ── 16. CONTACT LAYOUT ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h2 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.8rem; }
.contact-info-card > p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; }

.contact-item { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: flex-start; }
.contact-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 46px; height: 46px;
  background: rgba(74,158,255,0.18);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.contact-item:hover .contact-icon { background: var(--accent); }
.contact-item:hover .contact-icon svg { color: var(--primary-dark); }
.contact-icon svg { color: var(--accent); transition: color var(--transition); }
.contact-detail-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.2rem; }
.contact-detail-value { color: var(--white); font-weight: 500; font-size: 0.95rem; }
.contact-detail-value a { color: var(--white); }
.contact-detail-value a:hover { color: var(--accent); }

/* Social links */
.social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-link {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}
.social-link:hover { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); transform: translateY(-3px); }

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ── 17. INTRO SECTION ──────────────────────────────────────── */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.intro-main-card {
  background: linear-gradient(150deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.intro-main-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(74,158,255,0.08);
  border-radius: 50%;
}
.intro-main-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.5rem; }
.intro-main-card p  { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }
.intro-big-number { font-size: 5rem; font-weight: 900; color: var(--accent); line-height: 1; font-family: 'Poppins', sans-serif; margin-bottom: 0.5rem; }

.intro-visual { position: relative; }

.intro-floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.intro-floating-badge--1 { bottom: -1.5rem; left: -1.5rem; }
.intro-floating-badge--2 { top: -1rem; right: -1rem; }
.intro-floating-badge-icon {
  width: 38px; height: 38px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.intro-floating-badge-icon svg { color: var(--primary); }
.intro-floating-badge-label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.intro-floating-badge-value { font-weight: 700; color: var(--text); font-size: 0.95rem; }

.intro-content h2 { margin-bottom: 1.25rem; }
.intro-content p  { color: var(--text-body); margin-bottom: 1.5rem; }

.intro-check-list { margin-bottom: 2rem; }
.intro-check-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text-body); }
.intro-check-item:last-child { border-bottom: none; }
.check-icon { width: 24px; height: 24px; background: rgba(74,158,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-icon svg { color: var(--accent-dark); }

/* ── 18. WHY CHOOSE US ──────────────────────────────────────── */
.why-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  align-items: flex-start;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.why-number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800;
  color: var(--primary-dark);
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.why-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-content p  { font-size: 0.9rem; color: var(--text-body); margin: 0; }

/* ── 19. ACCREDITATIONS ─────────────────────────────────────── */
.accreditation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.accreditation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.accreditation-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.accreditation-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.accreditation-icon svg { color: var(--white); }
.accreditation-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.accreditation-card p  { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ── 20. TESTIMONIAL FILTER ─────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover  { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ── 21. CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: rgba(74,158,255,0.06); border-radius: 50%; }
.cta-section::after  { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; background: rgba(74,158,255,0.05); border-radius: 50%; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-section p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-section .btn-group { justify-content: center; position: relative; z-index: 1; }

/* ── 22. FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding: 5rem 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p { margin: 1rem 0 1.5rem; font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-social  { display: flex; gap: 0.6rem; }

.footer-heading {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer-link:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start; }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a,
.footer-contact-item span { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom { padding: 1.75rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.83rem; margin: 0; }
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-link { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom-link:hover { color: var(--white); }

/* ── 23. ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp    { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown  { from { opacity: 0; transform: translateY(-20px);} to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn      { from { opacity: 0; }  to { opacity: 1; } }
@keyframes floatSlow   { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.02); } }
@keyframes pulse       { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }
@keyframes slideIn     { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ── 24. RESPONSIVE ─────────────────────────────────────────── */

/* Large tablets */
@media (max-width: 1100px) {
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .accreditation-grid   { grid-template-columns: repeat(2, 1fr); }
  .booking-grid         { grid-template-columns: 1fr; }
  .booking-sidebar      { position: static; }
  .intro-grid           { gap: 3rem; }
}

/* Tablets */
@media (max-width: 900px) {
  :root { --nav-height: 68px; }
  .hamburger { display: flex; }
  .nav-menu  { display: none; }
  .grid-3    { grid-template-columns: repeat(2, 1fr); }
  .grid-4    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .intro-grid    { grid-template-columns: 1fr; }
  .intro-visual  { order: -1; max-width: 480px; margin: 0 auto; }
  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 640px) {
  .section    { padding: 3.5rem 0; }
  .section--lg{ padding: 4.5rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-layout{ grid-template-columns: 1fr; padding: 3rem 0; }
  .hero-card  { display: none; }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 1rem; }
  .btn-group  { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
  .booking-form-wrapper,
  .contact-form-wrapper,
  .contact-info-card { padding: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section { padding: 4rem 0; }
  .accreditation-grid  { grid-template-columns: repeat(2, 1fr); }
  .intro-floating-badge{ display: none; }
  .page-hero   { padding: calc(var(--nav-height) + 2rem) 0 3rem; }
}

@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ══════════════════════════════════════════════════
   ADDED: Cookie Consent Banner
══════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary-dark, #0f2040);
  border-top: 3px solid var(--accent, #4a9eff);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
#cookie-banner.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
.cookie-banner__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
  flex: 1 1 280px;
}
.cookie-banner__link {
  color: var(--accent, #4a9eff);
  text-decoration: underline;
}
.cookie-banner__link:hover {
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  transition: opacity 0.2s, transform 0.15s;
}
.cookie-btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.cookie-btn:active { transform: translateY(0); }
.cookie-btn--accept {
  background: var(--accent, #4a9eff);
  color: #fff;
}
.cookie-btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cookie-btn--decline:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

@media (max-width: 540px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ══════════════════════════════════════════════════
   ADDED: Privacy Policy page styles
══════════════════════════════════════════════════ */
.policy-section {
  padding: 4rem 0;
}
.policy-section + .policy-section {
  padding-top: 0;
}
.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.policy-wrap h2 {
  font-size: 1.45rem;
  color: var(--primary, #1a3561);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border, #e2e8f0);
}
.policy-wrap h2:first-child {
  margin-top: 0;
}
.policy-wrap p,
.policy-wrap li {
  font-size: 0.95rem;
  color: var(--text-body, #4a5568);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.policy-wrap ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-wrap a {
  color: var(--primary, #1a3561);
  text-decoration: underline;
}
.policy-wrap a:hover {
  color: var(--accent, #4a9eff);
}
.policy-meta {
  display: inline-block;
  background: var(--light-bg, #f7f9fc);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted, #718096);
  margin-bottom: 2rem;
}
