/* ==========================================================================
   Elevate Global Consult — Single stylesheet
   Merged from: styles.css (base/tokens), home.css (shared section patterns),
   booking.css, about.css, service.css, success-stories.css.
   Order matters: base tokens first, then shared patterns, then each page's
   own overrides/additions — so the cascade still resolves the same way it
   did across the separate files.
   ========================================================================== */


/* ============================================================
   Section: styles.css
   ============================================================ */

/* ==========================================================================
   Elevate Global Consult — Shared Stylesheet
   Font: Google Sans Flex (see README.md — this font isn't on Google Fonts'
   public CDN, so the @font-face block below expects local files. Drop your
   .woff2 files in /assets/fonts/ or swap the stack for a public alternative.
   ========================================================================== */

@font-face {
  font-family: "Google Sans Flex";
  src: url("../assets/fonts/GoogleSansFlex-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Google Sans Flex";
  src: url("../assets/fonts/GoogleSansFlex-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Google Sans Flex";
  src: url("../assets/fonts/GoogleSansFlex-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  /* Color */
  --color-primary: #1979e5;
  --color-primary-dark: #1360b8;
  --color-primary-light: #eaf2fd;
  --color-text: #14181f;
  --color-text-muted: #5b6472;
  --color-border: #e4e9f0;
  --color-bg: #ffffff;
  --color-bg-soft: #f5f8fc;
  --color-success: #1c9a5b;
  --color-success-bg: #e9f9f0;
  --color-danger: #e4432b;
  --color-danger-bg: #fdecea;

  /* Type */
  --font-brand: "Google Sans Flex", "Google Sans", "Product Sans", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --nav-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20, 24, 31, 0.06), 0 1px 6px rgba(20, 24, 31, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 24, 31, 0.10);
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-brand);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* ------------------------------ Navigation ------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 22px;
  color: var(--color-primary);
  white-space: nowrap;
}
.brand img {
  height: 34px;
  width: auto;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
  flex: none;
  /* Swap this block for <img src="assets/img/logo.svg" alt="Elevate Global Consult"> */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 16px;
  font-weight: 500;
}
.nav-links a {
  color: var(--color-text);
  padding: 10px 0;
  position: relative;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--color-primary);
}

