/* ============================================================
   SECURE MY KEYS — Custom Theme
   Palette : Navy #10354f  |  Gold #d1ad43
   Fonts   : Poppins (body) + Montserrat (headings)
   Scale   : 14px / 18px / 22px
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ── Root Variables ── */
:root {
  --navy: #10354f;
  --navy-dark: #0c2740;
  --navy-light: #1b4b70;
  --gold: #d1ad43;
  --gold-dark: #b8952e;
  --gold-light: #e2c46a;
  --surface: #f8f8f8;
  --charcoal: #111111;
  --mid: #666666;
  --border: #e5e5e5;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 16px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.08), 0 24px 48px rgba(0, 0, 0, 0.1);
  --nav-height: 72px;
  --transition: 0.25s ease;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--surface);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
/* #navbar stale rules removed — header is now #site-header */

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  white-space: nowrap;
  transition:
    background var(--transition),
    transform var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--white);
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

#mobile-menu.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    color var(--transition),
    padding-left var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  padding-left: 0.5rem;
}

.mobile-cta {
  display: block;
  margin-top: 1.25rem;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  background: var(--gold);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-cta:hover {
  background: var(--gold-dark);
}

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: 6px;
  padding: 0.4rem 1.1rem;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(15, 44, 92, 0.35);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(201, 151, 58, 0.4);
}

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-sm {
  font-size: 12px;
  padding: 0.3rem 0.85rem;
  border-radius: 5px;
}
.btn-lg {
  font-size: 14px;
  padding: 0.5rem 1.5rem;
  border-radius: 7px;
}

/* ════════════════════════════════════════════
   SECTION UTILITIES
   ════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-heading-white {
  color: var(--white);
}

.section-body {
  font-size: 15px;
  font-weight: 500;
  color: var(--mid);
  max-width: 56ch;
  line-height: 1.75;
}

.section-body-white {
  color: rgba(255, 255, 255, 0.72);
}

.divider-gold {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 1rem 0;
}

/* Centered section header */
.section-center {
  text-align: center;
}
.section-center .section-label {
  justify-content: center;
}
.section-center .section-body {
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 26, 61, 0.92) 0%,
    rgba(15, 44, 92, 0.75) 55%,
    rgba(15, 44, 92, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 3rem) 1.5rem 6rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 151, 58, 0.18);
  border: 1px solid rgba(201, 151, 58, 0.4);
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.hero-title .highlight {
  color: var(--gold);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 600px;
  backdrop-filter: blur(8px);
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem 1.25rem;
  text-align: center;
}

.hero-stat-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ════════════════════════════════════════════
   PAGE HERO (Inner Pages)
   ════════════════════════════════════════════ */
.page-hero {
  background: #edf2f7;
  border-bottom: 1px solid #dde5ef;
  padding: calc(var(--nav-height) + 2.5rem) 1.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310354f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--navy);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold-dark);
}
.breadcrumb-sep {
  color: #b0b8c4;
}

.page-hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.page-hero-title .highlight {
  color: var(--gold);
}

.page-hero-sub {
  font-size: 14px;
  color: var(--mid);
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   PERSONA / WHO WE SERVE CARDS
   ════════════════════════════════════════════ */
.persona-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.persona-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.persona-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.persona-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.persona-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* ════════════════════════════════════════════
   SERVICE CARDS
   ════════════════════════════════════════════ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.service-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(201, 151, 58, 0.6);
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(15, 44, 92, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 1rem;
  transition:
    background var(--transition),
    color var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--navy);
  color: var(--gold);
}

.service-card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    gap var(--transition),
    color var(--transition);
  margin-top: auto;
}

.service-card:hover .service-card-link {
  gap: 0.7rem;
  color: var(--gold-dark);
}

/* ════════════════════════════════════════════
   HOW IT WORKS (Process Steps)
   ════════════════════════════════════════════ */
.process-step {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
}

.process-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 8vw, 100px);
  line-height: 1;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.process-icon-wrap {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: rgba(201, 151, 58, 0.15);
  border: 2px solid rgba(201, 151, 58, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto 1.25rem;
  font-size: 32px;
  color: var(--gold);
  transition:
    background var(--transition),
    border-color var(--transition);
}

.process-step:hover .process-icon-wrap {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.process-step-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  max-width: 22ch;
  margin: 0 auto;
}

/* Connector line between steps */
.process-connector {
  display: none;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(201, 151, 58, 0.4),
    rgba(201, 151, 58, 0.1)
  );
  position: absolute;
  top: 68px;
  left: 50%;
  right: -50%;
}

@media (min-width: 768px) {
  .process-connector {
    display: block;
  }
  .process-step:last-child .process-connector {
    display: none;
  }
}

/* ════════════════════════════════════════════
   FEATURE ROWS (Why Choose Us)
   ════════════════════════════════════════════ */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: transform var(--transition);
}

.feature-row:last-child {
  border-bottom: none;
}
.feature-row:hover {
  transform: translateX(4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 44, 92, 0.2);
}

.feature-text {
}
.feature-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.feature-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   TESTIMONIAL CARDS
   ════════════════════════════════════════════ */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

/* Gold top accent line */
.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.3s;
}
.testi-card:hover::before {
  opacity: 1;
}

.testi-quote-icon {
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  opacity: 0.35;
  display: block;
  height: 36px;
}

.testi-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 1.25rem;
  letter-spacing: 3px;
}

/* Divider before meta */
.testi-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, black 0%, gray 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
  border: 2px solid var(--gold-light);
}

.testi-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.testi-location {
  font-size: 14px;
  color: var(--mid);
  font-weight: 500;
}

/* Testimonial Swiper wrapper */
.testimonialsSwiper {
  overflow: hidden;
  padding-bottom: 52px !important;
}
.testimonialsSwiper .swiper-slide {
  height: auto;
}
.testimonialsSwiper .testi-card {
  height: 100%;
}
.testi-pagination {
  bottom: 0 !important;
}
.testi-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--border);
  opacity: 1;
  border-radius: 4px;
  transition:
    background 0.3s,
    width 0.3s;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════
   STATS STRIP
   ════════════════════════════════════════════ */
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 14px;
  color: var(--mid);
  font-weight: 500;
}

