/* =========================================================
   AusBangla Trade — Design tokens
   Palette drawn from the AusBangla Trade logo (navy + red)
   plus a warm cream field and a small ochre accent that
   nods to the Australian outback imagery used across the site.
   Display face: Fraunces (editorial, confident, a little
   unexpected for a "trade consultancy" — signals credibility
   without being a stock corporate sans).
   Body face: Public Sans (clean, legible, civic — pairs well
   with government/education contexts in both AU and BD).
   Signature element: a recurring "bridge arc" divider between
   sections — the site's literal subject is bridging two
   countries, so an arc motif (echoing the Harbour Bridge and
   the Opera House sails) recurs instead of a generic wave.
   ========================================================= */

:root {
  --navy: #12244d;
  --navy-deep: #0a1633;
  --navy-soft: #2a3f73;
  --red: #cf1f2e;
  --red-deep: #a5141f;
  --cream: #f8f5ee;
  --cream-deep: #efe9db;
  --sky: #eef2f8;
  --ochre: #c08a2e;
  --ink: #1a2030;
  --ink-soft: #565f74;
  --white: #ffffff;
  --line: #e3ddcd;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 32px -12px rgba(10, 22, 51, 0.22);
  --shadow-sm: 0 4px 14px -6px rgba(10, 22, 51, 0.18);
  --container: 1180px;
  --speed: 220ms;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

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

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 2px;
}

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--navy); color: var(--white); padding: 12px 20px;
  z-index: 10000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; top: 0; }

/* =========================================================
   Eyebrow / labels
   ========================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Public Sans", sans-serif;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--red); display: inline-block;
}

.split-rule { display: flex; width: 64px; height: 4px; border-radius: 4px; overflow: hidden; margin: 14px 0 18px; }
.split-rule span:first-child { flex: 1.4; background: var(--navy); }
.split-rule span:last-child { flex: 1; background: var(--red); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  border: 2px solid transparent; transition: transform var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease, color var(--speed) ease;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 24px; }
.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding img { height: 42px; width: auto; }
.site-branding .site-title { font-family: "Fraunces", serif; font-size: 20px; font-weight: 700; color: var(--navy-deep); }
.site-branding .site-tagline { display: block; font-size: 11px; color: var(--ink-soft); font-weight: 500; letter-spacing: 0.02em; }

.topbar {
  background: var(--navy-deep); color: rgba(255,255,255,0.86); font-size: 13px;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 24px; flex-wrap: wrap; }
.topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-links a { display: inline-flex; align-items: center; gap: 6px; transition: color var(--speed); }
.topbar-links a:hover { color: var(--white); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.12); display: inline-flex; align-items: center; justify-content: center; transition: background var(--speed); }
.topbar-social a:hover { background: var(--red); }
.topbar-social svg { width: 13px; height: 13px; fill: currentColor; }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav ul { display: flex; align-items: center; gap: 2px; }
.primary-nav > ul > li { position: relative; }
.primary-nav a {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; font-weight: 600; font-size: 15px; color: var(--navy-deep);
  border-radius: var(--radius-sm); transition: background var(--speed), color var(--speed);
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li.current-menu-item > a,
.primary-nav > ul > li.menu-item-has-children:hover > a { background: var(--navy); color: var(--white); }

.primary-nav .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -4px; transition: transform var(--speed); }
.menu-item-has-children:hover .caret { transform: rotate(225deg); margin-top: 4px; }

.sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--speed), transform var(--speed), visibility var(--speed);
  border: 1px solid var(--line);
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a { color: var(--ink); padding: 10px 14px; border-radius: 6px; }
.sub-menu a:hover { background: var(--sky); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 11px 20px; font-size: 14px; }

.menu-toggle {
  display: none; background: var(--navy); color: var(--white); border: none;
  width: 44px; height: 44px; border-radius: var(--radius-sm); align-items: center; justify-content: center;
}
.menu-toggle svg { width: 20px; height: 20px; fill: currentColor; }

/* =========================================================
   Hero slider
   ========================================================= */
