/* ══════════════════════════════════════════════════
   PINNACLE CLASSES — style.css
   Fonts: Merriweather (headings) + Open Sans (body)
   Palette: #1A237E (blue) · #FF6D00 (orange) · #fff
   ══════════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────────── */
:root {
  --blue:        #1A237E;
  --blue-mid:    #283593;
  --blue-light:  #3949AB;
  --orange:      #FF6D00;
  --orange-lite: #FF8F00;
  --white:       #ffffff;
  --off-white:   #F5F6FA;
  --text-dark:   #1C1C2E;
  --text-mid:    #444860;
  --text-light:  #6B6E8A;
  --border:      #E0E3F0;

  --font-head:   'Merriweather', Georgia, serif;
  --font-body:   'Open Sans', sans-serif;

  --radius:      10px;
  --radius-lg:   18px;
  --shadow-sm:   0 2px 12px rgba(26,35,126,.08);
  --shadow-md:   0 8px 32px rgba(26,35,126,.13);
  --shadow-lg:   0 20px 60px rgba(26,35,126,.18);

  --transition:  0.28s cubic-bezier(.4,0,.2,1);
  --max-w:       1160px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-pad { padding: 96px 0; }
.desktop-br  { display: block; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  padding: 13px 30px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-lite);
  border-color: var(--orange-lite);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,109,0,.30);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.full-width { width: 100%; text-align: center; }

/* ── Section Header ───────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,109,0,.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-tag.light {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.28;
  margin-bottom: 16px;
}
.section-sub {
  font-size: .97rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.22);
  background: #141a63;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-icon {
  color: var(--orange);
  font-size: 1.15rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.logo-text em { font-style: italic; font-weight: 300; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.80);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--orange-lite) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: left center;
}
.hamburger.open span:nth-child(1) { transform: rotate(40deg) translateY(-2px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-40deg) translateY(2px); }


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--blue);
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 0;
}

/* Subtle geometric pattern background */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(57,73,171,.45) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,109,0,.10) 0%, transparent 45%),
    linear-gradient(135deg, #1A237E 0%, #1e2d9b 50%, #16206e 100%);
  z-index: 0;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 59px,
    rgba(255,255,255,.025) 60px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 59px,
    rgba(255,255,255,.025) 60px
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  animation: heroFadeUp .9s ease both;
}

.hero-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-heading em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.78);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  line-height: 1.80;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Trust badges bar */
.trust-badges {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 80px;
  padding: 36px 0;
  animation: heroFadeUp 1s .2s ease both;
}
.badge {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.badge-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.badge-number sup {
  font-size: 1.1rem;
  vertical-align: super;
  font-weight: 400;
}
.badge-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
}
.badge-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.12);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════
   SUBJECTS
══════════════════════════════════════ */
.subjects { background: var(--off-white); }

.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.subject-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);

  /* Fade-in state */
  opacity: 0;
  transform: translateY(24px);
}
.subject-card.visible {
  animation: cardReveal .55s var(--card-delay, 0s) ease both;
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.subject-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.subject-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,35,126,.15);
}
.subject-card:hover::after { transform: scaleX(1); }

.subject-icon {
  font-size: 2rem;
  color: var(--blue-light);
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.subject-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.subject-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.card-btn {
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .04em;
  transition: gap var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
}
.card-btn:hover { color: var(--orange-lite); }


/* ══════════════════════════════════════
   RESULTS STRIP
══════════════════════════════════════ */
.results-strip {
  background: linear-gradient(135deg, var(--blue) 0%, #283593 60%, #1e2d9b 100%);
  padding: 96px 0;
}
.results-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.results-text .section-tag { margin-bottom: 18px; }
.results-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.28;
  margin-bottom: 20px;
}
.results-text h2 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.72);
}
.results-text p {
  color: rgba(255,255,255,.65);
  font-size: .96rem;
  line-height: 1.80;
  margin-bottom: 36px;
  max-width: 440px;
}

.results-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stat-item {
  opacity: 0;
  transform: translateX(20px);
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}
.stat-item.visible {
  animation: statSlide .5s ease both;
}
@keyframes statSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-desc {
  font-size: .84rem;
  color: rgba(255,255,255,.60);
  line-height: 1.5;
}


/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testi-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);

  opacity: 0;
  transform: translateY(20px);
}
.testi-card.visible {
  animation: cardReveal .55s ease both;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testi-card.featured {
  background: var(--blue);
  border-color: transparent;
  transform: translateY(-12px);
}
.testi-card.featured:hover { transform: translateY(-17px); }

.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: .7;
  color: var(--orange);
  opacity: .35;
  margin-bottom: 16px;
  display: block;
}
.testi-text {
  font-size: .92rem;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.testi-card.featured .testi-text { color: rgba(255,255,255,.78); }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.testi-card.featured .testi-avatar { background: rgba(255,255,255,.20); }
.testi-author strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.testi-card.featured .testi-author strong { color: var(--white); }
.testi-author span {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 2px;
  display: block;
}
.testi-card.featured .testi-author span { color: rgba(255,255,255,.55); }


/* ══════════════════════════════════════
   CONTACT CTA
══════════════════════════════════════ */
.contact-cta { background: var(--off-white); padding: 96px 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.22;
  margin-bottom: 16px;
}
.cta-text h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange);
}
.cta-text > p {
  font-size: .96rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
}
.contact-form input,
.contact-form select {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(57,73,171,.12);
}
.contact-form input::placeholder { color: #9ea2bc; }
.contact-form select { color: var(--text-mid); cursor: pointer; margin-bottom: 20px; }
.form-note {
  font-size: .82rem;
  text-align: center;
  margin-top: 12px;
  min-height: 20px;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--blue);
  color: rgba(255,255,255,.70);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: .84rem;
  line-height: 1.78;
  max-width: 260px;
}

