/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: #1A1A1A;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #1A1A1A;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--accent);
}
.btn-ghost-light {
  background: transparent;
  color: var(--text);
  border-color: rgba(0,0,0,0.15);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.5);
  border-color: var(--text);
}
.btn-block { display: flex; width: 100%; }

/* Site header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.5rem;
  flex: 0 0 auto;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  font-family: var(--font-heading, 'Playfair Display'), Georgia, serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(176, 141, 62, 0.28);
}
.brand-lockup { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text {
  font-family: var(--font-heading, 'Playfair Display'), Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.site-footer .brand-sub { color: rgba(255,255,255,0.6); }

.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav > ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.primary-nav a:not(.btn) {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.primary-nav a:not(.btn):hover { color: var(--accent-deep); text-decoration: none; }

.primary-nav .has-children { position: relative; }
.primary-nav .submenu {
  position: absolute;
  top: 100%;
  left: -0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0;
  min-width: 240px;
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  margin-top: 0.5rem;
}
.primary-nav .has-children:hover .submenu,
.primary-nav .has-children:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav .submenu li { padding: 0; }
.primary-nav .submenu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.primary-nav .submenu a:hover { background: var(--surface); }

.nav-cta { padding: 0.625rem 1.125rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.2s;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.5rem;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .primary-nav > ul > li {
    border-bottom: 1px solid var(--border);
  }
  .primary-nav > ul > li > a {
    display: block;
    padding: 0.875rem 0;
  }
  .primary-nav .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 0.75rem 1rem;
    margin-top: 0;
    min-width: 0;
  }
  .primary-nav .submenu a { padding: 0.4rem 0; }
  .nav-cta { margin-top: 0.75rem; }
}

/* Hero */
.hero {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 1rem; }
.hero-cta {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-content { margin-top: 1.25rem; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-heading, 'Playfair Display'), Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.3;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* Cards */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card-link {
  display: block;
  color: var(--text);
  text-decoration: none;
}
.card-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); margin-bottom: 0.75rem; }

.service-card .service-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.link-arrow {
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-quote {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.55;
  flex: 1;
}
.testimonial-name { font-weight: 600; }
.testimonial-role { color: var(--text-muted); font-size: 0.875rem; }

/* CTA banner */
.cta-banner {
  background: var(--accent);
  color: #1A1A1A;
  padding: 4rem 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta-banner h2 { margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(26,26,26,0.8); }
.cta-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cta-or {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.65);
  font-style: italic;
}
.cta-banner .btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.cta-banner .btn-primary:hover {
  background: #000;
  color: var(--bg);
}
@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}

/* Footer */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.rcic-badge {
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  margin: 0 0 0.85rem;
  max-width: 220px;
  height: auto;
}
.site-footer h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.site-footer a:hover { color: var(--accent); text-decoration: none; }
.site-footer .text-muted { color: rgba(255,255,255,0.5); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.social-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.social-row a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 9px;
  color: rgba(255,255,255,0.8);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.social-row a img { width: 18px; height: 18px; display: block; }
.site-footer .social-row a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.powered-by a {
  color: var(--accent);
  font-weight: 600;
}
.powered-by a:hover { color: var(--accent); text-decoration: underline; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-block { margin-top: 2rem; }
.contact-block h3 {
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.5rem;
}
.hours-list { list-style: none; padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
}
.contact-booking {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: sticky;
  top: 6rem;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-booking { position: static; }
}

/* Blog list */
.post-list { list-style: none; padding: 0; }
.post-list-item {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.post-list-item:first-child { padding-top: 0; }
.post-list-item a {
  color: var(--text);
  text-decoration: none;
  display: block;
}
.post-list-item a:hover h2 { color: var(--accent-deep); }
.post-list-item h2 {
  font-size: 1.625rem;
  margin: 0.5rem 0 0.75rem;
  transition: color 0.15s;
}
.post-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.post-excerpt {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* Calculator */
.calculator {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}
.calc-form { display: grid; gap: 1.25rem; }
.calc-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
  display: grid;
  gap: 1.1rem;
}
/* Step title is shown by the progress meta, so the legend is redundant */
.calc-stepper .calc-fieldset legend { display: none; }

/* Stepper */
.calc-step:not(.is-active) { display: none; }
.calc-step.is-active { display: grid; }
.stepper-head { margin-bottom: 0.5rem; }
.stepper-progress {
  height: 6px;
  background: var(--accent-soft);
  border-radius: 99px;
  overflow: hidden;
}
.stepper-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.3s ease;
}
.stepper-meta {
  margin-top: 0.7rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.stepper-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}
.stepper-nav [data-next], .stepper-nav [data-submit] { margin-left: auto; }
.stepper-nav .btn:disabled { opacity: 0.4; cursor: not-allowed; }
.calc-form label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.calc-form input,
.calc-form select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
}
.calc-form input:focus,
.calc-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .calc-row { grid-template-columns: 1fr; } }
.calc-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 10px;
}
.calc-result h3 { margin-bottom: 0.5rem; color: var(--accent-deep); }
.calc-result .big-number {
  font-family: var(--font-heading, 'Playfair Display'), Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-deep);
  line-height: 1;
  margin: 0.5rem 0;
}
.calc-result.ok { border-color: #2D8659; }
.calc-result.ok h3 { color: #2D8659; }
.calc-result.warn { border-color: #C95A3E; }
.calc-result.warn h3 { color: #C95A3E; }
.calc-notice {
  background: #FBEDE8;
  border: 1px solid #E0A491;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #8A3A24;
}

/* Misc */
.inline-cta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* ============ HERO DECORATIONS ============ */
.hero { position: relative; overflow: hidden; }
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-decor .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
}
.blob-1 {
  width: 420px; height: 420px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.28;
}
.blob-2 {
  width: 360px; height: 360px;
  bottom: -140px; left: -100px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.6;
}
.dot-grid {
  position: absolute;
  top: 12%; left: 6%;
  width: 180px; height: 180px;
  background-image: radial-gradient(var(--accent) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  opacity: 0.18;
}
.decor-leaf {
  position: absolute;
  width: 90px; height: 90px;
  bottom: 14%; right: 8%;
  color: var(--accent);
  opacity: 0.16;
}
.decor-plane {
  position: absolute;
  width: 64px; height: 64px;
  top: 18%; left: 44%;
  color: var(--accent-deep);
  opacity: 0.25;
}
.hero .container { position: relative; z-index: 1; }

/* ============ HERO VISUAL ============ */
.hero-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roadmap-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}
.roadmap { width: 100%; height: auto; overflow: visible; filter: drop-shadow(0 12px 30px rgba(176,141,62,0.14)); }
.roadmap .route {
  animation: route-flow 1.1s linear infinite;
}
.roadmap .node-num {
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-weight: 700;
  font-size: 18px;
  fill: var(--accent-deep);
}
.roadmap .node-label {
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-weight: 600;
  font-size: 17px;
  fill: var(--text);
}
.roadmap .node-label-strong { fill: var(--accent-deep); }
.roadmap .node-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: node-ping 2.6s ease-out infinite;
}
.roadmap .node-2 .node-dot { animation-delay: 0.6s; }
.roadmap .node-3 .node-dot { animation-delay: 1.2s; }
.roadmap .node { opacity: 0; animation: node-in 0.55s ease forwards; }
.roadmap .node-1 { animation-delay: 0.25s; }
.roadmap .node-2 { animation-delay: 0.55s; }
.roadmap .node-3 { animation-delay: 0.85s; }
.roadmap .node-4 { animation-delay: 1.15s; }
.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  animation: float 5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 0.85rem; color: var(--text); }
.float-card small { display: block; font-size: 0.72rem; color: var(--text-muted); }
.float-card .fc-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 1rem;
}
.fc-1 { top: -2%; right: -4%; left: auto; }
.fc-2 { bottom: -2%; left: -4%; right: auto; animation-delay: 1.4s; }

