/* =============================================
   DESIGN TOKENS â€” Lighter Forest Green + Gold
   All old variable names KEPT so existing
   sections still inherit the correct colors
============================================= */
/* ============================================================
   ROOT VARIABLES â€” Lighter Warm Earth Palette
============================================================ */
:root {
  /* â”€â”€ Dark section color (replaces all dark browns) â”€â”€ */
  --navy:        #043753;   /* Deep navy blue â€” dark section base */
  --navy-dark:   #022840;   /* Deeper navy for darkest backgrounds */

  /* â”€â”€ Button / accent color â”€â”€ */
  --blue:        #e17e34;   /* Primary button & accent orange */
  --blue-mid:    #e98e4a;   /* Softened button mid tone */
  --teal:        #e17e34;   /* Same button orange family */
  --teal-light:  #f0a060;   /* Light button hover / accent */

  /* â”€â”€ Gold tones (unchanged) â”€â”€ */
  --gold:        #c4964a;
  --gold-light:  #d9ae6a;
  --gold-warm:   #edd090;

  --white:       #FFFFFF;

  /* â”€â”€ Light section backgrounds (unchanged) â”€â”€ */
  --bg-light:    #fff7f2;
  --bg-gray:     #ffffff;

  /* â”€â”€ Text (unchanged) â”€â”€ */
  --text:        #2e1a0e;
  --text-mid:    #4a2c14;
  --text-muted:  #8a6040;

  /* â”€â”€ Borders updated to navy tint â”€â”€ */
  --border:      #04375320; /* translucent navy */
  --border-solid:#ccdde8;   /* soft navy border */

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  /* â”€â”€ Shadows updated to navy base â”€â”€ */
  --shadow-sm:   0 2px 12px rgba(4,55,83,.08);
  --shadow-md:   0 6px 30px rgba(4,55,83,.13);
  --shadow-lg:   0 16px 56px rgba(4,55,83,.18);

  --transition:  all .28s cubic-bezier(.4,0,.2,1);
}


/* ============================================================
   RESET + BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text); background: var(--bg-light);
  line-height: 1.6; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }


/* ============================================================
   GLOBAL BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 30px; border-radius: 50px; font-weight: 700;
  font-size: .925rem; letter-spacing: .3px; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; box-shadow: 0 6px 24px rgba(162,116,92,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(162,116,92,.40); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff; box-shadow: 0 6px 24px rgba(196,150,74,.32);
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 38px; font-size: 1rem; }


/* ============================================================
   SECTION UTILITIES
============================================================ */
.section-tag {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(162,116,92,.12); color: var(--blue);
  font-size: .78rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-muted); max-width: 600px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }


/* ============================================================
   TOPBAR
============================================================ */
.topbar {
  background: #f8f5f2;
  padding: 9px 0;
  font-size: .78rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-left span {
  display: flex; align-items: center; gap: 6px;
  color: rgb(225 126 52); font-weight: 500; white-space: nowrap;
}
.topbar-left i { color: var(--teal-light); font-size: .72rem; }

.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-email {
  display: flex; align-items: center; gap: 6px;
  color: rgb(225 126 52); font-weight: 500; font-size: .77rem;
  transition: color .2s; white-space: nowrap;
}
.topbar-email:hover { color: var(--teal-light); }
.topbar-email i { font-size: .70rem; }

.topbar-phone {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue); color: #fff !important;
  padding: 5px 16px; border-radius: 50px;
  font-weight: 700; font-size: .78rem; white-space: nowrap;
  transition: background .2s; text-decoration: none;
}
.topbar-phone:hover { background: var(--teal); }


/* ============================================================
   SITE HEADER
============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(61,35,20,.22);
}
.site-header .container { width: 100%; }

.header-inner {
  display: grid !important;
  grid-template-columns: 200px 1fr 200px !important;
  grid-template-rows: 76px;
  align-items: center;
  width: 100%; gap: 0;
}

/* Logo */
.header-logo-slot {
  grid-column: 1;
  display: flex !important; align-items: center; justify-content: flex-start;
}
.logo {
  display: inline-flex !important; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.logo-img {
  height: 65px; width: auto; object-fit: contain;
  display: block !important;
  visibility: visible !important; opacity: 1 !important;
}

/* Nav â€” center */
.header-nav-slot {
  grid-column: 2;
  display: flex !important; justify-content: center; align-items: center;
}
.main-nav {
  display: flex !important; align-items: center;
  gap: 0; margin: 0; padding: 0; list-style: none;
}
.main-nav > li { position: relative; }

/* â”€â”€ FIX: invisible bridge fills the 8px gap between nav-link and dropdown â”€â”€ */
.main-nav > li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 14px; /* covers the gap + a little extra */
  background: transparent;
  display: none;
}
.main-nav > li:hover::after { display: block; }

.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; border-radius: 8px;
  color: rgba(255,255,255,.85);
  font-size: .875rem; font-weight: 600;
  cursor: pointer; transition: all .22s ease;
  border: none; background: transparent;
  font-family: inherit; white-space: nowrap; letter-spacing: .01em;
}
.nav-link:hover,
.main-nav > li:hover > .nav-link {
  color: #fff; background: rgba(255,255,255,.10);
}
.nav-link .chevron { font-size: .58rem; transition: transform .24s ease; opacity: .60; }
.main-nav > li:hover > .nav-link .chevron { transform: rotate(180deg); }

/* â”€â”€ DROPDOWN â€” gap-bridge fix â”€â”€ */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);   /* intentional visual gap */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(90,52,32,.16), 0 0 0 1px var(--border-solid);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;

  /* KEY FIX: add top padding to overlap the gap â€” mouse stays in hover zone */
  padding-top: 14px;
  margin-top: -6px; /* pull up so visual gap is bridged */

  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 300;
  pointer-events: none;
}

/* Reveal */
.main-nav > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

/* Inner visual separator so padding-top gap looks clean */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 12px; right: 12px;
  height: 1px;
  background: var(--border-solid);
  opacity: .6;
}

.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 8px;
  color: var(--text); font-size: .855rem; font-weight: 500;
  transition: all .18s ease; text-decoration: none;
}
.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--blue);
}
.dropdown-menu a i {
  color: var(--teal); width: 16px; font-size: .80rem; flex-shrink: 0;
}
.dropdown-divider {
  border: none; border-top: 1px solid var(--border-solid); margin: 6px 0;
}

/* CTA slot â€” right */
.header-cta-slot {
  grid-column: 3;
  display: flex !important; align-items: center; justify-content: flex-end;
}
.btn-header-cta {
  display: inline-flex !important; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff !important; font-weight: 700; font-size: .855rem;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 16px rgba(162,116,92,.30);
  transition: all .24s ease; white-space: nowrap;
  text-decoration: none; letter-spacing: .01em;
}
.btn-header-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(162,116,92,.42); }
.btn-header-cta i { font-size: .76rem; }

/* Hamburger */
.nav-toggle {
  display: none !important;
  grid-column: unset;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.16);
  cursor: pointer; padding: 9px 11px; border-radius: 10px;
}
.nav-toggle i { color: #fff; font-size: 1.1rem; display: block; }


/* ============================================================
   MOBILE DRAWER
============================================================ */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(0,0,0,.48); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .28s ease, visibility .28s;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

.mobile-nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--navy-dark);
  z-index: 1600;
  display: flex; flex-direction: column;
  transform: translateX(110%);
  transition: transform .36s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: -6px 0 40px rgba(0,0,0,.32);
}
.mobile-nav-drawer.is-open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.drawer-logo-img {
  height: 42px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
}
.drawer-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 9px; cursor: pointer;
  color: rgba(255,255,255,.80); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.drawer-close:hover { background: rgba(255,255,255,.18); color: #fff; }

.drawer-nav { padding: 12px 10px; flex: 1; }
.drawer-nav-item { margin-bottom: 2px; }
.drawer-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 9px;
  color: rgba(255,255,255,.82); font-size: .875rem; font-weight: 600;
  cursor: pointer; transition: all .2s ease;
  border: none; background: transparent;
  width: 100%; text-align: left; gap: 8px; font-family: inherit;
}
.drawer-nav-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.drawer-nav-link .chevron {
  font-size: .58rem; transition: transform .24s ease;
  margin-left: auto; flex-shrink: 0;
}
.drawer-nav-item.open .drawer-nav-link .chevron { transform: rotate(180deg); }
.drawer-nav-link .dicon { color: var(--teal-light); font-size: .82rem; }

