:root {
  --green-900: #0a2540;
  --green-800: #0f3463;
  --green-700: #1453a0;
  --green-600: #1c6dc9;
  --green-500: #4a90e2;
  --green-100: #e6f0fb;
  --green-50: #f4f8fc;

  --cream: #ffffff;
  --cream-2: #f3f6fa;
  --cream-3: #d9e2ee;

  --gold: #38b6ff;
  --gold-soft: #a9dcff;

  --ink: #0a1929;
  --ink-muted: #4a5a6e;
  --ink-soft: #6b7a8d;
  --white: #ffffff;

  --ff-display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1450px;
  --r-sm: 4px;
  --r: 8px;
  --r-lg: 14px;
  --r-xl: 20px;
  --shd-sm: 0 1px 3px rgba(10, 37, 64, 0.08), 0 4px 12px rgba(10, 37, 64, 0.04);
  --shd: 0 6px 20px rgba(10, 37, 64, 0.1), 0 12px 40px rgba(10, 37, 64, 0.06);
  --shd-lg:
    0 14px 40px rgba(10, 37, 64, 0.14), 0 30px 60px rgba(10, 37, 64, 0.08);
  --tr-fast: 150ms ease;
  --tr: 260ms cubic-bezier(0.4, 0, 0.2, 1);
  --tr-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================ reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: 55px;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-900);
  letter-spacing: -0.01em;
}
em {
  font-style: normal;
  color: var(--green-700);
} /* italic-em becomes blue accent, not italic */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}

.s {
  position: relative;
  padding: 60px 0;
}
@media (max-width: 992px) {
  .s {
    padding: 64px 0;
  }
}
@media (max-width: 600px) {
  .s {
    padding: 48px 0;
  }
}


.s-cream {
  background: #ffffff;
}

.s-cream-2 {
  background: var(--cream-2);
}

.s-green-50 {
  background: var(--green-50);
}
.s-green-100 {
  background: var(--green-100);
}

.s-deep {
  background: var(--green-900);
  color: #ffffff;
}
.s-mid {
  background: var(--green-800);
  color: #ffffff;
}
.s-white {
  background: #ffffff;
}

.s-deep h1,
.s-deep h2,
.s-deep h3,
.s-mid h1,
.s-mid h2,
.s-mid h3 {
  color: #ffffff;
}
.s-deep em,
.s-mid em {
  color: var(--gold);
}
em {
  font-style: normal;
}


.em-green em {
  color: var(--green-700);
  font-style: normal;
}
.em-gold em {
  color: var(--gold);
  font-style: normal;
}