@media (max-width: 900px) {
  .hero-visual { min-height: 300px; margin-top: 1.5rem; }
  .roadmap-wrap { max-width: 380px; margin: 0 auto; }
  .fc-1 { right: 0; }
  .fc-2 { left: 0; }
}

/* ============ VALUE PROPS BAND ============ */
.value-band {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.value-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.value-prop { display: flex; gap: 0.85rem; align-items: flex-start; }
.value-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.value-icon svg { width: 22px; height: 22px; }
.value-text strong { display: block; font-size: 0.98rem; margin-bottom: 0.15rem; }
.value-text span { display: block; font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; }
@media (max-width: 900px) {
  .value-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 560px) {
  .value-row { grid-template-columns: 1fr; }
}

/* ============ SERVICE ICON (SVG) ============ */
.service-card .service-icon {
  width: 52px; height: 52px;
}
.service-card .service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--accent-deep);
}

/* ============ TESTIMONIAL QUOTE MARK ============ */
.testimonial { position: relative; overflow: hidden; }
.testimonial .quote-mark {
  position: absolute;
  top: -0.6rem; right: 0.75rem;
  font-family: var(--font-heading, 'Playfair Display'), Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-soft);
  z-index: 0;
}
.testimonial-quote, .testimonial footer { position: relative; z-index: 1; }

/* ============ WORLD MAP SECTION ============ */
.world-section {
  position: relative;
  padding: 5.5rem 0;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--surface);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.world-map-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.4;
  pointer-events: none;
  overflow: hidden;
}
.world-map-inner {
  position: relative;
  width: min(1000px, 94%);
  aspect-ratio: 1011 / 666;
  will-change: transform;
}
.world-map-inner img { width: 100%; height: 100%; display: block; }
.world-inner { position: relative; z-index: 2; }
.world-copy {
  max-width: 520px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.world-copy h2 { margin-bottom: 0.75rem; }
.world-copy .lead { margin-bottom: 1.75rem; }

/* Pulsing pins overlaid on the map (positioned within .world-map-inner) */
.map-pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent-deep);
  box-shadow: 0 0 0 rgba(176,141,62,0.5);
  animation: map-pulse 2.4s ease-out infinite;
}
.mp-1 { top: 38%; left: 24%; }                          /* N. America */
.mp-2 { top: 34%; left: 49%; animation-delay: 0.5s; }   /* Europe */
.mp-3 { top: 52%; left: 70%; animation-delay: 1s; }     /* S. Asia */
.mp-4 { top: 70%; left: 82%; animation-delay: 1.5s; }   /* Oceania */
.mp-5 { top: 60%; left: 52%; animation-delay: 2s; }     /* Africa */
@media (max-width: 760px) {
  .world-section { min-height: 480px; }
  .world-copy { padding: 1.75rem; background: rgba(255,255,255,0.92); }
  .world-map-bg { opacity: 0.28; }
}

/* ============ SERVICES SECTION BACKGROUND ============ */
.section-services {
  position: relative;
  background:
    radial-gradient(circle at 12% 0%, var(--accent-soft) 0%, transparent 38%),
    linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  overflow: hidden;
}
.services-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.check-pattern {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  color: var(--accent);
  opacity: 0.08;
}
.blob-3 {
  position: absolute;
  width: 380px; height: 380px;
  bottom: -160px; right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.18;
}
.section-services .container { position: relative; z-index: 1; }