/* ════════════════════════════════════════════
   PRICING CARDS
   ════════════════════════════════════════════ */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(201, 151, 58, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 0 0 8px 8px;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-tier {
  color: var(--gold-dark);
}

.pricing-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 38px;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price sup {
  font-size: 20px;
  font-weight: 700;
  vertical-align: super;
}

.pricing-period {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 0.25rem;
}

.pricing-tagline {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  flex: 1;
  margin-bottom: 1.75rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}

.pricing-feature i.fa-check {
  color: var(--gold);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-feature i.fa-xmark {
  color: #cbd5e1;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-feature.disabled {
  color: #94a3b8;
}

/* ════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--navy);
}
.faq-question.active {
  color: var(--navy);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 12px;
  flex-shrink: 0;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.faq-question.active .faq-icon {
  background: var(--navy);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 1.25rem;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   CONTACT FORM
   ════════════════════════════════════════════ */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.contact-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
  letter-spacing: 0.2px;
}

.contact-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.contact-input::placeholder {
  color: #a0aaba;
}

.contact-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 44, 92, 0.1);
}

.contact-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-input.success {
  border-color: #22c55e;
}

.field-error {
  font-size: 14px;
  color: #ef4444;
  margin-top: 0.35rem;
  display: none;
}

.field-error.visible {
  display: block;
}

.form-success-banner,
.form-error-banner {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 14px;
  font-weight: 500;
}

.form-success-banner.visible,
.form-error-banner.visible {
  display: flex;
}

.form-success-banner {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
}

.form-error-banner {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}

/* ════════════════════════════════════════════
   IMAGE COLLAGE (Why Choose Us, About)
   ════════════════════════════════════════════ */
.img-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.img-collage img,
.img-collage .img-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.img-collage .img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: rgba(201, 151, 58, 0.5);
}

@media (min-width: 640px) {
  .img-collage img,
  .img-collage .img-placeholder {
    height: 240px;
  }
}

.experience-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--navy-dark);
  border: 3px solid var(--gold);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.experience-badge-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}

.experience-badge-text {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  padding: 0 0.5rem;
}

/* ════════════════════════════════════════════
   TEAM CARDS
   ════════════════════════════════════════════ */
.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 40px;
}

.team-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.team-title {
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

.team-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold-light);
  flex-shrink: 0;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Badge overlay on split-frame (about page) */
.split-badge-overlay {
  position: absolute;
  bottom: 20px;
  right: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  z-index: 4;
  min-width: 90px;
}
.split-badge-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
}
.split-badge-text {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

/* ════════════════════════════════════════════
   CTA STRIP
   ════════════════════════════════════════════ */
.cta-strip {
  background: #edf2f7;
  border-top: 1px solid #d6dde6;
  border-bottom: 1px solid #d6dde6;
  padding: 2.5rem 1.5rem 3.5rem;
  margin-top: -3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 1rem 0 5rem 0;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 50%,
    rgba(209, 173, 67, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-strip-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-strip .section-label {
  color: var(--gold-dark) !important;
}

.cta-strip-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.cta-strip-desc {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 1.75rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-strip .btn-ghost {
  color: var(--navy);
  border-color: rgba(16, 53, 79, 0.45);
}
.cta-strip .btn-ghost:hover {
  background: rgba(16, 53, 79, 0.08);
  border-color: var(--navy);
}

/* ════════════════════════════════════════════
   CONTACT INFO ROWS
   ════════════════════════════════════════════ */
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-row:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(15, 44, 92, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 17px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 0.15rem;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--navy);
  transition: color var(--transition);
}
.contact-info-value a:hover {
  color: var(--gold-dark);
}

/* ════════════════════════════════════════════
   ADD-ONS TABLE
   ════════════════════════════════════════════ */
.addons-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.addons-table th {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  text-align: left;
}

.addons-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
}

.addons-table tr:last-child td {
  border-bottom: none;
}

.addons-table tr:nth-child(even) td {
  background: var(--surface);
}

.addons-price {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

/* ════════════════════════════════════════════
   PACKAGE BADGES ON SERVICES PAGE
   ════════════════════════════════════════════ */
.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 14px;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  border: 1px solid;
}

.pkg-badge-essential {
  color: #0369a1;
  border-color: #bae6fd;
  background: #f0f9ff;
}
.pkg-badge-standard {
  color: #15803d;
  border-color: #bbf7d0;
  background: #f0fdf4;
}
.pkg-badge-premium {
  color: #7c3aed;
  border-color: #ddd6fe;
  background: #faf5ff;
}
.pkg-badge-elite {
  color: var(--gold-dark);
  border-color: var(--gold-light);
  background: #fffbeb;
}

/* ════════════════════════════════════════════
   404 PAGE
   ════════════════════════════════════════════ */
.error-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 151, 58, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.error-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 18vw, 160px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.error-num span {
  color: var(--gold);
}

.error-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(201, 151, 58, 0.15);
  border: 2px solid rgba(201, 151, 58, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 32px;
  color: var(--gold);
}

.error-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 36px);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.error-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand-name span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 30ch;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition:
    background var(--transition),
    color var(--transition);
}

.footer-social-link:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-col-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.2px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.3rem 0;
  transition:
    color var(--transition),
    gap var(--transition);
}

.footer-link:hover {
  color: var(--gold);
  gap: 0.75rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.4rem 0;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-contact-text a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 1.5rem;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════════
   UTILITY
   ════════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 5rem 0;
}
.section-pad-sm {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section-pad {
    padding: 6.5rem 0;
  }
  .section-pad-sm {
    padding: 4.5rem 0;
  }
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 14px;
  color: var(--charcoal);
  padding: 0.4rem 0;
}

.checklist-item i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Trust signal cards */
.trust-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: rgba(15, 44, 92, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  font-size: 24px;
  color: var(--navy);
}

.trust-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.trust-desc {
  font-size: 14px;
  color: var(--mid);
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Page transition overlay (optional) */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Service detail section (services.php) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
  }
  .service-detail.reverse .service-detail-img {
    order: 2;
  }
  .service-detail.reverse .service-detail-content {
    order: 1;
  }
}