/* ================================================================ announce */
.announce {
  background: var(--green-900);
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.announce-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.announce-left,
.announce-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.announce a {
  color: var(--gold-soft);
  transition: color var(--tr-fast);
}
.announce a:hover {
  color: #ffffff;
}
.announce i {
  color: var(--gold);
  margin-right: 6px;
}
@media (max-width: 768px) {
  .announce-right {
    display: none;
  }
  .announce-inner {
    justify-content: center;
    padding: 8px 20px;
  }
}

/*  header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--cream-3);
  transition: box-shadow var(--tr);
}
.site-header.scrolled {
  box-shadow: var(--shd-sm);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-900);
}
.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--green-700);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 0 0 4px rgba(20, 83, 160, 0.1);
}
.brand-mark i {
  color: var(--gold-soft);
}
.brand-text strong {
  display: block;
  line-height: 1;
}
.brand-text small {
  display: block;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-top: 4px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: right;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a,
.nav-menu > li > .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: all var(--tr-fast);
  cursor: pointer;
}
.nav-menu > li > a:hover,
.nav-menu > li > .nav-trigger:hover,
.nav-menu > li > a.active {
  color: var(--green-700);
  background: var(--green-50);
}
.nav-menu .caret {
  font-size: 0.65rem;
  transition: transform var(--tr-fast);
}
.nav-menu > li:hover .caret {
  transform: rotate(180deg);
}
.nav-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 460px;
  background: #ffffff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r);
  padding: 14px;
  box-shadow: var(--shd-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr);
  z-index: 110;
}
.nav-menu > li:hover .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-top: 1px solid var(--cream-3);
  border-left: 1px solid var(--cream-3);
}
.nav-drop-title {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
  padding: 4px 10px 10px;
  border-bottom: 1px solid var(--cream-3);
  margin-bottom: 10px;
}
.nav-drop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.nav-drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.85rem;
  color: var(--ink-muted);
  border-radius: var(--r-sm);
  transition: all var(--tr-fast);
}
.nav-drop a:hover {
  background: var(--green-50);
  color: var(--green-800);
}
.nav-drop a i {
  font-size: 0.7rem;
  color: var(--green-600);
  width: 14px;
  text-align: center;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  background: var(--green-50);
  color: var(--green-900);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--tr-fast);
}
.nav-phone:hover {
  background: var(--green-700);
  color: #ffffff;
}
.nav-phone i {
  color: var(--green-700);
  transition: color var(--tr-fast);
}
.nav-phone:hover i {
  color: var(--gold-soft);
}
.nav-phone-num small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  opacity: 0.85;
  margin-bottom: 1px;
}
.nav-phone:hover .nav-phone-num small {
  color: var(--gold-soft);
  opacity: 1;
}
.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--green-700);
  color: #ffffff;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--tr-fast);
  border: 1px solid var(--green-700);
}
.btn-quote:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  color: #ffffff;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border-radius: var(--r-sm);
  color: var(--green-800);
}
@media (max-width: 1100px) {
  .nav-phone-num {
    display: none;
  }
}
@media (max-width: 992px) {
  .nav-menu,
  .nav-cta .btn-quote {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-cta {
    gap: 8px;
  }
}

/* mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--green-900);
  color: #ffffff;
  z-index: 200;
  padding: 30px 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--tr);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.mobile-nav-close {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: grid;
  place-items: center;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-list a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--tr-fast);
}
.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  background: rgba(56, 182, 255, 0.16);
  color: var(--gold-soft);
}
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}
.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr);
  padding-left: 8px;
}
.mobile-nav-sub.open {
  max-height: 800px;
}
.mobile-nav-sub a {
  font-size: 0.9rem;
  padding: 10px 16px;
}
.mobile-nav-cta {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta a {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--r-sm);
  font-weight: 600;
}
.mobile-nav-cta a.primary {
  background: var(--gold);
  color: var(--green-900);
}
.mobile-nav-cta a.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all var(--tr);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-700);
  color: #ffffff;
  border-color: var(--green-700);
  box-shadow: 0 4px 14px rgba(20, 83, 160, 0.25);
}
.btn-primary:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.32);
}
.btn-gold {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(56, 182, 255, 0.3);
}
.btn-gold:hover {
  background: var(--green-900);
  color: var(--gold);
  border-color: var(--green-900);
  transform: translateY(-2px);
}
.btn-outline-d {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-900);
}
.btn-outline-d:hover {
  background: var(--green-900);
  color: #ffffff;
}
.btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: #ffffff;
  color: var(--green-900);
  border-color: #ffffff;
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-700);
  transition: gap var(--tr-fast);
}
.btn-arrow:hover {
  gap: 14px;
  color: var(--green-800);
}
.btn-arrow i {
  font-size: 0.75rem;
}

/* shared label / heading */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-700);
}
.s-deep .eyebrow,
.s-mid .eyebrow {
  color: var(--gold);
}
.s-deep .eyebrow::before,
.s-mid .eyebrow::before {
  background: var(--gold);
}

.shead {
  margin-bottom: 60px;
  max-width: 820px;
}
.shead.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.shead.center .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}
.shead.center .eyebrow::before {
  content: none;
}
.shead.center .eyebrow::after {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}
.shead h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-top: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}
.shead p {
  font-size: 1.02rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 640px;
}
.shead.center p {
  margin-left: auto;
  margin-right: auto;
}
.s-deep .shead p,
.s-mid .shead p {
  color: rgba(255, 255, 255, 0.78);
}