/* Centered services grid (last row stays centered) */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.services-grid > .service-card {
  flex: 0 1 360px;
  max-width: 380px;
}
@media (max-width: 560px) {
  .services-grid > .service-card { flex-basis: 100%; max-width: 100%; }
}

/* ============ TOP REASONS TO TRUST US ============ */
.trust-section { background: var(--surface); }
.trust-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.trust-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.trust-card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.trust-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* ============ PROGRAMS MARQUEE ============ */
.marquee-section {
  background: var(--text);
  padding: 1.1rem 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-item {
  font-family: var(--font-heading, 'Playfair Display'), Georgia, serif;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.marquee-dot { color: var(--accent); font-size: 1rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============ PROCESS / HOW IT WORKS — vertical timeline ============ */
.timeline { max-width: 960px; margin: 3.5rem auto 0; }
.tl-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.75rem;
  align-items: center;
}
.tl-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 26px 55px rgba(10, 29, 63, 0.18);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
}
.tl-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tl-row:hover .tl-media img { transform: scale(1.05); }
.tl-row:nth-of-type(even) .tl-media { order: 2; }
.tl-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--accent);
  font-family: var(--font-heading, 'Playfair Display'), Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.tl-body h3 { font-size: 1.45rem; margin-bottom: 0.6rem; color: var(--navy); }
.tl-body p { color: var(--text-muted); font-size: 1rem; line-height: 1.65; }
/* Animated down-arrow connector */
.tl-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 1.4rem 0;
}
.tl-arrow span {
  width: 16px; height: 16px;
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(45deg);
  animation: tlBounce 1.7s ease-in-out infinite;
}
.tl-arrow span:nth-child(2) { animation-delay: 0.2s; opacity: 0.45; }
@keyframes tlBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(45deg) translate(4px, 4px); }
}
@media (max-width: 760px) {
  .tl-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .tl-row:nth-of-type(even) .tl-media { order: 0; }
  .tl-body h3 { font-size: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .tl-arrow span { animation: none; }
  .tl-media img { transition: none; }
  .tl-row:hover .tl-media img { transform: none; }
}

/* ============ FOUNDER VIDEO ============ */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.founder-copy h2 { margin-bottom: 0.75rem; }
.founder-name { margin: 1.5rem 0; line-height: 1.4; }
.founder-video { position: relative; }
.video-facade, .video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, var(--accent-soft), transparent 60%),
    linear-gradient(135deg, var(--surface-2) 0%, var(--accent-soft) 100%);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.video-facade { cursor: pointer; }
.founder-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 16px;
  display: block;
}
.video-play {
  width: 76px; height: 76px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.video-facade:hover .video-play { transform: scale(1.08); }
.video-play span {
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--accent-deep);
  margin-left: 4px;
}
.video-soon {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============ FAQ ACCORDION ============ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex: 0 0 auto;
  width: 12px; height: 12px;
  border-right: 2px solid var(--accent-deep);
  border-bottom: 2px solid var(--accent-deep);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}
.faq-item[open] .faq-chevron { transform: rotate(-135deg); margin-top: 4px; }
.faq-item[open] summary { color: var(--accent-deep); }
.faq-answer { padding: 0 1.35rem 1.25rem; }
.faq-answer p { color: var(--text-muted); margin: 0; }

/* ============ KEYFRAMES ============ */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes map-pulse {
  0% { box-shadow: 0 0 0 0 rgba(176,141,62,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(176,141,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(176,141,62,0); }
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes route-flow {
  to { stroke-dashoffset: -32; }
}
@keyframes node-ping {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.6); opacity: 0; }
}
@keyframes node-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .float-card, .map-pin, .roadmap-wrap, .marquee-track,
  .roadmap .route, .roadmap .node, .roadmap .node-dot { animation: none !important; }
  .roadmap .node { opacity: 1 !important; }
  .whatsapp-fab { animation: none !important; }
}

/* ============ LANGUAGE SWITCHER ============ */
.lang-switcher { position: relative; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  font-family: inherit;
}
.lang-toggle:hover { border-color: var(--accent); }
.lang-globe { width: 16px; height: 16px; flex: 0 0 auto; }
.lang-caret { width: 12px; height: 12px; flex: 0 0 auto; }
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 0.4rem;
  min-width: 220px;
  z-index: 60;
  list-style: none;
  margin: 0;
  max-height: 340px;
  overflow-y: auto;
}
.lang-menu li { padding: 0; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0.55rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text);
  text-align: left;
  font-family: inherit;
}
.lang-menu button:hover { background: var(--surface); }
.lang-flag { font-size: 1.15rem; line-height: 1; }
@media (max-width: 900px) {
  .lang-menu { right: auto; left: 0; }
}

/* Hide Google Translate's default banner/widget (we drive it with our own UI) */
.goog-te-banner-frame,
iframe.skiptranslate,
.goog-te-gadget,
#google_translate_element { display: none !important; visibility: hidden !important; }
html, body { top: 0 !important; position: static !important; }
.goog-tooltip, .goog-tooltip:hover, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 56px;
  padding: 0 13px;
  border-radius: 28px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  overflow: hidden;
  max-width: 56px;
  transition: max-width 0.35s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.whatsapp-fab img { flex: 0 0 auto; }
.whatsapp-fab-label {
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.95rem;
  padding-left: 0.6rem;
  padding-right: 0.4rem;
}
.whatsapp-fab:hover {
  max-width: 240px;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}