.service-detail-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-detail-img-placeholder {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: rgba(209, 173, 67, 0.4);
}

@media (max-width: 560px) {
  .service-detail-img-wrap img {
    height: 220px;
  }
  .service-detail-img-placeholder {
    height: 220px;
    font-size: 52px;
  }
  .service-detail {
    gap: 1.5rem;
    padding: 2rem 0;
  }
}

.service-detail-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.service-detail-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.service-list {
  margin: 1rem 0 1.5rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 14px;
  color: var(--mid);
  padding: 0.35rem 0;
  line-height: 1.6;
}

.service-list li i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-pkg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

/* Sticky subnav for services page */
.services-subnav {
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.services-subnav-inner {
  display: flex;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  white-space: nowrap;
}

.subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  padding: 0.85rem 1rem;
  border-bottom: 2px solid transparent;
  transition:
    color var(--transition),
    border-color var(--transition);
  white-space: nowrap;
}

.subnav-link:hover,
.subnav-link.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* Process timeline (how-it-works.php) */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 151, 58, 0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 26px;
  height: 26px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 151, 58, 0.2);
}

@media (min-width: 768px) {
  .timeline {
    padding-left: 0;
  }
  .timeline::before {
    display: none;
  }
  .timeline-dot {
    display: none;
  }
}

/* Whatsapp floating button */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 900;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ════════════════════════════════════════════
   TWO-ROW SITE HEADER
   ════════════════════════════════════════════ */

/* Unset old single-row navbar styles that conflict */
#navbar {
  all: unset;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

/* Inner pages — always solid */
.site-header:not(.is-home) {
  background: #10354fd1;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
}

/* Home page — transparent by default */
.site-header.is-home {
  background: transparent;
  box-shadow: none;
}

/* Home page — solid when scrolled */
.site-header.is-home.scrolled {
  background: #10354fce;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Top Bar (Row 1) ── */
.header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0 1.5rem;
}

.header-top-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-contact-link {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
  white-space: nowrap;
}

.header-contact-link:hover {
  color: var(--gold);
}

@media (min-width: 640px) {
  .header-contact-link {
    display: inline-flex;
  }
}
@media (max-width: 900px) {
  .header-email-link {
    display: none !important;
  }
}

.header-sep {
  display: none;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .header-sep {
    display: block;
  }
}

/* ── Nav Bar (Row 2) ── */
.header-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 1.5rem;
}

.header-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.header-nav-links {
  display: none;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .header-nav-links {
    display: flex;
  }
}

.h-nav-link {
  position: relative;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.55rem 1rem;
  border-radius: 4px;
  transition: color var(--transition);
  white-space: nowrap;
}

.h-nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.h-nav-link:hover,
.h-nav-link.active {
  color: var(--white);
  font-weight: 600;
}

.h-nav-link:hover::after,
.h-nav-link.active::after {
  transform: scaleX(1);
}

.h-nav-cta {
  position: absolute;
  right: 0;
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.15rem;
  border-radius: 6px;
  transition:
    background var(--transition),
    transform var(--transition);
  white-space: nowrap;
}

.h-nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .h-nav-cta {
    display: inline-flex;
  }
}

/* Hide hamburger on desktop */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* Mobile menu offset: below both bars */
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height, 52px);
  left: 0;
  right: 0;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#mobile-menu.open {
  display: block;
}

/* ════════════════════════════════════════════
   SWIPER HERO SECTION
   ════════════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Swiper fills the section */
.heroSwiper {
  width: 100%;
  height: 100%;
}

.swiper-slide.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Slide real image backgrounds */
.hero-slide.slide-1 {
  background-image: url("../images/hero/slide01.jpg");
  background-color: #0a1a38;
  background-size: cover;
  background-position: center;
}
.hero-slide.slide-2 {
  background-image: url("../images/hero/slide02.jpg");
  background-color: #0d1e2e;
  background-size: cover;
  background-position: center;
}
.hero-slide.slide-3 {
  background-image: url("../images/hero/slide03.jpg");
  background-color: #111827;
  background-size: cover;
  background-position: center;
}

/* Dark overlay over hero image */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 26, 61, 0.88) 0%,
    rgba(8, 26, 61, 0.7) 45%,
    rgba(8, 26, 61, 0.28) 100%
  );
  z-index: 1;
}

/* Slide content container */
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5rem 0 8rem; /* extra left for social bar, right for nav */
  padding-top: 0;
}

@media (max-width: 1023px) {
  .hero-slide-content {
    padding: 0 4rem 0 4.5rem;
  }
}

@media (max-width: 640px) {
  .hero-slide-content {
    padding: 0 1.5rem;
  }
}

/* Slide eyebrow */
.hero-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease 0.1s,
    transform 0.7s ease 0.1s;
}

.hero-slide-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Slide title */
.hero-slide-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 6.5vw, 72px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 14ch;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease 0.25s,
    transform 0.75s ease 0.25s;
}

.hero-slide-title .hl {
  color: var(--gold);
}

/* Slide desc */
.hero-slide-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 48ch;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease 0.4s,
    transform 0.7s ease 0.4s;
}

/* CTA button */
.hero-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
  opacity: 0;
  transform: translateY(16px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    opacity 0.7s ease 0.55s,
    transform 0.7s ease 0.55s;
}

.hero-slide-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Animate in for active slide */
.swiper-slide-active .hero-slide-eyebrow,
.swiper-slide-active .hero-slide-title,
.swiper-slide-active .hero-slide-desc,
.swiper-slide-active .hero-slide-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Correctly override the transform-only transition for the button on hover */
.swiper-slide-active .hero-slide-btn:hover {
  transform: translateY(-2px);
}

/* ── Left Social Sidebar ── */
.hero-social-bar {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
}

@media (max-width: 640px) {
  .hero-social-bar {
    display: none;
  }
}

.hero-social-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
  margin-bottom: 0.25rem;
}

.hero-social-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.hero-social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  border-radius: 50%;
  transition:
    color var(--transition),
    background var(--transition);
}

.hero-social-icon:hover {
  color: var(--gold);
  background: rgba(201, 151, 58, 0.15);
}

