/* ============================================================
   MORTGAGE MANTRA — GLOBAL STYLESHEET
   Australian Premium Mortgage Broker
   Color Palette: Cyan Ocean Blue + Deep Teal + Ice White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,700&family=Roboto+Condensed:wght@400;500;600;700&family=Roboto+Slab:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Palette — Cyan Ocean Blue (from logo) */
  --navy:        #0B4F6C;
  --navy-mid:    #0D6080;
  --navy-light:  #0F7799;
  --teal:        #009FC2;
  --teal-light:  #5ED3E8;
  --teal-xlight: #A8EAF5;
  --amber:       #00B8D9;       /* repurposed: secondary cyan accent */
  --amber-light: #5ED3E8;       /* repurposed: lighter cyan */
  --sand:        #EAF7FB;       /* light icy blue-white */
  --sand-dark:   #D0EEF5;
  --white:       #FFFFFF;
  --gray-50:     #F5FAFC;
  --gray-100:    #EBF4F8;
  --gray-200:    #D6E9EF;
  --gray-400:    #8AAEBB;
  --gray-600:    #5F6B73;
  --gray-800:    #2D3E47;
  --text:        #1E293B;
  --text-light:  #3D5464;
  --text-muted:  #5F6B73;

  /* Semantic aliases matching HTML usage */
  --color-primary:      #009FC2;
  --color-primary-dark: #0B4F6C;
  --color-secondary:    #5ED3E8;
  --color-bg:           #F5FAFC;
  --color-text:         #1E293B;
  --color-muted:        #5F6B73;

  /* Gradients */
  --grad-navy:   linear-gradient(135deg, #0B4F6C 0%, #0D6080 50%, #009FC2 100%);
  --grad-amber:  linear-gradient(135deg, #009FC2 0%, #5ED3E8 100%);
  --grad-hero:   linear-gradient(135deg, #0B4F6C 0%, #0D6080 40%, #009FC2 100%);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(11,79,108,0.10);
  --shadow-md:   0 4px 20px rgba(11,79,108,0.14);
  --shadow-lg:   0 8px 40px rgba(11,79,108,0.18);
  --shadow-xl:   0 16px 60px rgba(11,79,108,0.24);

  /* Spacing */
  --section-py:  72px;
  --container:   1240px;

  /* Border */
  --radius:      6px;
  --radius-md:   10px;
  --radius-lg:   16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
.roboto-condensed { font-family: 'Roboto Condensed', sans-serif; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal-light);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 14px;
}

.section-title .accent { color: var(--teal); }
.section-title .amber  { color: var(--teal-light); }

.section-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 540px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,159,194,0.38);
  color: var(--white);
  text-decoration: none;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  text-decoration: none;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 0.76rem; }
.btn-lg { padding: 15px 36px; font-size: 0.88rem; }

/* ---- NAVBAR ---- */
#mainNav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1050;
  transition: all 0.3s ease;
  padding: 0;
}

.nav-top-bar {
  background: var(--navy);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.nav-top-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-top-contact a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-top-contact a:hover { color: var(--teal-light); }
.nav-top-contact i { font-size: 0.7rem; color: var(--teal-light); }

.nav-main-bar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.nav-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 66px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--grad-navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
  font-size: 1.1rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Roboto Slab', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-800);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--teal); background: rgba(0,159,194,0.08); }

/* Dropdown */
.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
  z-index: 200;
}
.nav-menu > li:hover .dropdown-menu-custom {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu-custom a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.18s;
}
.dropdown-menu-custom a:hover { background: var(--sand); color: var(--teal); }
.dropdown-menu-custom a i {
  width: 18px; color: var(--teal); font-size: 0.8rem;
}

.nav-cta-wrap { display: flex; gap: 8px; align-items: center; }

/* Mobile toggle */
.navbar-toggler {
  display: none;
  background: none; border: 2px solid var(--navy);
  width: 38px; height: 38px;
  border-radius: var(--radius);
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer; padding: 0;
}
.toggler-bar {
  width: 18px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all 0.25s;
}

/* Scrolled state */
#mainNav.scrolled .nav-top-bar { display: none; }
#mainNav.scrolled .nav-main-bar { box-shadow: var(--shadow-md); }

/* ---- HERO ---- */
.hero-section {
  min-height: 88vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 75% 20%, rgba(94,211,232,0.14) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(0,159,194,0.18) 0%, transparent 45%);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(94,211,232,0.16);
  border: 1px solid rgba(94,211,232,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--teal-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.8); }
}

.hero-h1 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-h1 span { color: var(--teal-light); }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
}
.trust-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); font-size: 0.95rem;
}
.trust-text { display: flex; flex-direction: column; }
.trust-val {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1;
}
.trust-label { font-size: 0.7rem; color: rgba(255,255,255,0.55); }

/* Hero Right Card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
}
.hero-card-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--sand-dark);
}
.hero-card-title span { color: var(--teal); }

.quick-link-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px;
}
.quick-link {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 16px 10px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: all 0.22s;
  cursor: pointer;
}
.quick-link:hover {
  background: var(--navy); border-color: var(--navy);
  transform: translateY(-2px);
  text-decoration: none;
}
.quick-link i { font-size: 1.2rem; color: var(--teal); transition: color 0.22s; }
.quick-link:hover i { color: var(--teal-light); }
.quick-link span {
  font-size: 0.72rem; font-weight: 600; color: var(--text);
  line-height: 1.3; transition: color 0.22s;
}
.quick-link:hover span { color: var(--white); }

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--navy);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Roboto Slab', serif;
  font-size: 2rem; font-weight: 700; color: var(--teal-light); line-height: 1;
  display: block; margin-bottom: 4px;
}
.stat-label {
  font-size: 0.76rem; font-weight: 400; color: rgba(255,255,255,0.55);
}

/* ---- SERVICES SECTION ---- */
.services-section { padding: var(--section-py) 0; background: var(--gray-50); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  padding: 28px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.28s ease;
  text-decoration: none;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--grad-amber);
  border-radius: 2px 0 0 2px;
  opacity: 0;
  transition: opacity 0.28s;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  text-decoration: none;
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,159,194,0.1), rgba(11,79,108,0.08));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--teal);
  transition: all 0.28s;
  border: 1.5px solid rgba(0,159,194,0.18);
}
.service-card:hover .service-icon-wrap {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.22s;
}
.service-card:hover h4 { color: var(--teal); }