@media (max-width: 560px) {
  .whatsapp-fab { right: 14px; bottom: 14px; }
}

/* ============ WANI additions ============ */
.brand-logo { height: 58px; width: auto; display: block; }
@media (max-width: 600px) { .brand-logo { height: 46px; } }
.footer-logo { height: 46px; width: auto; display: block; margin-bottom: 1rem; }
.footer-tagline { max-width: 270px; }

/* WhatsApp CTA block (contact page) */
.wa-cta {
  display: flex; align-items: center; gap: 0.85rem;
  background: #25D366; color: #fff; padding: 0.9rem 1.1rem;
  border-radius: 12px; text-decoration: none; margin: 0 0 1.5rem;
  box-shadow: var(--shadow);
}
.wa-cta:hover { background: #1ebe5d; text-decoration: none; color: #fff; }
.wa-cta span { display: flex; flex-direction: column; line-height: 1.25; }
.wa-cta small { opacity: 0.92; font-size: 0.8rem; }

/* Enquiry form */
.enquiry-form { background: transparent; border: 0; padding: 0; }
.enquiry-form h3 { margin: 0 0 0.35rem; }
.enquiry-form .text-muted { margin: 0 0 1.25rem; }
.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ef-field { display: block; margin-bottom: 1rem; }
.ef-field > span { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.35rem; }
.ef-control { position: relative; display: block; }
.ef-ic { position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--text-muted); pointer-events: none; }
.ef-control:has(textarea) .ef-ic { top: 0.95rem; transform: none; }
.ef-field input, .ef-field select, .ef-field textarea {
  width: 100%; padding: 0.7rem 0.85rem 0.7rem 2.5rem;
  border: 1px solid var(--border); border-radius: 10px;
  background: #fff; color: var(--text); font: inherit; font-size: 0.95rem;
}
.ef-field textarea { resize: vertical; }
.ef-field input:focus, .ef-field select:focus, .ef-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.enquiry-form .btn-block { width: 100%; margin-top: 0.25rem; }
.ef-feedback { display: block; margin: 0.9rem 0 0; padding: 0.7rem 0.85rem; border-radius: 10px; font-size: 0.9rem; }
.ef-feedback.ef-ok { background: #e8f5ec; color: #1c6b3a; border: 1px solid #b8e0c6; }
.ef-feedback.ef-err { background: #fdeceb; color: #a3271f; border: 1px solid #f2c4bf; }
@media (max-width: 600px) { .enquiry-form .form-row { grid-template-columns: 1fr; } }

/* Audience / who-we-help grid */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.audience-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; box-shadow: var(--shadow); }
.audience-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.audience-card p { color: var(--text-muted); font-size: 0.95rem; }
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; display: block; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ===== Wani — white header, navy pill CTA ===== */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}
.primary-nav a:not(.btn) { color: var(--navy); font-weight: 600; }
.primary-nav a:not(.btn):hover { color: var(--accent-deep); }
.nav-cta { background: var(--navy); color: #fff; border-color: var(--navy); border-radius: 8px; }
.nav-cta:hover { background: #0c2550; color: #fff; border-color: #0c2550; }
.nav-toggle span { background: var(--navy); }
@media (max-width: 900px) {
  .primary-nav { background: #fff; border-top: 1px solid var(--border); }
}

/* ===== Wani — distinct footer ===== */
.site-footer { border-top: 3px solid var(--accent); }
.site-footer h4 { color: var(--accent); }
.footer-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: #fff; font-weight: 600; font-size: 0.85rem;
  padding: 0.6rem 0.95rem; border-radius: 999px; text-decoration: none; margin-top: 1.1rem;
}
.footer-wa:hover { background: #1ebe5d; color: #fff; text-decoration: none; }
.social-row { gap: 0.6rem; margin-top: 1.25rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.social-row a:hover { background: #fff; transform: translateY(-2px); }

/* ===== Wani — video/image-led hero ===== */
.hero-img { position: relative; color: #fff; overflow: hidden; background: var(--navy) url('/assets/images/hero-skyline.jpg') center 30% / cover no-repeat; }
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  pointer-events: none;
  filter: saturate(1.06);
}
.hero-img-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,29,63,0.86) 0%, rgba(10,29,63,0.58) 42%, rgba(10,29,63,0.22) 100%),
    linear-gradient(0deg, rgba(10,29,63,0.34) 0%, rgba(10,29,63,0) 38%);
}
.hero-img .container { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-img-content { max-width: 760px; padding: 8rem 0 7rem; }
.hero-img .eyebrow { color: var(--accent); }
.hero-img h1 { color: #fff; font-size: clamp(2.6rem, 4.5vw + 1rem, 4.6rem); line-height: 1.08; margin-bottom: 1.1rem; }
.hero-img .lead { color: rgba(255,255,255,0.94); font-size: 1.22rem; max-width: 560px; }
.hero-badges { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; margin: 1.75rem 0 0; }
.hero-badges li { position: relative; padding-left: 1.75rem; color: rgba(255,255,255,0.95); font-size: 1rem; font-weight: 500; }
.hero-badges li::before {
  content: "\2713"; position: absolute; left: 0; top: 1px;
  width: 1.2rem; height: 1.2rem; color: var(--accent); font-weight: 700;
}
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-gold { background: var(--accent); color: var(--navy); border-color: var(--accent); font-weight: 700; }
.btn-gold:hover { background: var(--accent-deep); color: var(--navy); border-color: var(--accent-deep); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); display: inline-flex; align-items: center; gap: 0.55rem; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }
.btn-wa { background: #25D366; color: #fff; border-color: #25D366; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-wa:hover { background: #1ebe5d; color: #fff; border-color: #1ebe5d; }
.section-cta { text-align: center; margin-top: 2.5rem; }
@media (max-width: 700px) { .hero-img-content { padding: 5rem 0 4rem; } .hero-img .lead { font-size: 1.05rem; } }

/* ===== Wani — stats bar (floats over hero) ===== */
.section-highlights { padding-top: 0; margin-top: -4rem; position: relative; z-index: 3; }
.stat-bar {
  background: var(--navy);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  box-shadow: 0 22px 55px rgba(10,29,63,0.30);
}
.stat-bar .stat { background: transparent; border: 0; border-radius: 0; text-align: center; color: #fff; padding: 0.4rem 0.5rem; }
.stat-bar .stat + .stat { border-left: 1px solid rgba(255,255,255,0.14); }
.stat-bar .stat-num { display: block; font-family: var(--font-heading), Georgia, serif; font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1.1; }
.stat-bar .stat-label { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-top: 0.35rem; }
@media (max-width: 700px) {
  .section-highlights { margin-top: -2.5rem; }
  .stat-bar { grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; }
  .stat-bar .stat:nth-child(3) { border-left: 0; }
}

/* ===== Wani — service cards (navy fill + 3D tilt on hover) ===== */
.section-services .services-grid { perspective: 1400px; }
.section-services .service-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 1.9rem 1.75rem;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
  scroll-margin-top: 90px;
}
.section-services .service-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, var(--navy) 0%, #143462 100%);
  opacity: 0; transition: opacity 0.3s;
}
.section-services .service-card > * { position: relative; z-index: 1; }
.section-services .service-card:hover { border-color: transparent; box-shadow: 0 32px 60px rgba(10,29,63,0.32); }
.section-services .service-card:hover::before { opacity: 1; }
.section-services .service-card:hover h3,
.section-services .service-card:hover p { color: #fff; }
.section-services .service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--surface-2); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.section-services .service-icon svg { width: 26px; height: 26px; stroke: currentColor; }
.section-services .service-card:hover .service-icon {
  background: rgba(255,255,255,0.16); color: #fff; transform: translateZ(36px) scale(1.06);
}
.section-services { background: #fff; }
.section-services .service-card h3 { color: var(--navy); transition: color 0.3s; }
.section-services .service-card p { transition: color 0.3s; }

/* ===== Wani — full service catalog (Services page) ===== */
.catalog-group { margin-top: 3rem; }
.catalog-group:first-of-type { margin-top: 2.5rem; }
.catalog-group-title {
  font-size: 1.55rem; color: var(--navy);
  margin-bottom: 1.5rem; padding-bottom: 0.65rem;
  display: inline-block; position: relative;
}
.catalog-group-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px; background: var(--accent); border-radius: 2px;
}
.catalog-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.catalog-col {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 1.6rem 1.6rem 1.7rem;
  box-shadow: var(--shadow);
}
.catalog-col h4 {
  color: var(--navy); font-size: 1.08rem; margin-bottom: 1rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.catalog-col ul, .catalog-flat { list-style: none; padding: 0; margin: 0; }
.catalog-col li, .catalog-flat li {
  position: relative; padding-left: 1.6rem; margin-bottom: 0.6rem;
  color: var(--text-muted); font-size: 0.94rem; line-height: 1.45;
}
.catalog-col li:last-child { margin-bottom: 0; }
.catalog-col li::before, .catalog-flat li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.catalog-flat {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem 2rem;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 1.8rem; box-shadow: var(--shadow);
}
@media (max-width: 820px) {
  .catalog-columns { grid-template-columns: 1fr; }
  .catalog-flat { grid-template-columns: 1fr; }
}

/* ===== Wani — easy-batch additions ===== */

/* Nav dropdown caret */
.primary-nav .has-children > a { display: inline-flex; align-items: center; gap: 0.32rem; }
.nav-caret { transition: transform 0.25s ease; margin-top: 1px; }
.primary-nav .has-children:hover .nav-caret,
.primary-nav .has-children:focus-within .nav-caret { transform: rotate(180deg); }

/* Footer contact: address matches email line */
.footer-col ul.plain li,
.footer-col ul.plain li a { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.footer-col ul.plain li { margin-bottom: 0.5rem; }

/* Footer RCIC badge */
.footer-rcic {
  display: block; margin-top: 1.25rem;
  background: #fff; border-radius: 10px;
  padding: 10px 14px; width: auto; height: auto; max-width: 200px;
}

/* Scroll-to-top button (stacked above the WhatsApp FAB) */
.scroll-top {
  position: fixed; right: 20px; bottom: 88px; z-index: 79;
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; border: 0; cursor: pointer;
  box-shadow: 0 8px 22px rgba(10,29,63,0.32);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.scroll-top.is-visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: #0c2550; transform: translateY(-2px); }
@media (max-width: 560px) { .scroll-top { right: 14px; bottom: 80px; width: 42px; height: 42px; } }

/* Timeline: connecting line between the chevron arrows */
.tl-arrow { position: relative; }
.tl-arrow::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(201,168,106,0) 0%, var(--accent) 22%, var(--accent) 78%, rgba(201,168,106,0) 100%);
}
.tl-arrow span { position: relative; z-index: 1; }
@media (max-width: 760px) { .tl-arrow::before { display: none; } }

/* ===== Wani — blue primary button (was near-black) ===== */
.btn-primary { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-primary:hover { background: #0c2550; border-color: #0c2550; color: #fff; }

/* ===== Wani — 'Who we help' interactive tabs ===== */
.aud-tabs { display: grid; grid-template-columns: 300px 1fr; gap: 2.5rem; margin-top: 3rem; align-items: start; }
.aud-tablist { display: flex; flex-direction: column; gap: 0.4rem; }
.aud-tab {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; text-align: left; cursor: pointer;
  background: transparent; border: 0; border-left: 3px solid transparent;
  padding: 0.95rem 1.1rem; border-radius: 10px;
  font-family: var(--font-body), sans-serif; font-size: 1.02rem; font-weight: 500;
  color: var(--text-muted); transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.aud-tab svg { flex: 0 0 auto; opacity: 0; transform: translateX(-4px); transition: opacity 0.2s, transform 0.2s; color: var(--accent-deep); }
.aud-tab:hover { background: var(--bg); color: var(--navy); }
.aud-tab.is-active { background: #fff; color: var(--navy); font-weight: 600; border-left-color: var(--accent); box-shadow: var(--shadow); }
.aud-tab.is-active svg { opacity: 1; transform: translateX(0); }
.aud-panels { position: relative; }
.aud-panel { display: none; }
.aud-panel.is-active { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2rem; align-items: center; animation: audFade 0.35s ease; }
@keyframes audFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.aud-photo { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(10,29,63,0.18); border: 1px solid var(--border); }
.aud-photo img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.aud-copy h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 0.85rem; }
.aud-copy p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.4rem; }
.aud-link { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; color: var(--navy); }
.aud-link svg { transition: transform 0.2s; }
.aud-link:hover { color: var(--accent-deep); text-decoration: none; }
.aud-link:hover svg { transform: translateX(4px); }
@media (max-width: 860px) {
  .aud-tabs { grid-template-columns: 1fr; gap: 1.5rem; }
  .aud-tablist { flex-direction: row; overflow-x: auto; gap: 0.5rem; padding-bottom: 0.4rem; -webkit-overflow-scrolling: touch; }
  .aud-tab { flex: 0 0 auto; border-left: 0; border-bottom: 3px solid transparent; border-radius: 10px 10px 0 0; }
  .aud-tab.is-active { border-left: 0; border-bottom-color: var(--accent); }
  .aud-tab svg { display: none; }
  .aud-panel.is-active { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) { .aud-panel.is-active { animation: none; } }

/* ===== Wani — 'Why Wani' split editorial ===== */
.trust-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; }
.trust-aside {
  background: var(--navy); color: #fff;
  border-radius: 20px; padding: 2.75rem 2.5rem;
  position: sticky; top: 90px;
  box-shadow: 0 26px 55px rgba(10,29,63,0.25);
}
.trust-aside .eyebrow { color: var(--accent); }
.trust-aside h2 { color: #fff; margin-bottom: 1rem; }
.trust-aside p { color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 1.75rem; }
.trust-list { list-style: none; margin: 0; padding: 0; }
.trust-item { display: flex; gap: 1.1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.trust-item:first-child { padding-top: 0; }
.trust-item:last-child { border-bottom: 0; }
.trust-check {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.trust-check svg { width: 22px; height: 22px; }
.trust-item-body h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.35rem; }
.trust-item-body p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.6; }
@media (max-width: 860px) {
  .trust-split { grid-template-columns: 1fr; gap: 2rem; }
  .trust-aside { position: static; padding: 2rem 1.75rem; }
}

/* ===== Wani — image service cards (home + services page) ===== */
.service-card { padding: 0; overflow: hidden; border-radius: 16px; background: #fff; border: 1px solid var(--border); }
.service-card .sc-media { position: relative; overflow: hidden; }
.service-card .sc-media img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.55s ease; }
.service-card:hover .sc-media img { transform: scale(1.06); }
.service-card .sc-icon {
  position: absolute; left: 0.9rem; bottom: 0.9rem;
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy); color: #F2D58E;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(10, 29, 63, 0.45);
  border: 1px solid rgba(242, 213, 142, 0.30);
  z-index: 2;
}
.service-card .sc-icon svg { width: 28px; height: 28px; stroke: currentColor; }
.service-card .service-body { padding: 1.6rem 1.6rem 1.8rem; }
.service-card .service-body h3 { color: var(--navy); font-size: 1.28rem; margin-bottom: 0.5rem; }
.service-card .service-body p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.6; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 28px 55px rgba(10,29,63,0.18); border-color: transparent; }

/* Neutralize the earlier navy-fill hover treatment now that cards use photos */
.section-services .service-card { padding: 0; }
.section-services .service-card::before { display: none; }
.section-services .service-card:hover h3 { color: var(--navy); }
.section-services .service-card:hover p { color: var(--text-muted); }

/* ===== Wani — RCIC badge in hero (bottom-right) ===== */
.hero-rcic {
  position: absolute; right: 26px; bottom: 26px; z-index: 2;
  background: #fff; border-radius: 12px; padding: 9px 13px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}
.hero-rcic img { display: block; width: auto; height: 48px; }
@media (max-width: 760px) {
  .hero-rcic { right: 14px; bottom: 14px; padding: 6px 9px; }
  .hero-rcic img { height: 34px; }
}

/* ===== Wani — split CTA banner (navy text + photo) ===== */
.cta-banner.cta-split { background: var(--surface); color: var(--text); padding: 4.5rem 0; }
.cta-split-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  background: var(--navy); border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(10,29,63,0.25);
}
.cta-split-text { padding: 3.25rem 3rem; align-self: center; }
.cta-split-text h2 { color: #fff; margin-bottom: 0.8rem; }
.cta-split-text p { color: rgba(255,255,255,0.82); margin-bottom: 1.85rem; max-width: 40ch; }
.cta-split .cta-actions { justify-content: flex-start; }
.cta-split-media { position: relative; min-height: 320px; }
.cta-split-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,29,63,0.45) 0%, rgba(10,29,63,0) 35%); }
.cta-split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) {
  .cta-banner.cta-split { padding: 3rem 0; }
  .cta-split-grid { grid-template-columns: 1fr; }
  .cta-split-media { min-height: 220px; order: -1; }
  .cta-split-media::after { background: linear-gradient(0deg, rgba(10,29,63,0.5) 0%, rgba(10,29,63,0) 40%); }
  .cta-split-text { padding: 2.25rem 1.75rem; }
}

/* ============================================================
   HOME — TESTIMONIALS
   ============================================================ */
.section-testimonials { padding: 5rem 0; background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 240ms cubic-bezier(0.16,1,0.3,1), box-shadow 240ms;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(10,29,63,0.08); }

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.25rem;
}
.testimonial-head-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.testimonial-avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading, 'Cinzel'), Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(201, 168, 106, 0.30), inset 0 0 0 2px rgba(255, 255, 255, 0.20);
  overflow: hidden;
}