/* HERO */
.hero-full {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--green-900);
  color: #ffffff;
}
.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 37, 64, 0.94) 0%,
      rgba(15, 52, 99, 0.78) 45%,
      rgba(15, 52, 99, 0.45) 100%
    ),
    url("https://images.pexels.com/photos/3807329/pexels-photo-3807329.jpeg?auto=compress&cs=tinysrgb&w=1920");
  background-size: cover;
  background-position: center;
}
.hero-full-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 0 110px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px 6px 6px;
  background: rgba(56, 182, 255, 0.12);
  border: 1px solid rgba(56, 182, 255, 0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 26px;
}
.hero-eyebrow span {
  background: var(--gold);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}
.hero-full h1 {
  font-size: clamp(1.6rem, 3.5vw, 4rem);;
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-full h1 em {
  color: var(--gold);
}
.hero-full > .container {
  width: 100%;
}
.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-floating {
  background: #ffffff;
  color: var(--ink);
  padding: 32px;
  border-radius: var(--r-lg);
  box-shadow: var(--shd-lg);
  border-top: 4px solid var(--gold);
}
.hero-floating h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--green-900);
}
.hero-floating > p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
.hero-floating-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-floating-row .field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-floating-row label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
}
.hero-floating-row input,
.hero-floating-row select {
  padding: 11px 14px;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-sm);
  background: #ffffff;
  font-size: 0.92rem;
  color: var(--ink);
}
.hero-floating-row input:focus,
.hero-floating-row select:focus {
  outline: 0;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(20, 83, 160, 0.14);
}
.hero-floating .btn {
  width: 100%;
  justify-content: center;
}
.hero-floating-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-3);
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.hero-floating-foot i {
  color: var(--green-600);
}


@media (max-width: 992px) {
  .hero-full-grid {
    grid-template-columns: 1fr;
    padding: 60px 0 60px;
  }
  .hero-floating {
    padding: 24px;
  }
}
/* ================================================================
   HERO CAROUSEL — slides + nav + dots
   ================================================================ */

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 800ms ease;
}
.hero-slide.active { opacity: 1; }


.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(10,37,64,0.94) 0%,
    rgba(15,52,99,0.78) 45%,
    rgba(15,52,99,0.45) 100%);
}

.hero-full::before { content: none !important; }


.hero-full > .container { position: relative; z-index: 2; }


.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 200ms ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-900);
}
.hero-nav.prev { left: 24px; }
.hero-nav.next { right: 24px; }


.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 240ms ease;
}
.hero-dot.active {
  background: var(--gold);
  width: 56px;
}

@media (max-width: 768px) {
  .hero-nav { display: none; }
  .hero-dots { bottom: 18px; }
  .hero-dot { width: 26px; }
  .hero-dot.active { width: 40px; }
}
.hero-text-wrap {
  position: relative;

  min-height: 420px;
}
.hero-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 600ms ease, transform 600ms ease;
}
.hero-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 992px) {
  .hero-text-wrap { 
    min-height: 320px; 
    min-width:0;
  }
}

/* ================================================================
   FEATURE STRIP — asymmetric (1 hero card + 3 small)
   ================================================================ */