.drawer-submenu {
  max-height: 0; overflow: hidden;
  transition: max-height .34s ease;
  background: rgba(255,255,255,.04);
  border-radius: 9px; margin: 3px 0 3px 10px;
}
.drawer-nav-item.open .drawer-submenu { max-height: 500px; }
.drawer-submenu a {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 16px; color: rgba(255,255,255,.62);
  font-size: .835rem; font-weight: 500; transition: all .2s;
  text-decoration: none;
}
.drawer-submenu a:hover { color: var(--teal-light); }
.drawer-submenu a i { color: var(--teal); width: 15px; font-size: .78rem; }
.drawer-sub-divider {
  border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 4px 12px;
}

.drawer-footer {
  padding: 14px 18px 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 9px; flex-shrink: 0;
}
.drawer-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: 11px;
  font-weight: 700; font-size: .875rem; color: #fff;
  transition: all .2s; text-decoration: none;
}
.drawer-cta-book {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 4px 14px rgba(162,116,92,.26);
}
.drawer-cta-call {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
}
.drawer-cta-call:hover { background: rgba(255,255,255,.13); }


/* ============================================================
   RESPONSIVE â€” HEADER
============================================================ */
@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 160px 1fr 160px !important; }
  .nav-link { padding: 10px 10px !important; font-size: .82rem !important; }
  .btn-header-cta { padding: 9px 16px !important; font-size: .80rem !important; }
}
@media (max-width: 900px) {
  .header-inner { grid-template-columns: 140px 1fr 140px !important; }
  .nav-link { padding: 10px 8px !important; font-size: .78rem !important; }
  .logo-img { height: 48px !important; }
  .btn-header-cta { padding: 8px 13px !important; font-size: .76rem !important; }
  .topbar-left span:nth-child(3) { display: none; }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .topbar .container { justify-content: flex-end; }
  .header-inner { grid-template-columns: auto 1fr auto !important; grid-template-rows: 66px; }
  .header-logo-slot { grid-column: 1 !important; }
  .header-nav-slot  { display: none !important; grid-column: unset !important; }
  .header-cta-slot  { display: none !important; grid-column: unset !important; }
  .nav-toggle {
    display: flex !important;
    align-items: center; justify-content: center;
    grid-column: 3 !important; justify-self: end;
  }
  .logo-img { height: 48px !important; }
  .hero-eyebrow {font-size: 1rem !important;}
}
@media (max-width: 480px) {
  .topbar { display: none; }
  .header-inner { grid-template-rows: 60px; }
  .logo-img { height: 42px !important; }
}


/* ============================================================
   HERO â€” Lighter version
============================================================ */
.hero {
  position: relative;
  background: linear-gradient(145deg, #043753 0%, #043753 45%, #043753 80%, #043753 100%);
  min-height: 90vh;
  display: flex; align-items: center;
  padding: 90px 0 100px;
}

.hero-orbs {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 0;
}
.hero-orb { position: absolute; border-radius: 50%; }
.hero-orb-1 {
  width: 750px; height: 750px; right: -180px; top: -180px;
  background: radial-gradient(circle, rgba(220,162,125,.18) 0%, transparent 65%);
}
.hero-orb-2 {
  width: 480px; height: 480px; left: -80px; bottom: -80px;
  background: radial-gradient(circle, rgba(196,150,74,.15) 0%, transparent 65%);
}
.hero-orb-3 {
  width: 280px; height: 280px; left: 38%; top: -60px;
  background: radial-gradient(circle, rgba(249,239,237,.08) 0%, transparent 65%);
}

.hero-texture {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-deco-line {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px; z-index: 1;
  background: linear-gradient(to bottom, transparent 5%, var(--teal) 40%, var(--gold) 70%, transparent 95%);
}

.hero > .container { position: relative; z-index: 2; width: 100%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

/* Hero Copy */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(220,162,125,.18); border: 1px solid rgba(220,162,125,.36);
  color: var(--teal-light); padding: 7px 18px; border-radius: 50px;
  font-size: .76rem; font-weight: 700; letter-spacing: .9px;
  text-transform: uppercase; margin-bottom: 26px;
}
.hero-eyebrow .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-light); flex-shrink: 0;
  animation: blink 1.8s ease infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.65); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; color: #fff;
  line-height: 1.14; margin-bottom: 24px; letter-spacing: -.4px;
}
.hero h1 .accent-italic { color: var(--teal-light); font-style: italic; }
.hero h1 .accent-gold   { color: var(--gold-warm); }

.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,.75);
  line-height: 1.78; max-width: 500px; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hbtn-book {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px; border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; font-weight: 700; font-size: 1rem;
  font-family: inherit; border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(162,116,92,.40);
  transition: var(--transition);
}
.hbtn-book:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(162,116,92,.54); }
.hbtn-book .btn-circle {
  width: 32px; height: 32px; background: rgba(255,255,255,.22);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
}

.hbtn-call {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 50px;
  background: transparent; color: #fff;
  font-weight: 700; font-size: 1rem; font-family: inherit;
  border: 2px solid rgba(255,255,255,.42); cursor: pointer;
  transition: var(--transition);
}
.hbtn-call:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.70); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16);
  padding: 7px 15px; border-radius: 50px;
  color: rgba(255,255,255,.88); font-size: .80rem; font-weight: 600;
}
.trust-pill i { color: var(--gold-light); font-size: .8rem; }

/* Hero Visual */
.hero-visual { position: relative; padding: 28px 48px 28px 28px; }
.hero-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 40px 90px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.08);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(4 55 83 / 63%) 0%, rgba(74, 36, 16, .18) 45%, transparent 70%)
}

.hero-img-rating { position: absolute; bottom: 22px; left: 22px; right: 22px; }
.hero-img-rating .rlabel {
  font-size: .7rem; font-weight: 700; color: var(--teal-light);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.rating-row { display: flex; align-items: center; gap: 8px; }
.rating-row i   { color: var(--gold-light); font-size: .85rem; }
.rating-row span { color: rgba(255,255,255,.86); font-size: .85rem; font-weight: 700; }

.hero-cert-badge {
  position: absolute; top: 4px; left: 4px;
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(196,150,74,.40);
  border: 3px solid rgba(255,255,255,.88); z-index: 3;
}
.hero-cert-badge strong { color: #fff; font-size: 1.2rem; font-weight: 800; line-height: 1; }
.hero-cert-badge span {
  color: rgba(255,255,255,.90); font-size: .50rem; font-weight: 700;
  text-transform: uppercase; text-align: center; line-height: 1.25; letter-spacing: .3px;
}

.hstat {
  position: absolute; background: #fff; border-radius: 16px;
  padding: 13px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14); min-width: 150px; z-index: 3;
}
.hstat-1 { bottom: 4px; left: -10px; }
.hstat-2 { top: 48px; right: 0; }

.hstat-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hstat-icon.green { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.hstat-icon.gold  { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.hstat-icon i { color: #fff; font-size: 1.05rem; }
.hstat-num   { font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hstat-label { font-size: .72rem; color: var(--text-muted); font-weight: 600; margin-top: 3px; }

.wave-divider { overflow: hidden; line-height: 0; margin-top: -2px; }
.wave-divider svg { display: block; }

/* Hero Responsive */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero { min-height: auto; padding: 72px 0 64px; }
  .hero-sub { margin: 0 auto 38px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a, .hero-actions button { width: 100%; justify-content: center; }
}
/* ===== CTA FORM SECTION ===== */
.cta-form-section {
  position: relative;
  background: #ffffff;
  padding: 100px 0 110px;
  overflow: hidden;
}
.cta-form-section::before {
  content: '';
  position: absolute; top: -140px; right: -140px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(162,116,92,.09) 0%, transparent 65%);
  pointer-events: none;
}
.cta-form-section::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,150,74,.09) 0%, transparent 65%);
  pointer-events: none;
}

.cta-dot-pattern {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(162,116,92,.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.4) 30%, rgba(0,0,0,.4) 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.4) 30%, rgba(0,0,0,.4) 70%, transparent);
}