.testimonial-stars { display: inline-flex; gap: 0.1rem; color: var(--accent); margin-top: 0.1rem; }
.testimonial-stars svg { width: 14px; height: 14px; }

.testimonial-card blockquote {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  font-style: normal;
}

.testimonial-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; line-height: 1.2; }
.testimonial-location { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-who { padding: 4rem 0; background: var(--bg); }
.about-who-body { font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); }

.about-founder { padding: 4.5rem 0; background: var(--surface); }
.about-founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 900px) { .about-founder-grid { grid-template-columns: 1fr; gap: 2rem; } }

.about-founder-photo {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px;
}
.about-founder-photo > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.about-founder-photo-placeholder {
  width: 100%;
  height: 360px;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  display: grid; place-items: center;
  color: var(--accent-deep);
  font-family: var(--font-heading,'Cinzel'), Georgia, serif;
  font-weight: 600;
  font-size: 4rem;
  letter-spacing: 0.04em;
}
.about-founder-meta { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.about-founder-name { font-weight: 700; color: var(--navy); margin: 0 0 0.15rem; }
.about-founder-license { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 0.85rem; letter-spacing: 0.02em; }
.about-founder-badge { display: block; width: 130px; height: auto; margin: 0.5rem auto 0; }

.about-founder-body h2 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(1.7rem, 1.8vw + 1rem, 2.3rem);
  line-height: 1.2;
}
.about-founder-body p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.about-founder-body p:last-of-type { margin-bottom: 0; }