.has-dropdown {
  position: relative;
}
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  font-weight: 500;
  color: var(--color-text);
  padding: 10px 0;
}
.dropdown-toggle:hover { color: var(--color-primary); }
.dropdown-toggle .chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}
.has-dropdown.is-open .chevron { transform: rotate(225deg); margin-top: 4px; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  translate: 0 6px;
  transition: opacity 0.15s ease, translate 0.15s ease, visibility 0.15s;
}
.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 400;
  font-size: 15px;
}
.dropdown-menu li a:hover { background: var(--color-bg-soft); color: var(--color-primary); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-color: #0b1526; /* fallback while bg image loads */
  background-image:
    linear-gradient(180deg, rgba(6, 14, 28, 0.35) 0%, rgba(6, 14, 28, 0.65) 100%),
    url('/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero-inner {
  max-width: 900px;
  padding: 96px 24px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* ---- Partners strip ---- */
.partners-strip {
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 32px;
}
.partners-viewport {
  position: relative;
  overflow: hidden;
  /* fades the logos out at each edge instead of a hard cutoff */
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 150px;
  width: max-content;
  animation: partners-scroll 28s linear infinite;
}
.partners-viewport:hover .partners-track {
  animation-play-state: paused;
}
.partners-track img {
  height: 120px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
  flex: none;
}
.partners-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .partners-strip { padding: 60px 0; }
  .partners-track { gap: 60px; }
  .partners-track img { height: 80px; }
}

/* -------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 500;
  font-size: 17px;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(25, 121, 229, 0.35);
}
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-primary:disabled {
  background: #a9c6ea;
  box-shadow: none;
  cursor: not-allowed;
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  font-weight: 500;
  padding: 16px 8px;
}
.btn-ghost-light:hover { color: var(--color-primary-light); }
.btn-block { width: 100%; }

/* --------------------------------- Footer -------------------------------- */
.site-footer {
  background: var(--color-text);
  color: #c7ccd4;
  padding: 48px 0 28px;
  font-size: 14px;
  margin-top: 96px;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer a:hover { color: #fff; }

/* ------------------------------- Mobile nav ------------------------------ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    z-index: 250; /* was uncontrolled — now sits above .float-actions (200) */
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 6;
    padding: 12px 20px 32px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    overflow-y: auto;
    box-shadow: 0 12px 24px rgba(20, 24, 31, 0.08);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a, .dropdown-toggle {
    padding: 16px 4px;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    justify-content: space-between;
    font-size: 16px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 4px 12px;
    display: none;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    translate: none;
  }
  .dropdown-menu li a { padding: 12px; border-bottom: none; }
  .has-dropdown.is-open .dropdown-menu { display: block; }

  /* Lock the page behind the menu so it can't scroll while open */
  body.nav-open { overflow: hidden; }

  .hero { min-height: 100svh; min-height: 100vh; }
  .hero-inner { padding: 72px 16px; }
  .hero-actions { flex-direction: column; gap: 16px; }
  .btn-block-mobile { width: 100%; }
}

/* ============================================================
   Section: home.css
   ============================================================ */

/* ==========================================================================
   Elevate Global Consult — Homepage sections (Stats / About / Services /
   Process / Why Choose Us / CTA / expanded footer)
   Uses the SAME tokens as styles.css (--color-primary, --radius-md, etc.) —
   no new palette, just extends what's already there.
   ========================================================================== */

.section {
  padding: 96px 0;
}
.section-soft { background: var(--color-bg-soft); }
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 18px;
  max-width: 640px;
}
.section-lede {
  font-size: 16.5px;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.65;
  margin: 0;
}
.section-head { margin-bottom: 52px; }

/* ------------------------------- Stats ------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-figure {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* -------------------------------- About -------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-bg-soft) url('/assets/img/about.jpg') center / cover no-repeat;
  box-shadow: var(--shadow-md);
}
.about-pillars {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar h3 { margin: 0 0 4px; font-size: 16.5px; }
.pillar p { margin: 0; color: var(--color-text-muted); font-size: 14.5px; line-height: 1.55; }

/* ------------------------------- Services ------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card .pillar-icon { margin-bottom: 18px; }
.service-card h3 { font-size: 16.5px; margin: 0 0 8px; }
.service-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; margin: 0; }

/* -------------------------------- Process -------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.process-step {
  text-align: left;
}
.process-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.process-step h3 { font-size: 19px; margin: 0 0 10px; }
.process-step p { color: var(--color-text-muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* ----------------------------- Why Choose Us ----------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.why-list { display: grid; gap: 24px; }
.why-item { display: flex; gap: 16px; }
.why-check {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-item h3 { margin: 0 0 4px; font-size: 16.5px; }
.why-item p { margin: 0; color: var(--color-text-muted); font-size: 14.5px; line-height: 1.6; }

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.testimonial-quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0 0 18px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.testimonial-author .name { font-weight: 600; font-size: 14px; }
.testimonial-author .role { font-size: 12.5px; color: var(--color-text-muted); }

/* -------------------------------- CTA banner -------------------------------- */
.cta-banner {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  padding: 88px 24px;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin: 0 0 16px;
  max-width: 640px;
  margin-inline: auto;
}
.cta-banner p {
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.6;
}

/* ---------------------------- Expanded footer ---------------------------- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { color: #fff; font-weight: 700; font-size: 19px; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; line-height: 1.6; max-width: 260px; color: #c7ccd4; }
.footer-col h4 {
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7ccd4;
}
.footer-social a:hover { border-color: var(--color-primary); color: #fff; background: var(--color-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 13px;
}

/* --------------------------- Floating action buttons --------------------------- */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14.5px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  translate: 0 12px;
  pointer-events: none;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.float-actions.is-visible .float-btn { opacity: 1; translate: 0 0; pointer-events: auto; }
.float-btn-book { background: var(--color-primary); color: #fff; }
.float-btn-book:hover { background: var(--color-primary-dark); }
.float-btn-whatsapp {
  background: #25d366;
  color: #06210f;
  width: 52px;
  height: 52px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

/* -------------------------------- Scroll-reveal -------------------------------- */
.reveal { opacity: 0; translate: 0 20px; transition: opacity 0.6s ease, translate 0.6s ease; }
.reveal.is-visible { opacity: 1; translate: 0 0; }

/* ------------------------------------ Responsive ------------------------------ */
@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner { padding: 64px 20px; }
  .float-actions { right: 16px; bottom: 16px; }
}

/* ============================================================
   Section: booking.css
   ============================================================ */

/* Booking page — layered on top of styles.css */

.page-header {
  background: var(--color-bg-soft);
  padding: 56px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-header h1 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 12px;
  font-weight: 700;
}
.page-header p {
  color: var(--color-text-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 56px 0 96px;
  align-items: start;
}

/* ---- Form card ---- */
.booking-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-weight: 500;
  font-size: 14.5px;
  margin-bottom: 8px;
}
.field .hint {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 13px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15.5px;
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--color-text-muted) 50%),
    linear-gradient(135deg, var(--color-text-muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 15px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-light);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field .error-text {
  display: none;
  color: var(--color-danger);
  font-size: 13px;
  margin-top: 6px;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--color-danger);
}
.field.has-error .error-text { display: block; }

/* ---- Summary card ---- */
.summary-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.summary-card h2 {
  font-size: 19px;
  margin: 0 0 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row .label { color: var(--color-text-muted); }
.summary-row .value { font-weight: 500; text-align: right; max-width: 60%; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 24px;
  padding-top: 16px;
  border-top: 2px solid var(--color-text);
}
.summary-total .label { font-weight: 500; }
.summary-total .amount { font-size: 26px; font-weight: 700; color: var(--color-primary); }

.security-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin-top: 18px;
  line-height: 1.5;
}
.security-note svg { flex: none; margin-top: 2px; }

/* ---- Status banner (after payment) ---- */
.status-banner {
  display: none;
  align-items: flex-start;
  gap: 12px;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 14.5px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.status-banner.is-visible { display: flex; }
.status-banner.success { background: var(--color-success-bg); color: #0e6b3e; }
.status-banner.error { background: var(--color-danger-bg); color: #a4291a; }

@media (max-width: 980px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .summary-card { position: static; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .booking-form, .summary-card { padding: 22px; }
}

/* ============================================================
   Section: about.css
   ============================================================ */

/* ==========================================================================
   Elevate Global Consult — About page
   Reuses .section / .section-soft / .section-tag / .section-heading /
   .stats-grid / .stat-card / .cta-banner / .footer-grid from home.css.
   This file only adds what's new: the intro banner, vision/mission cards,
   and the team grid.
   ========================================================================== */

.about-intro {
  background: var(--color-bg-soft);
  padding: 72px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.about-intro .section-tag { display: block; }
.about-intro h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 700;
  margin: 0 0 18px;
}
.about-intro p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.65;
}

/* ---- Vision / Mission ---- */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.vm-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.vm-card .pillar-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
}
.vm-card h3 { font-size: 20px; margin: 0 0 12px; }
.vm-card p { color: var(--color-text-muted); font-size: 15px; line-height: 1.7; margin: 0; }

/* ---- Team ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
  aspect-ratio: 1 / 1;
  background: var(--color-bg-soft);
  background-size: cover;
  background-position: center top;
}
.team-info { padding: 18px 20px 22px; }
.team-name { font-weight: 600; font-size: 15.5px; margin: 0 0 3px; }
.team-title { font-size: 13.5px; color: var(--color-primary); font-weight: 500; margin: 0; }

@media (max-width: 980px) {
  .vm-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-intro { padding: 56px 0 40px; }
}

/* ============================================================
   Section: service.css
   ============================================================ */

/* ==========================================================================
   Elevate Global Consult — Service page template
   One stylesheet shared by every individual service page.
   Reuses .section / .section-soft / .pillar-icon / .why-check from home.css
   where it already fits; only adds what's new below.
   ========================================================================== */

/* ---- Intro (headline + subheadline) ---- */
.service-intro {
  background: var(--color-bg-soft);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--color-border);
}
.service-intro .section-tag { display: block; margin-bottom: 16px; }
.service-intro h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 760px;
}
.service-subhead {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 660px;
  line-height: 1.6;
  margin: 0;
}

/* ---- Body copy ---- */
.service-body {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
}
.service-body p { margin: 0 0 20px; }
.service-body p:last-child { margin-bottom: 0; }

/* ---- Included / Who-for two-column lists ---- */
.service-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.list-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
}
.list-card h3 {
  font-size: 18px;
  margin: 0 0 20px;
}
.list-card ul { display: grid; gap: 16px; }
.list-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.55;
}
.list-card .li-icon {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.list-included .li-icon { background: var(--color-primary); }
.list-who .li-icon { background: var(--color-text); }

/* ---- Long CTA banner ---- */
.service-cta {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 72px 24px;
  text-align: center;
}
.service-cta-label {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  max-width: 640px;
  margin: 0 auto 32px;
}
.service-cta-label .accent { color: var(--color-primary); }

@media (max-width: 900px) {
  .service-lists { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .service-intro { padding: 56px 0 40px; }
  .list-card { padding: 26px 22px; }
  .service-cta { padding: 56px 20px; }
}

/* ============================================================
   Section: success-stories.css
   ============================================================ */

/* ==========================================================================
   Elevate Global Consult — Success Stories
   Image-driven cards: portrait photo, gradient name overlay, school logo
   badge, expandable story section below.
   ========================================================================== */

.stories-intro {
  background: var(--color-bg-soft);
  padding: 72px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.stories-intro h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 700;
  margin: 0 0 16px;
}
.stories-intro p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 48px;
}

.story-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* ---- Photo + overlay ---- */
.story-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--color-bg-soft);
  background-size: cover;
  background-position: center;
}
.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 14, 24, 0.82) 100%);
}
.story-school-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 14px 8px 8px;
  box-shadow: var(--shadow-sm);
}
.story-school-badge img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}
.story-school-badge span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}
.story-overlay-text {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}
.story-overlay-text .name {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.15;
}
.story-overlay-text .destination {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ---- Expandable story body ---- */
.story-body {
  padding: 24px 26px 26px;
}
.story-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0;
}
.story-full {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  margin: 14px 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.story-card.is-open .story-full {
  max-height: 600px;
}
.story-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-primary);
  cursor: pointer;
}
.story-toggle .chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -2px;
}
.story-card.is-open .story-toggle .chev { transform: rotate(225deg); margin-top: 2px; }

@media (max-width: 900px) {
  .stories-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .stories-intro { padding: 56px 0 40px; }
  .story-body { padding: 20px 20px 22px; }
}

/* ============================================================
   Section: contact.css (Contact Us page)
   ============================================================ */
 
.contact-intro {
  background: var(--color-bg-soft);
  padding: 72px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.contact-intro h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 700;
  margin: 0 0 16px;
}
.contact-intro p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.6;
}
 
/* ---- Contact info cards ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .pillar-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
}
.contact-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 12px;
}
.contact-card .value {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
}
.contact-card .value a { display: block; }
.contact-card .value a:hover { color: var(--color-primary); }
.contact-card .sub {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin-top: 8px;
}
 
/* ---- Map + hours strip ---- */
.contact-map-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 340px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.contact-hours-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-hours-card h3 { font-size: 18px; margin: 0 0 20px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14.5px;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-row .day { color: var(--color-text-muted); }
.hours-row .time { font-weight: 500; }
.contact-hours-card .btn { margin-top: 24px; }
 
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-intro { padding: 56px 0 40px; }
  .contact-card { padding: 28px 22px; }
}