.cta-form-section .container { position: relative; z-index: 2; }

.cta-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 72px;
  align-items: start;
}

.cta-form-left { padding-top: 8px; }

.cta-section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 50px;
  background: rgba(162,116,92,.12); border: 1px solid rgba(162,116,92,.20);
  color: var(--blue); font-size: .75rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.cta-section-tag i { font-size: .75rem; }

.cta-form-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 16px;
}
.cta-form-left h2 span { color: var(--blue); }

.cta-form-left > p {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 36px; max-width: 420px;
}

.cta-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.cta-perk {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(162,116,92,.15);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(90,52,32,.05);
  transition: var(--transition);
}
.cta-perk:hover {
  border-color: rgba(162,116,92,.35);
  box-shadow: 0 4px 18px rgba(90,52,32,.10);
  transform: translateX(4px);
}
.cta-perk-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, #043753, #043753);
  display: flex; align-items: center; justify-content: center;
}
.cta-perk-icon i { color: #fff; font-size: .85rem; }
.cta-perk-text strong {
  display: block; font-size: .875rem; font-weight: 700;
  color: var(--navy); margin-bottom: 2px;
}
.cta-perk-text span { font-size: .80rem; color: var(--text-muted); }

.cta-trust-strip {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--navy), #043753);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(90,52,32,.22);
}
.cta-trust-strip-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.cta-trust-strip-icon i { color: var(--gold-light); font-size: 1.3rem; }
.cta-trust-strip-text strong {
  display: block; color: #fff; font-size: .9rem; font-weight: 800; margin-bottom: 3px;
}
.cta-trust-strip-text span { color: rgba(255,255,255,.65); font-size: .78rem; }
.cta-trust-strip-badge {
  margin-left: auto; flex-shrink: 0;
  background: rgba(255,255,255,.15);
  color: #fff; padding: 6px 14px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
  border: 1px solid rgba(255,255,255,.25);
}

/* Form Card */
.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 20px 70px rgba(90,52,32,.12), 0 0 0 1px rgba(162,116,92,.08);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
}

.form-card-header { margin-bottom: 28px; }
.form-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.form-card-sub { font-size: .875rem; color: var(--text-muted); }
.form-card-sub i { color: var(--teal); margin-right: 4px; }

.form-response-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(162,116,92,.08); border: 1px solid rgba(162,116,92,.18);
  color: var(--blue); padding: 5px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; margin-top: 10px;
}
.form-response-badge .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  animation: blink 1.8s ease infinite;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .78rem; font-weight: 700;
  color: var(--text-mid); letter-spacing: .3px;
  display: flex; align-items: center; gap: 5px;
}
.form-group label .req { color: #e05252; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit; font-size: .9rem; color: var(--text);
  background: #fdf7f2;
  transition: var(--transition); outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(162,116,92,.10);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b8967e; }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a2745c' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}

.form-submit-btn {
  width: 100%; padding: 16px 24px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; font-weight: 800; font-size: 1rem;
  font-family: inherit; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(162,116,92,.35);
  transition: var(--transition); margin-top: 4px;
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(162,116,92,.48);
}
.form-submit-btn i { font-size: .95rem; }

.form-note {
  text-align: center; font-size: .77rem;
  color: var(--text-muted); margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-note i { color: var(--teal); }

@media (max-width: 1000px) {
  .cta-form-wrap { grid-template-columns: 1fr; gap: 48px; }
  .cta-form-left { max-width: 680px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .form-card { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-form-section { padding: 72px 0 80px; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  position: relative;
  background: linear-gradient(145deg, #043753 0%, #043753 45%, #043753 80%, #043753 100%);
  padding: 72px 0;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats-bar::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--teal-light), var(--gold), transparent);
}

.stats-bar-bottom-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
}

.stats-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.stats-orb-1 {
  width: 500px; height: 500px; left: -180px; top: -200px;
  background: radial-gradient(circle, rgba(196,150,74,.12) 0%, transparent 60%);
}
.stats-orb-2 {
  width: 400px; height: 400px; right: -140px; bottom: -160px;
  background: radial-gradient(circle, rgba(196,144,110,.10) 0%, transparent 60%);
}

.stats-bar .container { position: relative; z-index: 2; }

.stats-bar-label { text-align: center; margin-bottom: 48px; }
.stats-bar-label span {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}
.stats-bar-label span::before,
.stats-bar-label span::after {
  content: '';
  display: inline-block; width: 48px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.30));
}
.stats-bar-label span::after {
  background: linear-gradient(to left, transparent, rgba(255,255,255,.30));
}
.stats-bar-label i { color: var(--gold-light); font-size: .75rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}
.stats-grid .stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.10); }

.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 32px; text-align: center;
  position: relative; cursor: default;
  transition: var(--transition);
}
.stat-item:hover { background: rgba(255,255,255,.04); border-radius: 16px; }

.stat-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.stat-icon-wrap::before {
  content: '';
  position: absolute; inset: 0; border-radius: 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
}
.stat-icon-wrap i { font-size: 1.35rem; position: relative; z-index: 1; }
.stat-icon-wrap.gold i  { color: var(--gold-light); }
.stat-icon-wrap.sage i  { color: var(--teal-light); }
.stat-icon-wrap.white i { color: #fff; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; line-height: 1;
  margin-bottom: 8px; letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 40%, var(--teal-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item:nth-child(2) .stat-num,
.stat-item:nth-child(4) .stat-num {
  background: linear-gradient(135deg, #fff 40%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: .875rem; font-weight: 700; color: rgba(255,255,255,.72);
  margin-bottom: 5px; letter-spacing: .2px;
}
.stat-sub { font-size: .75rem; color: rgba(255,255,255,.38); font-weight: 500; }

.stat-badge {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 50px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55); font-size: .70rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.stat-badge.gold-badge {
  background: rgba(196,150,74,.12); border-color: rgba(196,150,74,.25);
  color: var(--gold-light);
}
.stat-badge.sage-badge {
  background: rgba(196,144,110,.12); border-color: rgba(196,144,110,.24);
  color: var(--teal-light);
}

.stats-accent-bar {
  margin-top: 52px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.stats-accent-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.45); font-size: .80rem; font-weight: 600;
  transition: var(--transition);
}
.stats-accent-item:hover { color: rgba(255,255,255,.75); }
.stats-accent-item i { font-size: .9rem; color: var(--teal-light); opacity: .75; }
.stats-accent-sep {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.12); flex-shrink: 0;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid .stat-item:nth-child(3) { border-left: none; }
  .stats-grid .stat-item + .stat-item:nth-child(3),
  .stats-grid .stat-item + .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.10); }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 20px 16px; }
  .stat-num { font-size: 2.4rem; }
  .stats-accent-bar { gap: 20px; }
  .stats-accent-sep { display: none; }
  .stats-bar { padding: 56px 0; }
}