.footer-links h4,
.footer-timing h4 {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .84rem;
  color: rgba(255,255,255,.60);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-timing p {
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(255,255,255,.60);
}
.timing-note {
  margin-top: 8px;
  font-size: .78rem !important;
  color: rgba(255,255,255,.38) !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.30);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom strong { color: rgba(255,255,255,.55); }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* ── Tablet: ≤ 900px ── */
@media (max-width: 900px) {
  .results-inner,
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }

  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .testi-card.featured { transform: none; }
  .testi-card.featured:hover { transform: translateY(-5px); }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: span 2; }

  .results-text p { max-width: 100%; }

  .badge { padding: 0 20px; }
  .badge-number { font-size: 2.2rem; }
}

/* ── Mobile: ≤ 640px ── */
@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  .desktop-br { display: none; }

  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: #141a63;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 6vw;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    border-bottom: 0px solid rgba(255,255,255,.08);
  }
  .nav-links.open {
    max-height: 360px;
    padding: 20px 6vw 28px;
    border-bottom-width: 1px;
  }
  .nav-links a {
    padding: 10px 0;
    width: 100%;
    font-size: .95rem;
  }
  .nav-cta {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    padding: 12px 0 !important;
  }

  /* Hero */
  .hero { min-height: auto; padding: 64px 0 0; }
  .hero-heading { font-size: 2.4rem; }
  .trust-badges {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .badge {
    padding: 28px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .badge:last-child { border-bottom: none; }
  .badge-divider { display: none; }

  /* Subjects */
  .subjects-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Results */
  .results-strip { padding: 64px 0; }
  .results-stats { gap: 24px; }

  /* CTA Form */
  .contact-form { padding: 28px 22px; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand { grid-column: span 1; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ══════════════════════════════════════════════════
   CONTACT PAGE STYLES
   (contact.html — merged from contact.css)
   ══════════════════════════════════════════════════ */

/* ── Page Hero (compact) ──────────────────────────── */
.page-hero {
  position: relative;
  background: var(--blue);
  padding: 88px 0 72px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 50%, rgba(57,73,171,.50) 0%, transparent 60%),
    radial-gradient(ellipse at 5%  80%, rgba(255,109,0,.10) 0%, transparent 45%),
    linear-gradient(135deg, #1A237E 0%, #1e2d9b 60%, #16206e 100%);
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 59px, rgba(255,255,255,.025) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,.025) 60px);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  animation: heroFadeUp .75s ease both;
}
.page-hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 14px;
}
.page-hero-heading em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.72);
}
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.62);
  line-height: 1.78;
  max-width: 480px;
}
.page-hero-divider {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: #F5F6FA;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}
.d-br { display: block; }

/* ── Contact Section ──────────────────────────────── */
.contact-section {
  background: var(--off-white);
  padding: 80px 0 96px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Info Panel ───────────────────────────────────── */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 84px;
}
.info-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-16px);
  transition: none;
}
.info-block.visible { animation: slideInLeft .5s ease both; }
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
.info-block:first-child { border-top: 1px solid var(--border); }
.info-icon-wrap {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(26,35,126,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.info-block h4 {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.info-block p { font-size: .88rem; color: var(--text-mid); line-height: 1.70; }
.info-block a { color: var(--blue-light); font-weight: 600; transition: color var(--transition); }
.info-block a:hover { color: var(--orange); }
.info-note { font-size: .78rem !important; color: var(--text-light) !important; margin-top: 4px; }

/* WhatsApp button */
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  margin-top: 28px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.28);
}
.whatsapp-btn:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

/* Timings card */
.timings-card {
  margin-top: 20px;
  background: var(--blue);
  border-radius: 12px;
  padding: 24px 26px;
  opacity: 0;
  transform: translateY(12px);
}
.timings-card.visible { animation: cardRevealContact .5s .15s ease both; }
@keyframes cardRevealContact {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.timings-card h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  margin-bottom: 16px;
}
.timings-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.timings-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.timings-card li.timing-days { border-bottom: none; padding-bottom: 0; }
.timing-label { color: rgba(255,255,255,.50); }
.timing-val   { color: var(--white); font-weight: 600; }

/* ── Enquiry Form ─────────────────────────────────── */
.enquiry-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px 48px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
}
.enquiry-form-wrap.visible { animation: cardRevealContact .6s .05s ease both; }