.fs-asym {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}
.fs-hero-card {
  background: var(--green-900);
  color: #ffffff;
  border-radius: var(--r-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}
.fs-hero-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 182, 255, 0.22),
    transparent 70%
  );
}
.fs-hero-card-num {
  font-family: var(--ff-display);
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.fs-hero-card h3 {
  color: #ffffff;
  font-size: 1.55rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.fs-hero-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
  line-height: 1.65;
  font-size: 0.95rem;
}
.fs-hero-card .btn-arrow {
  color: var(--gold-soft);
}
.fs-hero-card .btn-arrow:hover {
  color: var(--gold);
}

.fs-small-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
}
.fs-small {
  background: #ffffff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--tr-fast);
}
.fs-small:hover {
  border-color: var(--green-500);
  background: var(--green-50);
  transform: translateX(4px);
}
.fs-small-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--green-50);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  color: var(--green-700);
  font-size: 1.15rem;
  transition: all var(--tr);
}
.fs-small:hover .fs-small-icon {
  background: var(--green-700);
  color: #ffffff;
}
.fs-small-text strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 2px;
}
.fs-small-text span {
  font-size: 0.84rem;
  color: var(--ink-muted);
}
@media (max-width: 992px) {
  .fs-asym {
    grid-template-columns: 1fr;
  }
  .fs-hero-card {
    padding: 36px 28px;
  }
}

/* ================================================================
   WELCOME — diagonal split with overlapping number badge
   ================================================================ */
.welcome-d {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.welcome-d-img-wrap {
  position: relative;
}
.welcome-d-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/3;
  box-shadow: var(--shd-lg);
}
.welcome-d-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome-d-tape {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--gold);
  color: #ffffff;
  padding: 12px 22px;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  box-shadow: var(--shd);
  z-index: 2;
}
.welcome-d-stats {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--green-900);
  color: #ffffff;
  padding: 24px 28px;
  border-radius: var(--r);
  box-shadow: var(--shd-lg);
  border-left: 4px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}
.welcome-d-stats-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.welcome-d-stats-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}
.welcome-d-content > .eyebrow {
  margin-bottom: 16px;
}
.welcome-d-content h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 20px;
  font-weight: 700;
}
.welcome-d-content p {
  color: var(--ink-muted);
  margin-bottom: 14px;
  line-height: 1.8;
  font-size: 0.96rem;
}
.welcome-d-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 28px 0;
}
.welcome-d-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: #ffffff;
  border-left: 3px solid var(--green-600);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  box-shadow: var(--shd-sm);
}
.welcome-d-bullets li i {
  color: var(--green-600);
  font-size: 0.88rem;
}
.welcome-d-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
@media (max-width: 992px) {
  .welcome-d {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .welcome-d-img {
    max-width: 540px;
    aspect-ratio: 16/11;
    margin: 0 auto;
  }
  .welcome-d-stats {
   right: 16px;
    bottom: -16px;
    padding: 10px 10px;
  }
  .welcome-d-stats-num {
  
  font-size: 1.4rem;
  }
  .welcome-d-stats-lbl {
  font-size: 0.5rem;
  }
  .welcome-d-content p {
 
  text-align: justify;
  hyphens: auto;
  }
}
@media (max-width: 540px) {
  .welcome-d-bullets {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   SERVICE ROWS — alternating image/text
   ================================================================ */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.svc-row + .svc-row {
  margin-top: 80px;
}
.svc-row.flip .svc-row-content {
  order: 2;
}
.svc-row.flip .svc-row-img {
  order: 1;
}
.svc-row-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 7/4;
  box-shadow: var(--shd);
}
.svc-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.svc-row:hover .svc-row-img img {
  transform: scale(1.05);
}
.svc-row-img-num {
  position: absolute;
  top: 22px;
  left: 22px;
  background: #ffffff;
  color: var(--green-900);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: var(--shd);
  border: 3px solid var(--gold);
}
.svc-row-content > .eyebrow {
  margin-bottom: 14px;
}
.svc-row-content h3 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 14px;
  font-weight: 700;
}
.svc-row-content > p {
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.svc-row-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.svc-row-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
}
.svc-row-points li i {
  width: 22px;
  height: 22px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-row-foot {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--cream-3);
}
.svc-row-price {
  font-family: var(--ff-display);
  color: var(--green-700);
}
.svc-row-price strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.svc-row-price span {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 992px) {
  .svc-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .svc-row.flip .svc-row-content {
    order: 2;
  }
  .svc-row.flip .svc-row-img {
    order: 1;
  }
  .svc-row + .svc-row {
    margin-top: 50px;
  }
}
@media (max-width: 9920px) {
  .svc-row-points {
    grid-template-columns: repeat(1,1fr);
  }
}

/* ================================================================
   SERVICE TILES (services.html grid)
   ================================================================ */
.svc-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-tile {
  background: #ffffff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}

.svc-tile:hover {
  border-color: var(--green-500);
  transform: translateY(-6px);
  box-shadow: var(--shd-lg);
}
.svc-tile:hover::before {
  transform: scaleX(1);
}
.svc-tile-icon {
  width: 56px;
  height: 56px;
  background: var(--green-50);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  color: var(--green-700);
  font-size: 1.3rem;
  margin-bottom: 22px;
  transition: all var(--tr);
}
.svc-tile:hover .svc-tile-icon {
  background: var(--green-700);
  color: #ffffff;
}
.svc-tile h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.svc-tile p {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.svc-tile-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--cream-3);
}
.svc-tile-price {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-700);
}
.svc-tile-price small {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 4px;
}
@media (max-width: 992px) {
  .svc-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .svc-tiles {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   STATS — horizontal ticker with separator dots
   ================================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  position: relative;
}
.stats-bar-cell {
  text-align: center;
  padding: 28px 28px;
  position: relative;
}
.stats-bar-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
.stats-bar-num {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 0.95;
  margin-bottom: 10px;
  display: block;
}
.stats-bar-lbl {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  display: block;
  font-weight: 600;
}
.stats-bar-tail {
  margin-top: 44px;
  text-align: center;
  font-size: 1rem;
  color: var(--ink);
}
.stats-bar-tail strong {
  color: var(--gold);
  font-weight: 700;
}
@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .stats-bar-cell:not(:last-child)::after {
    content: none;
  }
}