.service-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.service-link {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
  transition: gap 0.22s;
}
.service-card:hover .service-link { gap: 10px; color: var(--navy); }

/* ---- WHY CHOOSE US ---- */
.why-section { padding: var(--section-py) 0; background: var(--white); }

.why-item {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); font-size: 1rem;
}
.why-item h5 {
  font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.why-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.why-visual {
  background: var(--grad-hero);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  border: 1px solid rgba(94,211,232,0.2);
  border-radius: 50%;
}
.why-visual-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white);
  margin-bottom: 8px; position: relative;
}
.why-visual-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 28px; }

.step-list { list-style: none; }
.step-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.step-list li:last-child { border-bottom: none; }
.step-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; color: var(--white);
}
.step-list li h6 {
  font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 2px;
}
.step-list li p { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ---- ABOUT STRIP ---- */
.about-strip {
  background: var(--sand);
  padding: var(--section-py) 0;
  border-top: 3px solid var(--teal);
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 380px;
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-photo-initials {
  font-family: 'Roboto Slab', serif;
  font-size: 5rem; font-weight: 700;
  color: rgba(94,211,232,0.22);
}
.about-exp-badge {
  position: absolute; bottom: 20px; right: -10px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.exp-num {
  font-family: 'Roboto Slab', serif;
  font-size: 1.8rem; font-weight: 700; line-height: 1; display: block;
}
.exp-label { font-size: 0.62rem; letter-spacing: 0.1em; opacity: 0.9; display: block; margin-top: 3px; }

.credential-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.credential {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.83rem; font-weight: 500; color: var(--text);
  border-left: 3px solid var(--teal);
}
.credential i { color: var(--teal); font-size: 0.85rem; }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  padding: var(--section-py) 0;
  background: var(--navy);
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
}
.testi-stars { color: var(--teal-light); font-size: 0.85rem; margin-bottom: 14px; }
.testi-quote {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-amber);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 700; color: var(--white); font-size: 0.85rem;
}
.testi-name { font-weight: 700; color: var(--white); font-size: 0.85rem; }
.testi-role { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--grad-amber);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -50%; right: -5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.cta-band p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* ---- CONTACT ---- */
.contact-section { padding: var(--section-py) 0; background: var(--gray-50); }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
}
.contact-info-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.contact-info-sub { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 28px; }

.contact-detail-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-detail-item:last-child { border-bottom: none; }
.ci-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(0,159,194,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); font-size: 0.85rem;
}
.ci-label { font-size: 0.65rem; font-weight: 600; color: var(--teal-light); letter-spacing: 0.12em; text-transform: uppercase; }
.ci-val { font-size: 0.84rem; color: rgba(255,255,255,0.78); margin-top: 2px; }
.ci-val a { color: inherit; text-decoration: none; }
.ci-val a:hover { color: var(--teal-light); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 22px;
}

.form-label {
  font-size: 0.74rem;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 6px;
  display: block;
}

.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--gray-50);
  transition: all 0.2s;
  width: 100%;
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,159,194,0.12);
  outline: none;
}
.form-control::placeholder { color: var(--gray-400); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--grad-hero);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(94,211,232,0.12) 0%, transparent 50%);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.page-hero .lead { color: rgba(255,255,255,0.72); font-size: 0.95rem; font-weight: 300; }
.breadcrumb-custom {
  display: flex; gap: 6px; align-items: center;
  font-size: 0.76rem; margin-bottom: 16px;
}
.breadcrumb-custom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--teal-light); }
.breadcrumb-custom span { color: rgba(255,255,255,0.3); }
.breadcrumb-current { color: var(--teal-light); font-weight: 500; }

/* ---- SERVICE DETAIL ---- */
.service-detail-section { padding: var(--section-py) 0; }
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  padding: 32px 28px;
  margin-bottom: 20px;
}
.feature-list { list-style: none; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; font-size: 0.88rem; color: var(--text-light);
  border-bottom: 1px solid var(--gray-100);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓';
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
  margin-top: 1px;
}

.sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 16px;
}
.sidebar-card h5 {
  color: var(--white); font-size: 0.95rem; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar-links { list-style: none; }
.sidebar-links li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.sidebar-links li a:hover, .sidebar-links li a.active {
  background: rgba(255,255,255,0.08);
  color: var(--teal-light);
}
.sidebar-links li a i { font-size: 0.7rem; }

/* ---- FOOTER ---- */
.footer {
  background: #04111a;
  padding: 52px 0 0;
}
.footer-logo-wrap { margin-bottom: 18px; }
.footer-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  line-height: 1.7; margin-bottom: 18px; max-width: 280px;
}
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 0.78rem;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

.footer-heading {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 8px; }
.footer-links-list a {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-links-list a:hover { color: var(--teal-light); }

.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px;
}
.footer-contact-item i { color: var(--teal-light); font-size: 0.78rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-contact-item a { color: inherit; text-decoration: none; }
.footer-contact-item a:hover { color: var(--teal-light); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  margin-top: 40px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 0.74rem; color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal-light); }

/* ---- UTILITIES ---- */
.text-teal  { color: var(--teal) !important; }
.text-amber { color: var(--teal-light) !important; }
.text-navy  { color: var(--navy) !important; }
.bg-navy    { background: var(--navy) !important; }
.bg-sand    { background: var(--sand) !important; }
.bg-teal    { background: var(--teal) !important; }
.border-teal  { border-color: var(--teal) !important; }
.border-amber { border-color: var(--teal-light) !important; }