/* ── Right Slide Navigation ── */
.hero-nav {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

@media (max-width: 767px) {
  .hero-nav {
    display: none;
  }
}

.hero-nav-btn {
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 3px;
  background: none;
  border: none;
  transition: color var(--transition);
  user-select: none;
}

.hero-nav-btn:hover {
  color: var(--gold);
}

.hero-nav-separator {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Slide Counter */
.hero-counter {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 767px) {
  .hero-counter {
    display: none;
  }
}

.hero-counter-current {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-counter-sep {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
}

.hero-counter-total {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

/* Swiper progress bar at bottom */
.hero-swiper-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  overflow: hidden;
}

.hero-swiper-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width linear;
}

/* ── Scroll Indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .hero-scroll-indicator {
    display: none;
  }
}

.hero-scroll-indicator span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero-scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.hero-scroll-dot {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 3px;
  animation: scroll-dot 2s ease infinite;
}

@keyframes scroll-dot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* Inner page page-hero top padding update for two-row header */
.page-hero {
  padding-top: calc(108px + 2.5rem); /* 52 top-bar + 56 nav-bar + extra */
}

/* ════════════════════════════════════════════
   UI REFINEMENTS — Reference Design
   Navy #0F2C5C + Gold #C9973A colour theme
   ════════════════════════════════════════════ */

/* ── Logo: add sub-label below name ── */
.nav-logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.2px;
}
.nav-logo-main span {
  color: var(--gold);
}
.nav-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

/* ── Top Bar: CTA button ── */
.header-top-cta {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(201, 151, 58, 0.45);
  padding: 0.35rem 1rem;
  border-radius: 3px;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}
.header-top-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
@media (min-width: 1024px) {
  .header-top-cta {
    display: inline-flex;
  }
}

.header-sep-cta {
  display: none !important;
}
@media (min-width: 1024px) {
  .header-sep-cta {
    display: block !important;
  }
}

/* ── Top Bar height + border ── */
.header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-top-inner {
  height: 54px;
}

/* ── Nav Bar: links fill full width, evenly spaced ── */
.header-nav {
  border-top: none;
}
.header-nav-inner {
  justify-content: center;
  padding: 0;
  max-width: 1280px;
}
.header-nav-links {
  width: 100%;
  max-width: 780px;
  justify-content: space-between;
  gap: 0;
}
.h-nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  color: rgba(255, 255, 255, 0.65);
}
.h-nav-link::after {
  left: 1rem;
  right: 1rem;
  height: 1px;
  bottom: 4px;
}
.h-nav-link:hover,
.h-nav-link.active {
  color: var(--white);
}

/* Separator between top bar rows */
.header-nav::before {
  content: "";
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Hero: content aligned to BOTTOM-LEFT (set in .hero-slide base rule above) ── */
.hero-slide-content {
  max-width: none;
  width: 100%;
  /* left: after social bar (~68px) + right: before slide nav (~56px) */
  padding: 0 4.5rem 7.5rem 5.5rem;
}
@media (max-width: 1023px) {
  .hero-slide-content {
    padding: 0 3.5rem 6rem 4.5rem;
  }
}
@media (max-width: 767px) {
  .hero-section {
    height: 43vh;
    min-height: 500px;
  }
  .header-nav {
    border-top: none;
    display: none;
  }
  .swiper-slide.hero-slide {
    align-items: center;
  }
  .hero-slide-content {
    padding: calc(var(--nav-height, 52px) + 1rem) 2rem 3rem;
  }
}
@media (max-width: 480px) {
  .hero-section {
    height: 43vh;
    min-height: 500px;
  }
  .header-nav {
    border-top: none;
    display: none;
  }
  .swiper-slide.hero-slide {
    align-items: center;
  }
  .hero-slide-content {
    padding: calc(var(--nav-height, 52px) + 0.5rem) 1.5rem 2.5rem;
  }
}

/* ── Hero title: GOLD (same colour theme) ── */
.hero-slide-title {
  color: var(--gold-light); /* #E0B96A — warm gold */
  font-size: clamp(36px, 6.5vw, 80px);
  max-width: 18ch;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
/* .hl span: inherit parent gold — no split colour */
.hero-slide-title .hl {
  color: inherit;
}

/* ── Hero eyebrow: subtle bar label ── */
.hero-slide-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.85rem;
  gap: 0.5rem;
}
.hero-slide-eyebrow::before {
  background: rgba(255, 255, 255, 0.25);
  width: 24px;
}

/* ── Hero description: white ── */
.hero-slide-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  max-width: 48ch;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

/* ── CTA Button: square outline (reference style) ── */
.hero-slide-btn {
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px; /* near-square corners like reference */
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
  gap: 0.85rem;
}
.hero-slide-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
/* Override the compound transition so hover works after slide-in */
.swiper-slide-active .hero-slide-btn {
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    opacity 0.7s ease 0.55s;
}

/* ── Overlay: strong left-to-right directional (reference style) ── */
.hero-slide-overlay {
  background: rgba(0, 0, 0, 0.52);
}

/* ── Real image backgrounds for hero slides ── */
.hero-slide.slide-1 {
  background-image: url("../images/hero/slide01.jpg");
  background-color: #04101f;
  background-size: cover;
  background-position: center;
}
.hero-slide.slide-2 {
  background-image: url("../images/hero/slide02.jpg");
  background-color: #031018;
  background-size: cover;
  background-position: center;
}
.hero-slide.slide-3 {
  background-image: url("../images/hero/slide03.jpg");
  background-color: #090b10;
  background-size: cover;
  background-position: center;
}

/* ── Social bar: slightly larger icons ── */
.hero-social-icon {
  width: 34px;
  height: 34px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
}
.hero-social-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 151, 58, 0.1);
}