/* ================================================================
   AREAS — split: list + visual aside
   ================================================================ */
.areas-split {
  display: grid;
  grid-template-columns:1fr;
  gap: 60px;
  align-items: center;
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  list-style: none;
}
.areas-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-900);
  transition: all var(--tr-fast);
}
.areas-list a:hover {
  border-color: var(--green-700);
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shd-sm);
}
.areas-list a i {
  color: var(--green-600);
  font-size: 0.78rem;
}
.areas-aside {
  position: relative;
  background: var(--green-900);
  color: #ffffff;
  border-radius: var(--r-lg);
  padding: 44px 36px;
  overflow: hidden;
}
.areas-aside::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(56, 182, 255, 0.3);
}
.areas-aside::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 182, 255, 0.18),
    transparent 70%
  );
}
.areas-aside-icon {
  width: 56px;
  height: 56px;
  background: rgba(56, 182, 255, 0.16);
  border: 1px solid rgba(56, 182, 255, 0.34);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 22px;
  position: relative;
}
.areas-aside h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.areas-aside p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
  line-height: 1.7;
  position: relative;
  font-size: 0.94rem;
}
.areas-aside-counter {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(56, 182, 255, 0.22);
  position: relative;
}
.areas-aside-counter strong {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.areas-aside-counter span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}
@media (max-width: 992px) {
  .areas-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .areas-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .areas-list {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   FAQ — two-column accordion
   ================================================================ */
.faq-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq {
  border: 1px solid var(--cream-3);
  border-radius: var(--r);
  background: #ffffff;
  overflow: hidden;
  transition: all var(--tr-fast);
  align-self: start;
}
.faq.open {
  border-color: var(--green-500);
  box-shadow: var(--shd-sm);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-900);
}
.faq-q-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  transition: all var(--tr);
}
.faq.open .faq-q-mark {
  background: var(--green-700);
  color: #ffffff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr);
}
.faq-a-inner {
  padding: 0 22px 20px;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .faq-split {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   CTA — full-bleed split panel
   ================================================================ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shd-lg);
}
.cta-split-img {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 340px;
}
.cta-split-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(10, 37, 64, 0.55) 100%
  );
}
.cta-split-content {
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-700) 100%
  );
  color: #ffffff;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cta-split-content::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 182, 255, 0.22),
    transparent 70%
  );
}
.cta-split-content > .eyebrow {
  margin-bottom: 16px;
  position: relative;
}
.cta-split-content h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 14px;
  position: relative;
  font-weight: 700;
}
.cta-split-content h2 em {
  color: var(--gold);
}
.cta-split-content p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
  position: relative;
  line-height: 1.7;
}
.cta-split-content-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 768px) {
  .cta-split {
    grid-template-columns: 1fr;
  }
  .cta-split-content {
    padding: 36px 26px;
  }
  .cta-split-img {
    min-height: 220px;
  }
}