.about-founder-quote {
  margin: 2rem 0 0;
  padding: 1.5rem 1.75rem;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: relative;
}
.about-founder-quote .quote-mark {
  width: 24px; height: 18px; color: var(--accent); opacity: 0.7; margin-bottom: 0.5rem;
}
.about-founder-quote p {
  font-family: var(--font-heading,'Cinzel'), Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 0.7rem;
}
.about-founder-quote cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
}

.about-promise { padding: 4.5rem 0; background: var(--bg); }
.about-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) { .about-promise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .about-promise-grid { grid-template-columns: 1fr; } }

.about-promise-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 240ms cubic-bezier(0.16,1,0.3,1);
}
.about-promise-card:hover { transform: translateY(-3px); }
.about-promise-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  margin-bottom: 0.85rem;
}
.about-promise-icon svg { width: 22px; height: 22px; }
.about-promise-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--navy); }
.about-promise-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; margin: 0; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-options { padding: 4rem 0 2.5rem; background: var(--bg); }
/* 5 cards: 3 in first row, 2 centered in second row (6-col grid, each card spans 2 cols) */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.booking-card { grid-column: span 2; }
.booking-card:nth-child(4) { grid-column: 2 / span 2; }
.booking-card:nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 980px) {
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-card,
  .booking-card:nth-child(4),
  .booking-card:nth-child(5) { grid-column: span 1; }
  /* center the trailing card when there's a single odd one */
  .booking-card:nth-child(5):last-child { grid-column: 1 / span 2; max-width: 50%; justify-self: center; }
}
@media (max-width: 560px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-card:nth-child(5):last-child { grid-column: 1; max-width: 100%; }
}