.hero-slider { position: relative; height: 640px; max-height: 86vh; overflow: hidden; background: var(--navy-deep); }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 900ms ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide picture, .hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,22,51,0.86) 0%, rgba(10,22,51,0.6) 42%, rgba(10,22,51,0.25) 75%);
}
.hero-content {
  position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: center;
  max-width: 640px; padding: 0 24px; color: var(--white);
}
.hero-content .eyebrow { color: #ffb3b3; }
.hero-content .eyebrow::before { background: #ffb3b3; }
.hero-content h1 { color: var(--white); font-size: clamp(34px, 5vw, 56px); }
.hero-content p { margin-top: 16px; font-size: 18px; color: rgba(255,255,255,0.88); max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-dots { position: absolute; z-index: 4; bottom: 84px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dots button { width: 34px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.35); border: none; padding: 0; }
.hero-dots button.is-active { background: var(--red); }

.hero-nav { position: absolute; z-index: 4; bottom: 84px; right: 24px; display: flex; gap: 10px; }
.hero-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08); color: var(--white); display: flex; align-items: center; justify-content: center;
  transition: background var(--speed);
}
.hero-nav button:hover { background: rgba(255,255,255,0.22); }
.hero-nav svg { width: 16px; height: 16px; fill: currentColor; }

/* Bridge arc divider — signature motif */
.bridge-divider { display: block; width: 100%; height: 64px; margin-top: -2px; position: relative; z-index: 3; }
.bridge-divider--down { transform: scaleY(-1); }

/* =========================================================
   Section framing
   ========================================================= */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--navy { background: var(--navy-deep); color: rgba(255,255,255,0.88); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--sky { background: var(--sky); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { margin-top: 10px; color: var(--ink-soft); font-size: 17px; }
.section--navy .section-head p { color: rgba(255,255,255,0.72); }

/* =========================================================
   About section
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-badge {
  position: absolute; bottom: -26px; right: -26px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 24px;
  border: 1px solid var(--line);
}
.about-badge strong { display: block; font-family: "Fraunces", serif; font-size: 30px; color: var(--red); }
.about-badge span { font-size: 13px; color: var(--ink-soft); }
.about-copy p { color: var(--ink-soft); margin-top: 14px; font-size: 16px; }
.about-list { margin-top: 24px; display: grid; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--navy-deep); }
.about-list svg { flex-shrink: 0; width: 20px; height: 20px; fill: var(--red); margin-top: 2px; }

/* =========================================================
   Pathway — numbered steps (genuine sequence, so numerals earn their place)
   ========================================================= */
.pathway { position: relative; }
.pathway-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.pathway-track::before {
  content: ""; position: absolute; top: 26px; left: 6%; right: 6%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
}
.pathway-step { position: relative; text-align: left; }
.pathway-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: "Fraunces", serif; font-size: 20px;
  font-weight: 700; position: relative; z-index: 2; margin-bottom: 18px; box-shadow: var(--shadow-sm);
}
.pathway-step:nth-child(odd) .pathway-num { background: var(--red); }
.pathway-step h3 { font-size: 18px; margin-bottom: 8px; }
.pathway-step p { color: var(--ink-soft); font-size: 14.5px; }

/* =========================================================
   Services
   ========================================================= */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--sky); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--navy); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 16px; }
.service-card a { font-weight: 700; font-size: 14px; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.service-card a svg { width: 13px; height: 13px; fill: currentColor; transition: transform var(--speed); }
.service-card a:hover svg { transform: translateX(4px); }

/* =========================================================
   Stats strip
   ========================================================= */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 12px; }
.stat-item strong { display: block; font-family: "Fraunces", serif; font-size: clamp(30px, 4vw, 44px); color: var(--white); }
.stat-item span { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* =========================================================
   Gallery
   ========================================================= */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.gallery-filters button {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--white);
  font-weight: 600; font-size: 13.5px; color: var(--ink-soft); transition: all var(--speed);
}
.gallery-filters button.is-active, .gallery-filters button:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .g-tag {
  position: absolute; left: 10px; bottom: 10px; background: rgba(10,22,51,0.78); color: var(--white);
  font-size: 11.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px; letter-spacing: 0.03em;
}
.gallery-item.g-wide { grid-column: span 2; }
.gallery-item.g-tall { grid-row: span 2; }

.lightbox {
  position: fixed; inset: 0; background: rgba(10,14,26,0.94); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 18px; height: 18px; fill: currentColor; }