/* ================================================================ PAGE HEADER */
.page-hdr {
  background: var(--green-900);
  color: #ffffff;
  padding: 84px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hdr::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(56, 182, 255, 0.14),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(74, 144, 226, 0.14),
      transparent 50%
    );
  pointer-events: none;
}
.page-hdr-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hdr-content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.crumb a {
  color: var(--gold-soft);
  transition: color var(--tr-fast);
}
.crumb a:hover {
  color: var(--gold);
}
.crumb i {
  font-size: 0.55rem;
  opacity: 0.5;
}
.page-hdr h1 {
  font-size: clamp(1.6rem, 3vw, 3rem);
  color: #ffffff;
  margin-bottom: 14px;
  font-weight: 800;
}
.page-hdr h1 em {
  color: var(--gold);
}
.page-hdr-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
  padding-bottom: 10px;
}

/* ================================================================ MAP */
.map-block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.map-block iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
  border-radius: var(--r-lg);
  filter: saturate(0.9);
  box-shadow: var(--shd);
}
.map-side {
  background: var(--green-900);
  color: #ffffff;
  padding: 36px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.map-side::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 182, 255, 0.18),
    transparent 70%
  );
}
.map-side > * {
  position: relative;
}
.map-side h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.map-side > p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
  margin-bottom: 26px;
  font-size: 0.94rem;
}
.map-side-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(56, 182, 255, 0.2);
}
.map-side-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.map-side-row i {
  color: var(--gold);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  font-size: 0.92rem;
  margin-top: 4px;
}
.map-side-row strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
  font-weight: 700;
}
.map-side-row span,
.map-side-row a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  display: block;
  line-height: 1.5;
}
.map-side-row a:hover {
  color: var(--gold-soft);
}
@media (max-width: 992px) {
  .map-block {
    grid-template-columns: 1fr;
  }
  .map-block iframe {
    min-height: 340px;
  }
  .map-side {
    padding: 28px;
  }
}