/* Scroll cue to Calendly section */
.booking-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin: 2.25rem auto 0;
  padding: 0.5rem 1rem;
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
}
.booking-scroll-cue:hover { color: var(--navy); text-decoration: none; }
.booking-scroll-cue-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: booking-scroll-bob 1.6s ease-in-out infinite;
}
.booking-scroll-cue-arrow svg { width: 20px; height: 20px; display: block; }
.booking-scroll-cue:hover .booking-scroll-cue-arrow {
  background: var(--accent);
  color: #FFFFFF;
}
@keyframes booking-scroll-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .booking-scroll-cue-arrow { animation: none; }
}

.booking-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.85rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: var(--shadow);
  transition: transform 280ms cubic-bezier(0.16,1,0.3,1), box-shadow 280ms;
}
.booking-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(10,29,63,0.10); }

.booking-card-highlight {
  border: 2px solid var(--accent);
  box-shadow: 0 12px 28px rgba(201,168,106,0.20);
}
.booking-card-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(242,235,220,0.4) 0%, rgba(255,255,255,0) 60%);
}

.booking-card-tag {
  position: absolute;
  top: -10px;
  left: 1.4rem;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.booking-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.booking-card-icon svg { width: 22px; height: 22px; }

.booking-card-duration {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
  margin: 0;
}
.booking-card-type {
  font-family: var(--font-heading,'Cinzel'), Georgia, serif;
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.25;
}
.booking-card-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.booking-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 0.4rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.booking-card-price {
  font-family: var(--font-heading,'Cinzel'), Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.booking-card-foot .btn { white-space: nowrap; }

.booking-footnote {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 1.5rem 0 0;
}

.booking-calendar { padding: 3rem 0 5rem; }
.booking-calendar-soon .booking-contact-actions { margin-top: 1.5rem; }

.booking-policy { padding: 4rem 0; background: var(--bg); }
.booking-policy-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.booking-policy-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
}
.booking-policy-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.booking-policy-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE — modernized layout
   ============================================================ */

/* HERO with pulse pill */
.contact-hero { position: relative; overflow: hidden; }
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 88% 25%, rgba(201,168,106,0.10), transparent 60%),
    radial-gradient(ellipse 35% 40% at 8% 80%, rgba(201,168,106,0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.contact-hero > .container { position: relative; z-index: 1; }

.contact-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0.45rem 0.9rem;
  background: rgba(201, 168, 106, 0.12);
  border: 1px solid rgba(201, 168, 106, 0.35);
  color: var(--accent-deep);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.contact-hero-pill .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.65);
  animation: contact-pulse 2s ease-out infinite;
}
@keyframes contact-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(201, 168, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-hero-pill .pulse { animation: none; }
}