.divider-amber {
  width: 48px; height: 3px;
  background: var(--teal-light);
  border-radius: 2px;
  margin-bottom: 20px;
}
.divider-teal {
  width: 48px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 20px;
}

.tag-pill {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-teal  { background: rgba(0,159,194,0.12);  color: var(--teal); }
.tag-amber { background: rgba(94,211,232,1);  color: #0B7E99; }
.tag-navy  { background: rgba(11,79,108,0.08);   color: var(--navy); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* About page */
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1.5px solid var(--gray-200);
  text-align: center;
  transition: all 0.25s;
}
.value-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--grad-navy);
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); font-size: 1.3rem;
}
.value-card h5 { font-size: 0.92rem; color: var(--navy); margin-bottom: 6px; }
.value-card p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* Mobile Offcanvas Nav */
.offcanvas-nav {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--navy);
  z-index: 2000;
  transition: right 0.32s ease;
  overflow-y: auto;
  padding: 24px 20px;
}
.offcanvas-nav.open { right: 0; }
.offcanvas-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  display: none;
}
.offcanvas-overlay.open { display: block; }

.offcanvas-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.offcanvas-close {
  background: rgba(255,255,255,0.1);
  border: none; color: var(--white);
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
}

.mobile-nav-links { list-style: none; }
.mobile-nav-links > li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav-links > li > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 4px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.mobile-nav-links > li > a:hover { color: var(--teal-light); }
.mobile-sub-links { list-style: none; display: none; padding: 4px 0 10px 14px; }
.mobile-sub-links.open { display: block; }
.mobile-sub-links li a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; font-size: 0.82rem; color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.mobile-sub-links li a:hover { color: var(--teal-light); }
.mobile-sub-links li a i { color: var(--teal-light); font-size: 0.72rem; }

/* Responsive */
@media (max-width: 991px) {
  :root { --section-py: 52px; }
  .nav-top-bar { display: none; }
  .nav-menu, .nav-cta-wrap { display: none !important; }
  .navbar-toggler { display: flex; }
  .nav-main-inner { height: 58px; }
  .hero-section { padding-top: 80px; min-height: auto; }
  .hero-card { margin-top: 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .hero-trust { gap: 16px; }
  .hero-h1 { font-size: 2rem; }
}
@media (max-width: 767px) {
  :root { --section-py: 44px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.55rem; }
  .cta-band { padding: 40px 0; text-align: center; }
  .cta-band .d-flex { flex-direction: column; align-items: center !important; gap: 16px !important; }
  .hero-trust { flex-direction: column; gap: 12px; }
}
@media (max-width: 575px) {
  .quick-link-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { text-align: center; }
  .footer-bottom .d-flex { flex-direction: column; gap: 6px; text-align: center; }
}






a{text-decoration:none;color:inherit;}
ul{list-style:none;}

h1,h2,h3,h4,h5,h6{font-family:'Roboto Slab',serif;font-weight:700;line-height:1.2;color:var(--navy);}

/* ── Layout ── */
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 20px;}
.row{display:flex;flex-wrap:wrap;margin:0 -12px;}
.col{flex:1;padding:0 12px;}
.col-5{flex:0 0 41.666%;padding:0 12px;}
.col-7{flex:0 0 58.333%;padding:0 12px;}
.col-4{flex:0 0 33.333%;padding:0 12px;}
.col-6{flex:0 0 50%;padding:0 12px;}
.col-8{flex:0 0 66.666%;padding:0 12px;}
.col-3{flex:0 0 25%;padding:0 12px;}

/* ── Section Label ── */
.section-label{display:inline-flex;align-items:center;gap:10px;font-family:'Roboto Condensed',sans-serif;font-size:0.72rem;font-weight:700;letter-spacing:0.2em;text-transform:uppercase;color:var(--teal);margin-bottom:12px;}
.section-label::before{content:'';display:block;width:28px;height:2px;background:var(--teal-light);flex-shrink:0;}

.section-title{font-family:'Roboto Slab',serif;font-size:clamp(1.75rem,3.5vw,2.6rem);font-weight:700;color:var(--navy);line-height:1.18;margin-bottom:14px;}
.section-title .accent{color:var(--teal);}
.section-title .amber{color:var(--teal-light);}
.section-sub{font-size:0.95rem;font-weight:400;color:var(--text-light);line-height:1.75;max-width:540px;}

/* ── Buttons ── */
.btn{display:inline-flex;align-items:center;gap:8px;font-family:'Roboto Condensed',sans-serif;font-weight:700;font-size:0.82rem;letter-spacing:0.1em;text-transform:uppercase;text-decoration:none;padding:12px 28px;border-radius:var(--radius);border:2px solid transparent;cursor:pointer;transition:all 0.22s ease;white-space:nowrap;}
.btn-primary{background:var(--teal);color:var(--white);border-color:var(--teal);}
.btn-primary:hover{background:var(--teal-light);border-color:var(--teal-light);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,159,194,0.38);color:var(--white);}
.btn-navy{background:var(--navy);color:var(--white);border-color:var(--navy);}
.btn-navy:hover{background:var(--navy-mid);border-color:var(--navy-mid);transform:translateY(-2px);box-shadow:var(--shadow-md);color:var(--white);}
.btn-outline-white{background:transparent;color:var(--white);border-color:rgba(255,255,255,0.6);}
.btn-outline-white:hover{background:var(--white);color:var(--navy);border-color:var(--white);}
.btn-outline-navy{background:transparent;color:var(--navy);border-color:var(--navy);}
.btn-outline-navy:hover{background:var(--navy);color:var(--white);}
.btn-teal{background:var(--teal);color:var(--white);border-color:var(--teal);}
.btn-teal:hover{background:var(--teal-light);border-color:var(--teal-light);color:var(--white);transform:translateY(-2px);}
.btn-sm{padding:9px 20px;font-size:0.76rem;}
.btn-lg{padding:15px 36px;font-size:0.88rem;}