/* ── Slide counter: large current number ── */
.hero-counter-current {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
}
.hero-counter-sep {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.1rem;
}
.hero-counter-total {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Progress bar: gold ── */
.hero-swiper-progress {
  background: rgba(255, 255, 255, 0.08);
}
.hero-swiper-progress-bar {
  background: var(--gold);
}

/* ── PREV/NEXT buttons: thinner, gold on hover ── */
.hero-nav-btn {
  font-size: 9.5px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.5rem;
}
.hero-nav-btn:hover {
  color: var(--gold);
}
.hero-nav-separator {
  background: rgba(255, 255, 255, 0.18);
}

/* ── Scroll indicator dot: gold ── */
.hero-scroll-dot {
  background: var(--gold);
}
.hero-scroll-mouse {
  border-color: rgba(255, 255, 255, 0.25);
}

/* ════════════════════════════════════════════
   STATS SHOWCASE (Who We Serve — reference style)
   ════════════════════════════════════════════ */
.stats-showcase {
  background: #f8f8f8;
  padding: 90px 0 80px;
}

.stats-showcase-header {
  text-align: center;
  margin-bottom: 56px;
}

.stats-showcase-section-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #e0e0e0;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.stats-showcase-pretitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.stats-showcase-pretitle span {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.stats-showcase-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}

/* Row of stat items */
.stats-showcase-row {
  display: flex;
  align-items: stretch;
  border-left: 1px solid #d5d1cb;
}

.stats-showcase-item {
  flex: 1;
  padding: 48px 28px 44px;
  border-right: 1px solid #d5d1cb;
  text-align: center;
  cursor: default;
  transition: background 0.35s ease;
}

.stats-showcase-item:hover {
  background: rgba(255, 255, 255, 0.65);
}

/* Icon circle */
.stats-showcase-icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  font-size: 34px;
  color: var(--charcoal);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.3s ease;
}

.stats-showcase-item:hover .stats-showcase-icon {
  background: rgba(201, 151, 58, 0.16);
  color: var(--gold-dark);
  transform: translateY(-4px);
}

.stats-showcase-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}

.stats-showcase-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.stats-showcase-num-val {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -1px;
}

.stats-showcase-suffix {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--mid);
  line-height: 1;
}

.stats-showcase-sub {
  font-size: 14px;
  color: var(--mid);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-showcase-row {
    flex-wrap: wrap;
    border-left: none;
    border-top: 1px solid #d5d1cb;
  }
  .stats-showcase-item {
    flex: 0 0 50%;
    border-left: 1px solid #d5d1cb;
    border-top: none;
    border-bottom: 1px solid #d5d1cb;
  }
}

@media (max-width: 600px) {
  .stats-showcase-item {
    flex: 0 0 50%;
    padding: 32px 16px 28px;
  }
  .stats-showcase-num-val {
    font-size: 44px;
  }
  .stats-showcase-section-num {
    font-size: 48px;
  }
}

/* ════════════════════════════════════════════
   FOOTER — REDESIGN (reference style)
   ════════════════════════════════════════════ */

/* ── Info Bar ── */
.ftr-infobar {
  background: var(--gold-dark);
  padding: 0;
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  margin-bottom: -5rem;
  position: relative;
  z-index: 10;
}

.ftr-infobar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ftr-infobar-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 36px 2.5rem 36px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  margin-right: 2.5rem;
}

.ftr-infobar-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.ftr-infobar-icon {
  width: 58px;
  height: 58px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.25s;
}

.ftr-infobar-item:hover .ftr-infobar-icon {
  background: rgba(255, 255, 255, 0.12);
}

.ftr-infobar-body h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ftr-infobar-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0;
}

.ftr-infobar-body p strong {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ftr-infobar-body a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}
.ftr-infobar-body a:hover {
  color: #fff;
}

/* ── Main Footer ── */
#site-footer {
  padding-top: 5rem;
  background: #10354f;
}

.ftr-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 2rem 60px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.35fr;
  gap: 3rem;
}

/* Brand */
.ftr-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.ftr-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ftr-logo-name {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.ftr-logo-name span {
  color: var(--gold);
}

.ftr-logo-sub {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.ftr-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
  max-width: 300px;
  margin: 0;
}

/* Column titles */
.ftr-col-title {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Link list */
.ftr-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ftr-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
  display: block;
}

.ftr-link:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

/* Call Center column */
.ftr-callcenter {
  text-align: right;
}

.ftr-cc-label {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}

.ftr-cc-number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 8px;
  transition: color 0.25s;
}
.ftr-cc-number:hover {
  color: var(--gold);
}

.ftr-cc-email {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 28px;
  transition: color 0.25s;
}
.ftr-cc-email:hover {
  color: var(--gold-light);
}

/* Square social icons */
.ftr-socials {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.ftr-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    transform 0.2s;
}

.ftr-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Bottom Bar ── */
.ftr-bottom {
  background: black;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
}

.ftr-bottom-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ftr-bottom-inner p,
.ftr-bottom-inner a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.28);
}

.ftr-bottom-inner nav {
  display: flex;
  gap: 22px;
}

.ftr-bottom-inner a:hover {
  color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ftr-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }
  .ftr-callcenter {
    text-align: left;
  }
  .ftr-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .ftr-infobar-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
  .ftr-infobar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-right: 0;
    padding: 28px 0;
  }
  .ftr-infobar-item:last-child {
    border-bottom: none;
  }
  .ftr-main {
    grid-template-columns: 1fr;
    padding: 48px 1.5rem 40px;
  }
  .ftr-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ════════════════════════════════════════════
   SPLIT FEATURE SHOWCASE
   ════════════════════════════════════════════ */
.split-feature {
  position: relative;
  background: #fff;
  overflow: hidden;
  margin: 0;
}

.split-slide-grid {
  display: grid;
  grid-template-columns: 52% 48%;
}