/* ============================================
   SERVICES SECTION
============================================ */
.services-section {
  background: var(--bg-light);
  padding: 96px 0 104px;
}
.services-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: all .28s ease;
}
.svc-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(123,74,45,.12);
  transform: translateY(-4px);
}

.svc-icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-icon-box i { font-size: 1.3rem; color: var(--blue); }
.svc-card:nth-child(even) .svc-icon-box { background: #FFF4E6; }
.svc-card:nth-child(even) .svc-icon-box i { color: var(--gold); }

.svc-card h3 {
  font-size: 1rem; font-weight: 800;
  color: var(--navy); margin-bottom: 10px;
  line-height: 1.35;
}
.svc-card p {
  font-size: .855rem; color: var(--text-muted);
  line-height: 1.75; flex: 1; margin-bottom: 22px;
}

.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 700; color: var(--blue);
  margin-top: auto; transition: gap .22s ease;
}
.svc-link i { font-size: .72rem; }
.svc-link:hover { gap: 10px; color: var(--teal); }

/* Bottom CTA strip */
.svc-bottom-strip {
  margin-top: 52px;
  background: linear-gradient(145deg, #043753 0%, #043753 45%, #043753 80%, #043753 100%);
  border-radius: 20px;
  padding: 36px 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 28px;
  flex-wrap: wrap;
}
.svc-strip-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: #fff; font-weight: 700;
  margin-bottom: 5px;
}
.svc-strip-text p { font-size: .855rem; color: rgba(255,255,255,.60); }

.svc-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

.svc-strip-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 50px;
  background: #fff; color: var(--navy);
  font-weight: 700; font-size: .875rem;
  border: none; cursor: pointer; font-family: inherit;
  transition: all .25s ease;
}
.svc-strip-btn-white:hover { background: var(--teal-light); color: #fff; }

.svc-strip-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  background: transparent; color: #fff;
  font-weight: 700; font-size: .875rem;
  border: 1.5px solid rgba(255,255,255,.35); cursor: pointer; font-family: inherit;
  transition: all .25s ease;
}
.svc-strip-btn-outline:hover { background: rgba(255,255,255,.12); }


/* ============================================
   PRICING SECTION
============================================ */
.pricing-section {
  background: linear-gradient(145deg, #043753 0%, #043753 45%, #043753 80%, #043753 100%);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.pricing-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.pricing-orb-1 {
  width: 600px; height: 600px; right: -200px; top: -200px;
  background: radial-gradient(circle, rgba(196,144,110,.10) 0%, transparent 60%);
}
.pricing-orb-2 {
  width: 400px; height: 400px; left: -100px; bottom: -150px;
  background: radial-gradient(circle, rgba(196,150,74,.08) 0%, transparent 60%);
}

.pricing-section .top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--teal) 35%, var(--gold) 65%, transparent 95%);
}
.pricing-section .container { position: relative; z-index: 2; }

/* Header */
.pricing-header { text-align: center; margin-bottom: 44px; }
.pricing-header .section-tag {
  background: rgba(196,144,110,.16);
  border: 1px solid rgba(196,144,110,.30);
  color: var(--teal-light);
}
.pricing-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700; color: #fff; margin-bottom: 10px;
}
.pricing-header p { color: rgba(255,255,255,.52); font-size: .92rem; }

/* Tabs */
.pricing-tabs {
  display: flex; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 36px;
}
.pricing-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 50px;
  font-size: .83rem; font-weight: 700; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.60);
  font-family: inherit; transition: all .24s ease;
  white-space: nowrap;
}
.pricing-tab i { font-size: .76rem; }
.pricing-tab:hover { background: rgba(255,255,255,.11); color: rgba(255,255,255,.88); }
.pricing-tab.active {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; border-color: transparent;
  box-shadow: 0 6px 18px rgba(123,74,45,.38);
}

/* Panels */
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

/* Card Box */
.pricing-card-box {
  max-width: 760px; margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  overflow: hidden;
}

.pricing-card-box-header {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 28px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pcb-icon {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pcb-icon.green { background: rgba(196,144,110,.20); color: var(--teal-light); }
.pcb-icon.gold  { background: rgba(196,150,74,.20);  color: var(--gold-light); }
.pcb-icon i { font-size: 1.1rem; }
.pcb-title { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.pcb-sub   { font-size: .76rem; color: rgba(255,255,255,.48); }

/* Table Head */
.pricing-table-head {
  display: grid;
  grid-template-columns: 1fr 90px 130px;
  padding: 11px 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pricing-table-head span {
  font-size: .70rem; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  color: rgb(255 255 255 / 93%);
}
.pricing-table-head span:nth-child(2) { text-align: center; }
.pricing-table-head span:last-child   { text-align: right; }

/* Row */
.pricing-row-item {
  display: grid;
  grid-template-columns: 1fr 90px 130px;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .18s ease;
  gap: 8px;
}
.pricing-row-item:last-child { border-bottom: none; }
.pricing-row-item:hover { background: rgba(255,255,255,.04); }

.pri-name {
  font-size: .88rem; color: rgba(255,255,255,.80); font-weight: 600;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.pri-popular {
  display: inline-block; padding: 2px 9px; border-radius: 50px;
  background: rgba(196,150,74,.18);
  border: 1px solid rgba(196,150,74,.32);
  color: var(--gold-light); font-size: .60rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px; flex-shrink: 0;
}

.pri-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.pri-enroll { display: flex; align-items: center; justify-content: flex-end; }
.pri-enroll-btn {
  padding: 8px 16px; border-radius: 50px;
  background: transparent; color: #ffffff;
  border: 1.5px solid rgba(196,144,110,.38);
  font-size: .755rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: all .22s ease; white-space: nowrap;
}
.pri-enroll-btn:hover {
  background: var(--blue); color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(123,74,45,.30);
}

/* Info strip */
.pricing-info-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  margin: 28px auto 0;
  max-width: 760px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  overflow: hidden;
}
.pis-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .78rem; color: rgba(255,255,255,.50); font-weight: 600;
  padding: 16px 24px; flex: 1; justify-content: center;
  min-width: 140px;
}
.pis-item i { color: var(--teal-light); font-size: .76rem; }
.pis-sep { width: 1px; background: rgba(255,255,255,.09); align-self: stretch; flex-shrink: 0; }

/* Responsive */
@media (max-width: 860px) {
  .pricing-card-box { max-width: 100%; }
  .pricing-info-strip { max-width: 100%; }
  .pricing-table-head { grid-template-columns: 1fr 80px 110px; padding: 10px 20px; }
  .pricing-row-item   { grid-template-columns: 1fr 80px 110px; padding: 14px 20px; }
  .pri-name { font-size: .84rem; }
  .pri-price { font-size: 1.1rem; }
  .pri-enroll-btn { padding: 7px 13px; font-size: .72rem; }
}
@media (max-width: 600px) {
  .pricing-section { padding: 68px 0 80px; }
  .pricing-tab { padding: 9px 15px; font-size: .78rem; }
  .pricing-card-box-header { padding: 18px 18px; gap: 12px; }
  .pcb-icon { width: 40px; height: 40px; }
  .pcb-title { font-size: .92rem; }
  .pricing-table-head { display: none; }
  .pricing-row-item {
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 12px;
    padding: 18px 18px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
  }
  .pri-price { position: absolute; top: 18px; right: 18px; font-size: 1.2rem; text-align: right; }
  .pri-name { font-size: .88rem; padding-right: 70px; line-height: 1.35; }
  .pri-enroll { width: 100%; }
  .pri-enroll-btn {
    width: 100%; justify-content: center;
    padding: 10px 16px; font-size: .80rem;
    background: rgba(196,144,110,.12);
  }
  .pricing-info-strip { flex-direction: column; gap: 0; margin-top: 20px; }
  .pis-item { padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .pis-item:last-child { border-bottom: none; }
  .pis-sep { display: none; }
}
@media (max-width: 380px) {
  .pricing-tab { padding: 8px 12px; font-size: .74rem; }
  .pricing-tabs { gap: 6px; }
  .pricing-row-item { padding: 16px 14px; }
  .pri-price { right: 14px; top: 16px; font-size: 1.1rem; }
  .pcb-title { font-size: .86rem; }
}


/* ============================================
   ABOUT SECTION
============================================ */
.about-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Diagonal warm bg Ã¢â‚¬â€ desktop only */
@media (min-width: 1025px) {
  .about-section::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 45%; height: 100%;
    background: var(--bg-gray);
    pointer-events: none; z-index: 0;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.about-section .container { position: relative; z-index: 2; }

/* Main Grid */
.about-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 0;
  align-items: stretch;
}

/* Left Ã¢â‚¬â€ Image */
.about-img-panel {
  position: relative;
  padding-right: 40px;
  padding-bottom: 60px;
}
.about-img-wrap {
  position: relative;
  width: 100%; height: 100%;
  min-height: 500px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61,35,20,.18);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  position: absolute; inset: 0;
}
.about-img-wrap::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(39,21,9,.78) 0%, transparent 100%);
}

/* Caption */
.about-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 24px; z-index: 3;
}
.aic-tag {
  font-size: .64rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--teal-light); margin-bottom: 4px;
}
.aic-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.25;
}

