/* ============================================================
   JMD CLEANING SERVICES — Professional Cleaning Website
   style.css — Core design system & section styles
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  --primary:       #007F5F;
  --secondary:     #7ED957;
  --dark-green:    #0C2340;
  --gold:          #016838;
  --gold-soft:     #A8E6CF;
  --white:         #FFFFFF;
  --light-bg:      #F8F9FA;
  --mist:          #EAF6F0;
  --ink:           #0C2340;
  --muted:         #5A6B78;
   --light-bg1:    #0f6d42;


  --grad-green:    linear-gradient(135deg, #007F5F, #7ED957);
  --grad-dark:     linear-gradient(150deg, #0C2340e6, #06131fee);
  --grad-gold:     linear-gradient(135deg, #016838, #7ED957);

  --font-display:  'Outfit', sans-serif;
  --font-body:     'Poppins', sans-serif;

  --radius-lg:     28px;
  --radius-md:     20px;
  --radius-sm:     14px;

  --shadow-soft:   0 18px 45px -18px rgba(8, 78, 133, .22);
  --shadow-card:   0 12px 34px -14px rgba(10, 40, 65, .18);
  --shadow-hover:  0 28px 60px -20px rgba(8, 78, 133, .38);

  --ease-lux:      cubic-bezier(.22, .8, .26, .99);
  --header-h:      86px;
}

/* ---------- 2. BASE ---------- */
* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
}
.sec-lead9

{
color:#f4f4f4!important;	
}

h2.sec-title9 {
    color: #7ed957;
}

img { max-width: 100%; }

a { text-decoration: none; transition: color .3s var(--ease-lux); }

.section { padding: 110px 0; position: relative; }
.section-tight { padding: 80px 0; }
.bg-light-soft { background: var(--light-bg); }

.bg-light-soft1 {
  background-color: var(--light-bg1);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.bg-light-soft1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/person-taking-care.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: .16;
  mix-blend-mode: luminosity;
  z-index: 0;
  pointer-events: none;
}
/* background-attachment: fixed is unreliable on iOS/mobile Safari, fall back to scroll */
@media (max-width: 991px) {
  .bg-light-soft1::before { background-attachment: scroll; }
}
.bg-mist { background: var(--mist); }

::selection { background: var(--primary); color: #fff; }

/* Section heading pattern */
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.sec-eyebrow::before,
.sec-eyebrow.center::after {
  content: ""; width: 34px; height: 2px;
  background: var(--grad-gold); border-radius: 2px;
}











.sec-eyebrow15 {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: #f1f1f1;
  margin-bottom: 1rem;
}
.sec-eyebrow15::before,
.sec-eyebrow15.center::after {
  content: ""; width: 34px; height: 2px;
  background: var(--grad-gold); border-radius: 2px;
}









.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 1.1rem;
}
.sec-title .accent {
  background: var(--grad-green);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-lead { color: var(--muted); max-width: 640px; }
.text-center .sec-lead { margin-inline: auto; }

/* ---------- 3. BUTTONS ---------- */
.btn-lux {
  --btn-bg: var(--grad-green);
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 2.1rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  color: #fff; border: 0; border-radius: 999px;
  background: var(--btn-bg);
  box-shadow: 0 12px 28px -10px rgba(46, 125, 50, .55);
  transition: transform .35s var(--ease-lux), box-shadow .35s var(--ease-lux);
  z-index: 1;
}
.btn-lux::after {                       /* glow sweep */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.35) 50%, transparent 80%);
  transform: translateX(-120%); transition: transform .7s var(--ease-lux);
}
.btn-lux:hover {
  color: #fff; transform: translateY(-3px);
  box-shadow: 0 0 0 6px rgba(76,175,80,.15), 0 20px 40px -12px rgba(46,125,50,.65);
}
.btn-lux:hover::after { transform: translateX(120%); }

.btn-lux.btn-gold {
  --btn-bg: var(--grad-gold); color: #3a2f05;
  box-shadow: 0 12px 28px -10px rgba(212,175,55,.55);
}
.btn-lux.btn-gold:hover { box-shadow: 0 0 0 6px rgba(212,175,55,.18), 0 20px 40px -12px rgba(212,175,55,.6); }

.btn-lux.btn-white {
  --btn-bg: #fff;
  background: #fff; color: var(--primary);
  box-shadow: 0 12px 28px -10px rgba(6, 40, 24, .45);
}
.btn-lux.btn-white:hover {
  color: var(--dark-green);
  box-shadow: 0 0 0 6px rgba(255,255,255,.22), 0 20px 40px -12px rgba(6,40,24,.5);
}

.btn-lux.btn-ghost {
  --btn-bg: transparent;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  box-shadow: none;
  color: #fff;                     /* pinned so a footer link rule can't dim it */
}
.btn-lux.btn-ghost:hover { background: rgba(255,255,255,.18); box-shadow: 0 0 0 5px rgba(255,255,255,.08); color: #fff; }

.btn-lux .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.5);
  transform: scale(0); animation: ripple .6s ease-out;
  pointer-events: none;
}