/* ================================================================ CONTACT TRIO */
.contact-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: #ffffff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 34px 26px;
  text-align: center;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-500);
  box-shadow: var(--shd-lg);
}
.contact-card:hover::before {
  transform: scaleX(1);
}
.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: var(--green-50);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-700);
  font-size: 1.25rem;
  transition: all var(--tr);
}
.contact-card:hover .contact-icon {
  background: var(--green-700);
  color: #ffffff;
}
.contact-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-val {
  color: var(--ink-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  word-break: break-word;
  display: inline-block;
  transition: color var(--tr-fast);
}
a.contact-val:hover {
  color: var(--green-700);
}

@media (max-width: 768px) {
  .contact-trio {
    grid-template-columns: 1fr;
  }
}

/* ================================================================ CONTACT FORM */
.contact-form {
  background: #ffffff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shd-sm);
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
}
.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-sm);
  background: var(--green-50);
  color: var(--ink);
  font-size: 0.93rem;
  transition: all var(--tr-fast);
  font-family: inherit;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--green-700);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(20, 83, 160, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-grids{
  display: grid; 
  grid-template-columns: 1.4fr 1fr; 
  gap: 50px; 
  align-items: start;
}
@media (max-width: 990px) {
  .contact-form {
    padding: 26px 22px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-grids{
  
  grid-template-columns: 1fr; 
  gap: 50px; 
 
}
.hours-card {
  padding: 24px !important;
}
}

/* ================================================================ HOURS CARD */
.hours-card {
  background: var(--green-900);
  color: #ffffff;
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.hours-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.2), transparent 70%);
}
.hours-card > * {
  position: relative;
}
.hours-card h3 {
  color: #ffffff;
  margin-bottom: 22px;
  font-size: 1.3rem;
  font-weight: 700;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(56, 182, 255, 0.16);
  font-size: 0.9rem;
}
.hours-row:last-child {
  border-bottom: 0;
}
.hours-row strong {
  font-weight: 600;
  color: #ffffff;
}
.hours-row span {
  color: rgba(255, 255, 255, 0.72);
}
.hours-row.emph strong {
  color: var(--gold);
}
.hours-row.emph span {
  color: var(--gold-soft);
  font-weight: 700;
}
.hours-callout {
  margin-top: 22px;
  padding: 20px;
  background: rgba(56, 182, 255, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.9rem;
}
.hours-callout strong {
  color: var(--gold);
  display: block;
  font-family: var(--ff-display);
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.hours-callout span {
  color: rgba(255, 255, 255, 0.85);
}
.hours-callout a {
  color: var(--gold-soft);
  font-weight: 700;
}

/* ================================================================ GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  background: var(--green-50);
  aspect-ratio: 1;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 1/2;
}
.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2;
}
.gallery-item.span2 {
  grid-column: span 2;
}
.gallery-item.span3 {
  grid-column: span 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(10, 37, 64, 0.7) 100%
  );
  opacity: 0;
  transition: opacity var(--tr);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item-cap {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: #ffffff;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--tr);
}
.gallery-item:hover .gallery-item-cap {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item.span2,
  .gallery-item.span3 {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 4/3;
  }
}

/* ================================================================ AREAS HUB CITY CARDS */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.city-card {
  background: #ffffff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--tr);
  position: relative;
  display: flex;
  flex-direction: column;
}
.city-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-500);
  box-shadow: var(--shd-lg);
}
.city-card-img {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.city-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.city-card:hover .city-card-img img {
  transform: scale(1.06);
}
.city-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10, 37, 64, 0.65) 100%
  );
}
.city-card-img-name {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  color: #ffffff;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 800;
  z-index: 1;
}
.city-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.city-card-body p {
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.city-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--cream-3);
}
.city-card-pin {
  font-size: 0.76rem;
  color: var(--green-700);
  font-weight: 700;
}
.city-card-pin i {
  color: var(--gold);
  margin-right: 4px;
}
@media (max-width: 992px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cities-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================ FOOTER */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 76px 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand .brand {
  color: #ffffff;
  margin-bottom: 18px;
}
.footer-brand .brand-text small {
  color: var(--gold-soft);
}
.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #ffffff;
  transition: all var(--tr-fast);
  font-size: 0.92rem;
}
.footer-social a:hover {
  background: var(--gold);
  color: #ffffff;
}
.footer h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(56, 182, 255, 0.22);
  position: relative;
  font-weight: 700;
}
.footer h4::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--tr-fast);
}
.footer-links a:hover {
  color: var(--gold-soft);
  transform: translateX(3px);
}
.footer-links a i {
  font-size: 0.6rem;
  color: var(--gold);
}
.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-info-row i {
  color: var(--gold);
  font-size: 0.92rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-info-row strong {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 3px;
  font-weight: 700;
}
.footer-info-row span,
.footer-info-row a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.footer-info-row a:hover {
  color: var(--gold-soft);
}
.footer-bottom {
  border-top: 1px solid rgba(56, 182, 255, 0.18);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}


.footer-bottom-links {
  display: flex;
  gap: 22px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--tr-fast);
}
.footer-bottom-links a:hover {
  color: var(--gold-soft);
}

