@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&family=Barlow+Condensed:wght@600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2f6e;
  --navy-dark: #0f1d47;
  --navy-light: #e8edf8;
  --white: #ffffff;
  --light: #f7f8fc;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e2e6f0;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

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

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 96px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 78px; width: auto; }
.nav-logo-text { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.nav-logo-text span { font-weight: 400; color: rgba(255,255,255,0.5); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 17px; font-weight: 500; padding: 10px 16px; border-radius: 6px; transition: all 0.2s; }
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-links a.active { color: #fff; font-weight: 600; }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; min-width: 260px;
  box-shadow: 0 8px 24px rgba(26,47,110,0.1);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: all 0.2s; padding: 6px;
}
.dropdown-menu a { display: block; color: var(--text) !important; padding: 9px 12px !important; font-size: 13px !important; border-radius: 6px !important; background: none !important; transition: background 0.15s; font-weight: 400 !important; }
.dropdown-menu a:hover { background: var(--light) !important; color: var(--navy) !important; }
.btn-book { background: #fff !important; color: #000 !important; font-weight: 700 !important; padding: 11px 24px !important; border-radius: 6px !important; font-size: 16px !important; margin-left: 8px; transition: all 0.2s !important; }
.btn-book:hover { background: var(--navy-light) !important; color: var(--navy) !important; }

/* ── BUTTONS ── */
.btn-primary { background: var(--navy); color: #fff; padding: 13px 28px; border-radius: 6px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.2s; display: inline-block; font-family: var(--font-body); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-sec { background: var(--white); color: var(--navy); padding: 13px 28px; border-radius: 6px; font-weight: 500; font-size: 14px; text-decoration: none; border: 1.5px solid var(--border); transition: all 0.2s; display: inline-block; }
.btn-sec:hover { border-color: var(--navy); background: var(--light); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy-dark); padding: 140px 52px;
  position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.015) 79px, rgba(255,255,255,0.015) 80px),
              repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.015) 79px, rgba(255,255,255,0.015) 80px);
}
.page-hero-content { position: relative; max-width: 680px; }
.page-hero-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 58px); font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 16px; }
.page-hero h1 em { color: #8fa8e0; font-style: normal; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 520px; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--navy); display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { padding: 32px 40px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.stat-item span { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── SECTION LABELS ── */
.section-tag { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; display: block; }
.section-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--navy-dark); line-height: 1.1; margin-bottom: 14px; }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 560px; }
.section-header { margin-bottom: 52px; }