/* ---------- 4. TOP BAR ---------- */
.topbar {
  background: var(--dark-green);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  position: relative; z-index: 1051;
}
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--gold-soft); }
.topbar .bi { color: var(--gold); }
.topbar .sep { opacity: .25; }
.topbar-social a {
  display: inline-flex; width: 26px; height: 26px;
  align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.08);
  transition: all .3s var(--ease-lux);
}
.topbar-social a:hover { background: var(--gold); color: #0C2340; transform: translateY(-2px); }

/* ---------- 5. HEADER / NAVBAR ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1050;
  transition: background .4s var(--ease-lux), box-shadow .4s var(--ease-lux), top .35s var(--ease-lux);
}
/* sit below the top info bar until the page is scrolled (desktop only — topbar hidden on mobile) */
@media (min-width: 992px) {
  .topbar { height: 40px; display: flex; align-items: center; }
  .site-header:not(.scrolled) { top: 40px; }
}
.site-header .navbar { padding-block: 0; min-height: var(--header-h); transition: min-height .35s var(--ease-lux); }
.site-header .navbar-brand img { height: 90px; transition: height .35s var(--ease-lux); }

/* transparent state (over hero) */
.site-header:not(.scrolled) { background: linear-gradient(180deg, rgba(8,24,12,.55), transparent); }
@media (min-width: 992px) {
  .site-header:not(.scrolled) .main-nav .nav-link { color: #fff; }
}
.site-header:not(.scrolled) .navbar-brand .logo-chip { background: rgba(255,255,255,.92); }

/* scrolled state — NOTE: no backdrop-filter here; a filter on the header would
   turn it into the containing block for the fixed offcanvas and hide the mobile menu */
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 30px -12px rgba(10,40,65,.18);
}
.site-header.scrolled .navbar { min-height: 68px; }
.site-header.scrolled .navbar-brand img { height: 44px; }
.site-header.scrolled .nav-link { color: var(--ink); }

.navbar-brand .logo-chip {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.92);
  padding: .35rem .9rem; border-radius: 14px;
  box-shadow: var(--shadow-card);
  transition: background .4s;
}

.main-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 500; font-size: .95rem;
  padding: 1.7rem 1.05rem !important;
  position: relative; white-space: nowrap;
}
.main-nav .nav-link::after {              /* hover underline */
  content: ""; position: absolute;
  left: 1.05rem; right: 1.05rem; bottom: 1.2rem;
  height: 2px; border-radius: 2px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-lux);
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { transform: scaleX(1); }
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--secondary) !important; }
.site-header:not(.scrolled) .main-nav .nav-link:hover,
.site-header:not(.scrolled) .main-nav .nav-link.active { color: var(--gold-soft) !important; }