.footer-bottom .rights:hover{
  color:white;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .btn {
 
  padding: 6px 14px;
  }
  .hero-lead {
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.6;
  max-width: 540px;
  text-align: justify;
  hyphens: auto;
  }
  .hero-floating-row {
  display: grid;
  grid-template-columns: 1fr;
  }
  .fs-hero-card-num {
  font-size: 2.2rem;
  }
  .shead h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  margin-top: 0px;
  margin-bottom: 5px;
  }
  .shead {
  margin-bottom: 20px;
  }
  .svc-row-content > p {
  
  text-align: justify;
  hyphens: auto;
  font-size: 0.96rem;
  }
  .stats-bar-tail {
  margin-top: 10px;
  }
  .stats-bar-cell {
  text-align: center;
  padding: 15px 15px;
  }
  .footer {
  padding: 40px 0 0;
  }
  .footer-grid {
  padding-bottom: 10px;
  }
  .page-hdr {
  background: var(--green-900);
  color: #ffffff;
  padding: 50px 0 50px;
  }
  .footer-about {
  hyphens:auto;
  text-align: justify;
  }
  .welcome-d-tape {
  padding: 10px 15px;
  font-size: 0.6rem;
  }
  .stats-bar-lbl {
  font-size: 0.6rem;
  }
  .map-side {
    gap:30px;
  }
  .mobile-nav-list a {
  padding: 5px 15px;
  }
  .mobile-nav-toggle {
  padding: 5px 15px;
  }
  .footer-bottom {
  justify-content:center;
  gap:0;
  }
}


/* ================================================================ FLOATING ACTIONS */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-call a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.15rem;
  box-shadow: var(--shd-lg);
  transition: all var(--tr-fast);
  position: relative;
}
.float-call a.wapp {
  background: #25d366;
}
.float-call a.phone {
  background: var(--green-700);
}
.float-call a:hover {
  transform: scale(1.08);
}
.float-call a.phone::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-700);
  animation: ringPulse 2s infinite;
}
@keyframes ringPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/*  reveal */

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}



/* Top strip  */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: var(--green-900);
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(56, 182, 255, 0.18);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar a {
  color: var(--gold-soft);
  transition: color var(--tr-fast);
}
.topbar a:hover {
  color: #ffffff;
}
.topbar i {
  color: var(--gold);
  margin-right: 6px;
}
@media (max-width: 768px) {
  .topbar-right {
    display: none;
  }
  .topbar-inner {
    justify-content: center;
    padding: 8px 20px;
  }
}


.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  
}
@media (max-width: 768px) {
  .site-header {
    top: 0;
  }
}

body {
  padding-top: 74px; 
}
@media (max-width: 992px) {

  
  body {
    padding-top: 65px;
  } 
 img {
  max-width: 100%;
  height: 45px;
 }
}

.float-actions {
  position: fixed;
  bottom: 60px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-actions a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.15rem;
  box-shadow: var(--shd-lg);
  transition: all var(--tr-fast);
  position: relative;
}
.float-actions a.wapp {
  background: #25d366;
}
.float-actions a.phone {
  background: var(--green-700);
}
.float-actions a:hover {
  transform: scale(1.08);
}
.float-actions a.phone::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-700);
  animation: ringPulse 2s infinite;
}

/* Footer contact info rows (formerly .footer-info-row) */
.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-info i {
  color: var(--gold);
  font-size: 0.92rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-info strong {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 3px;
  font-weight: 700;
}
.footer-info span,
.footer-info a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  display: block;
}
.footer-info a {
  transition: color var(--tr-fast);
}
.footer-info a:hover {
  color: var(--gold-soft);
}

@media(max-width:992px){
   .float-actions a {
  width: 45px;
  height: 45px;
  }
  .float-actions {
  bottom: 60px;
  }
}
/* Hero */
.hero-full > .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 88vh;
}


.page-hdr > .container {
  position: relative;
  z-index: 2;
}

.hero-floating {
  position: relative;
  z-index: 3;
  min-width: 0;
}

section.s:not([class*="s-"]) {
  background: #ffffff;
}