/* ── Scroll Reveal ── */
.reveal{opacity:0;transform:translateY(22px);transition:opacity 0.6s ease,transform 0.6s ease;}
.reveal.in{opacity:1;transform:translateY(0);}
.reveal-d1{transition-delay:0.1s;}
.reveal-d2{transition-delay:0.2s;}
.reveal-d3{transition-delay:0.3s;}
.reveal-d4{transition-delay:0.4s;}
.reveal-d5{transition-delay:0.5s;}

/* ── Dividers ── */
.divider-teal{width:48px;height:3px;background:var(--teal);border-radius:2px;margin-bottom:20px;}
.divider-amber{width:48px;height:3px;background:var(--teal-light);border-radius:2px;margin-bottom:20px;}

/* ── Tag pills ── */
.tag-pill{display:inline-flex;padding:4px 12px;border-radius:100px;font-size:0.7rem;font-weight:600;letter-spacing:0.06em;text-transform:uppercase;}
.tag-teal{background:rgba(0,159,194,0.12);color:var(--teal);}
.tag-navy{background:rgba(11,79,108,0.08);color:var(--navy);}

/* ════════════════════════════════════════════════════
   TOP BAR
   ════════════════════════════════════════════════════ */
.nav-top-bar{background:var(--navy);padding:7px 0;border-bottom:1px solid rgba(255,255,255,0.08);}
.nav-top-inner{display:flex;justify-content:space-between;align-items:center;max-width:var(--container);margin:0 auto;padding:0 20px;}
.nav-top-contact{display:flex;gap:24px;align-items:center;}
.nav-top-contact a{font-size:0.76rem;color:rgba(255,255,255,0.72);text-decoration:none;display:flex;align-items:center;gap:6px;transition:color 0.2s;}
.nav-top-contact a:hover{color:var(--teal-light);}
.nav-top-contact svg{width:12px;height:12px;stroke:var(--teal-light);fill:none;}
.nav-top-right{display:flex;align-items:center;gap:16px;}
.nav-top-badge{background:rgba(94,211,232,0.15);border:1px solid rgba(94,211,232,0.35);color:var(--teal-light);padding:3px 12px;border-radius:100px;font-size:0.7rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;}

/* ════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════ */
#mainNav{position:fixed;top:0;left:0;width:100%;z-index:1050;transition:all 0.3s ease;padding:0;}
.nav-main-bar{background:var(--white);box-shadow:var(--shadow-sm);padding:0;}
.nav-main-inner{display:flex;align-items:center;justify-content:space-between;max-width:var(--container);margin:0 auto;padding:0 20px;height:66px;}

/* Logo */
.nav-logo{text-decoration:none;display:flex;align-items:center;gap:10px;}
.logo-icon{width:40px;height:40px;background:var(--grad-navy);border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--teal-light);font-size:1.1rem;font-family:'Roboto Slab',serif;font-weight:700;}
.logo-text-wrap{display:flex;flex-direction:column;}
.logo-name{font-family:'Roboto Slab',serif;font-size:1.15rem;font-weight:700;color:var(--navy);line-height:1;}
.logo-sub{font-size:0.6rem;font-weight:500;color:var(--teal);letter-spacing:0.15em;text-transform:uppercase;}

/* Nav links */
.nav-menu{display:flex;align-items:center;gap:4px;list-style:none;}
.nav-menu>li{position:relative;}
.nav-menu>li>a{display:flex;align-items:center;gap:4px;padding:8px 14px;font-family:'Roboto Condensed',sans-serif;font-size:0.82rem;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;color:var(--gray-800);text-decoration:none;border-radius:var(--radius);transition:all 0.2s;}
.nav-menu>li>a:hover,.nav-menu>li>a.active{color:var(--teal);background:rgba(0,159,194,0.08);}
.nav-cta-wrap{display:flex;gap:8px;align-items:center;}
.navbar-toggler{display:none;background:none;border:2px solid var(--navy);width:38px;height:38px;border-radius:var(--radius);flex-direction:column;justify-content:center;align-items:center;gap:5px;cursor:pointer;padding:0;}
.toggler-bar{width:18px;height:2px;background:var(--navy);border-radius:2px;transition:transform .25s ease,opacity .2s ease;}
#mainNav.scrolled .nav-top-bar{display:none;}
#mainNav.scrolled .nav-main-bar{box-shadow:var(--shadow-md);}

/* ════════════════════════════════════════════════════
   HERO SLIDER  — full-viewport cinematic
   ════════════════════════════════════════════════════ */
.hero-slider-wrap{position:relative;width:100%;height:100vh;min-height:640px;overflow:hidden;}

/* Progress bar */
.slider-progress-bar{position:absolute;top:0;left:0;height:3px;width:0;background:var(--grad-amber);z-index:40;transition:width .12s linear;}

/* Slides */
.hslide{position:absolute;inset:0;opacity:0;pointer-events:none;transition:opacity .08s;}
.hslide.active{opacity:1;pointer-events:auto;}

/* BG zoom */
.hslide-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.06);transition:transform 7.5s cubic-bezier(0.25,0.46,0.45,0.94);}
.hslide.active .hslide-bg{transform:scale(1);}

/* Overlay gradient — matching hero-pattern from style.css */
.hslide-overlay{position:absolute;inset:0;background:linear-gradient(105deg,rgba(11,79,108,0.93) 0%,rgba(13,96,128,0.78) 46%,rgba(0,159,194,0.25) 100%);}

/* Grid texture — matching hero-grid-overlay */
.hslide-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);background-size:60px 60px;pointer-events:none;}

/* Radial glow — matching hero-pattern */
.hslide-glow{position:absolute;inset:0;background-image:radial-gradient(circle at 75% 20%,rgba(94,211,232,0.14) 0%,transparent 45%),radial-gradient(circle at 15% 80%,rgba(0,159,194,0.18) 0%,transparent 45%);pointer-events:none;}

/* Illustration pane */
.hslide-illo{position:absolute;inset:0;display:flex;align-items:center;justify-content:flex-end;padding-right:80px;opacity:0;transform:translateX(28px);transition:opacity 1s .5s ease,transform 1s .5s ease;}
.hslide.active .hslide-illo{opacity:1;transform:translateX(0);}
.hslide-illo svg{width:430px;height:370px;flex-shrink:0;}