.header-cta .call-chip {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  color: inherit;
}
.header-cta .call-chip .bi {
  display: inline-flex; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: rgba(212,175,55,.16); color: var(--gold);
  border-radius: 50%; font-size: 1.05rem;
  animation: pulse-ring 2.4s infinite;
}
.site-header:not(.scrolled) .header-cta .call-chip { color: #fff; }
.site-header.scrolled .header-cta .call-chip { color: var(--ink); }

.navbar-toggler {
  border: 0; padding: 0;
  width: 44px; height: 44px;               /* comfortable tap target */
  display: inline-flex; align-items: center; justify-content: center;
}
.navbar-toggler:focus { box-shadow: none; }
/* CSS-only hamburger — always visible, no icon-font dependency */
.navbar-toggler .hamburger {
  display: inline-flex; flex-direction: column; justify-content: space-between;
  width: 24px; height: 17px;
}
.navbar-toggler .hamburger span {
  display: block; height: 2.5px; width: 100%; border-radius: 2px;
  background: var(--primary);
  transition: transform .3s var(--ease-lux), opacity .3s var(--ease-lux);
}
.site-header:not(.scrolled) .navbar-toggler .hamburger span { background: #fff; }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

/* ---------- 6. MEGA MENU ---------- */
.nav-item.has-mega { position: static; }
.mega-menu {
  position: absolute; left: 50%; top: 100%;
  transform: translateX(-50%) translateY(14px);
  width: min(880px, calc(100vw - 32px));
  background: #fff; border-radius: var(--radius-md);
  box-shadow: 0 40px 90px -30px rgba(15,35,20,.35);
  padding: 1.8rem 1.8rem 1.4rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease-lux), transform .3s var(--ease-lux), visibility .3s;
  border-top: 3px solid var(--gold);
  z-index: 1300; /* sit above floating social bar (1150) and back-to-top (1200) */
}
@media (min-width: 992px) {
  /* .is-open is held by the hover-intent handler in script.js — the panel
     sits ~18px below the nav item, and a bare :hover drops it while the
     pointer crosses that gap */
  .nav-item.has-mega:hover .mega-menu,
  .nav-item.has-mega:focus-within .mega-menu,
  .nav-item.has-mega.is-open .mega-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
.mega-link {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-weight: 500; font-size: .86rem;
  color: var(--ink); padding: .5rem .6rem; border-radius: 12px;
  transition: all .25s var(--ease-lux);
}
.mega-link .mega-icon {
  flex: 0 0 auto;
  width: 34px; height: 34px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--mist); color: var(--primary); font-size: 1rem;
  transition: all .3s var(--ease-lux);
}
.mega-link:hover { background: var(--mist); color: var(--primary); transform: translateX(4px); }
.mega-link:hover .mega-icon { background: var(--grad-green); color: #fff; }
.mega-all {
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  color: var(--primary); display: inline-flex; align-items: center; gap: .4rem;
}
.mega-all .bi { transition: transform .3s var(--ease-lux); }
.mega-all:hover { color: var(--dark-green); }
.mega-all:hover .bi { transform: translateX(5px); }
.mega-footer {
  border-top: 1px dashed #dff2e8; margin-top: 1.2rem; padding-top: .9rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: .85rem;
}

/* ---------- 7. OFFCANVAS (mobile menu) ---------- */
/* desktop: the same markup renders as the inline navbar */
@media (min-width: 992px) {
  .offcanvas-lux { flex-grow: 1; }
  .offcanvas-lux .offcanvas-body {
    display: flex; align-items: center;
    padding: 0; overflow: visible;
  }
}
/* mobile: real offcanvas drawer */
@media (max-width: 991.98px) {
  .offcanvas-lux { width: 320px !important; background: #fff; }
  .offcanvas-lux .offcanvas-body { padding: .9rem 1.1rem 1.4rem; }
  .offcanvas-lux .nav-link {
    font-family: var(--font-display); font-weight: 500; font-size: .9rem;
    color: var(--ink) !important; padding: .55rem .25rem !important;
    border-bottom: 1px solid #edf7f1;
  }
  .offcanvas-lux .nav-link.active { color: var(--primary) !important; }
  .offcanvas-lux .offcanvas-body .sub-list { padding: .15rem 0 .15rem .85rem; }
  .offcanvas-lux .offcanvas-body .sub-list a { font-size: .8rem; padding: .18rem 0; }
  .offcanvas-lux .offcanvas-body .sub-cat { font-size: .68rem; margin: .45rem 0 .1rem; }
}
.offcanvas-lux .offcanvas-header { border-bottom: 1px solid #ebf6f0; }
.offcanvas-lux .nav-link.active { color: var(--primary); }
.offcanvas-lux .collapse-toggle { display: flex; justify-content: space-between; align-items: center; }
.offcanvas-lux .collapse-toggle .bi-chevron-down { transition: transform .3s; font-size: .8rem; }
.offcanvas-lux .collapse-toggle[aria-expanded="true"] .bi-chevron-down { transform: rotate(180deg); }
.offcanvas-lux .sub-list { list-style: none; padding: .4rem 0 .4rem 1rem; margin: 0; }
.offcanvas-lux .sub-list a {
  display: block; font-size: .85rem; color: var(--muted); padding: .32rem 0;
}
.offcanvas-lux .sub-list a:hover { color: var(--primary); }
.offcanvas-lux .sub-cat {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin: .6rem 0 .2rem;
}
.offcanvas-contact { font-size: .85rem; color: var(--muted); }
.offcanvas-contact .bi { color: var(--primary); width: 20px; }
.offcanvas-social a {
  display: inline-flex; width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 50%; background: var(--mist); color: var(--primary);
  transition: all .3s var(--ease-lux);
}
.offcanvas-social a:hover { background: var(--grad-green); color: #fff; transform: translateY(-3px); }

/* ---------- 8. HERO SLIDER ---------- */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-swiper, .hero-swiper .swiper-slide { height: 100%; }
.hero-slide { position: relative; height: 100%; display: flex; align-items: center; }
.hero-slide .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 7s linear;
}
.swiper-slide-active .hero-bg { transform: scale(1); }   /* Ken Burns */
.hero-slide .hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; background: #0C2340;
}
.hero-video-mute {
  position: absolute; z-index: 4;
  right: 24px; bottom: 90px;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.14); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.28); color: #fff;
  font-size: 1.05rem; cursor: pointer; transition: background .25s ease, transform .25s ease;
}
.hero-video-mute:hover { background: var(--gold); color: #0C2340; transform: scale(1.06); }
@media (max-width: 767.98px) {
  .hero-video-mute { right: 16px; bottom: 70px; width: 40px; height: 40px; font-size: .92rem; }
}
.hero-slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(7,26,12,.88) 8%, rgba(10,34,16,.62) 45%, rgba(8,28,14,.35) 100%);
  z-index: 1;
}
.hero-slide::after {                      /* animated gradient tint */
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .5;
  background: linear-gradient(120deg, rgba(46,125,50,.28), rgba(212,175,55,.12), rgba(8,78,133,.3));
  background-size: 300% 300%;
  animation: gradient-shift 12s ease infinite;
  mix-blend-mode: soft-light;
}
.hero-content { position: relative; z-index: 3; color: #fff; padding-top: 120px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--gold-soft);
  font-family: var(--font-display); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .5rem 1.2rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.hero-title {
  color: #fff; font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 4.4rem);
  line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: 1.2rem; max-width: 15ch;
}
.hero-title em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-typed-line {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--gold-soft); min-height: 2.2rem; margin-bottom: 1rem;
}
.hero-typed-line .typed-cursor { color: var(--gold); }
.hero-text { color: rgba(255,255,255,.82); max-width: 560px; font-size: 1.02rem; margin-bottom: 2rem; }

/* slide entrance animation */
.hero-anim { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-lux), transform .9s var(--ease-lux); }
.swiper-slide-active .hero-anim { opacity: 1; transform: none; }

/* Fallback: if Swiper JS never loads, show slide 1 as a static hero
   instead of a blank box (class added by script.js) */
.hero-static .hero-anim { opacity: 1; transform: none; }
.hero-static .swiper-wrapper { display: block; }
.hero-static .swiper-slide { display: none; height: 100%; }
.hero-static .swiper-slide:first-child { display: block; }
.hero-static .hero-bg { transform: none; }
.hero-static .swiper-pagination,
.hero-static .swiper-button-prev,
.hero-static .swiper-button-next { display: none; }
.swiper-slide-active .d1 { transition-delay: .15s; }
.swiper-slide-active .d2 { transition-delay: .3s; }
.swiper-slide-active .d3 { transition-delay: .45s; }
.swiper-slide-active .d4 { transition-delay: .6s; }