/* Experience badge */
.about-exp-badge {
  position: absolute;
  top: -16px; right: 16px;
  background: linear-gradient(145deg, #043753 0%, #043753 45%, #043753 80%, #043753 100%);
  border-radius: 14px; padding: 14px 18px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(61,35,20,.30);
  border: 3px solid #fff; z-index: 5;
  min-width: 100px;
}
.aeb-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: #fff; line-height: 1;
}
.aeb-label {
  font-size: .60rem; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  margin-top: 3px; line-height: 1.3;
}

/* Lives changed badge */
.about-lives-badge {
  position: absolute;
  bottom: 10px; left: 0;
  background: #fff;
  border-radius: 13px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 28px rgba(61,35,20,.14);
  border: 1.5px solid var(--border); z-index: 5;
}
.alb-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(196,150,74,.14);
  display: flex; align-items: center; justify-content: center;
}
.alb-icon i { color: var(--gold); font-size: .95rem; }
.alb-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.alb-label { font-size: .66rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }

/* LegitScript badge */
.about-cert-badge {
  position: absolute; top: 50%; left: -8px;
  transform: translateY(-50%);
  background: #fff; border-radius: 12px; padding: 10px 13px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 18px rgba(61,35,20,.12);
  border: 1.5px solid var(--border); z-index: 5;
}
.acb-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
}
.acb-icon i { color: #fff; font-size: .75rem; }
.acb-text strong { display: block; font-size: .70rem; font-weight: 800; color: var(--navy); }
.acb-text span { font-size: .62rem; color: var(--text-muted); }

/* Right Ã¢â‚¬â€ Content */
.about-content-panel {
  padding-left: 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-content-panel .section-tag { margin-bottom: 12px; }

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 2.4vw, 2.1rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.22; margin-bottom: 10px;
}
.about-heading span { color: var(--blue); }

.about-award-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(196,150,74,.10);
  border: 1px solid rgba(196,150,74,.22);
  padding: 5px 13px; border-radius: 50px;
  color: var(--gold); font-size: .74rem; font-weight: 700;
  margin-bottom: 16px;
}

.about-lead {
  font-size: .875rem; color: var(--text-muted);
  line-height: 1.76; margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--border);
}
.about-lead strong { color: var(--navy); }

/* Feature rows */
.about-feats { display: flex; flex-direction: column; gap: 0; margin-bottom: 26px; }
.about-feat-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.about-feat-row:last-child { border-bottom: none; padding-bottom: 0; }
.about-feat-row:first-child { padding-top: 0; }

.afr-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.afr-icon.green { background: rgba(123,74,45,.10); color: var(--blue); }
.afr-icon.teal  { background: rgba(168,112,80,.12); color: var(--teal); }
.afr-icon.gold  { background: rgba(196,150,74,.12); color: var(--gold); }
.afr-icon.navy  { background: rgba(61,35,20,.08);   color: var(--navy); }
.afr-icon i { font-size: .88rem; }

.afr-title {
  font-size: .86rem; font-weight: 800; color: var(--navy);
  margin-bottom: 3px; line-height: 1.3;
}
.afr-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.62; }

/* CTA row */
.about-cta-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.about-btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 24px; border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; font-weight: 700; font-size: .845rem;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 6px 18px rgba(123,74,45,.26);
  transition: all .24s ease;
}
.about-btn-primary:hover { transform: translateY(-2px); }

.about-btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 20px; border-radius: 50px;
  background: transparent; color: var(--navy);
  font-weight: 700; font-size: .845rem;
  border: 1.5px solid var(--border); cursor: pointer; font-family: inherit;
  transition: all .24s ease;
}
.about-btn-ghost:hover { border-color: var(--teal); color: var(--blue); }

/* Mission Strip */
.about-mission-strip {
  margin-top: 52px;
  padding: 36px 44px;
  background: linear-gradient(145deg, #043753 0%, #043753 45%, #043753 80%, #043753 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative; overflow: hidden;
  box-shadow: 0 14px 40px rgba(39,21,9,.22);
  flex-wrap: nowrap;
}
.about-mission-strip::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
}
.ams-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: 280px; height: 280px; right: -50px; top: -60px;
  background: radial-gradient(circle, rgba(196,144,110,.10) 0%, transparent 65%);
}

.ams-left { flex: 1; min-width: 0; position: relative; z-index: 2; }
.ams-quote {
  font-size: 1.5rem; color: var(--teal-light);
  opacity: .5; line-height: 1; margin-bottom: 8px;
}
.ams-text {
  font-size: .88rem; color: rgba(255,255,255,.72);
  line-height: 1.74; font-style: italic;
}
.ams-text strong { color: #fff; font-style: normal; }

.ams-stats {
  display: flex; align-items: center; gap: 0;
  flex-shrink: 0; position: relative; z-index: 2;
}
.ams-stat { text-align: center; padding: 0 22px; }
.ams-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: #fff; line-height: 1;
}
.ams-stat-label {
  font-size: .62rem; font-weight: 700; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .5px; margin-top: 5px;
  white-space: nowrap;
}
.ams-div {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12); flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-section::before { display: none; }
  .about-img-panel { padding-right: 0; padding-bottom: 56px; max-width: 600px; margin: 0 auto; width: 100%; }
  .about-img-wrap { min-height: 400px; }
  .about-cert-badge { display: none; }
  .about-lives-badge { left: 16px; }
  .about-exp-badge { right: 8px; }
  .about-content-panel { padding-left: 0; }
  .about-mission-strip { flex-wrap: wrap; padding: 32px 32px; gap: 28px; }
  .ams-left { flex: 100%; }
  .ams-stats { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .about-section { padding: 56px 0; }
  .about-img-wrap { min-height: 300px; }
  .about-img-panel { padding-bottom: 60px; }
  .about-exp-badge { top: 12px; right: 8px; padding: 10px 14px; min-width: 80px; }
  .aeb-num { font-size: 1.4rem; }
  .aeb-label { font-size: .55rem; }
  .about-lives-badge { left: 8px; bottom: 8px; padding: 10px 13px; gap: 9px; }
  .alb-num { font-size: 1.05rem; }
  .about-heading { font-size: 1.55rem; }
  .about-mission-strip { padding: 24px 20px; margin-top: 36px; border-radius: 14px; }
  .ams-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 100%; }
  .ams-div { display: none; }
  .ams-stat { padding: 0; }
  .ams-stat-num { font-size: 1.6rem; }
  .about-cta-row { flex-direction: column; align-items: stretch; }
  .about-btn-primary, .about-btn-ghost { justify-content: center; }
}
@media (max-width: 380px) {
  .about-heading { font-size: 1.35rem; }
  .ams-stat-num { font-size: 1.4rem; }
  .about-mission-strip { padding: 20px 16px; }
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials-section {
  background: linear-gradient(145deg, #043753 0%, #043753 45%, #043753 80%, #043753 100%);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 52px 52px;
}

.t-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.t-orb-1 {
  width: 500px; height: 500px; left: -180px; top: -120px;
  background: radial-gradient(circle, rgba(123,74,45,.10) 0%, transparent 60%);
}
.t-orb-2 {
  width: 400px; height: 400px; right: -120px; bottom: -100px;
  background: radial-gradient(circle, rgba(196,150,74,.08) 0%, transparent 60%);
}

.testimonials-section .t-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--teal) 35%, var(--gold) 65%, transparent 95%);
}
.testimonials-section .container { position: relative; z-index: 2; }