/* Content — left column only; right side reserved for illo / dots */
.hslide-content{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;padding:120px 60px 160px 60px;max-width:700px;}

/* Stagger animation */
.hslide-badge,.hslide-h1,.hslide-sub,.hslide-actions,.hslide-trust{opacity:0;transform:translateY(22px);}
.hslide.active .hslide-badge  {animation:sIn .65s .25s ease forwards;}
.hslide.active .hslide-h1     {animation:sIn .75s .42s ease forwards;}
.hslide.active .hslide-sub    {animation:sIn .65s .60s ease forwards;}
.hslide.active .hslide-actions{animation:sIn .65s .76s ease forwards;}
.hslide.active .hslide-trust  {animation:sIn .65s .90s ease forwards;}
@keyframes sIn{to{opacity:1;transform:translateY(0);}}

/* Badge — matching hero-badge */
.hslide-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(94,211,232,0.16);border:1px solid rgba(94,211,232,0.4);border-radius:100px;padding:6px 16px;margin-bottom:20px;font-size:0.73rem;font-weight:600;color:var(--teal-light);letter-spacing:0.1em;text-transform:uppercase;width:fit-content;}
.hslide-badge .dot{width:6px;height:6px;background:var(--teal-light);border-radius:50%;animation:pulse 2s infinite;}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(.8);}}

/* H1 — matching hero-h1 */
.hslide-h1{font-family:'Roboto Slab',serif;font-size:clamp(2.2rem,5vw,3.8rem);font-weight:700;color:var(--white);line-height:1.1;margin-bottom:20px;}
.hslide-h1 span{color:var(--teal-light);}

/* Sub — matching hero-sub */
.hslide-sub{font-size:1rem;color:rgba(255,255,255,0.78);line-height:1.75;max-width:500px;margin-bottom:32px;font-weight:300;}

/* Actions */
.hslide-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:36px;}

/* Trust items — matching hero-trust */
.hslide-trust{display:flex;gap:28px;flex-wrap:wrap;padding-top:28px;border-top:1px solid rgba(255,255,255,0.12);}
.trust-item{display:flex;align-items:center;gap:10px;}
.trust-icon{width:36px;height:36px;background:rgba(255,255,255,0.1);border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--teal-light);}
.trust-icon svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;}
.trust-text{display:flex;flex-direction:column;}
.trust-val{font-family:'Roboto Slab',serif;font-size:1rem;font-weight:700;color:var(--white);line-height:1;}
.trust-label{font-size:0.7rem;color:rgba(255,255,255,0.55);}