/* ── Left column: image fills full height ── */
.split-feat-left {
  background: #f8f6f2;
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

/* ── Image frame: fills the entire left column ── */
.split-frame {
  position: absolute;
  top: 48px;
  left: 90px;
  right: 32px;
  bottom: 48px;
}

/* Gold/beige panel behind image (offset bottom-left) */
.split-frame-panel {
  position: absolute;
  left: -32px;
  bottom: -26px;
  right: 32px;
  top: 22px;
  background: rgba(201, 151, 58, 0.18);
  z-index: 0;
}

/* Main photo fills frame */
.split-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Vertical bars decoration */
.split-vert-bars {
  position: absolute;
  left: -52px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.split-vert-bars span {
  display: block;
  width: 2.5px;
  height: 68px;
  background: #1a1a2e;
}

/* × scatter marks */
.split-x {
  position: absolute;
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.22);
  z-index: 3;
  line-height: 1;
  pointer-events: none;
}
.split-x.x1 {
  top: -14px;
  right: 8px;
}
.split-x.x2 {
  top: 26%;
  right: -22px;
}
.split-x.x3 {
  bottom: -14px;
  left: 18%;
}
.split-x.x4 {
  bottom: -28px;
  right: -8px;
}

/* ○ circle marks */
.split-circle {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
}
.split-circle.c1 {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.split-circle.c2 {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

/* ~ wave */
.split-wave {
  position: absolute;
  bottom: -50px;
  left: 38%;
  width: 54px;
  color: rgba(0, 0, 0, 0.18);
  z-index: 3;
  pointer-events: none;
}

/* ── Right column ── */
.split-feat-right {
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 60px 70px 60px 64px;
  position: relative;
}

.split-content {
  width: 100%;
}

/* Section ghost number */
.split-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #e5e2dc;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

/* Brand line */
.split-brand-line {
  font-size: 19px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.4;
}
.split-brand-line span {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

/* Main heading */
.split-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 20px;
}

/* Body text */
.split-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 46ch;
  margin-bottom: 36px;
}

/* CTA link with icon box */
.split-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--charcoal);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.25s;
}
.split-cta-link:hover {
  color: var(--gold-dark);
}

.split-cta-icon-box {
  width: 54px;
  height: 54px;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex-shrink: 0;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}
.split-cta-link:hover .split-cta-icon-box {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 151, 58, 0.06);
}

/* ── Slide counter (top-right) ── */
.split-counter {
  position: absolute;
  top: 32px;
  right: 48px;
  display: flex;
  align-items: baseline;
  gap: 1px;
  z-index: 10;
  pointer-events: none;
}
.split-counter-current {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}
.split-counter-sep {
  font-size: 16px;
  color: var(--mid);
  margin: 0 3px;
}
.split-counter-total {
  font-size: 15px;
  color: var(--mid);
  font-weight: 500;
}

/* ── Navigation buttons ── */
.split-nav-btns {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.split-nav-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 14px;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}
.split-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 151, 58, 0.07);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .split-slide-grid {
    grid-template-columns: 1fr;
  }
  .split-feat-left {
    min-height: 420px;
  }
  .split-feat-right {
    padding: 48px 40px;
  }
  .split-frame {
    top: 36px;
    left: 70px;
    right: 24px;
    bottom: 36px;
  }
  .split-badge-overlay {
    right: 20px;
    bottom: 16px;
  }
}

@media (max-width: 768px) {
  .split-feat-left {
    min-height: 340px;
  }
  .split-feat-right {
    padding: 40px 28px;
  }
  .split-frame {
    top: 28px;
    left: 52px;
    right: 16px;
    bottom: 28px;
  }
  .split-vert-bars {
    left: -38px;
  }
  .split-vert-bars span {
    height: 50px;
  }
  .split-heading {
    font-size: 26px;
  }
  .split-badge-overlay {
    right: 12px;
    bottom: 12px;
    padding: 0.6rem 1rem;
    min-width: 76px;
  }
  .split-badge-num {
    font-size: 22px;
  }
  .split-badge-text {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .split-feat-left {
    min-height: 260px;
  }
  .split-feat-right {
    padding: 24px 20px;
  }
  .split-frame {
    top: 20px;
    left: 40px;
    right: 12px;
    bottom: 20px;
  }
  .split-vert-bars {
    left: -28px;
  }
  .split-vert-bars span {
    height: 40px;
    width: 2px;
  }
  .split-heading {
    font-size: 22px;
  }
  .split-num {
    font-size: 30px;
  }
  .split-brand-line {
    font-size: 15px;
  }
  .split-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .split-badge-overlay {
    display: none;
  }
  .split-x,
  .split-circle,
  .split-wave {
    display: none;
  }
}

/* ════════════════════════════════════════════
   GALLERY SECTION (section 03 — staggered images)
   ════════════════════════════════════════════ */
.gallery-sec {
  background: #fff;
  padding: 90px 0 100px;
  overflow: hidden;
}

.gallery-sec-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
}

/* ── Left text ── */
.gallery-sec-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #e5e1db;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.gallery-sec-pretitle {
  font-size: 19px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.4;
}

.gallery-sec-pretitle span {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.gallery-sec-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 32px;
}

.gallery-sec-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--charcoal);
  transition:
    color 0.25s,
    border-color 0.25s;
}

.gallery-sec-cta:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ── Right: Swiper slider ── */
.gallery-swiper-wrap {
  overflow: hidden;
  position: relative;
}

.imageSwiper {
  overflow: visible !important;
  height: 420px;
}

.gallery-slide {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-slide.is-active img {
  transform: scale(1.03);
}

/* Prev / Next buttons */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--charcoal);
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.gallery-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.gallery-nav-prev {
  left: 12px;
}
.gallery-nav-next {
  right: 12px;
}

/* Progress bar */
.gallery-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 10;
  border-radius: 2px;
}
.gallery-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .gallery-sec-inner {
    grid-template-columns: 260px 1fr;
    gap: 32px;
  }
  .imageSwiper {
    height: 360px;
  }
}
@media (max-width: 768px) {
  .gallery-sec {
    padding: 60px 0 70px;
  }
  .gallery-sec-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .imageSwiper {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .imageSwiper {
    height: 220px;
  }
}

/* ════════════════════════════════════════════
   TRUST LOGOS ROW (section 04)
   ════════════════════════════════════════════ */
.trust-logos-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}

.trust-logo-item i {
  font-size: 20px;
  color: var(--gold-dark);
}

/* ════════════════════════════════════════════
   SECTION 05 — SERVICE PLANS (tab layout)
   ════════════════════════════════════════════ */
.plans-sec {
  background: #fff;
  padding: 90px 0 100px;
}

.plans-sec-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Left column ── */
.plans-sec-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #e5e1db;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.plans-sec-pretitle {
  font-size: 19px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.plans-sec-pretitle span {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.plans-sec-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 16px;
}