/* Header */
.t-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.t-header-left .section-tag {
  background: rgba(196,144,110,.16);
  border: 1px solid rgba(196,144,110,.28);
  color: var(--teal-light);
  margin-bottom: 12px;
}
.t-header-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700; color: #fff;
  line-height: 1.2; margin: 0;
}
.t-header-left h2 span { color: var(--teal-light); }

.t-rating-summary {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  flex-shrink: 0;
}
.t-rating-big {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: #fff; line-height: 1;
}
.t-rating-stars { display: flex; gap: 3px; }
.t-rating-stars i { color: #F5A623; font-size: 1.1rem; }
.t-rating-label { font-size: .76rem; color: rgba(255,255,255,.45); font-weight: 600; }

/* Card Grid */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.t-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: all .28s ease;
}
.t-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 18px 18px 0 0;
  opacity: 0; transition: opacity .28s ease;
}
.t-card:nth-child(1)::before { background: linear-gradient(90deg, var(--blue), var(--teal)); }
.t-card:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.t-card:nth-child(3)::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.t-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.30);
}
.t-card:hover::before { opacity: 1; }

/* Featured card */
.t-card.featured {
  background: rgba(123,74,45,.13);
  border-color: rgba(196,144,110,.24);
}
.t-card.featured::before { opacity: 1; }

.t-quote-icon {
  font-size: 2.8rem;
  color: var(--teal-light);
  opacity: .20;
  line-height: 1;
  margin-bottom: 14px;
  font-family: Georgia, serif;
  font-weight: 700;
}
.t-card.featured .t-quote-icon { opacity: .30; }

.t-text {
  font-size: .855rem;
  color: rgba(255,255,255,.72);
  line-height: 1.76;
  flex: 1;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-card.featured .t-text {
  -webkit-line-clamp: 8;
  color: rgba(255,255,255,.80);
}

.t-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.t-stars i { color: #F5A623; font-size: .9rem; }
.t-stars i.half { color: rgba(245,166,35,.40); }

.t-divider {
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  margin-bottom: 16px;
  border-radius: 2px;
}
.t-card:nth-child(3) .t-divider { background: linear-gradient(90deg, var(--gold), transparent); }

.t-author { display: flex; align-items: center; gap: 13px; }

.t-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: #fff;
}
.t-card:nth-child(1) .t-avatar { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.t-card:nth-child(2) .t-avatar { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.t-card:nth-child(3) .t-avatar { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }

.t-author-name { font-size: .9rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.t-author-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .68rem; font-weight: 700; color: var(--teal-light);
  text-transform: uppercase; letter-spacing: .4px;
}
.t-card:nth-child(3) .t-author-tag { color: var(--gold-light); }
.t-author-tag i { font-size: .65rem; }

.t-verified {
  margin-left: auto; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(196,144,110,.20);
  display: flex; align-items: center; justify-content: center;
}
.t-verified i { color: var(--teal-light); font-size: .72rem; }

/* Trust Bar */
.t-trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 20px 32px;
}
.t-trust-item {
  display: flex; align-items: center; gap: 9px;
  padding: 0 28px;
  font-size: .80rem; font-weight: 700;
  color: rgba(255,255,255,.55);
  flex-shrink: 0;
}
.t-trust-item i { color: var(--teal-light); font-size: .85rem; }
.t-trust-sep {
  width: 1px; height: 24px;
  background: rgba(255,255,255,.10); flex-shrink: 0;
}

/* CTA row */
.t-cta-row {
  display: flex; justify-content: center; align-items: center;
  gap: 14px; margin-top: 36px; flex-wrap: wrap;
}
.t-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; font-weight: 700; font-size: .875rem;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 6px 20px rgba(123,74,45,.30);
  transition: all .24s ease;
}
.t-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(123,74,45,.42); }

.t-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 50px;
  background: transparent; color: rgba(255,255,255,.80);
  font-weight: 700; font-size: .875rem;
  border: 1.5px solid rgba(255,255,255,.20); cursor: pointer; font-family: inherit;
  transition: all .24s ease;
}
.t-cta-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.40); }

/* Responsive */
@media (max-width: 960px) {
  .t-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto 40px; }
  .t-card { padding: 26px 22px; }
  .t-card::before { opacity: 1; }
  .t-text { -webkit-line-clamp: none; }
  .t-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .t-rating-summary { align-items: flex-start; }
  .t-trust-bar { gap: 12px; padding: 18px 20px; flex-direction: column; }
  .t-trust-sep { width: 40px; height: 1px; }
  .t-trust-item { padding: 0; }
}
@media (max-width: 640px) {
  .testimonials-section { padding: 64px 0 72px; }
  .t-rating-big { font-size: 2.2rem; }
  .t-cta-row { flex-direction: column; align-items: stretch; }
  .t-cta-primary, .t-cta-ghost { justify-content: center; }
  .t-trust-bar { display: none; }
}
@media (min-width: 768px) and (max-width: 960px) {
  .t-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .t-card:nth-child(3) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
}


/* ============================================
   BLOG SECTION
============================================ */
.blog-section {
  background: var(--bg-gray);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.blog-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(123,74,45,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.blog-section .container { position: relative; z-index: 2; }

/* Header */
.blog-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 16px; margin-bottom: 44px; flex-wrap: wrap;
}
.blog-header-left .section-tag { margin-bottom: 12px; }
.blog-header-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin: 0;
}
.blog-header-left h2 span { color: var(--blue); }

.blog-view-all {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 50px;
  border: 1.5px solid var(--border);
  color: var(--navy); font-weight: 700; font-size: .845rem;
  background: #fff; flex-shrink: 0;
  transition: all .24s ease; text-decoration: none;
}
.blog-view-all:hover { border-color: var(--teal); color: var(--blue); background: var(--bg-light); }