/* Slide colours */
.hs1 .hslide-bg{background:linear-gradient(130deg,#063244 0%,#0B4F6C 55%,#0D6080 100%);}
.hs2 .hslide-bg{background:linear-gradient(130deg,#042a1e 0%,#075040 55%,#0a6b52 100%);}
.hs3 .hslide-bg{background:linear-gradient(130deg,#1a1205 0%,#261a07 55%,#0B4F6C 100%);}
.hs4 .hslide-bg{background:linear-gradient(130deg,#050f1e 0%,#0B2040 55%,#0B4F6C 100%);}

/* ── Stats strip ── matching stats-strip / stat-item */
.stats-strip{background:var(--navy);padding:0;position:absolute;bottom:0;left:0;right:0;z-index:20;}
.stats-inner{display:grid;grid-template-columns:repeat(4,1fr);max-width:var(--container);margin:0 auto;}
.stat-item{padding:22px 24px;text-align:center;border-right:1px solid rgba(255,255,255,0.08);}
.stat-item:last-child{border-right:none;}
.stat-num{font-family:'Roboto Slab',serif;font-size:2rem;font-weight:700;color:var(--teal-light);line-height:1;display:block;margin-bottom:4px;}
.stat-label{font-size:0.76rem;font-weight:400;color:rgba(255,255,255,0.55);}

/* ── Slider controls ──
   stats-strip is ~84px; nav arrows sit 16px above it.
   Dots float vertically centred in the slide area (above stats). */
.slider-nav-btns{position:absolute;left:60px;bottom:100px;z-index:30;display:flex;gap:10px;}
.slider-arrow{width:42px;height:42px;border:2px solid rgba(255,255,255,0.28);border-radius:50%;background:transparent;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:border-color .25s,background .25s;}
.slider-arrow:hover{border-color:var(--teal-light);background:rgba(94,211,232,0.15);}
.slider-arrow svg{width:15px;height:15px;stroke:#fff;stroke-width:2;fill:none;}

.slider-dots{position:absolute;right:36px;top:50%;transform:translateY(-50%);z-index:30;display:flex;flex-direction:column;gap:8px;}
.sdot{width:6px;height:6px;border-radius:3px;background:rgba(255,255,255,0.3);cursor:pointer;transition:background .3s,height .3s;}
.sdot.active{background:var(--teal-light);height:20px;}

/* ════════════════════════════════════════════════════
   SERVICE FINDER STRIP
   ════════════════════════════════════════════════════ */
.finder-strip{background:var(--navy-mid);border-bottom:1px solid rgba(255,255,255,0.08);}
.finder-inner{display:flex;align-items:center;overflow-x:auto;scrollbar-width:none;max-width:var(--container);margin:0 auto;padding:0 20px;}
.finder-inner::-webkit-scrollbar{display:none;}
.finder-label{font-family:'Roboto Condensed',sans-serif;font-size:0.68rem;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:var(--teal-light);white-space:nowrap;padding:16px 24px 16px 0;border-right:1px solid rgba(255,255,255,0.1);margin-right:16px;flex-shrink:0;}
.finder-link{white-space:nowrap;font-family:'Roboto Condensed',sans-serif;font-size:0.78rem;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;color:rgba(255,255,255,0.6);padding:16px 18px;border-right:1px solid rgba(255,255,255,0.06);transition:color .2s,background .2s;}
.finder-link:last-child{border-right:none;}
.finder-link:hover{color:var(--teal-light);background:rgba(94,211,232,0.06);}

/* ════════════════════════════════════════════════════
   SERVICES SECTION — matching services-section / service-card
   ════════════════════════════════════════════════════ */
.services-section{padding:var(--section-py) 0;background:var(--gray-50);}
.services-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:40px;gap:24px;}

.service-card{background:var(--white);border-radius:var(--radius-md);border:1.5px solid var(--gray-200);padding:28px 24px;height:100%;position:relative;overflow:hidden;transition:all .28s ease;text-decoration:none;display:flex;flex-direction:column;}
.service-card::before{content:'';position:absolute;top:0;left:0;width:4px;height:100%;background:var(--grad-amber);border-radius:2px 0 0 2px;opacity:0;transition:opacity .28s;}
.service-card:hover{border-color:var(--teal);box-shadow:var(--shadow-lg);transform:translateY(-4px);}
.service-card:hover::before{opacity:1;}

.service-icon-wrap{width:52px;height:52px;background:linear-gradient(135deg,rgba(0,159,194,0.1),rgba(11,79,108,0.08));border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--teal);transition:all .28s;border:1.5px solid rgba(0,159,194,0.18);}
.service-icon-wrap svg{width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:1.8;}
.service-card:hover .service-icon-wrap{background:var(--teal);color:var(--white);border-color:var(--teal);}

.service-card h4{font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:8px;transition:color .22s;}
.service-card:hover h4{color:var(--teal);}
.service-card p{font-size:0.84rem;color:var(--text-muted);line-height:1.7;flex:1;margin-bottom:16px;}
.service-link{font-family:'Roboto Condensed',sans-serif;font-size:0.76rem;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:var(--teal);display:flex;align-items:center;gap:6px;text-decoration:none;transition:gap .22s;}
.service-card:hover .service-link{gap:10px;color:var(--navy);}

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

/* ════════════════════════════════════════════════════
   WHY SECTION — matching why-section / why-item / why-visual
   ════════════════════════════════════════════════════ */
.why-section{padding:var(--section-py) 0;background:var(--white);}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;}

.why-item{display:flex;gap:16px;padding:20px 0;border-bottom:1px solid var(--gray-100);}
.why-item:last-child{border-bottom:none;}
.why-icon{width:44px;height:44px;flex-shrink:0;background:linear-gradient(135deg,var(--navy),var(--navy-mid));border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--teal-light);}
.why-icon svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.8;}
.why-item h5{font-size:0.92rem;font-weight:700;color:var(--navy);margin-bottom:4px;}
.why-item p{font-size:0.82rem;color:var(--text-muted);line-height:1.6;}

.why-visual{background:var(--grad-hero);border-radius:var(--radius-lg);padding:40px 36px;position:relative;overflow:hidden;}
.why-visual::before{content:'';position:absolute;top:-40px;right:-40px;width:200px;height:200px;border:1px solid rgba(94,211,232,0.2);border-radius:50%;}
.why-visual-title{font-family:'Roboto Slab',serif;font-size:1.4rem;font-weight:700;color:var(--white);margin-bottom:8px;position:relative;}
.why-visual-sub{font-size:0.85rem;color:rgba(255,255,255,0.6);margin-bottom:28px;}

.step-list{list-style:none;}
.step-list li{display:flex;gap:14px;align-items:flex-start;padding:12px 0;border-bottom:1px solid rgba(255,255,255,0.08);}
.step-list li:last-child{border-bottom:none;}
.step-num{width:28px;height:28px;flex-shrink:0;background:var(--teal);border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:'Roboto Condensed',sans-serif;font-size:0.72rem;font-weight:700;color:var(--white);}
.step-list li h6{font-size:0.85rem;font-weight:700;color:var(--white);margin-bottom:2px;}
.step-list li p{font-size:0.78rem;color:rgba(255,255,255,0.55);}

/* ════════════════════════════════════════════════════
   ABOUT STRIP — matching about-strip / about-photo
   ════════════════════════════════════════════════════ */
.about-strip{background:var(--sand);padding:var(--section-py) 0;border-top:3px solid var(--teal);}
.about-grid{display:grid;grid-template-columns:300px 1fr;gap:52px;align-items:start;}

.about-photo{width:100%;aspect-ratio:4/5;max-width:280px;background:var(--grad-navy);border-radius:var(--radius-lg);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;}
.about-photo-initials{font-family:'Roboto Slab',serif;font-size:5rem;font-weight:700;color:rgba(94,211,232,0.22);}
.about-exp-badge{position:absolute;bottom:20px;right:-10px;background:var(--teal);color:var(--white);border-radius:var(--radius-md);padding:14px 18px;text-align:center;box-shadow:var(--shadow-lg);}
.exp-num{font-family:'Roboto Slab',serif;font-size:1.8rem;font-weight:700;line-height:1;display:block;}
.exp-label{font-size:0.62rem;letter-spacing:0.1em;opacity:.9;display:block;margin-top:3px;}

.credential-list{display:flex;flex-direction:column;gap:10px;margin-top:20px;}
.credential{display:flex;align-items:center;gap:10px;padding:10px 14px;background:var(--white);border-radius:var(--radius);font-size:0.83rem;font-weight:500;color:var(--text);border-left:3px solid var(--teal);}
.credential svg{width:14px;height:14px;stroke:var(--teal);fill:none;flex-shrink:0;}

.about-tags{display:flex;flex-wrap:wrap;gap:8px;margin:16px 0 24px;}
.about-btns{display:flex;gap:12px;flex-wrap:wrap;}

/* ════════════════════════════════════════════════════
   TESTIMONIALS — matching testimonials-section / testi-card
   ════════════════════════════════════════════════════ */
.testimonials-section{padding:var(--section-py) 0;background:var(--navy);}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:40px;}

.testi-card{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);border-radius:var(--radius-md);padding:28px 24px;height:100%;}
.testi-stars{color:var(--teal-light);font-size:0.85rem;margin-bottom:14px;display:flex;gap:3px;}
.testi-stars svg{width:14px;height:14px;fill:var(--teal-light);}
.testi-quote{font-size:0.88rem;color:rgba(255,255,255,0.8);line-height:1.75;font-style:italic;margin-bottom:20px;}
.testi-author{display:flex;align-items:center;gap:12px;}
.testi-avatar{width:40px;height:40px;border-radius:50%;background:var(--grad-amber);display:flex;align-items:center;justify-content:center;font-family:'Roboto Slab',serif;font-weight:700;color:var(--white);font-size:0.85rem;flex-shrink:0;}
.testi-name{font-weight:700;color:var(--white);font-size:0.85rem;}
.testi-role{font-size:0.72rem;color:rgba(255,255,255,0.45);}

/* ════════════════════════════════════════════════════
   CTA BAND — matching cta-band
   ════════════════════════════════════════════════════ */
.cta-band{background:var(--grad-amber);padding:56px 0;position:relative;overflow:hidden;}
.cta-band::before{content:'';position:absolute;top:-50%;right:-5%;width:400px;height:400px;background:rgba(255,255,255,0.08);border-radius:50%;}
.cta-band h2{color:var(--white);font-size:clamp(1.6rem,3vw,2.2rem);}
.cta-band p{color:rgba(255,255,255,0.85);font-size:0.95rem;}
.cta-inner-flex{display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;position:relative;z-index:1;}
.cta-text{}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;flex-shrink:0;}

/* ════════════════════════════════════════════════════
   FOOTER — matching footer styles
   ════════════════════════════════════════════════════ */
.footer{background:#04111a;padding:52px 0 0;}
.footer-grid{display:grid;grid-template-columns:2.2fr 1fr 1fr 1.2fr;gap:40px;margin-bottom:40px;}
.footer-logo-wrap{margin-bottom:18px;}
.footer-desc{font-size:0.82rem;color:rgba(255,255,255,0.45);line-height:1.7;margin-bottom:18px;max-width:280px;}
.footer-social{display:flex;gap:8px;}
.social-btn{width:34px;height:34px;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:8px;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.5);text-decoration:none;font-size:0.78rem;transition:all .2s;}
.social-btn:hover{background:var(--teal);color:var(--white);border-color:var(--teal);}
.social-btn svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;}
.footer-heading{font-family:'Roboto Condensed',sans-serif;font-size:0.68rem;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:var(--teal-light);margin-bottom:14px;}
.footer-links-list{list-style:none;}
.footer-links-list li{margin-bottom:8px;}
.footer-links-list a{font-size:0.82rem;color:rgba(255,255,255,0.5);text-decoration:none;transition:color .2s;}
.footer-links-list a:hover{color:var(--teal-light);}
.footer-contact-item{display:flex;gap:10px;align-items:flex-start;margin-bottom:12px;}
.footer-contact-item svg{width:13px;height:13px;stroke:var(--teal-light);fill:none;margin-top:3px;flex-shrink:0;}
.footer-contact-item span{font-size:0.8rem;color:rgba(255,255,255,0.5);line-height:1.5;}
.footer-contact-item a{color:inherit;}
.footer-contact-item a:hover{color:var(--teal-light);}
.footer-bottom{background:rgba(0,0,0,0.3);margin-top:40px;padding:16px 0;border-top:1px solid rgba(255,255,255,0.06);}
.footer-bottom-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:8px;}
.footer-bottom p{font-size:0.74rem;color:rgba(255,255,255,0.3);margin:0;}
.footer-bottom a{color:rgba(255,255,255,0.4);text-decoration:none;}
.footer-bottom a:hover{color:var(--teal-light);}
.footer-mark{font-family:'Roboto Condensed',sans-serif;font-size:0.68rem;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:rgba(0,159,194,0.4);}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1100px
   ══════════════════════════════════════════════ */