.plans-sec-desc {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Key specs */
.plans-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.plans-spec-row {
  display: flex;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.plans-spec-row:first-child {
  border-top: 1px solid var(--border);
}

.plans-spec-row dt {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  min-width: 130px;
  flex-shrink: 0;
}

.plans-spec-row dd {
  font-size: 14px;
  color: var(--charcoal);
  margin: 0;
}

/* ── Right column ── */
.plans-sec-right {
  padding-top: 0;
}

/* Tab bar */
.plans-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 36px;
}

.plans-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 12px 20px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}

.plans-tab:hover {
  color: var(--charcoal);
}

.plans-tab.active {
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}

/* Panel */
.plans-panel {
  display: none;
}
.plans-panel.active {
  display: block;
}

/* Blueprint feature grid */
.plans-blueprint {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #e8e4dd;
  border-left: 1px solid #e8e4dd;
  margin-bottom: 32px;
}

.pb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #e8e4dd;
  border-right: 1px solid #e8e4dd;
  font-size: 14px;
  color: var(--charcoal);
}

.pb-item i {
  font-size: 14px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.pb-item.yes i {
  color: var(--gold-dark);
  background: rgba(201, 151, 58, 0.12);
}

.pb-item.no {
  color: #b0aaa2;
}
.pb-item.no i {
  color: #ccc;
  background: rgba(0, 0, 0, 0.04);
}

.pb-item.no span {
  text-decoration: line-through;
  text-decoration-color: #ccc;
}

/* Panel CTA */
.plans-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--charcoal);
  transition:
    color 0.25s,
    border-color 0.25s;
}
.plans-cta:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .plans-sec-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .plans-tabs {
    overflow-x: auto;
  }
  .plans-tab {
    padding: 10px 14px 12px;
    font-size: 14px;
  }
  .plans-blueprint {
    grid-template-columns: 1fr;
  }
  .plans-sec {
    padding: 36px 0 52px;
  }
}

/* ════════════════════════════════════════════
   SECTION 06 — GOLD CARD + FULL-BLEED IMAGE
   ════════════════════════════════════════════ */
.cta-split-sec {
  background: #ebe8e2;
  overflow: hidden;
}

.cta-split-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 520px;
}

/* ── Left: warm gray bg + card ── */
.cta-split-left {
  background: #ebe8e2;
  display: flex;
  align-items: center;
  padding: 60px 0 60px 60px;
}

/* Gold card */
.cta-gold-card {
  background: var(--gold-dark);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  padding: 56px 52px 52px;
}

/* Geometric angular overlays — create the faceted depth effect */
.cta-gold-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 260px;
  height: 130%;
  background: rgba(0, 0, 0, 0.12);
  transform: skewX(-10deg);
  z-index: 0;
}
.cta-gold-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50px;
  width: 160px;
  height: 100%;
  background: rgba(0, 0, 0, 0.07);
  transform: skewX(-6deg);
  z-index: 0;
}

.cta-card-inner {
  position: relative;
  z-index: 1;
}

.cta-card-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.cta-card-pretitle {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}
.cta-card-pretitle span {
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  font-weight: 600;
}

.cta-card-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.28;
  margin-bottom: 18px;
}

.cta-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 38ch;
}

.cta-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-dark);
  color: #fff;
  padding: 15px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    letter-spacing 0.25s;
}
.cta-card-btn:hover {
  background: #000;
  letter-spacing: 3px;
}

/* ── Right: full-bleed photo ── */
.cta-split-right {
  overflow: hidden;
}
.cta-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.cta-split-right:hover .cta-split-img {
  transform: scale(1.03);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cta-split-grid {
    grid-template-columns: 1fr;
  }
  .cta-split-left {
    padding: 60px 24px;
    justify-content: center;
  }
  .cta-gold-card {
    max-width: 100%;
  }
  .cta-split-right {
    min-height: 320px;
  }
}

/* ════════════════════════════════════════════
   SECTION 07 — DARK BG SERVICE GRID
   ════════════════════════════════════════════ */
.svc-grid-sec {
  position: relative;
  background-image: url("../images/building2.jpg");
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  overflow: hidden;
  padding: 90px 0 100px;
}

/* Dark + warm-gold directional overlay */
.svc-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.93) 0%,
    rgba(0, 0, 0, 0.88) 45%,
    rgba(100, 65, 10, 0.55) 100%
  );
  z-index: 0;
}

.svc-grid-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.svc-grid-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: rgb(255 255 255 / 92%);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.svc-grid-pretitle {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.svc-grid-pretitle span {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 600;
}

.svc-grid-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 48px;
}

/* 6-column card grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.svc-grid-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.25s;
  backdrop-filter: blur(4px);
}

.svc-grid-item i {
  font-size: 22px;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: color 0.3s;
}

.svc-grid-item:hover {
  background: rgba(201, 151, 58, 0.18);
  border-color: rgba(201, 151, 58, 0.5);
  transform: translateY(-3px);
}

.svc-grid-item:hover i {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-grid-sec {
    background-attachment: scroll;
    padding: 60px 0 70px;
  }
}

/* ════════════════════════════════════════════
   GLOBAL RESPONSIVE — About & Inner Pages
   ════════════════════════════════════════════ */

/* Page hero */
@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--nav-height) + 1.5rem) 1.25rem 2rem;
  }
  .page-hero-title {
    font-size: clamp(18px, 5vw, 24px);
  }
  .page-hero-sub {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .page-hero {
    padding: calc(var(--nav-height) + 1rem) 1rem 1.5rem;
  }
  .page-hero-title {
    font-size: clamp(17px, 5vw, 22px);
  }
  .page-hero-sub {
    font-size: 14px;
  }
  .breadcrumb {
    font-size: 14px;
  }
}