/* ── SERVICE CARDS ── */
.services { padding: 96px 48px; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.svc { background: var(--white); border-radius: 12px; border: 1px solid var(--border); padding: 32px 28px; transition: all 0.25s; }
.svc:hover { border-color: var(--navy); box-shadow: 0 8px 32px rgba(26,47,110,0.08); transform: translateY(-3px); }
.svc-icon { width: 44px; height: 44px; background: var(--navy-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.svc h3 { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.svc p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── WHO WE SERVE ── */
.serve { padding: 96px 48px; background: var(--white); }
.serve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 52px; }
.serve-card { background: var(--light); border-radius: 12px; border: 1px solid var(--border); padding: 28px 24px; text-align: center; transition: all 0.25s; }
.serve-card:hover { border-color: var(--navy); background: var(--navy-light); }
.serve-card svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 1.5; margin-bottom: 14px; }
.serve-card h4 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.serve-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── WHY / PROCESS ── */
.why { padding: 96px 48px; background: var(--light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.why-steps { display: flex; flex-direction: column; }
.why-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.why-step:first-child { padding-top: 0; }
.why-step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--navy); background: var(--navy-light); width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-step h4 { font-weight: 600; font-size: 15px; color: var(--navy-dark); margin-bottom: 4px; }
.why-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.why-pt { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.tick { width: 28px; height: 28px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.tick svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 2.5; }
.why-pt h4 { font-weight: 600; font-size: 15px; color: var(--navy-dark); margin-bottom: 3px; }
.why-pt p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta { background: var(--navy); padding: 80px 48px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.cta h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 40px); font-weight: 700; color: #fff; margin-bottom: 8px; }
.cta p { font-size: 15px; color: rgba(255,255,255,0.6); }
.cta a { background: #fff; color: var(--navy); padding: 15px 36px; border-radius: 6px; font-weight: 700; font-size: 15px; text-decoration: none; white-space: nowrap; transition: all 0.2s; font-family: var(--font-body); }
.cta a:hover { background: var(--light); }

/* ── CONTACT BAR ── */
.contact-bar { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 48px; display: flex; align-items: center; justify-content: center; gap: 48px; }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.contact-item svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 2; }
.contact-item strong { color: var(--navy-dark); }
.contact-item a { color: var(--navy-dark); text-decoration: none; font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); padding: 36px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ── CONTENT SECTIONS (about, service detail) ── */
.content-section { padding: 96px 48px; background: var(--white); }
.content-section.alt { background: var(--light); }
.content-wrap { max-width: 800px; }
.content-wrap p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.content-wrap h2 { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--navy-dark); margin-bottom: 20px; margin-top: 40px; }
.content-wrap h2:first-child { margin-top: 0; }

/* ── CONTACT FORM ── */
.form-section { padding: 96px 48px; background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-wrap { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: var(--font-body); color: var(--text);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { background: var(--navy); color: #fff; padding: 14px 32px; border: none; border-radius: 6px; font-size: 15px; font-weight: 600; font-family: var(--font-body); cursor: pointer; transition: all 0.2s; }
.form-submit:hover { background: var(--navy-dark); transform: translateY(-1px); }
.contact-details { padding-top: 8px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 32px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--navy-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.contact-detail-item h4 { font-weight: 600; font-size: 14px; color: var(--navy-dark); margin-bottom: 4px; }
.contact-detail-item p, .contact-detail-item a { font-size: 14px; color: var(--muted); text-decoration: none; }
.contact-detail-item a:hover { color: var(--navy); }

/* ── VALUES (about page) ── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 52px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; }
.value-card h4 { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; margin-top: 16px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.value-num { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--navy-light); }

/* ── BOOK PAGE ── */
.book-section { padding: 96px 48px; background: var(--light); }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* ─────────────────────────────────────────────────────────
   MOBILE & TABLET (≤ 768px)
   ───────────────────────────────────────────────────────── */
.mobile-toggle { display: none; }

@media (max-width: 768px) {
  /* ── NAV ── collapse to hamburger ── */
  nav { padding: 0 18px; height: 64px; position: relative; }
  .nav-logo img { height: 38px !important; }

  .mobile-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    width: 42px; height: 42px; background: transparent; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px; cursor: pointer; padding: 0; gap: 5px;
  }
  .mobile-toggle span {
    display: block; width: 20px; height: 2px; background: #fff; border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; align-items: stretch;
    padding: 8px 12px 16px; gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-dropdown > a {
    padding: 14px 16px !important; font-size: 16px !important;
    border-radius: 6px; width: 100%;
  }
  .nav-dropdown { width: 100%; }
  /* On mobile, dropdown opens via tap (handled in JS by toggling .open) */
  .dropdown-menu {
    position: static !important; opacity: 1 !important; pointer-events: all !important;
    transform: none !important; box-shadow: none !important; border: none !important;
    background: rgba(255,255,255,0.06) !important; margin: 4px 0 6px;
    padding: 4px !important; display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a {
    color: rgba(255,255,255,0.85) !important; font-size: 14px !important;
    padding: 11px 14px !important;
  }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
  .btn-book { margin-left: 0 !important; margin-top: 8px; text-align: center; }

  /* ── HOME HERO ── shrink the huge text ── */
  .hero { padding: 60px 22px !important; min-height: 78vh !important; }
  .hero h1 { font-size: clamp(36px, 11vw, 54px) !important; line-height: 1.05 !important; margin-bottom: 18px !important; }
  .hero p { font-size: 16px !important; margin-bottom: 28px !important; }
  .hero-tag { font-size: 11px !important; padding: 6px 14px !important; margin-bottom: 22px !important; }
  .btn-hero-primary, .btn-hero-outline { padding: 14px 28px !important; font-size: 15px !important; width: 100%; text-align: center; }
  .hero-btns { flex-direction: column; gap: 10px !important; width: 100%; }

  /* ── PAGE HERO (service/about pages) ── */
  .page-hero { padding: 70px 22px !important; min-height: 380px !important; }
  .page-hero h1 { font-size: clamp(34px, 9vw, 48px) !important; }
  .page-hero p { font-size: 15px !important; }

  /* ── CREDENTIALS ── stack vertically ── */
  .creds-section { padding: 44px 20px !important; }
  .creds-title { font-size: 26px !important; }
  .creds-sub { font-size: 15px !important; margin-bottom: 28px !important; }
  .creds-badges { flex-direction: column; gap: 14px !important; }
  .creds-badge { width: 100%; padding: 14px 18px !important; gap: 14px !important; }
  .creds-badge span { font-size: 14px !important; }
  .creds-badge img { height: 48px !important; }

  /* ── SCROLLING PHOTO BAR ── smaller tiles ── */
  .scroll-photo { width: 220px !important; height: 160px !important; }
  .scroll-photo-label p { font-size: 13px !important; }
  .scroll-photo-label span { font-size: 11px !important; }

  /* ── GENERIC SECTIONS ── shrink padding everywhere ── */
  .services, .serve, .why, .showcase, .process, .cta, .cta-banner,
  .content-section, .form-section, .contact-section, .book-section {
    padding: 56px 22px !important;
  }
  .section-title { font-size: clamp(26px, 7vw, 36px) !important; }
  .section-sub { font-size: 15px !important; margin-bottom: 36px !important; }
  .section-header { margin-bottom: 32px !important; }

  /* ── ALL TWO-COLUMN GRIDS → STACK ── */
  .services-grid, .serve-grid, .why-grid, .showcase-grid,
  .process-grid, .form-grid, .contact-grid, .book-grid, .values-grid {
    grid-template-columns: 1fr !important; gap: 18px !important;
  }
  .form-row { grid-template-columns: 1fr !important; gap: 14px !important; }

  /* ── SERVICE / VALUE CARDS ── */
  .svc, .serve-card, .value-card { padding: 26px 22px !important; }
  .svc h3 { font-size: 19px !important; }
  .svc p { font-size: 14px !important; }

  /* ── CTA BANNER ── stack heading + button ── */
  .cta, .cta-banner { grid-template-columns: 1fr !important; text-align: center; gap: 24px !important; }
  .cta h2, .cta-banner h2 { font-size: 26px !important; }
  .cta a, .cta-banner a { padding: 14px 28px !important; font-size: 15px !important; width: 100%; box-sizing: border-box; }

  /* ── CONTACT BAR ── stack the call/email items ── */
  .contact-bar { flex-direction: column; gap: 12px !important; padding: 18px 22px !important; }
  .contact-item { font-size: 13px !important; }

  /* ── CONTENT (service detail) ── */
  .content-wrap { max-width: 100%; }
  .content-wrap h2 { font-size: 24px !important; margin-top: 28px !important; }
  .content-wrap p { font-size: 15px !important; }

  /* ── STATS STRIP ── stack ── */
  .stats-strip { grid-template-columns: 1fr !important; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 22px 20px !important; }
  .stat-item:last-child { border-bottom: none; }

  /* ── PROCESS STEPS ── */
  .process-step { padding: 28px 22px !important; }
  .process-num { font-size: 52px !important; }
  .process-step h4 { font-size: 20px !important; }

  /* ── FOOTER ── stack ── */
  footer { flex-direction: column; text-align: center; gap: 14px !important; padding: 28px 22px !important; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px !important; }
}

/* Smaller phones (≤ 380px) — extra-tight */
@media (max-width: 380px) {
  .hero h1 { font-size: 34px !important; }
  .page-hero h1 { font-size: 30px !important; }
  .creds-title { font-size: 22px !important; }
  nav { padding: 0 14px; }
  .nav-logo img { height: 32px !important; }
}

/* Mobile hero photo crop — bias toward the focal subjects */
@media (max-width: 768px) {
  .hero-bg { object-position: 35% center !important; }
}