/* swiper controls */
.hero .swiper-pagination { left: 50% !important; transform: translateX(-50%); bottom: 26px !important; width: auto !important; z-index: 5; }
.hero .swiper-pagination-bullet {
  width: 34px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.4); opacity: 1; transition: all .3s;
}
.hero .swiper-pagination-bullet-active { background: var(--gold); width: 52px; }
.hero .swiper-button-prev, .hero .swiper-button-next {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  transition: all .3s var(--ease-lux);
}
.hero .swiper-button-prev::after, .hero .swiper-button-next::after { font-size: 1rem; }
.hero .swiper-button-prev:hover, .hero .swiper-button-next:hover { background: var(--gold); color: #0C2340; border-color: var(--gold); }

/* glass contact card */
.hero-contact-card {
  position: absolute; right: 40px; bottom: 90px; z-index: 6;
  width: 320px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  color: #fff;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.5);
  animation: float-y 6s ease-in-out infinite;
}
.hero-contact-card h6 {
  color: var(--gold-soft); font-size: .78rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem;
}
.hcc-row { display: flex; gap: .8rem; align-items: flex-start; padding: .5rem 0; }
.hcc-row + .hcc-row { border-top: 1px solid rgba(255,255,255,.12); }
.hcc-row .bi {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,.18); color: var(--gold); font-size: .95rem;
}
.hcc-row .lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.6); }
.hcc-row .val { font-size: .85rem; font-weight: 500; color: #fff; line-height: 1.45; }
.hcc-row .val a { color: #fff; }
.hcc-row .val a:hover { color: var(--gold-soft); }

/* floating leaves */
.leaf {
  position: absolute; z-index: 2; color: rgba(212,175,55,.5);
  animation: leaf-fall linear infinite; pointer-events: none;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute; left: 50%; bottom: 64px; transform: translateX(-50%);
  z-index: 5; color: rgba(255,255,255,.75); text-align: center;
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
}
.scroll-indicator .mouse {
  width: 24px; height: 40px; margin: 0 auto 8px;
  border: 2px solid rgba(255,255,255,.6); border-radius: 14px; position: relative;
}
.scroll-indicator .mouse::after {
  content: ""; position: absolute; left: 50%; top: 7px;
  width: 4px; height: 8px; border-radius: 4px; margin-left: -2px;
  background: var(--gold); animation: scroll-wheel 1.8s infinite;
}

/* ---------- 9. HERO FEATURES ---------- */
.hero-features { margin-top: -76px; position: relative; z-index: 10; }
.feature-card {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.6rem;
  height: 100%;
  transition: transform .4s var(--ease-lux), box-shadow .4s var(--ease-lux);
}
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.feature-card .fc-icon {
  width: 60px; height: 60px; border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-green); color: #fff; font-size: 1.5rem;
  box-shadow: 0 12px 24px -8px rgba(46,125,50,.5);
  margin-bottom: 1.1rem;
  transition: transform .45s var(--ease-lux);
}
.feature-card:hover .fc-icon { transform: rotateY(180deg); }
.feature-card h5 { font-size: 1.05rem; margin-bottom: .4rem; }
.feature-card p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ---------- 10. STATS STRIP ---------- */
.stat-item { text-align: center; }
.stat-item .num {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1;
  background: var(--grad-green);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-item .num .suffix { color: var(--gold); -webkit-text-fill-color: var(--gold); }
.stat-item .lbl { font-size: .85rem; color: var(--muted); margin-top: .35rem; font-weight: 500; }

/* ---------- 11. ABOUT ---------- */
.about-collage { position: relative; padding-bottom: 70px; padding-right: 40px; }
.about-collage .img-main {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-hover);
  width: 88%; aspect-ratio: 4/4.6; object-fit: cover;
}
.about-collage .img-float {
  position: absolute; right: 0; bottom: 0; width: 52%;
  border-radius: var(--radius-md); border: 8px solid #fff;
  box-shadow: var(--shadow-hover); aspect-ratio: 4/3.2; object-fit: cover;
  animation: float-y 7s ease-in-out infinite;
}
.about-collage .exp-badge {
  position: absolute; top: 28px; left: -18px; z-index: 3;
  background: var(--grad-green); color: #fff;
  border-radius: var(--radius-md); padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-hover); text-align: center;
  border: 4px solid rgba(255,255,255,.35);
}
.about-collage .exp-badge .n { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-collage .exp-badge .t { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.play-btn {
  position: absolute; left: 38%; top: 40%; z-index: 3;
  width: 76px; height: 76px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.92); color: var(--primary); font-size: 1.6rem;
  box-shadow: 0 0 0 0 rgba(255,255,255,.55);
  animation: pulse-ring-big 2.2s infinite;
  transition: transform .3s var(--ease-lux);
}
.play-btn:hover { transform: scale(1.08); color: var(--dark-green); }

.mv-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--light-bg); border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem; height: 100%;
  border-left: 3px solid var(--gold);
  transition: all .35s var(--ease-lux);
}
.mv-card:hover { background: #fff; box-shadow: var(--shadow-card); transform: translateY(-4px); }
.mv-card .bi { font-size: 1.5rem; color: var(--primary); }
.mv-card h6 { margin-bottom: .2rem; font-size: .95rem; }
.mv-card p { font-size: .82rem; color: var(--muted); margin: 0; }

.about-check { list-style: none; padding: 0; margin: 0; }
.about-check li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .92rem; font-weight: 500; padding: .3rem 0;
}
.about-check .bi { color: var(--gold); font-size: 1.05rem; }