/* Team cards */
@media (max-width: 768px) {
  .team-card {
    padding: 1.25rem;
  }
  .team-photo-wrap {
    width: 100px;
    height: 100px;
  }
  .team-name {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .team-photo-wrap {
    width: 84px;
    height: 84px;
  }
}

/* Mission & Vision cards */
@media (max-width: 768px) {
  .section-pad {
    padding: 56px 1.25rem;
  }
}
@media (max-width: 480px) {
  .section-pad {
    padding: 44px 1rem;
  }
  .section-heading {
    font-size: clamp(20px, 6vw, 28px);
  }
  .section-body {
    font-size: 15px;
  }
  .feature-row {
    gap: 0.75rem;
  }
  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
    flex-shrink: 0;
  }
  .feature-title {
    font-size: 14px;
  }
  .feature-desc {
    font-size: 14px;
  }
}

/* Stats strip */
@media (max-width: 640px) {
  .stat-card {
    padding: 1.5rem 0.75rem;
  }
  .stat-num {
    font-size: 28px;
  }
  .stat-label {
    font-size: 14px;
  }
}

/* Stats showcase (homepage) */
@media (max-width: 600px) {
  .stats-showcase-title {
    font-size: clamp(20px, 6vw, 30px);
  }
  .stats-showcase-row {
    display: flex;
    flex-wrap: wrap;
  }
  .stats-showcase-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Gallery section */
@media (max-width: 900px) {
  .gallery-sec-inner {
    grid-template-columns: 1fr;
  }
  .gallery-sec-images {
    grid-template-columns: repeat(3, 1fr);
    height: 220px;
  }
  .gi-2 {
    transform: none;
  }
}
@media (max-width: 560px) {
  .gallery-sec-images {
    grid-template-columns: 1fr 1fr;
    height: 200px;
  }
  .gi-3 {
    display: none;
  }
  .gallery-sec {
    padding: 56px 1rem 64px;
  }
}

/* Plans tabs */
@media (max-width: 900px) {
  .plans-sec-inner {
    grid-template-columns: 1fr;
  }
  .plans-sec-left {
    padding: 48px 32px 0;
  }
  .plans-sec-right {
    padding: 32px;
  }
}
@media (max-width: 560px) {
  .plans-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  .plans-tab {
    flex: 1 1 calc(50% - 4px);
    font-size: 14px;
    padding: 10px 8px;
  }
  .plans-sec-inner {
    padding-left: 0;
    padding-right: 0;
  }
  .plans-sec-left {
    padding: 8px 20px 0;
  }
  .plans-sec-right {
    padding: 24px 20px;
  }
  .pb-item {
    font-size: 14px;
  }
  .testi-sec .container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* CTA split section */
@media (max-width: 900px) {
  .cta-split-grid {
    grid-template-columns: 1fr;
  }
  .cta-split-right {
    height: 280px;
  }
  .cta-split-left {
    padding: 48px 32px;
  }
}
@media (max-width: 560px) {
  .cta-split-left {
    padding: 36px 20px;
  }
  .cta-gold-card {
    padding: 0;
  }
  .cta-card-inner {
    padding: 32px 20px;
  }
  .cta-card-desc {
    max-width: 100%;
  }
  .cta-split-right {
    height: 220px;
  }
}

/* Footer responsive */
@media (max-width: 900px) {
  .ftr-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    padding: 3rem 1.5rem;
  }
  .ftr-infobar-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 560px) {
  .ftr-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.25rem;
  }
  .ftr-brand-col {
    text-align: left;
  }
  .ftr-logo-link {
    justify-content: flex-start;
  }
  .ftr-socials {
    justify-content: flex-start;
  }
  .ftr-cc-label,
  .ftr-cc-number,
  .ftr-cc-email {
    text-align: left;
    display: block;
  }
  .ftr-bottom-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
  }
  .ftr-infobar {
    padding: 1.25rem 1rem;
  }
}

/* ════════════════════════════════════════════
   TAILWIND-REPLACEMENT UTILITIES
   ════════════════════════════════════════════ */

/* Typography */
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.font-body {
  font-family: "Poppins", sans-serif;
}
.font-heading {
  font-family: "Montserrat", sans-serif;
}
.font-bold {
  font-weight: 700;
}
.text-center {
  text-align: center;
}
.text-white {
  color: #ffffff;
}
.text-navy {
  color: var(--navy);
}
.text-charcoal {
  color: var(--charcoal);
}

/* Background */
.bg-white {
  background-color: #ffffff;
}

/* Display */
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none !important;
}
.relative {
  position: relative;
}

/* Flex utilities */
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}

/* Width / max-width */
.w-full {
  width: 100%;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}

/* Border */
.border {
  border: 1px solid var(--border);
}
.border-\[var\(--border\)\] {
  border-color: var(--border);
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}

/* Shadow */
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.shadow-md {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.hover\:shadow-md:hover {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Gap */
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-7 {
  gap: 1.75rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-16 {
  gap: 4rem;
}
.gap-x-5 {
  column-gap: 1.25rem;
}
.gap-x-6 {
  column-gap: 1.5rem;
}
.gap-x-8 {
  column-gap: 2rem;
}
.gap-x-16 {
  column-gap: 4rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.gap-y-3 {
  row-gap: 0.75rem;
}

/* Padding */
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-10 {
  padding: 2.5rem;
}

/* Margin top */
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}

/* Margin bottom */
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-14 {
  margin-bottom: 3.5rem;
}

/* Grid columns (base) */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* sm: 640px */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* md: 768px */
@media (min-width: 768px) {
  .md\:hidden {
    display: none !important;
  }
  .md\:grid {
    display: grid !important;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
}

/* xl: 1280px */
@media (min-width: 1280px) {
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── Global mobile polish ── */
@media (max-width: 480px) {
  .section-pad {
    padding: 3rem 0;
  }
  .section-pad-sm {
    padding: 2rem 0;
  }
  /* Fix hardcoded 52px process icons in how-it-works mobile timeline */
  .process-icon-wrap[style] {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
  }
  /* Prevent horizontal overflow on tiny screens */
  .split-slide-grid,
  .plans-sec-inner,
  .svc-grid-inner {
    overflow-x: hidden;
  }
}

@media (max-width: 360px) {
  .hero-slide-title {
    font-size: 22px;
  }
  .hero-slide-desc {
    font-size: 14px;
  }
  .plans-tab {
    font-size: 14px;
    padding: 8px 6px;
  }
  .pricing-card {
    padding: 1.5rem 1rem;
  }
}