.form-header { margin-bottom: 40px; }
.form-header .section-tag { margin-bottom: 12px; }
.form-header h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.25;
}
.form-header p { font-size: .90rem; color: var(--text-light); line-height: 1.72; max-width: 440px; }

.form-row { margin-bottom: 28px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.form-group { display: flex; flex-direction: column; gap: 0; }
.form-group label:not(.radio-label):not(.checkbox-label) {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  display: block;
}
.required { color: var(--orange); margin-left: 2px; }
.optional  { font-weight: 400; color: var(--text-light); text-transform: none; letter-spacing: 0; font-size: .78rem; }

.enquiry-form input[type="text"],
.enquiry-form input[type="tel"],
.enquiry-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .90rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3.5px rgba(57,73,171,.11);
  background: #fafbff;
}
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder { color: #b0b4cc; }
.enquiry-form textarea { resize: vertical; min-height: 108px; }

.phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.phone-wrap:focus-within {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3.5px rgba(57,73,171,.11);
}
.phone-prefix {
  padding: 0 14px;
  background: var(--off-white);
  border-right: 1.5px solid var(--border);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.phone-wrap input { border: none !important; box-shadow: none !important; border-radius: 0 !important; flex: 1; }
.phone-wrap input:focus { background: #fafbff !important; }

.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  padding: 13px 40px 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .90rem;
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.select-wrap select:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3.5px rgba(57,73,171,.11);
  background: #fafbff;
}
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-light);
}

.radio-group { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 4px; }
.radio-label {
  display: flex !important;
  align-items: center !important;
  gap: 9px;
  font-size: .90rem !important;
  font-weight: 500 !important;
  color: var(--text-mid) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer;
  transition: color var(--transition);
}
.radio-label:hover { color: var(--blue) !important; }
.radio-label input[type="radio"] { display: none; }
.radio-custom {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.radio-custom::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  transform: scale(0);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}
.radio-label input[type="radio"]:checked + .radio-custom { border-color: var(--blue); }
.radio-label input[type="radio"]:checked + .radio-custom::after { transform: scale(1); }

.checkbox-group { flex-direction: row !important; align-items: flex-start; gap: 0; }
.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem !important;
  font-weight: 400 !important;
  color: var(--text-mid) !important;
  cursor: pointer;
  line-height: 1.55;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 18px; height: 18px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
}
.checkbox-custom::after {
  content: '';
  width: 5px; height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(43deg) scale(0) translateY(-1px);
  transition: transform .18s ease;
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom { background: var(--blue); border-color: var(--blue); }
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after { transform: rotate(43deg) scale(1) translateY(-1px); }

.field-error { display: none; font-size: .78rem; color: #D32F2F; margin-top: 6px; font-weight: 500; }

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 4px;
}
.submit-btn:hover:not(:disabled) {
  background: var(--orange-lite);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,109,0,.30);
}
.submit-btn:disabled { opacity: .65; cursor: not-allowed; }
.btn-arrow { transition: transform var(--transition); }
.submit-btn:hover .btn-arrow { transform: translateX(4px); }

.form-success {
  display: none;
  align-items: flex-start;
  gap: 18px;
  background: #E8F5E9;
  border: 1.5px solid #A5D6A7;
  border-radius: 10px;
  padding: 24px 26px;
  color: #2E7D32;
  margin-top: 8px;
}
.form-success svg { flex-shrink: 0; margin-top: 2px; }
.form-success strong { display: block; font-size: .96rem; margin-bottom: 4px; }
.form-success p { font-size: .86rem; line-height: 1.65; color: #388E3C; }

/* ── Map Section ──────────────────────────────────── */
.map-section { background: var(--white); }
.map-header { padding: 80px 0 48px; text-align: center; }
.map-header .section-tag { margin-bottom: 14px; }
.map-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.map-header h2 em { font-style: italic; font-weight: 300; color: var(--orange); }
.map-header p { font-size: .92rem; color: var(--text-light); max-width: 460px; margin: 0 auto; line-height: 1.72; }

.map-embed-wrap { position: relative; line-height: 0; border-top: 4px solid var(--blue); }
.map-embed-wrap iframe { display: block; }
.map-overlay-pill {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: rgba(255,255,255,.88);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .80rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  letter-spacing: .02em;
}

/* ── Contact page responsive ──────────────────────── */
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-panel { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
  .whatsapp-btn { grid-column: span 2; }
  .timings-card  { grid-column: span 2; }
}
@media (max-width: 640px) {
  .page-hero { padding: 64px 0 56px; }
  .d-br { display: none; }
  .contact-info-panel { grid-template-columns: 1fr; }
  .whatsapp-btn { grid-column: span 1; }
  .timings-card  { grid-column: span 1; }
  .enquiry-form-wrap { padding: 32px 22px; }
  .form-row.two-col  { grid-template-columns: 1fr; gap: 0; }
  .map-overlay-pill {
    font-size: .72rem;
    padding: 8px 14px;
    top: 12px;
    max-width: 88vw;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .map-embed-wrap iframe { height: 340px; }
}