/* ---------- 12. SERVICES ---------- */
.service-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-card); height: 100%;
  transition: transform .45s var(--ease-lux), box-shadow .45s var(--ease-lux);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.service-card .sc-img { position: relative; aspect-ratio: 16/10.5; overflow: hidden; }
.service-card .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-lux); }
.service-card:hover .sc-img img { transform: scale(1.1); }
.service-card .sc-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18,48,24,.7));
  opacity: .65; transition: opacity .45s;
}
.service-card:hover .sc-img::after { opacity: .9; background: linear-gradient(180deg, rgba(46,125,50,.15), rgba(18,48,24,.85)); }
.service-card .sc-icon {
  position: relative; z-index: 3;
  margin-top: -28px; margin-bottom: .85rem;
  width: 56px; height: 56px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-green); color: #fff; font-size: 1.35rem;
  box-shadow: 0 12px 26px -8px rgba(46,125,50,.55);
  border: 3px solid #fff;
  transition: transform .4s var(--ease-lux), background .4s;
}
.service-card:hover .sc-icon { transform: translateY(-6px) rotate(-6deg); background: var(--grad-gold); color: #3a2f05; }
.service-card .sc-body { padding: 0 1.5rem 1.5rem; }
.service-card h5 { font-size: 1.08rem; margin-bottom: .5rem; }
.service-card p { font-size: .85rem; color: var(--muted); margin-bottom: .9rem; }
.sc-more {
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  color: var(--primary); display: inline-flex; align-items: center; gap: .4rem;
}
.sc-more .bi { transition: transform .3s var(--ease-lux); }
.sc-more:hover { color: var(--dark-green); }
.sc-more:hover .bi { transform: translateX(5px); }

/* ---------- 13. WHY CHOOSE US (split showcase) ---------- */
.why-split { position: relative; overflow: hidden; background: #fff; }
.why-split::before,
#faq::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(76,175,80,.22) 2px, transparent 2px),
    radial-gradient(rgba(76,175,80,.12) 1.4px, transparent 1.4px);
  background-size: 26px 26px, 14px 14px;
  background-position: 0 0, 7px 7px;
  -webkit-mask-image: radial-gradient(70% 70% at 85% 15%, #000 0%, transparent 75%);
  mask-image: radial-gradient(70% 70% at 85% 15%, #000 0%, transparent 75%);
  pointer-events: none; z-index: 0;
}
#faq { position: relative; overflow: hidden; background: #fff; }

/* visual side */
.why-visual { position: relative; padding: 0 26px 26px 0; }
.why-visual img {
  width: 100%; aspect-ratio: 4/4.6; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(18,48,24,.4);
  position: relative; z-index: 1;
}
.why-visual .wv-frame {
  position: absolute; inset: 26px -0px -0px 26px;
  border: 3px solid var(--gold); border-radius: var(--radius-lg);
  opacity: .55;
}
.wv-badge {
  position: absolute; z-index: 2; top: 22px; left: -14px;
  display: flex; align-items: center; gap: .7rem;
  background: var(--grad-green); color: #fff;
  padding: .9rem 1.2rem; border-radius: 18px;
  box-shadow: 0 18px 38px -12px rgba(46,125,50,.55);
  animation: float-y 5s ease-in-out infinite;
}
.wv-badge .num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; line-height: 1; }
.wv-badge .txt { font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; opacity: .9; line-height: 1.3; }
.wv-rating {
  position: absolute; z-index: 2; bottom: 44px; right: 2px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  padding: .85rem 1.1rem; border-radius: 16px;
  box-shadow: var(--shadow-hover);
}
.wv-rating .stars { color: var(--gold); font-size: .8rem; letter-spacing: 2px; }
.wv-rating .line1 { font-family: var(--font-display); font-weight: 700; font-size: .95rem; margin-top: .15rem; }
.wv-rating .line2 { font-size: .72rem; color: var(--muted); }

/* reason cards */
.reason-card {
  position: relative; height: 100%; overflow: hidden;
  display: flex; align-items: flex-start; gap: .95rem;
  background: #fff; border: 1px solid #e8f5ee;
  border-radius: 18px; padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 26px -18px rgba(18,48,24,.25);
  transition: transform .4s var(--ease-lux), box-shadow .4s, border-color .4s;
}
.reason-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--grad-gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform .45s var(--ease-lux);
}
.reason-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.4);
  box-shadow: var(--shadow-hover);
}
.reason-card:hover::before { transform: scaleY(1); }
.rc-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--mist); color: var(--primary); font-size: 1.25rem;
  transition: all .4s var(--ease-lux);
}
.reason-card:hover .rc-icon {
  background: var(--grad-green); color: #fff;
  transform: rotate(-8deg) scale(1.05);
  box-shadow: 0 12px 24px -10px rgba(46,125,50,.55);
}
.reason-card h6 { font-size: .95rem; margin-bottom: .25rem; }
.reason-card p { font-size: .8rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* CTA strip under cards */
.why-cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.1rem;
  background: linear-gradient(135deg, #EFFAF4, #E9F7F0);
  border: 1px dashed rgba(46,125,50,.35);
  border-radius: 18px; padding: 1rem 1.3rem;
}
.why-cta .bi-chat-square-quote-fill { color: var(--gold); font-size: 1.4rem; }
.why-cta span { font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.why-cta .btn-lux { margin-left: auto; padding: .65rem 1.3rem; font-size: .85rem; }

/* ---------- 14. PROCESS ---------- */
.process-row { position: relative; }
.process-row::before {
  content: ""; position: absolute; top: 44px; left: 8%; right: 8%;
  height: 3px; border-radius: 3px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 14px, transparent 14px 26px);
  opacity: .55;
}
.process-step { text-align: center; position: relative; padding-top: 8px; }
.process-step .ps-num {
  width: 76px; height: 76px; margin: 0 auto 1.1rem; position: relative;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: #fff; box-shadow: var(--shadow-card);
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--primary);
  border: 2px dashed rgba(76,175,80,.5);
  transition: all .4s var(--ease-lux);
}
.process-step:hover .ps-num { background: var(--grad-green); color: #fff; border-color: transparent; transform: scale(1.08) rotate(6deg); }
.process-step h6 { font-size: 1rem; margin-bottom: .3rem; }
.process-step p { font-size: .8rem; color: var(--muted); max-width: 210px; margin-inline: auto; }

/* ---------- 15. COUNTER PARALLAX ---------- */
.counter-band {
  position: relative; padding: 100px 0; color: #fff;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=70') center/cover fixed;
}
.counter-band::before { content: ""; position: absolute; inset: 0; background: var(--grad-dark); }
.counter-band .stat-item .num,
.counter-band .stat-item .num .suffix { background: none; -webkit-text-fill-color: #fff; color: #fff; }
.counter-band .stat-item .num .suffix { -webkit-text-fill-color: var(--gold); color: var(--gold); }
.counter-band .stat-item .lbl { color: rgba(255,255,255,.75); }
.counter-band .stat-icon {
  font-size: 1.7rem; color: var(--gold); display: block; margin-bottom: .7rem;
}

/* ---------- 16. PROJECTS ---------- */
.filter-pills { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.filter-pills button {
  border: 1.5px solid #ddf0e6; background: #fff; color: var(--muted);
  font-family: var(--font-display); font-weight: 500; font-size: .85rem;
  padding: .5rem 1.3rem; border-radius: 999px;
  transition: all .3s var(--ease-lux);
}
.filter-pills button:hover { border-color: var(--secondary); color: var(--primary); }
.filter-pills button.active { background: var(--grad-green); color: #fff; border-color: transparent; box-shadow: 0 10px 22px -8px rgba(46,125,50,.5); }

.project-item { transition: opacity .4s var(--ease-lux), transform .4s var(--ease-lux); }
.project-item.hide-item { display: none; }
.project-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); display: block;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-lux); display: block; }
.project-card:hover img { transform: scale(1.08); }
.project-card .pc-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem; color: #fff;
  background: linear-gradient(180deg, transparent 35%, rgba(14,40,20,.9));
  opacity: 0; transition: opacity .45s var(--ease-lux);
}
.project-card:hover .pc-overlay { opacity: 1; }
.project-card .pc-cat { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }
.project-card .pc-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; transform: translateY(12px); transition: transform .45s var(--ease-lux); }
.project-card:hover .pc-title { transform: none; }
.project-card .pc-zoom {
  position: absolute; top: 16px; right: 16px;
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.16); backdrop-filter: blur(6px);
  color: #fff; border: 1px solid rgba(255,255,255,.3);
  transform: scale(.5); opacity: 0; transition: all .4s var(--ease-lux);
}
.project-card:hover .pc-zoom { transform: none; opacity: 1; }