/* QUICK CHANNEL CARDS */
.contact-channels { padding: 3rem 0 0; }
.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) { .contact-channel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .contact-channel-grid { grid-template-columns: 1fr; } }

.contact-channel {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms, border-color 200ms;
  overflow: hidden;
}
.contact-channel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 29, 63, 0.10);
  border-color: var(--accent);
  text-decoration: none;
}
.contact-channel::after {
  content: '';
  position: absolute;
  inset: auto -40% -40% auto;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.10), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms;
}
.contact-channel:hover::after { opacity: 1; }

.contact-channel-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 0.4rem;
}
.contact-channel-icon svg { width: 22px; height: 22px; }

.contact-channel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}
.contact-channel-value {
  font-family: var(--font-heading, 'Cinzel'), Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin: 0 0 0.5rem;
  word-break: break-word;
}
.contact-channel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-top: auto;
}
.contact-channel-cta svg { transition: transform 200ms; }
.contact-channel:hover .contact-channel-cta svg { transform: translateX(3px); }

/* WhatsApp variant */
.contact-channel-whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); border-color: transparent; color: #FFFFFF; }
.contact-channel-whatsapp:hover { border-color: transparent; box-shadow: 0 18px 40px rgba(18, 140, 126, 0.30); }
.contact-channel-whatsapp .contact-channel-icon { background: rgba(255, 255, 255, 0.18); color: #FFFFFF; }
.contact-channel-whatsapp .contact-channel-label { color: rgba(255, 255, 255, 0.85); }
.contact-channel-whatsapp .contact-channel-value { color: #FFFFFF; }
.contact-channel-whatsapp .contact-channel-cta { color: #FFFFFF; }

/* Book variant — accent emphasis */
.contact-channel-book { background: linear-gradient(135deg, var(--navy) 0%, #14305C 100%); border-color: transparent; color: #FFFFFF; }
.contact-channel-book:hover { border-color: transparent; box-shadow: 0 18px 40px rgba(10, 29, 63, 0.30); }
.contact-channel-book .contact-channel-icon { background: rgba(201, 168, 106, 0.20); color: var(--accent); }
.contact-channel-book .contact-channel-label { color: rgba(255, 255, 255, 0.75); }
.contact-channel-book .contact-channel-value { color: #FFFFFF; }
.contact-channel-book .contact-channel-cta { color: var(--accent); }

/* MAIN: aside + form */
.contact-main { padding: 3rem 0 5rem; }
.contact-main-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 1024px) { .contact-main-grid { grid-template-columns: 1fr; gap: 1.75rem; } }

.contact-aside { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-aside-block .prose p { color: var(--text-muted); line-height: 1.65; margin: 0; font-size: 0.95rem; }

.contact-aside-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.4rem;
  box-shadow: var(--shadow);
}
.contact-aside-card h3 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}

.contact-aside-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-aside-list li { display: flex; align-items: flex-start; gap: 0.85rem; }
.contact-aside-icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.contact-aside-icon svg { width: 18px; height: 18px; }
.contact-aside-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin: 0 0 0.15rem;
}
.contact-aside-list li > div p:last-child {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.5;
  margin: 0;
}

.contact-hours-list { list-style: none; padding: 0; margin: 0; }
.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}
.contact-hours-list li:last-child { border-bottom: 0; }
.contact-hours-day { color: var(--navy); font-weight: 600; }
.contact-hours-time { color: var(--text-muted); }
.contact-hours-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0.9rem 0 0;
  line-height: 1.5;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.contact-trust-card .contact-trust-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.contact-trust-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; color: var(--text);
}
.contact-trust-list li svg { color: var(--accent); flex: 0 0 16px; }

/* FORM CARD */
.contact-form-wrap {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2rem 2rem;
  box-shadow: 0 18px 44px rgba(10, 29, 63, 0.06);
}
.contact-form-head { margin-bottom: 1.5rem; }
.contact-form-head h2 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
  color: var(--navy);
}
.contact-form-head .text-muted { font-size: 0.95rem; line-height: 1.55; margin: 0; }

.contact-form-actions { margin-top: 0.5rem; }
.contact-form-fine {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.85rem 0 0;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .contact-form-wrap { padding: 1.5rem 1.25rem; }
  .contact-form-head h2 { font-size: 1.3rem; }
}