@media(max-width:1100px){
  .hslide-illo svg{width:340px;height:290px;}
  .hslide-content{max-width:580px;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px;}
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 991px
   ══════════════════════════════════════════════ */
@media(max-width:991px){
  :root{--section-py:52px;}

  /* Top bar */
  .nav-top-bar{display:none;}

  /* Nav — hide links, show hamburger */
  .nav-menu{display:none!important;}
  .nav-cta-wrap{display:none!important;}
  .navbar-toggler{display:flex;}

  /* Mobile nav drawer */
  .mobile-nav{
    display:none;
    position:fixed;top:66px;left:0;right:0;
    background:var(--white);
    box-shadow:var(--shadow-lg);
    z-index:1049;
    padding:16px 20px 24px;
    flex-direction:column;
    gap:4px;
    border-top:2px solid var(--teal);
  }
  .mobile-nav.open{display:flex;}
  .mobile-nav a{
    display:block;padding:12px 16px;
    font-family:'Roboto Condensed',sans-serif;font-size:0.9rem;font-weight:600;
    letter-spacing:0.05em;text-transform:uppercase;color:var(--navy);
    border-radius:var(--radius);transition:background .2s,color .2s;
  }
  .mobile-nav a:hover{background:rgba(0,159,194,0.08);color:var(--teal);}
  .mobile-nav .mobile-cta{
    margin-top:12px;background:var(--teal);color:var(--white);
    text-align:center;padding:13px 16px;border-radius:var(--radius);
  }
  .mobile-nav .mobile-cta:hover{background:var(--navy);color:var(--white);}

  /* Hero */
  .hslide-illo{display:none;}
  .hslide-content{max-width:100%;padding:110px 32px 160px;}
  .hslide-trust{gap:16px;}
  .slider-dots{right:20px;}
  .slider-nav-btns{left:32px;bottom:100px;}

  /* Stats */
  .stats-inner{grid-template-columns:repeat(2,1fr);}
  .stat-item{padding:16px 20px;}

  /* Finder */
  .finder-strip{display:none;}

  /* Services */
  .services-head{flex-direction:column;align-items:flex-start;}
  .services-grid{grid-template-columns:repeat(2,1fr);}

  /* Why */
  .why-grid{grid-template-columns:1fr;gap:36px;}
  .why-visual{padding:28px 24px;}

  /* About */
  .about-grid{grid-template-columns:1fr;gap:32px;}
  .about-photo{max-width:180px;aspect-ratio:1/1;}
  .about-photo-initials{font-size:3.5rem;}

  /* Testimonials */
  .testi-grid{grid-template-columns:1fr;}

  /* Footer */
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px;}
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 767px
   ══════════════════════════════════════════════ */
@media(max-width:767px){
  :root{--section-py:44px;}

  /* Hero */
  .hero-slider-wrap{height:auto;min-height:100svh;}
  .hslide-content{padding:100px 20px 170px;}
  .hslide-h1{font-size:clamp(1.7rem,7vw,2.4rem);}
  .hslide-sub{font-size:0.9rem;}
  .hslide-badge{font-size:0.68rem;padding:5px 12px;}
  .hslide-actions{flex-direction:column;gap:10px;}
  .hslide-actions .btn{width:100%;justify-content:center;}
  .hslide-trust{gap:12px;}
  .trust-item{flex-direction:column;align-items:flex-start;gap:5px;}
  .slider-nav-btns{left:20px;bottom:100px;gap:8px;}
  .slider-arrow{width:36px;height:36px;}
  .slider-dots{right:14px;}

  /* Stats */
  .stats-inner{grid-template-columns:repeat(2,1fr);}
  .stat-num{font-size:1.5rem;}
  .stat-label{font-size:0.68rem;}
  .stat-item{padding:14px 12px;}

  /* Nav */
  .nav-main-inner{padding:0 16px;}
  .logo-name{font-size:1rem;}
  .logo-sub{display:none;}

  /* Services */
  .services-section{padding:var(--section-py) 0;}
  .services-grid{grid-template-columns:1fr;}
  .services-head .btn{width:100%;text-align:center;justify-content:center;}

  /* Why */
  .why-item{flex-direction:column;gap:10px;}
  .step-list li{flex-direction:column;gap:8px;}

  /* About */
  .about-grid{gap:24px;}
  .about-photo{max-width:140px;}
  .about-btns{flex-direction:column;}
  .about-btns .btn{width:100%;justify-content:center;}
  .credential-list{gap:8px;}

  /* Section titles */
  .section-title{font-size:clamp(1.4rem,6vw,2rem);}

  /* CTA */
  .cta-band{padding:40px 0;}
  .cta-inner-flex{flex-direction:column;text-align:center;gap:20px;}
  .cta-actions{flex-direction:column;width:100%;}
  .cta-actions .btn{width:100%;justify-content:center;}

  /* Footer */
  .footer-grid{grid-template-columns:1fr;gap:24px;}
  .footer-bottom-inner{flex-direction:column;text-align:center;gap:6px;}
  .footer-desc{max-width:100%;}
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 480px
   ══════════════════════════════════════════════ */
@media(max-width:480px){
  .hslide-h1{font-size:1.65rem;}
  .stats-inner{grid-template-columns:repeat(2,1fr);}
  .hslide-trust{display:none;}  /* hide trust bar on very small screens to free space */
  .slider-nav-btns{bottom:88px;}
}

.slider-nav-btns
{
  display:none;
}
/* ============================================================
   ADDED 2026-08-09 — styles previously inlined in PHP templates,
   moved here so they are cached and consistent across pages.
   ============================================================ */

/* ── Accessibility helpers ── */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--navy); color: #fff; padding: 10px 18px;
  border-radius: 0 0 6px 0; font-size: .9rem; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ── Premium footer ── */
.premium-footer { background: #04111a; padding: 72px 0 0; color: rgba(255,255,255,0.6); position: relative; border-top: 4px solid var(--teal); }
.premium-footer .footer-heading { font-family: 'Roboto Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.premium-footer .footer-links-list { list-style: none; padding: 0; margin: 0; }
.premium-footer .footer-links-list li { margin-bottom: 12px; }
.premium-footer .footer-links-list a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: all 0.25s ease; display: inline-flex; align-items: center; }
.premium-footer .footer-links-list a::before { content: '\203A'; margin-right: 8px; color: var(--teal); opacity: 0; transform: translateX(-10px); transition: all 0.25s ease; }
.premium-footer .footer-links-list a:hover { color: var(--teal-light); transform: translateX(5px); }
.premium-footer .footer-links-list a:hover::before { opacity: 1; transform: translateX(0); }

.premium-footer .contact-block { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.premium-footer .contact-icon-wrap { width: 36px; height: 36px; background: rgba(0,159,194,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--teal-light); font-size: 0.9rem; flex-shrink: 0; transition: background 0.3s ease; }
.premium-footer .contact-block:hover .contact-icon-wrap { background: var(--teal); color: var(--white); }
.premium-footer .contact-text { font-size: 0.88rem; line-height: 1.6; padding-top: 4px; }
.premium-footer .contact-text a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.premium-footer .contact-text a:hover { color: var(--teal-light); }

.premium-footer .social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: all 0.25s ease; }
.premium-footer .social-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); transform: translateY(-3px); }

.premium-footer .footer-bottom { background: rgba(0,0,0,0.4); margin-top: 50px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.78rem; }
.premium-footer .footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.premium-footer .footer-bottom a:hover { color: var(--teal-light); }

/* ── Service page sidebar links ── */
.sidebar-links .sidebar-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; font-size: 0.83rem; text-decoration: none;
  border-radius: var(--radius); transition: background .2s, color .2s;
  color: rgba(255,255,255,0.7); background: transparent;
}
.sidebar-links .sidebar-link:hover,
.sidebar-links .sidebar-link.is-current { background: rgba(255,255,255,0.08); color: var(--teal-light); }
.sidebar-links .sidebar-link i:first-child { width: 20px; text-align: center; margin-right: 6px; }

/* ── Respect reduced-motion preferences ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