.lightbox-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.8); font-size: 14px; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); height: 100%;
}
.testimonial-card p { font-size: 15.5px; color: var(--ink); }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: "Fraunces", serif; font-weight: 700;
}
.testimonial-person strong { display: block; font-size: 14px; }
.testimonial-person span { font-size: 12.5px; color: var(--ink-soft); }
.stars { color: var(--ochre); letter-spacing: 2px; margin-bottom: 12px; }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 24px; padding: 56px; display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%;
  background: rgba(207,31,46,0.25);
}
.cta-banner h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); max-width: 480px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-top: 8px; position: relative; }
.cta-actions { display: flex; gap: 14px; position: relative; flex-wrap: wrap; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 18px; margin-bottom: 28px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); padding: 18px; border-radius: var(--radius-sm); }
.contact-info-item .ci-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--sky); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .ci-icon svg { width: 18px; height: 18px; fill: var(--navy); }
.contact-info-item strong { display: block; font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.contact-info-item span, .contact-info-item a { font-weight: 600; color: var(--navy-deep); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 260px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--navy-deep); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--cream);
  transition: border-color var(--speed), background var(--speed);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; }
.form-status { margin-top: 14px; font-size: 14px; font-weight: 600; display: none; padding: 12px 14px; border-radius: 8px; }
.form-status.is-success { display: block; background: #e7f6ec; color: #1c7c3c; }
.form-status.is-error { display: block; background: #fdeaea; color: var(--red-deep); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.68); }
.footer-top { padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background var(--speed); }
.footer-social a:hover { background: var(--red); }
.footer-social svg { width: 15px; height: 15px; fill: var(--white); }
.footer-col h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; font-family: "Public Sans", sans-serif; font-weight: 700; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; transition: color var(--speed); }
.footer-col a:hover { color: var(--white); }
.footer-newsletter input { width: 100%; padding: 12px 14px; border-radius: 8px 0 0 8px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: var(--white); }
.footer-newsletter-row { display: flex; }
.footer-newsletter-row button { border-radius: 0 8px 8px 0; padding: 0 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: var(--white); }

/* =========================================================
   Floating actions: WhatsApp + Live chat
   ========================================================= */
.floating-actions { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab {
  width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28); color: var(--white); position: relative; transition: transform var(--speed);
}
.fab:hover { transform: translateY(-3px) scale(1.03); }
.fab svg { width: 26px; height: 26px; fill: currentColor; }
.fab-whatsapp { background: #25D366; }
.fab-chat { background: var(--navy); }
.fab-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy-deep); color: var(--white); font-size: 12.5px; font-weight: 600;
  padding: 7px 12px; border-radius: 6px; white-space: nowrap; opacity: 0; visibility: hidden;
  transition: opacity var(--speed), visibility var(--speed);
}
.fab:hover .fab-tooltip { opacity: 1; visibility: visible; }
.fab-pulse::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #25D366; opacity: 0.6;
  animation: fabPulse 2.4s ease-out infinite;
}
@keyframes fabPulse { 0% { transform: scale(0.9); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }

/* =========================================================
   Breadcrumb / page header (inner pages)
   ========================================================= */
.page-header {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--white);
  padding: 70px 0 54px; position: relative; overflow: hidden;
}
.page-header h1 { color: var(--white); font-size: clamp(30px, 4vw, 46px); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: rgba(255,255,255,0.7); margin-top: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }

/* generic content typography for WP editor content */
.entry-content h2 { margin-top: 40px; margin-bottom: 14px; font-size: 26px; }
.entry-content h3 { margin-top: 28px; margin-bottom: 10px; font-size: 20px; }
.entry-content p { margin-bottom: 16px; color: var(--ink-soft); }
.entry-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; color: var(--ink-soft); }
.entry-content ul li { margin-bottom: 6px; }
.entry-content a { color: var(--red); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); margin: 20px 0; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-track { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .pathway-track::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .topbar-links span.only-desktop { display: none; }
  .menu-toggle { display: flex; }
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); background: var(--white); height: 100vh;
    flex-direction: column; align-items: stretch; padding: 90px 22px 22px; transform: translateX(100%);
    transition: transform var(--speed); box-shadow: -10px 0 30px rgba(0,0,0,0.15); overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .primary-nav a { padding: 14px 12px; }
  .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; margin-left: 14px; }
  .menu-item-has-children.is-expanded .sub-menu { display: block; }
  .header-cta .btn-ghost { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { position: static; margin-top: -40px; margin-left: 20px; display: inline-block; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .pathway-track { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.g-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-slider { height: 560px; }
  .hero-nav { display: none; }
  .fab-tooltip { display: none; }
}