/* Card Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all .28s ease;
  position: relative;
}
.blog-card:hover {
  border-color: transparent;
  box-shadow: 0 14px 44px rgba(61,35,20,.14);
  transform: translateY(-5px);
}

.blog-card-img {
  width: 100%; height: 200px;
  overflow: hidden; position: relative;
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .40s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(39,21,9,.46) 0%, transparent 100%);
}

.blog-card-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 50px;
  background: rgba(255,255,255,.92);
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.blog-card-cat i { font-size: .62rem; color: var(--blue); }

.blog-card-body {
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; flex: 1;
}
.blog-card-title {
  font-size: .95rem; font-weight: 800; color: var(--navy);
  line-height: 1.38; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-excerpt {
  font-size: .80rem; color: var(--text-muted);
  line-height: 1.68; flex: 1; margin-bottom: 18px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.blog-card-date {
  display: flex; align-items: center; gap: 5px;
  font-size: .70rem; color: var(--text-muted); font-weight: 600;
}
.blog-card-date i { font-size: .62rem; }

.blog-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 700; color: var(--blue);
  transition: gap .2s ease;
}
.blog-card-link i { font-size: .65rem; transition: transform .2s ease; }
.blog-card:hover .blog-card-link { gap: 8px; }
.blog-card:hover .blog-card-link i { transform: translateX(2px); }

/* Bottom CTA */
.blog-cta {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
}
.blog-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; font-weight: 700; font-size: .875rem;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 6px 18px rgba(123,74,45,.28);
  transition: all .24s ease; text-decoration: none;
}
.blog-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(123,74,45,.40); }

.blog-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 50px;
  background: #fff; color: var(--navy);
  font-weight: 700; font-size: .875rem;
  border: 1.5px solid var(--border); cursor: pointer; font-family: inherit;
  transition: all .24s ease; text-decoration: none;
}
.blog-btn-ghost:hover { border-color: var(--teal); color: var(--blue); }

/* Responsive */
@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .blog-section { padding: 64px 0 72px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; }
  .blog-cta { flex-direction: column; align-items: stretch; }
  .blog-btn-primary, .blog-btn-ghost { justify-content: center; }
  .blog-card-img { height: 180px; }
}


/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: linear-gradient(170deg, var(--navy-dark) 0%, #1F0E05 50%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 30px 30px;
}

.footer-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.footer-orb-1 {
  width: 480px; height: 480px; left: -160px; bottom: -180px;
  background: radial-gradient(circle, rgba(123,74,45,.08) 0%, transparent 60%);
}
.footer-orb-2 {
  width: 360px; height: 360px; right: -100px; top: -80px;
  background: radial-gradient(circle, rgba(196,150,74,.06) 0%, transparent 60%);
}

.site-footer .container { position: relative; z-index: 2; }

.footer-top-line {
  height: 3px;
  background: linear-gradient(90deg, transparent 3%, var(--teal) 30%, var(--gold) 70%, transparent 97%);
}

/* Pre-footer CTA bar */
.footer-cta-bar {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-cta-bar .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.fcb-label {
  font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--teal-light); margin-bottom: 6px;
}
.fcb-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700; color: #fff; line-height: 1.2;
}
.fcb-title span { color: var(--teal-light); }

.fcb-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.fcb-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; font-weight: 700; font-size: .875rem;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 6px 20px rgba(123,74,45,.32);
  transition: all .24s ease; text-decoration: none;
}
.fcb-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(123,74,45,.46); }

.fcb-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 50px;
  background: transparent; color: rgba(255,255,255,.80);
  font-weight: 700; font-size: .875rem;
  border: 1.5px solid rgba(255,255,255,.20); cursor: pointer; font-family: inherit;
  transition: all .24s ease; text-decoration: none;
}
.fcb-btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.40); }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   MAIN FOOTER BODY
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.footer-body { padding: 64px 0 52px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}

/* Brand col */
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 18px;
}
.footer-logo img {
  height: 52px; width: auto; object-fit: contain;
  filter: brightness(1.1);
}
.footer-logo-text strong {
  display: block; font-size: .95rem; font-weight: 800; color: #fff; line-height: 1.2;
}
.footer-logo-text span {
  font-size: .68rem; color: rgba(255,255,255,.45); font-weight: 600; letter-spacing: .2px;
}

.footer-brand-desc {
  font-size: .82rem; color: rgba(255,255,255,.50);
  line-height: 1.72; margin-bottom: 22px;
}

/* Certifications row */
.footer-certs {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.footer-cert-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 50px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-size: .66rem; font-weight: 700; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .4px;
}
.footer-cert-badge i { color: var(--teal-light); font-size: .65rem; }