/* before / after */
.ba-slider {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-hover); user-select: none; aspect-ratio: 16/9;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: var(--gold); cursor: ew-resize; z-index: 3;
}
.ba-handle::after {
  content: "\25C2\2009\25B8";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: #0C2340;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.ba-tag {
  position: absolute; top: 16px; z-index: 2;
  background: rgba(10,30,15,.65); backdrop-filter: blur(6px); color: #fff;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 999px;
}
.ba-tag.before { left: 16px; }
.ba-tag.after { right: 16px; background: rgba(212,175,55,.85); color: #2a2205; }

/* ---------- 17. GALLERY ---------- */
.gallery-grid { columns: 4 240px; column-gap: 1rem; }
.gallery-grid a {
  display: block; position: relative; border-radius: var(--radius-sm);
  overflow: hidden; margin-bottom: 1rem; box-shadow: var(--shadow-card);
}
.gallery-grid img { width: 100%; display: block; transition: transform .7s var(--ease-lux); }
.gallery-grid a::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,22,15,.82) 100%);
  opacity: 0; transition: opacity .4s var(--ease-lux); z-index: 1;
}
.gallery-grid a::after {
  content: "\F62C"; font-family: "bootstrap-icons";
  position: absolute; top: 50%; left: 50%; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.16); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  transform: translate(-50%,-50%) scale(.6);
  opacity: 0; transition: opacity .35s var(--ease-lux), transform .35s var(--ease-lux);
}
.gallery-grid a:hover::before { opacity: 1; }
.gallery-grid a:hover::after { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.gallery-grid a:hover img { transform: scale(1.08); }

/* ---------- 18. TESTIMONIALS ---------- */
.testimonials-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 340px at 12% 0%, rgba(76,175,80,.12), transparent 60%),
    radial-gradient(600px 300px at 90% 100%, rgba(212,175,55,.12), transparent 60%),
    var(--light-bg);
}
.testimonials-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('../images/world-map-dots.svg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1000px auto;
  opacity: .22;
  pointer-events: none;
  z-index: 0;
}
.testi-card {
  position: relative;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  padding: 2rem 1.9rem; height: 100%;
  transition: transform .4s var(--ease-lux), box-shadow .4s;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.testi-card .quote-ic {
  position: absolute; top: 18px; right: 24px;
  font-size: 2.6rem; color: rgba(212,175,55,.28); line-height: 1;
}
.testi-card .stars { color: var(--gold); font-size: .85rem; margin-bottom: .8rem; letter-spacing: 2px; }
.testi-card .txt { font-size: .9rem; color: var(--muted); margin-bottom: 1.4rem; }
.testi-card .who { display: flex; align-items: center; gap: .9rem; }
.testi-card .who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-card .who .nm { font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.testi-card .who .rl { font-size: .75rem; color: var(--muted); }
.testi-card .g-badge { margin-left: auto; font-size: 1.3rem; }
.testi-swiper { padding: 10px 6px 56px !important; }
.testi-swiper .swiper-pagination-bullet { background: var(--primary); }
.testi-swiper .swiper-pagination-bullet-active { background: var(--gold); width: 26px; border-radius: 4px; }

/* ---------- 19. FAQ ---------- */
.faq-accordion .accordion-item {
  border: 1px solid #e4f3ea !important; border-radius: var(--radius-sm) !important;
  overflow: hidden; margin-bottom: .9rem; box-shadow: 0 6px 18px -12px rgba(10,40,65,.15);
}
.faq-accordion .accordion-button {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 1.15rem 1.4rem; color: var(--ink); background: #fff;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--grad-green); color: #fff; box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body { font-size: .9rem; color: var(--muted); padding: 1.2rem 1.4rem; }

/* ---------- 20. CTA BANNER ---------- */
.cta-banner {
  position: relative; overflow: hidden; color: #fff;
  background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1920&q=70') center/cover;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(8,78,133,.95), rgba(46,125,50,.82) 55%, rgba(212,175,55,.45));
}
.cta-glass {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 4rem);
}
.cta-glass h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 800; }
.cta-glass p { color: rgba(255,255,255,.85); }

/* ---------- 21. CONTACT ---------- */
.contact-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover); overflow: hidden;
}
.contact-info-pane {
  background: linear-gradient(160deg, var(--dark-green), var(--primary));
  color: #fff; padding: 2.6rem 2.2rem; height: 100%; position: relative; overflow: hidden;
}
.contact-info-pane::after {
  content: ""; position: absolute; right: -70px; bottom: -70px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.35), transparent 70%);
}
.contact-info-pane h4 { color: #fff; }
.ci-row { display: flex; gap: 1rem; padding: .8rem 0; align-items: flex-start; position: relative; z-index: 2; }
.ci-row .bi {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: var(--gold-soft); font-size: 1.05rem;
}
.ci-row .lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.6); }
.ci-row .val, .ci-row .val a { font-size: .9rem; color: #fff; }
.ci-row .val a:hover { color: var(--gold-soft); }

.form-lux .form-control, .form-lux .form-select {
  border: 1.5px solid #e2f2e9; border-radius: var(--radius-sm);
  padding: .85rem 1.1rem; font-size: .92rem; background: var(--light-bg);
  transition: all .3s var(--ease-lux);
}
.form-lux .form-control:focus, .form-lux .form-select:focus {
  border-color: var(--secondary); background: #fff;
  box-shadow: 0 0 0 4px rgba(76,175,80,.14);
}
.map-frame { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.map-frame iframe { display: block; width: 100%; height: 320px; border: 0; filter: saturate(.85); }

/* ---------- 22. FOOTER ---------- */
.footer {
  position: relative;
  z-index: 1;
  overflow: visible;
  background:
    radial-gradient(800px 400px at 85% -10%, rgba(76,175,80,.14), transparent 60%),
    #0B1B2A;
  color: rgba(255,255,255,.72); font-size: .9rem;
}
/* dotted background pattern */
.footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.09) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 220px, #000 calc(100% - 40px), transparent);
  mask-image: linear-gradient(180deg, transparent, #000 220px, #000 calc(100% - 40px), transparent);
  pointer-events: none;
  z-index: 0;
}
.footer > .container { position: relative; z-index: 1; }
.footer .row.g-5, .footer .footer-bottom { position: relative; z-index: 1; }
.footer .animate-illustration {
  position: absolute;
  right: -14%;
  bottom: 66px;
  z-index: 0;
  pointer-events: none;
  opacity: .85;
}
.footer .animate-illustration img {
  height: 300px;
  animation: fadeRightLeft 10s linear infinite;
}
@keyframes fadeRightLeft {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-40px); }
  100% { transform: translateX(0); }
}
@media (max-width: 991px) {
  .footer .animate-illustration { display: none; }
}
.footer .footer-cta {
  background: var(--grad-green); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem); margin-top: -70px; position: relative; z-index: 3;
  box-shadow: var(--shadow-hover);
}
.footer .footer-cta h4 { color: #fff; margin: 0 0 .35rem; }
.footer .footer-cta p { color: rgba(255,255,255,.82); margin: 0; font-size: .88rem; }
.footer-cta__actions .btn-lux { white-space: nowrap; }

.footer h6 {
  color: #fff; font-size: .95rem; letter-spacing: .06em;
  margin-bottom: 1.2rem; position: relative; padding-bottom: .6rem;
}
.footer h6::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 30px; height: 2px; background: var(--gold); border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a {
  color: rgba(255,255,255,.66); display: inline-flex; align-items: center; gap: .5rem;
  padding: .26rem 0; font-size: .86rem; transition: all .3s var(--ease-lux);
}
.footer-links a .bi,
.footer-links a i { font-size: .65rem; color: var(--gold); transition: transform .3s var(--ease-lux); }
.footer-links a:hover { color: var(--gold-soft); transform: translateX(4px); }
.footer-links a:hover i { transform: translateX(3px); }
.footer-hours li { display: flex; justify-content: space-between; padding: .3rem 0; border-bottom: 1px dashed rgba(255,255,255,.1); font-size: .84rem; }
.footer-hours span:last-child { color: var(--gold-soft); }

/* Social icons — reversed colour scheme: solid brand colour by default, inverts on hover */
.footer-social a {
  display: inline-flex; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 12px; background: var(--grad-gold);
  color: #14331f; transition: all .3s var(--ease-lux);
}
.footer-social a:hover { background: rgba(255,255,255,.1); color: #fff; transform: translateY(-4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* Fallback link color for plain <a> tags in the footer (e.g. Call Us / email links)
   that aren't covered by .footer-links or .footer-bottom — otherwise they fall
   back to the browser's default blue instead of the footer's off-white text. */
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: var(--gold-soft); }

/* ---------- 22b. MOBILE CONTACT STRIP (above banner) ---------- */
.mobile-contact-strip {
  position: relative;
  width: 100%;
  background: var(--grad-green);
  z-index: 1040; /* sits below the fixed header, above hero */
}
.mobile-contact-strip .mcs-item {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  color: #fff; font-size: .76rem; font-weight: 600;
  padding: .6rem .4rem; min-width: 0;
  border-right: 1px solid rgba(255,255,255,.22);
}
.mobile-contact-strip .col-6:last-child .mcs-item { border-right: 0; }
.mobile-contact-strip .mcs-item i { font-size: .82rem; flex-shrink: 0; }
.mobile-contact-strip .mcs-item span {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}
.mobile-contact-strip .mcs-item:hover { color: var(--gold-soft); }

/* ---------- 22c. MOBILE QUOTE FORM CARD (after banner) ---------- */
.mobile-quote-card {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 1.4rem 1.2rem;
  border: 1px solid rgba(10,40,65,.06);
}
.mobile-quote-card h5 { font-size: 1.05rem; }

/* ---------- 22d. SERVICE CARD BADGE ---------- */
.sc-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--grad-gold); color: #14331f;
  font-size: .7rem; font-weight: 700; letter-spacing: .02em;
  padding: .35rem .75rem; border-radius: 999px;
  box-shadow: 0 6px 16px -4px rgba(1,104,56,.45);
}