/* Social row */
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.60); font-size: .82rem;
  transition: all .22s ease; text-decoration: none;
}
.footer-social-btn:hover {
  background: var(--blue); border-color: var(--blue);
  color: #fff; transform: translateY(-2px);
}
.footer-social-btn.fb:hover { background: #1877F2; border-color: #1877F2; }
.footer-social-btn.tw:hover { background: #1DA1F2; border-color: #1DA1F2; }
.footer-social-btn.li:hover { background: #0A66C2; border-color: #0A66C2; }
.footer-social-btn.ig:hover { background: #E1306C; border-color: #E1306C; }
.footer-social-btn.pi:hover { background: #E60023; border-color: #E60023; }

/* Nav columns */
.footer-col h4 {
  font-size: .72rem; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,.30);
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col ul li a {
  font-size: .825rem; color: rgba(255,255,255,.52); font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: 7px;
  transition: all .20s ease;
}
.footer-col ul li a::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  opacity: 0; transition: opacity .20s ease;
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col ul li a:hover::before { opacity: 1; }

/* Contact col */
.footer-contact-list {
  display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px;
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 11px;
}
.fci-icon {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: rgba(196,144,110,.14);
  border: 1px solid rgba(196,144,110,.22);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.fci-icon i { color: var(--teal-light); font-size: .78rem; }
.fci-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase; color: rgba(255,255,255,.28);
  margin-bottom: 2px;
}
.fci-val {
  font-size: .80rem; font-weight: 700; color: rgba(255,255,255,.75);
  line-height: 1.4;
}
.fci-val a { color: inherit; text-decoration: none; transition: color .2s ease; }
.fci-val a:hover { color: var(--teal-light); }

/* Hours box */
.footer-hours {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 14px 16px;
}
.footer-hours-title {
  font-size: .66rem; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; color: rgba(255,255,255,.30);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.footer-hours-title i { color: var(--teal-light); font-size: .65rem; }
.footer-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .775rem; color: rgba(255,255,255,.55); font-weight: 600;
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.footer-hours-row .day  { color: rgba(255,255,255,.38); }
.footer-hours-row .time { color: rgba(255,255,255,.65); }
.footer-hours-closed {
  font-size: .72rem; color: rgba(255,255,255,.28);
  margin-top: 8px; font-style: italic;
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   FOOTER BOTTOM BAR
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy {
  font-size: .76rem; color: rgba(255,255,255,.28); font-weight: 600;
}
.footer-copy span { color: rgba(255,255,255,.40); }

.footer-bottom-links {
  display: flex; gap: 20px; align-items: center;
}
.footer-bottom-links a {
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.30);
  text-decoration: none; transition: color .2s ease;
}
.footer-bottom-links a:hover { color: var(--teal-light); }
.footer-bottom-links span   { color: rgba(255,255,255,.12); }


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   FLOATING CALL BTN
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.floating-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 0;
}
.floating-call-btn {
  display: flex; align-items: center; gap: 0;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(123,74,45,.44);
  border: none; cursor: pointer;
  overflow: hidden;
  transition: all .32s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  max-width: 52px;
}
.floating-call-btn:hover {
  max-width: 220px;
  box-shadow: 0 12px 36px rgba(123,74,45,.58);
}

.fcall-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.fcall-icon i { color: #fff; font-size: 1.05rem; }

.fcall-text {
  padding-right: 18px; white-space: nowrap; overflow: hidden;
  opacity: 0; transition: opacity .22s ease .08s;
}
.floating-call-btn:hover .fcall-text { opacity: 1; }
.fcall-text strong { display: block; font-size: .78rem; font-weight: 800; color: #fff; line-height: 1.2; }
.fcall-text span   { font-size: .68rem; color: rgba(255,255,255,.72); }

/* Pulse ring */
.fcall-pulse {
  position: absolute; inset: 0; border-radius: 50px;
  animation: fcallPulse 2.4s ease-out infinite;
}
@keyframes fcallPulse {
  0%   { box-shadow: 0 0 0 0   rgba(123,74,45,.50); }
  70%  { box-shadow: 0 0 0 14px rgba(123,74,45,0);  }
  100% { box-shadow: 0 0 0 0   rgba(123,74,45,0);   }
}

/* WhatsApp badge */
.fcall-badge {
  position: absolute; top: -5px; right: -5px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #25D366; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.20);
}
.fcall-badge i { color: #fff; font-size: .48rem; }

/* Scroll-to-top */
.scroll-top-btn {
  position: fixed; bottom: 92px; right: 34px; z-index: 9998;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(39,21,9,.88);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .22s ease;
  opacity: 0; pointer-events: none;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover {
  background: var(--blue); border-color: var(--blue);
  transform: translateY(-2px);
}
.scroll-top-btn i { color: rgba(255,255,255,.80); font-size: .80rem; }

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer-brand { grid-column: 1 / -1; max-width: 480px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .footer-cta-bar .container { flex-direction: column; align-items: flex-start; }
  .fcb-actions { width: 100%; flex-direction: column; }
  .fcb-btn-primary, .fcb-btn-ghost { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .floating-call { bottom: 20px; right: 20px; }
  .scroll-top-btn { bottom: 80px; right: 26px; }
}
@media (max-width: 380px) {
  .footer-body { padding: 48px 0 36px; }
  .fcb-title { font-size: 1.2rem; }
}


/* ============================================
   HOW IT WORKS
============================================ */
.hiw-section {
  background: var(--bg-gray);
  padding: 96px 0 104px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hiw-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

/* Timeline */
.hiw-timeline { position: relative; }
.hiw-line {
  position: absolute;
  top: 27px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg,
    var(--blue)  0%,
    var(--teal)  40%,
    var(--gold)  75%,
    var(--navy)  100%
  );
  z-index: 0; pointer-events: none;
}

/* 4-col grid */
.hiw-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.hiw-col { display: flex; flex-direction: column; align-items: center; }

/* Number circle */
.hiw-circle {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: #fff;
  margin-bottom: 20px; flex-shrink: 0;
  position: relative; z-index: 2;
  box-shadow: 0 6px 20px rgba(61,35,20,.24);
  border: 3px solid var(--bg-gray);
}
.hiw-col:nth-child(1) .hiw-circle { background: var(--blue); }
.hiw-col:nth-child(2) .hiw-circle { background: var(--teal); }
.hiw-col:nth-child(3) .hiw-circle { background: var(--gold); }
.hiw-col:nth-child(4) .hiw-circle { background: var(--navy); }

/* Card */
.hiw-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: all .26s ease;
  position: relative; overflow: hidden;
}
.hiw-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 16px 16px 0 0;
}
.hiw-col:nth-child(1) .hiw-card::before { background: var(--blue); }
.hiw-col:nth-child(2) .hiw-card::before { background: var(--teal); }
.hiw-col:nth-child(3) .hiw-card::before { background: var(--gold); }
.hiw-col:nth-child(4) .hiw-card::before { background: var(--navy); }

.hiw-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 36px rgba(61,35,20,.12);
  transform: translateY(-4px);
}

/* Card icon */
.hiw-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; flex-shrink: 0;
}
.hiw-col:nth-child(1) .hiw-card-icon { background: rgba(123,74,45,.10); color: var(--blue); }
.hiw-col:nth-child(2) .hiw-card-icon { background: rgba(168,112,80,.12); color: var(--teal); }
.hiw-col:nth-child(3) .hiw-card-icon { background: rgba(196,150,74,.12); color: var(--gold); }
.hiw-col:nth-child(4) .hiw-card-icon { background: rgba(61,35,20,.08);   color: var(--navy); }
.hiw-card-icon i { font-size: 1.05rem; }

.hiw-card-text { display: contents; }

.hiw-card h3 {
  font-size: .965rem; font-weight: 800;
  color: var(--navy); margin-bottom: 10px; line-height: 1.3;
}
.hiw-card p {
  font-size: .825rem; color: var(--text-muted);
  line-height: 1.72; margin-bottom: 16px;
}

/* Micro pill */
.hiw-micro {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 50px;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  margin-top: auto;
}
.hiw-col:nth-child(1) .hiw-micro { background: rgba(123,74,45,.09);  color: var(--blue); }
.hiw-col:nth-child(2) .hiw-micro { background: rgba(168,112,80,.10); color: var(--teal); }
.hiw-col:nth-child(3) .hiw-micro { background: rgba(196,150,74,.10); color: var(--gold); }
.hiw-col:nth-child(4) .hiw-micro { background: rgba(61,35,20,.08);   color: var(--navy); }
.hiw-micro i { font-size: .65rem; }

/* Bottom CTA */
.hiw-note {
  text-align: center; margin-top: 52px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.hiw-note p { font-size: .9rem; color: var(--text-muted); }
.hiw-note p strong { color: var(--navy); }
.hiw-note-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hiw-cta-green {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; font-weight: 700; font-size: .875rem;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 6px 20px rgba(123,74,45,.30);
  transition: all .25s ease; text-decoration: none;
}
.hiw-cta-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(123,74,45,.42);
}

/* Responsive Ã¢â‚¬â€ HIW */
@media (max-width: 900px) {
  .hiw-section { padding: 80px 0 88px; }
  .hiw-cols { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hiw-line { display: none; }
  .hiw-col { width: 100%; }
  .hiw-circle { margin-bottom: 16px; }
}
@media (max-width: 560px) {
  .hiw-section { padding: 64px 0 72px; }
  .hiw-header { margin-bottom: 44px; }
  .hiw-cols { grid-template-columns: 1fr; gap: 16px; }
  .hiw-col { flex-direction: row; align-items: flex-start; gap: 14px; }
  .hiw-circle { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 0; flex-shrink: 0; }
  .hiw-card {
    flex: 1; text-align: left; align-items: flex-start;
    flex-direction: row; gap: 14px; padding: 18px;
  }
  .hiw-card-icon { width: 40px; height: 40px; margin-bottom: 0; flex-shrink: 0; margin-top: 2px; }
  .hiw-card-text { display: flex; flex-direction: column; flex: 1; }
  .hiw-card h3 { font-size: .9rem; margin-bottom: 6px; }
  .hiw-card p  { font-size: .79rem; margin-bottom: 10px; }
  .hiw-micro   { align-self: flex-start; }
  .hiw-note { margin-top: 36px; }
  .hiw-note-actions { flex-direction: column; align-items: stretch; }
  .hiw-cta-green { justify-content: center; }
}
@media (max-width: 360px) {
  .hiw-circle  { width: 38px; height: 38px; font-size: .9rem; }
  .hiw-card    { padding: 14px; gap: 10px; }
  .hiw-card-icon { width: 34px; height: 34px; }
}

/* Services Responsive */
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-bottom-strip { flex-direction: column; padding: 28px 24px; }
  .svc-strip-actions { width: 100%; flex-direction: column; }
  .svc-strip-btn-white,
  .svc-strip-btn-outline { width: 100%; justify-content: center; }
  .services-section,
  .hiw-section { padding: 72px 0 80px; }
}
.dropdown-wide { min-width: 320px; }
.dropdown-col-heading,
.drawer-sub-heading {
  display: block;
  font-size: .68rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); padding: 8px 14px 4px;
  pointer-events: none;
}

/* Fix: make dropdown menus scrollable when content overflows viewport */
.dropdown-menu {
  max-height: 80vh;
  overflow-y: auto;
}

.dropdown-menu::-webkit-scrollbar {
  width: 4px;
}
.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--border-solid);
  border-radius: 4px;
}