/* ---------- 22e. FLOATING SOCIAL ICONS (right side) ---------- */
.social-float {
  position: fixed; top: 50%; right: 0; transform: translateY(-50%);
  z-index: 1150; display: flex; flex-direction: column;
}
.social-float a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-bottom: 2px;
  background: var(--grad-green); color: #fff; font-size: 1.05rem;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 4px 14px -6px rgba(10,40,65,.35);
  transition: all .3s var(--ease-lux);
}
.social-float a:hover {
  background: var(--grad-gold); color: #14331f;
  transform: translateX(-6px);
}

/* ---------- 23. UTILITIES ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-gold); z-index: 2000;
}
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 1200;
  width: 48px; height: 48px; border-radius: 14px; border: 0;
  background: var(--grad-green); color: #fff; font-size: 1.1rem;
  box-shadow: var(--shadow-hover);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all .4s var(--ease-lux);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--grad-gold); color: #2a2205; }

/* preloader */
.preloader {
  position: fixed; inset: 0; z-index: 3000;
  background: #0B1B2A; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  transition: opacity .6s var(--ease-lux), visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader .ring {
  width: 64px; height: 64px; border-radius: 50%;
  border: 3px solid rgba(212,175,55,.2); border-top-color: var(--gold);
  animation: spin 1s linear infinite;
  display: flex; align-items: center; justify-content: center;
}
.preloader .ring .bi { color: var(--secondary); font-size: 1.4rem; animation: spin 1s linear infinite reverse; }
.preloader p { color: rgba(255,255,255,.6); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; margin: 0; }

/* blob decorations */
.blob {
  position: absolute; border-radius: 50%; filter: blur(60px);
  opacity: .35; pointer-events: none; z-index: 0;
  animation: blob-drift 14s ease-in-out infinite alternate;
}
.blob.green { background: rgba(76,175,80,.45); }
.blob.gold { background: rgba(212,175,55,.4); }
.section > .container { position: relative; z-index: 1; }

/* ---------- INNER PAGE HERO ---------- */
.page-hero {
  padding: 170px 0 90px;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: .75rem;
}
.page-hero .breadcrumb { margin-bottom: 0; }
.page-hero .breadcrumb-item a { color: var(--gold-soft); font-weight: 500; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.85); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* Service page checklist */
.svc-check li { padding: .45rem 0; font-size: .95rem; }
.svc-check li i { color: var(--secondary); margin-right: .5rem; }
