:root {
  --brand: #E11D2A;
  --brand-dark: #B0121C;
  --brand-soft: #FFF1F2;
  --navy: #082a59;
  --navy-deep: #051d3e;
  --navy-mid: #0d3b78;
  --ink: #0F1419;
  --ink-soft: #374151;
  --muted: #6B7280;
  --line: #EAECEF;
  --bg: #FFFFFF;
  --bg-soft: #F8F9FA;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 20, 25, .08);
  --shadow-soft: 0 6px 24px rgba(15, 20, 25, .06);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

section[id],
header[id] {
  scroll-margin-top: 96px;
}

section{padding: 50px 0;}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.025em
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2
}

p {
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.78;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: inherit
}

.text-brand {
  color: var(--brand)
}

.bg-soft {
  background-color: var(--bg-soft);
  background-image: radial-gradient(rgba(8,42,89,.045) 1px, transparent 1px);
  background-size: 22px 22px;
}

.shadow-soft {
  box-shadow: var(--shadow-soft)
}

.section {
  padding: 50px 0;
}

.pt0{
  padding-top: 0 !important;
}

.p00{
  padding-bottom: 0 !important;
}

@media(max-width:768px) {
  .section {
    padding: 44px 0
  }
}

.section-head {
  max-width: 680px;
  margin: 0 auto 32px
}

.section-head p {
  color: var(--muted)
}

/* ── Section Heading v2 (trending classic) ── */
.sh2 {
  max-width: 1000px;
  margin: 0 auto 48px
}

/* Tag line — two short rules flanking the text */
.sh2-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--brand);
  margin-bottom: 18px
}

.sh2-tag span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--brand);
  border-radius: 2px
}

/* Heading — em tag gets the inline underline highlight */
.sh2-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -.03em;
  margin-bottom: 20px
}

.sh2-heading em {
  font-style: normal;
  position: relative;
  color: var(--brand)
}

/* .sh2-heading em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  opacity: .35
} */

/* Sub text */
.sh2-sub {
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 560px;
  margin: 0 auto
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 14px
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand)
}

.eyebrow.light {
  color: var(--brand);
  background: var(--brand-soft);
  text-shadow: none;
  backdrop-filter: none
}

.eyebrow.light .dot {
  background: var(--brand)
}

/* Buttons */
.btn {
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .93rem;
  padding: .7rem 1.4rem;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  letter-spacing: .01em;
}

.btn-lg {
  padding: .95rem 1.8rem
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 20px rgba(225, 29, 42, .25)
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(225, 29, 42, .35)
}

.btn-outline-danger {
  border: 1.5px solid var(--brand);
  color: var(--brand)
}

.btn-outline-danger:hover {
  background: var(--brand);
  color: #fff
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 0
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  color: #fff;
  transform: translateY(-2px)
}


/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 16px 0;
  background: transparent;
  box-shadow: none;
  transition: padding .3s ease;
}

/* Container */
.navbar>.container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar {
  overflow: hidden;
}

/* ── Logo pill — navy background, left ── */
.nav-logo-pill {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border-radius: 16px;
  height: 72px;
  padding: 0 18px;
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
  transition: background .35s ease;
}

.navbar.scrolled .nav-logo-pill {
  background: var(--navy);
}

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

@media(max-width:991px) {
  .nav-logo-pill img {
    height: 42px;
  }
}

/* Desktop: grid — logo(1fr) | menu(auto) | button(1fr) */
@media(min-width:992px) {
  .navbar>.container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 14px;
    overflow: hidden;
  }

  .navbar-collapse {
    grid-column: 2;
  }

  /* Logo: left edge of container */
  .nav-logo-pill {
    position: static;
    justify-self: start;
    transform: translateX(-23px);
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  }

  .navbar.scrolled .nav-logo-pill {
    transform: translateX(38px);
  }

  /* Button: right edge of container */
  .nav-enquiry-pill {
    position: static;
    justify-self: end;
    transform: translateX(5px);
  }

  .navbar.scrolled .nav-enquiry-pill {
    transform: translateX(-160px);
  }

}

/* ── Menu pill — white background, center ── */
.nav-menu-pill {
  background: #fff;
  border-radius: 16px;
  height: 58px;
  padding: 0 20px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .15), 0 1px 4px rgba(0, 0, 0, .07);
  display: inline-flex;
  align-items: center;
}

.nav-menu-pill .navbar-nav {
  gap: 4px
}

/* Nav links inside white pill */
.navbar .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy) !important;
  padding: .6rem 1.4rem;
  border-radius: 40px;
  transition: color .2s, background .2s;
  position: relative;
}

.navbar .nav-link:hover {
  color: var(--brand) !important;
  background: var(--brand-soft);
}

.navbar .nav-link::after {
  display: none !important
}

/* ── Enquiry pill — red background, right ── */
.nav-enquiry-pill {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: #fff !important;
  border-radius: 16px;
  height: 58px;
  padding: 0 14px;
  gap: 8px;
  box-shadow: 0 6px 22px rgba(225, 29, 42, .32);
  transition: background .25s, box-shadow .25s, transform .55s cubic-bezier(.22, 1, .36, 1);
  flex-shrink: 0;
}

.nav-enquiry-pill:hover {
  box-shadow: 0 10px 26px rgba(225, 29, 42, .42);
}

.nav-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background .2s;
  flex-shrink: 0;
}

.nav-store-btn:hover {
  background: rgba(255, 255, 255, .32);
  color: #fff;
}

.nav-enq-btn {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  white-space: nowrap;
}


/* ══════════════════════════════════════════
   MEGA MENU — Services dropdown
   ══════════════════════════════════════════ */

/* Caret icon next to "Services" */
.nav-caret {
  font-size: .65rem;
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}

.nav-has-mega.is-open .nav-caret {
  transform: rotate(180deg)
}

/* The mega panel — fixed below navbar */
.nav-mega {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 1049;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .28s ease, transform .28s cubic-bezier(.22, 1, .36, 1), visibility .28s;
  pointer-events: none;
  padding: 0 0 20px;
}

.nav-has-mega.is-open .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Inner card */
.nmg-inner {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(8, 42, 89, .14), 0 4px 16px rgba(0, 0, 0, .06);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 230px 1fr;
  overflow: hidden;
}

/* ── Left aside — navy ── */
.nmg-aside {
  background: var(--navy);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nmg-aside-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, .12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.nmg-aside-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.nmg-aside-sub {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.nmg-aside-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}

.nmg-aside-btn:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px)
}

.nmg-aside-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.nmg-aside-link:hover {
  color: #fff
}

.nmg-aside-link i {
  font-size: .8rem
}

/* ── Right grid — 3 columns ── */
.nmg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px;
  gap: 4px;
  align-content: start;
}

.nmg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, transform .2s;
}

.nmg-item:hover {
  background: var(--brand-soft);
  border-color: rgba(225, 29, 42, .12);
  transform: translateY(-1px);
  color: var(--ink);
}

.nmg-item:hover .nmg-icon {
  background: var(--brand);
  color: #fff
}

.nmg-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}

.nmg-body strong {
  display: block;
  font-size: .93rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
  line-height: 1.25;
}

.nmg-body span {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4
}

/* Mega panel only needs desktop (hover/click) styling above — the mobile
   drawer below (.mnav-drawer) renders the same walker markup with its own
   dedicated, scoped rules, so nothing to hide here anymore. */

/* ── Mobile: always solid top bar (drawer below handles the menu itself) ── */
@media(max-width:991px) {
  .navbar {
    background: var(--navy);
    padding: 8px 0;
  }

  .navbar>.container {
    justify-content: flex-start;
  }

  .nav-logo-pill {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
  }
}

/* ══════════════════════════════════════════
   MOBILE MENU DRAWER — premium off-canvas panel
   Only ever rendered <992px (d-lg-none in markup);
   fully separate from the desktop pill nav above.
   ══════════════════════════════════════════ */

/* Animated hamburger trigger */
.mnav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .1);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.mnav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
}

.mnav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mnav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mnav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Backdrop */
.mnav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, .55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 99998;
}

.mnav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* Drawer shell — slides in from the right */
.mnav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(84vw, 380px);
  background: linear-gradient(180deg, #0b1830 0%, #050a14 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .4);
  overflow-y: auto;
}

.mnav-drawer.is-open {
  transform: translateX(0) !important;
}

body.mnav-open {
  overflow: hidden;
}

.mnav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
}

.mnav-drawer-logo img {
  height: 34px;
  width: auto;
}

.mnav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1rem;
  transition: background .2s;
}

.mnav-close:hover {
  background: rgba(255, 255, 255, .18);
}

.mnav-drawer-body {
  padding: 16px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* Menu list */
.mnav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mnav-menu .nav-item {
  width: 100%;
}

.mnav-menu .nav-item+.nav-item {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.mnav-menu .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, .92) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: .95rem .3rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, color .2s, padding-left .2s;
}

.mnav-menu .nav-link::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(255, 255, 255, .35);
  border-bottom: 2px solid rgba(255, 255, 255, .35);
  transform: rotate(-45deg);
  flex-shrink: 0;
}

.mnav-menu .nav-mega-toggle::after {
  display: none;
}

.mnav-menu .nav-link:hover,
.mnav-menu .nav-link:active {
  background: rgba(255, 255, 255, .07);
  color: #fff !important;
  padding-left: .7rem;
}

/* Services accordion */
.mnav-drawer .nav-has-mega {
  display: flex;
  flex-direction: column;
}

.mnav-drawer .nav-caret {
  display: inline-block;
  font-size: .8rem;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.mnav-drawer .nav-has-mega.is-open .nav-caret {
  transform: rotate(180deg);
}

.mnav-drawer .nav-mega {
  position: static;
  z-index: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22, 1, .36, 1);
}

.mnav-drawer .nav-has-mega.is-open .nav-mega {
  /* Comfortably above the tallest real submenu (Services: 9 items, each
     with a 2-line description) — was 900px, which clipped the bottom
     entries since that content actually runs taller. max-height only
     caps, so this doesn't add empty space under shorter submenus. */
  max-height: 3000px;
}

.mnav-drawer .nav-mega>.container {
  padding: 0;
  max-width: none;
  margin: 0;
}

.mnav-drawer .nmg-inner {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  box-shadow: none;
  margin: 4px 0 12px;
  overflow: hidden;
}

.mnav-drawer .nmg-aside {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .03);
}

.mnav-drawer .nmg-aside-icon {
  width: 34px;
  height: 34px;
  font-size: .95rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.mnav-drawer .nmg-aside-title {
  font-size: .92rem;
  flex: 1;
}

.mnav-drawer .nmg-aside-btn {
  display: none;
}

.mnav-drawer .nmg-aside-link {
  font-size: .76rem;
  white-space: nowrap;
}

.mnav-drawer .nmg-grid {
  grid-template-columns: 1fr;
  padding: 8px;
  gap: 2px;
}

.mnav-drawer .nmg-item {
  padding: 10px;
  border-radius: 10px;
}

.mnav-drawer .nmg-item:hover,
.mnav-drawer .nmg-item:active {
  background: rgba(255, 255, 255, .06);
  border-color: transparent;
  transform: none;
}

.mnav-drawer .nmg-icon {
  width: 32px;
  height: 32px;
  font-size: .85rem;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.mnav-drawer .nmg-item:hover .nmg-icon {
  background: var(--brand);
  color: #fff;
}

.mnav-drawer .nmg-body strong {
  color: #fff;
  font-size: .87rem;
}

.mnav-drawer .nmg-body span {
  color: rgba(255, 255, 255, .5);
  font-size: .73rem;
}

/* CTA + app store row */
.mnav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  background: var(--brand);
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(225, 29, 42, .35);
  transition: transform .2s, box-shadow .2s;
}

.mnav-cta:active {
  transform: scale(.98);
}

.mnav-stores {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.mnav-store-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: rgba(255, 255, 255, .85) !important;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.mnav-store-btn:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff !important;
}

/* Drawer only ever renders <992px, but belt-and-suspenders in case markup
   is ever reused — never show it at desktop widths */
@media(min-width:992px) {

  .mnav-drawer,
  .mnav-backdrop {
    display: none !important;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: #050a14;
  overflow: hidden;
  border-bottom: 3px solid var(--brand);
}

.hero::before,
.hero::after {
  display: none
}

/* Background video — plays at the very back */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  z-index: 0;
}

/* Background slider — cycles through Radiant's services, plays at the very back */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slider .slick-list,
.hero-bg-slider .slick-track {
  height: 100%;
}

.hero-bg-slide {
  position: relative !important;
  height: 100% !important;
  overflow: hidden;
}

.hero-bg-slide img,
.hero-bg-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .95;
  transform: scale(1.08);
  animation: heroBgZoom 9s ease-in-out infinite alternate;
}

@keyframes heroBgZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

/* Hero video slides — clickable, open full-width popup */
.hero-video-slide {
  cursor: pointer;
}

/* Hero video full-width popup */
.hvm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 50, .85);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.hvm-backdrop.hvm-show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.hvm-box {
  width: 100%;
  max-width: 1100px;
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.hvm-backdrop.hvm-show .hvm-box {
  transform: translateY(0) scale(1);
}

.hvm-box video {
  width: 100%;
  max-height: 85vh;
  border-radius: 16px;
  display: block;
  background: #000;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
}

.hvm-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 1000000;
  transition: background .2s ease;
}

.hvm-close:hover {
  background: rgba(255, 255, 255, .25);
}

/* Big classic prev/next arrows for the hero background slider */
.hero-slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.hero-slide-nav:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(225, 29, 42, .35);
}

.hero-slide-nav:active {
  transform: translateY(-50%) scale(.96);
}

.hero-slide-prev { left: 112px; }
.hero-slide-next { right: 40px; }

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

/* Dark overlay on top of video */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(ellipse at 50% 60%, rgba(225,29,42,.12) 0%, transparent 55%),
    linear-gradient(135deg, rgba(5,29,62,.82) 0%, rgba(0,0,0,.52) 45%, rgba(5,29,62,.72) 100%); */
     background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(225, 29, 42, .18) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 10% 80%, rgb(15 34 85 / 62%) 0%, transparent 60%), linear-gradient(135deg, rgb(5 29 62 / 75%) 0%, rgb(0 0 0 / 46%) 45%, rgba(5, 29, 62, 0.568) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Ensure sbi icons and content sit above everything */
.hero .sbi-wrap {
  z-index: 3
}

.hero-content {
  position: relative;
  z-index: 4;
  /* Text/spacing here shouldn't block clicks on the slider behind it (e.g. video play badge) */
  pointer-events: none;
}

.hero-content .hero-btns {
  pointer-events: auto;
}

.hero-title {
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -.04em;
  text-shadow: 0 4px 32px rgba(0,0,0,.45), 0 1px 4px rgba(0,0,0,.3);
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .82);
  max-width: 600px;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,.2);
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
  font-size: .9rem
}

.hero-trust i {
  color: var(--brand);
  margin-right: 6px
}

.hero-checklist {
  display: flex;
  gap: 14px 24px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
  font-size: .88rem
}

.hero-checklist i {
  color: var(--brand);
  margin-right: 6px;
  font-size: .85rem
}

/* ── Hero Vertical Social Bar ── */
.hero-social-bar {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hsb-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .35), transparent);
  border-radius: 2px;
  flex-shrink: 0;
}

.hsb-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  transition: all .25s cubic-bezier(.22, 1, .36, 1);
}

.hsb-icon::after {
  content: attr(data-label);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all .22s ease;
  letter-spacing: .04em;
}

.hsb-icon:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  transform: translateX(4px);
  box-shadow: 0 4px 18px rgba(225, 29, 42, .35);
}

.hsb-icon:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hsb-icon:nth-child(2):hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .35)
}

.hsb-icon:nth-child(3):hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  box-shadow: 0 4px 18px rgba(220, 39, 67, .35)
}

.hsb-icon:nth-child(4):hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 4px 18px rgba(24, 119, 242, .35)
}

.hsb-icon:nth-child(5):hover {
  background: #010101;
  border-color: #333;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .4)
}

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

/* ── Hero Offer Tag ── */
.hero-offer-tag {
  position: absolute;
  top: 11%;
  right: 11%;
  z-index: 6;
  width: 110px;
  background: #fff;
  border-radius: 10px;
  padding: 22px 14px 16px;
  text-align: center;
  transform-origin: top center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .28), 0 2px 8px rgba(0, 0, 0, .18);
  clip-path: polygon(0 6%, 50% 0, 100% 6%, 100% 100%, 0 100%);
  animation: tagPendulum 3s ease-in-out infinite;
}

@keyframes tagPendulum {

  0%,
  100% {
    transform: rotate(-10deg)
  }

  50% {
    transform: rotate(10deg)
  }
}

.hero-offer-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(to bottom, rgb(0 0 0) 0%, rgb(0 0 0 / 0%) 50%, transparent 100%);
  border-radius: 10px 10px 0 0;
  z-index: 2;
  pointer-events: none;
}

.hot-tag-hole {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 2px solid #111;
  z-index: 3;
}

.hot-tag-eyebrow {
  display: block;
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 4px;
}

.hot-tag-pct {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--brand);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  letter-spacing: -.04em;
}

.hot-tag-pct sup {
  font-size: 1rem;
  font-weight: 800;
  vertical-align: super;
}

.hot-tag-off {
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  letter-spacing: .08em;
  line-height: 1;
  margin-top: 2px;
}

.hot-tag-line {
  width: 40px;
  height: 1.5px;
  background: var(--line);
  margin: 8px auto;
  border-radius: 2px;
}

.hot-tag-sub {
  font-size: .65rem;
  font-weight: 600;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media(max-width:767px) {
  .hero-offer-tag {
    top: 12%;
    right: 14px;
    width: 88px;
    padding: 18px 10px 12px;
  }

  .hot-tag-pct {
    font-size: 1.9rem
  }
}

/* ── As Featured On marquee ── */
.hero-featured {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 14px 0;
  background: rgba(0, 0, 0, .38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.hero-featured-label {
  flex-shrink: 0;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
  padding: 0 28px 0 32px;
  border-right: 1px solid rgba(255, 255, 255, .15);
  font-family: 'Poppins', sans-serif;
}

.hero-featured-track-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.hero-featured-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marqueeScroll 18s linear infinite;
}

.hero-featured-track:hover {
  animation-play-state: paused
}

.hero-featured-track img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: .65;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
  flex-shrink: 0;
}

.hero-featured-track img:hover {
  opacity: 1
}

@media(max-width:767px) {
  .hero-featured-label {
    padding: 0 16px 0 18px;
    font-size: .6rem
  }

  .hero-featured-track img {
    height: 22px
  }

  .hero-featured-track {
    gap: 36px
  }
}

/* Eyebrow on dark hero */
.eyebrow.light {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.eyebrow.light .dot {
  background: var(--brand)
}

/* ── Hero text animations (slide from top) ── */
@keyframes heroSlideTop {
  from {
    opacity: 0;
    transform: translateY(-36px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-anim-1 {
  animation: heroSlideTop .7s cubic-bezier(.22, 1, .36, 1) both
}

.hero-anim-2 {
  animation: heroSlideTop .75s cubic-bezier(.22, 1, .36, 1) .15s both
}

.hero-anim-3 {
  animation: heroSlideTop .75s cubic-bezier(.22, 1, .36, 1) .3s both
}

.hero-anim-4 {
  animation: heroSlideTop .75s cubic-bezier(.22, 1, .36, 1) .45s both
}

.hero-anim-5 {
  animation: heroSlideTop .75s cubic-bezier(.22, 1, .36, 1) .6s both
}

/* Hero CTA buttons */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px
}

.hbtn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px 13px 14px;
  border-radius: 16px;
  text-decoration: none;
  transition: all .28s cubic-bezier(.22, 1, .36, 1);
  position: relative;
  overflow: hidden;
  min-width: 200px
}

.hbtn-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform .28s
}

.hbtn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1
}

.hbtn-text small {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .72;
  line-height: 1
}

.hbtn-text strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2
}

.hbtn-arrow {
  font-size: .95rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .28s;
  flex-shrink: 0
}

.hbtn:hover .hbtn-arrow {
  opacity: 1;
  transform: translateX(0)
}

.hbtn:hover .hbtn-icon {
  transform: scale(1.08)
}

/* Primary — glassy */
.hbtn-primary {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.hbtn-primary .hbtn-icon {
  background: rgba(255, 255, 255, .2);
  color: #fff
}

.hbtn-primary .hbtn-text small {
  color: rgba(255, 255, 255, .75)
}

.hbtn-primary .hbtn-text strong {
  color: #fff
}

.hbtn-primary:hover {
  background: rgba(255, 255, 255, .22);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .25);
}

/* WhatsApp — white solid */
.hbtn-wa {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid rgba(255, 255, 255, .9);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .15)
}

.hbtn-wa .hbtn-icon {
  background: #e8fdf0;
  color: #25D366
}

.hbtn-wa .hbtn-text small {
  color: var(--muted)
}

.hbtn-wa .hbtn-text strong {
  color: var(--ink)
}

.hbtn-wa:hover {
  background: #f6fef9;
  color: var(--ink);
  border-color: #b2f0cc;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, .18)
}

.hbtn-wa .hbtn-arrow {
  color: #25D366
}

.hero-image-wrap {
  position: relative;
  padding: 0px
}


/* ── Floating accent dots ── */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--brand);
  z-index: 0
}

.hd1 {
  width: 14px;
  height: 14px;
  top: 4%;
  right: 8%;
  opacity: .5;
  animation: floatDot 3s ease-in-out infinite
}

.hd2 {
  width: 9px;
  height: 9px;
  bottom: 18%;
  right: 1%;
  opacity: .3;
  animation: floatDot 4s ease-in-out infinite .6s
}

.hd3 {
  width: 6px;
  height: 6px;
  top: 58%;
  left: 0;
  opacity: .2;
  animation: floatDot 3.5s ease-in-out infinite 1.2s
}

@keyframes floatDot {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* ── Hero image ── */
.hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 28px;
  /* drop-shadow traces the image outline — works with transparent PNGs too */
  filter: drop-shadow(0 24px 52px rgba(15, 20, 25, .18));
}

/* ── Floating badges (must be above image z-index) ── */
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -4px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(15, 20, 25, .12);
  display: flex;
  flex-direction: column;
  font-size: .85rem;
  z-index: 3
}

.hero-badge .stars {
  color: #FBBF24;
  margin-bottom: 4px
}

.hero-badge strong {
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif
}

.hero-badge span {
  color: var(--muted);
  font-size: .76rem
}

.hero-offer {
  position: absolute;
  top: 24px;
  right: -4px;
  background: var(--brand);
  color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(225, 29, 42, .35);
  transform: rotate(3deg);
  z-index: 3
}

.offer-pct {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  font-family: 'Poppins', sans-serif
}

/* ══════════════════════════════════════════
   PRICING SECTION
   ══════════════════════════════════════════ */
.pricing-section {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.pc-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform .28s, box-shadow .28s;
}

.pc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(8, 42, 89, .1)
}

.pc-popular {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.03);
}

.pc-popular:hover {
  transform: scale(1.03) translateY(-6px)
}

.pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 99px;
  white-space: nowrap;
}

.pc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.pc-icon-navy {
  background: rgba(8, 42, 89, .08);
  color: var(--navy)
}

.pc-icon-white {
  background: rgba(255, 255, 255, .15);
  color: #fff
}

.pc-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px
}

.pc-popular .pc-name {
  color: #fff
}

.pc-sub {
  font-size: .83rem;
  color: var(--muted);
  margin: 0 0 20px
}

.pc-popular .pc-sub {
  color: rgba(255, 255, 255, .6)
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px
}

.pc-cur {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 8px
}

.pc-amt {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  font-family: 'Poppins', sans-serif
}

.pc-per {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500
}

.pc-popular .pc-cur,
.pc-popular .pc-per {
  color: rgba(255, 255, 255, .6)
}

.pc-popular .pc-amt {
  color: #fff
}

.pc-custom {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
  display: block
}

.pc-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1
}

.pc-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--ink-soft)
}

.pc-feats li i {
  font-size: .85rem;
  flex-shrink: 0
}

.pc-feats .bi-check-circle-fill {
  color: #22c55e
}

.pc-feats .bi-x-circle {
  color: var(--muted)
}

.pc-off {
  opacity: .45
}

.pc-popular .pc-feats li {
  color: rgba(255, 255, 255, .85)
}

.pc-popular .pc-feats .bi-check-circle-fill {
  color: #86efac
}

.pc-popular .pc-off {
  opacity: .35
}

.pc-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  margin-top: auto;
}

.pc-btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.pc-btn-outline:hover {
  background: var(--navy);
  color: #fff
}

.pc-btn-solid {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  box-shadow: 0 8px 24px rgba(225, 29, 42, .3);
}

.pc-btn-solid:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px)
}

.btn-view-price {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 14px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .22s, transform .18s, box-shadow .22s;
  letter-spacing: .01em;
}

.btn-view-price:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 29, 42, .22)
}

@media(max-width:991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto
  }

  .pc-popular {
    transform: scale(1)
  }

  .pc-popular:hover {
    transform: translateY(-6px)
  }
}

/* ══════════════════════════════════════════
   REFERRAL SECTION
   ══════════════════════════════════════════ */
.referral-section {
  background: var(--navy);
  position: relative;
  overflow: hidden
}

.referral-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225, 29, 42, .18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.ref-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

/* Left */
.ref-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, .18);
  margin-bottom: 20px;
}

.ref-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -.03em;
}

.ref-title span {
  color: var(--brand)
}

.ref-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin: 0 0 32px
}

.ref-sub strong {
  color: #fff
}

.ref-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px
}

.ref-step {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.ref-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.ref-step-body {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.ref-step-body strong {
  font-size: .95rem;
  color: #fff;
  font-weight: 600
}

.ref-step-body span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55)
}

.ref-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(225, 29, 42, .35);
  transition: all .25s;
}

.ref-cta:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(225, 29, 42, .4)
}

/* Right card */
.ref-card {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.ref-card-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(225, 29, 42, .25) 0%, transparent 70%);
  pointer-events: none;
}

.ref-pct-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px
}

.ref-pct {
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: 'Poppins', sans-serif
}

.ref-pct sup {
  font-size: 2.2rem;
  vertical-align: top;
  margin-top: 12px;
  color: var(--brand)
}

.ref-pct-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
  font-weight: 600
}

.ref-divider {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin-bottom: 24px
}

.ref-code-block {
  margin-bottom: 20px
}

.ref-code-lbl {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px
}

.ref-code-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  padding: 10px 14px;
}

.ref-code-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .1em;
  font-family: 'Poppins', sans-serif;
  flex: 1
}

.ref-copy-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.ref-copy-btn:hover {
  background: var(--brand-dark)
}

.ref-share-row {
  display: flex;
  gap: 10px
}

.ref-share-wa,
.ref-share-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 11px;
  font-size: .83rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all .22s;
  border: none;
}

.ref-share-wa {
  background: #25D366;
  color: #fff
}

.ref-share-wa:hover {
  background: #1ebe5b;
  color: #fff
}

.ref-share-link {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .2)
}

.ref-share-link:hover {
  background: rgba(255, 255, 255, .2);
  color: #fff
}

@media(max-width:991px) {
  .ref-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .ref-right {
    max-width: 420px
  }
}

/* ══════════════════════════════════════════
   INSTAGRAM SECTION
   ══════════════════════════════════════════ */
.insta-section {
  background: #fff
}

.insta-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.insta-handle-wrap {
  display: flex;
  align-items: center;
  gap: 16px
}

.insta-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.insta-handle-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy)
}

.insta-handle-text span {
  font-size: .83rem;
  color: var(--muted)
}

.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 6px 20px rgba(220, 39, 67, .28);
  transition: transform .22s, box-shadow .22s;
}

.insta-follow-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 28px rgba(220, 39, 67, .38)
}

.insta-behold-wrap {
  width: 100%;
}

/* Override Behold widget styles to match our design */
.insta-behold-wrap .BeholdWidget {
  width: 100% !important;
}

.insta-behold-wrap .BeholdWidget-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.insta-behold-wrap .BeholdWidget-item {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  aspect-ratio: 1/1 !important;
  display: block !important;
}

.insta-behold-wrap .BeholdWidget-item a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.insta-behold-wrap .BeholdWidget-item img,
.insta-behold-wrap .BeholdWidget-item video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1) !important;
  display: block !important;
}

.insta-behold-wrap .BeholdWidget-item:hover img,
.insta-behold-wrap .BeholdWidget-item:hover video {
  transform: scale(1.08) !important;
}

.insta-behold-wrap .BeholdWidget-item::after {
  content: '\f437';
  font-family: 'bootstrap-icons';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 148, 51, .78), rgba(188, 24, 136, .78));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.insta-behold-wrap .BeholdWidget-item:hover::after {
  opacity: 1;
}

.insta-behold-wrap .BeholdWidget-branding {
  display: none !important;
}

@media(max-width:991px) {
  .insta-behold-wrap .BeholdWidget-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media(max-width:576px) {
  .insta-behold-wrap .BeholdWidget-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .insta-hd {
    flex-direction: column;
    align-items: flex-start
  }
}

/* ══════════════════════════════════════════
   PARTNERS MARQUEE
   ══════════════════════════════════════════ */
.partners-section {
  padding: 44px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.partners-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 28px;
}

.partners-label span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--line);
  border-radius: 2px
}

/* Track wrapper — fades edges */
.partners-track-wrap {
  position: relative;
  overflow: hidden;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff 30%, transparent)
}

.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff 30%, transparent)
}

/* Scrolling track */
.partners-track {
  display: flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  animation: partnersScroll 36s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused
}

@keyframes partnersScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* Individual logo */
.partners-logo {
  height: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-logo img {
  height: 100%;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}

/* ── TRUST STRIP (cards, after services) ── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line)
}

.ts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr)
}

.ts-item {
  text-align: center;
  padding: 44px 24px;
  position: relative
}

.ts-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--line)
}

.ts-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px
}

.tc-navy {
  background: rgba(8, 42, 89, .08);
  color: var(--navy)
}

.tc-brand {
  background: rgba(220, 50, 50, .08);
  color: var(--brand)
}

.ts-num {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--navy)
}

.ts-lbl {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600
}

@media(max-width:768px) {
  .ts-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ts-item:nth-child(2)::after,
  .ts-item:nth-child(4)::after {
    display: none
  }

  .ts-item:nth-child(1),
  .ts-item:nth-child(2),
  .ts-item:nth-child(3),
  .ts-item:nth-child(4) {
    border-bottom: 1px solid var(--line)
  }

  /* A 5th item left alone in the last row of a 2-column grid otherwise
     sits in the left cell only, reading as left-aligned instead of
     centered — span it across both columns so it centers like the rest. */
  .ts-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .ts-item:nth-child(5)::after {
    display: none;
  }
}

@media(max-width:480px) {
  .ts-num {
    font-size: 2rem
  }

  .ts-item {
    padding: 28px 16px
  }
}

/* ── OFFER SECTION ── */
.offer-section {
  background: var(--bg-soft)
}

/* ── Special Offer Cards ── */
.sof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px
}

.sof-card {
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid transparent;
  transition: transform .25s;
  position: relative;
  overflow: hidden
}

.sof-card:hover {
  transform: translateY(-6px)
}

/* Card backgrounds — each a distinct light theme tint */
.sof-card:nth-child(1) {
  background: #FFF0F1;
  border-color: rgba(225, 29, 42, .14)
}

.sof-card:nth-child(2) {
  background: #EEF3FF;
  border-color: rgba(8, 42, 89, .12)
}

.sof-card:nth-child(3) {
  background: #FFF8EE;
  border-color: rgba(225, 142, 29, .18)
}

.sof-card:nth-child(4) {
  background: #EDF7F0;
  border-color: rgba(22, 163, 74, .15)
}

/* Icon — bigger, two-color (icon in brand, bg in navy tint — alternating) */
.sof-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 20px;
  flex-shrink: 0
}

.sof-card:nth-child(odd) .sof-icon {
  background: rgba(8, 42, 89, .1);
  color: var(--navy)
}

.sof-card:nth-child(even) .sof-icon {
  background: rgba(225, 29, 42, .12);
  color: var(--brand)
}

/* Badge color per card */
.sof-card:nth-child(1) .sof-badge {
  background: var(--brand)
}

.sof-card:nth-child(2) .sof-badge {
  background: var(--navy)
}

.sof-card:nth-child(3) .sof-badge {
  background: #d97706
}

.sof-card:nth-child(4) .sof-badge {
  background: #16a34a
}

.sof-badge {
  display: inline-block;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  width: fit-content
}

.sof-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px
}

.sof-deal {
  font-size: .97rem;
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.5
}

.sof-deal strong {
  color: var(--navy)
}

.sof-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1
}

.sof-perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  color: var(--ink-soft)
}

.sof-perks i {
  color: #22c55e;
  font-size: .82rem;
  flex-shrink: 0
}

.sof-code {
  font-size: .82rem;
  color: var(--ink-soft);
  background: rgba(8, 42, 89, .05);
  border: 1px dashed rgba(8, 42, 89, .18);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 18px;
  font-weight: 500
}

.sof-code strong {
  color: var(--navy);
  letter-spacing: .08em
}

.sof-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .22s;
  margin-top: auto
}

.sof-btn-primary {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand)
}

.sof-btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff
}

.sof-btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(8, 42, 89, .2)
}

.sof-btn-outline:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

@media(max-width:1199px) {
  .sof-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:575px) {
  .sof-grid {
    grid-template-columns: 1fr
  }
}

/* ── Offer + Pricing Banner ── */
.opb-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--navy);
  border-radius: 24px;
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0
}

.opb-wrap::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 42, .14), transparent 70%);
  bottom: -130px;
  right: -80px;
  pointer-events: none
}

.opb-wrap::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .04), transparent 70%);
  top: -60px;
  left: -60px;
  pointer-events: none
}

.opb-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  z-index: 1
}

.opb-sub {
  color: rgba(255, 255, 255, .65);
  font-size: .88rem;
  font-weight: 500;
  margin: 0
}

.opb-mid {
  position: relative;
  z-index: 1
}

.opb-title {
  color: #fff;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px
}

.opb-desc {
  color: rgba(255, 255, 255, .7);
  font-size: .93rem;
  margin: 0 0 16px
}

.opb-mid .offer-perks {
  margin: 0
}

.opb-right {
  min-width: 250px;
  position: relative;
  z-index: 1
}

.opb-right .offer-code-box {
  margin-bottom: 0
}

@media(max-width:991px) {
  .opb-wrap {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    text-align: center;
    gap: 32px
  }

  .opb-left {
    align-items: center
  }

  .opb-right {
    min-width: unset
  }

  .opb-mid .offer-perks {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start
  }
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(8, 42, 89, .16)
}

.offer-left {
  background: var(--navy);
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.offer-left::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 42, .15), transparent 70%);
  bottom: -120px;
  right: -100px;
  pointer-events: none
}

.offer-left::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .04), transparent 70%);
  top: -60px;
  left: -60px;
  pointer-events: none
}

.offer-ribbon {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
  width: fit-content
}

.offer-percent-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  line-height: 1
}

.offer-pct {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1
}

.offer-pct-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px
}

.offer-pct-sym {
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .7);
  line-height: 1
}

.offer-pct-off {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand);
  background: rgba(225, 29, 42, .18);
  border: 1.5px solid rgba(225, 29, 42, .4);
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: .1em
}

.offer-heading {
  color: #fff;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  position: relative
}

.offer-desc {
  color: rgba(255, 255, 255, .6);
  font-size: .93rem;
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 340px
}

.offer-perks {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.offer-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .85);
  font-size: .9rem
}

.offer-perks li i {
  color: #4ade80;
  font-size: .95rem;
  flex-shrink: 0
}

.offer-code-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .06);
  border: 1px dashed rgba(255, 255, 255, .22);
  padding: 13px 18px;
  border-radius: 12px;
  margin-bottom: 20px
}

.offer-code-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 500
}

.offer-code {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .14em;
  background: rgba(255, 255, 255, .1);
  padding: 5px 14px;
  border-radius: 8px
}

.offer-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.offer-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
  font-weight: 500
}

.offer-trust-row i {
  color: #facc15;
  font-size: .75rem
}

.offer-trust-row .bi-shield-fill-check {
  color: #4ade80
}

.offer-right {
  background: #fff;
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.offer-form-head {
  margin-bottom: 28px
}

.offer-form-head h3 {
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 6px;
  margin-top: 8px
}

.offer-form-head p {
  color: var(--muted);
  font-size: .88rem;
  margin: 0
}

.offer-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.of-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.of-field {
  position: relative
}

.of-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: .85rem;
  pointer-events: none;
  z-index: 2
}

.of-field .form-control,
.of-field .form-select {
  padding: .78rem 1rem .78rem 38px;
  background: #f7f8fa;
  border: 1.5px solid #e8eaee;
  color: var(--ink);
  border-radius: 10px;
  font-size: .9rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color .2s, box-shadow .2s, background .2s
}

.of-field .form-control::placeholder {
  color: #b0b7c3
}

.of-textarea {
  padding: .78rem 1rem .78rem 38px !important;
  resize: none;
  line-height: 1.6
}

.of-icon-top {
  top: 14px;
  transform: none
}

.of-field .form-control:focus,
.of-field .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(225, 29, 42, .09);
  background: #fff;
  outline: none
}

.offer-submit-btn {
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  padding: 1rem 1.4rem;
  font-size: .95rem;
  font-family: 'Poppins', sans-serif;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  width: 100%;
  letter-spacing: .01em
}

.offer-submit-btn:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(225, 29, 42, .35)
}

.offer-wa-line {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 16px
}

.offer-wa-line a {
  color: var(--navy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s
}

.offer-wa-line a:hover {
  color: #25D366
}

.offer-wa-line .bi-whatsapp {
  color: #25D366
}

@media(max-width:900px) {
  .offer-card {
    grid-template-columns: 1fr;
    border-radius: 20px
  }

  .offer-left,
  .offer-right {
    padding: 48px 36px
  }
}

@media(max-width:576px) {

  .offer-left,
  .offer-right {
    padding: 36px 24px
  }

  .offer-pct {
    font-size: 4.5rem
  }

  .of-row {
    grid-template-columns: 1fr
  }
}

/* ── SERVICES SLIDER ── */
.svc2-section {
  padding: 60px 0 80px;
  background: #fff;
  position: relative;
  z-index: 1;
  border-radius: 0 0 52px 52px;
}

.svc2-section .sh2 {
  margin-bottom: 48px
}

.svc2-slider-wrap {
  position: relative
}

/* Each slide: 2-column grid */
.svc2-slide {
  display: grid !important;
  grid-template-columns: 45% 1fr;
  gap: 28px;
  align-items: stretch;
  min-height: 384px;
}

/* Left content panel */
.svc2-slide-left {
  background: #EEF3FF;
  border-radius: 20px;
  border: 1.5px solid var(--line);
  padding: 48px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Right image panel */
.svc2-slide-right {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--line);
}

.svc2-slide:hover .svc2-slide-right img {
  transform: scale(1.05);
}
.svc2-slide-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.svc2-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 21, 56, .35) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Content elements */
.svc2-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(8, 42, 89, .08);
  border: 1.5px solid rgba(8, 42, 89, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 18px;
  flex-shrink: 0;
}

/* Inline service-icon SVGs (radiant_render_service_icon() in inc/helpers.php)
   default to inline-level display, which some mobile WebKit builds render
   with a zero/near-zero intrinsic box inside a flex icon wrapper — force
   block so the icon always takes up real, visible space. */
.svc2-icon-wrap svg[width="1em"][height="1em"],
.nmg-icon svg[width="1em"][height="1em"],
.svc-tab-icon svg[width="1em"][height="1em"],
.pl-cat-icon svg[width="1em"][height="1em"],
.sa-card-icon svg[width="1em"][height="1em"] {
  display: block;
  width: 1em;
  height: 1em;
}

.svc2-counter {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 6px
}

.svc2-counter strong {
  font-size: .95rem;
  font-weight: 800;
  color: var(--brand);
  font-family: 'Poppins', sans-serif
}

.svc2-counter span {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 600
}

.svc2-title {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.18;
  letter-spacing: -.03em;
  font-family: 'Poppins', sans-serif;
}

.svc2-desc {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 16px;
  max-width: 360px;
}

.svc2-prices {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 340px;
}

.svc2-prices li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(8, 42, 89, .12);
  font-size: .9rem;
}

.svc2-prices li:first-child {
  border-top: 1px dashed rgba(8, 42, 89, .12)
}

.svc2-prices li span:first-child {
  color: var(--navy);
  font-weight: 500
}

.svc2-prices li span:last-child {
  font-weight: 700;
  color: var(--brand);
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
}

.svc2-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  width: fit-content;
  transition: background .22s, gap .22s;
}

.svc2-cta:hover {
  background: var(--brand-dark);
  gap: 12px;
  color: #fff
}

/* Controls bar */
.svc2-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 28px;
}

.svc2-arr {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: #fff;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .22s, color .22s, transform .18s, box-shadow .22s;
  flex-shrink: 0;
  outline: none;
}

.svc2-arr:hover {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(225, 29, 42, .22);
}

.svc2-arr:active {
  transform: scale(.95)
}

.svc2-counter-bar {
  font-size: .88rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 56px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .02em;
  user-select: none;
}

.svc2-cur {
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 800
}

.svc2-sep {
  color: var(--muted);
  margin: 0 2px
}

/* Mobile */
@media(max-width:991px) {
  .svc2-section {
    padding: 56px 0 60px
  }

  .svc2-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 16px
  }

  /* Was display:none below 992px (image + text didn't fit side by side on
     mobile) — now stacked above the text instead of hidden, so the photo
     stays visible on every device. 130px was too short: with object-fit:
     cover, that turned into a very wide/thin crop window and lost most of
     each photo — taller here (260px) so far less gets cropped; further
     reduced for phones below. */
  .svc2-slide-right {
    display: block;
    order: -1;
    height: 260px;
    border-radius: 16px;
  }

  .svc2-slide-left {
    border-radius: 16px;
    padding: 32px 24px
  }

  .svc2-icon-wrap {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
    margin-bottom: 12px
  }

  .svc2-title {
    font-size: 1.2rem
  }
}

/* Phones: slightly shorter than the 260px tablet height above, since
   there's less width to fill, but still tall enough to avoid the heavy
   cropping the original 130px caused. */
@media(max-width:576px) {
  .svc2-slide-right {
    height: 220px;
  }
}

/* ── Services Marquee Strip ── */
/* Service Tabs — slide navigation */
.svc-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  padding: 32px 0 38px;
}

.svc-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid #ECEEF8;
  border-radius: 14px;
  padding: 15px 6px 12px;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, transform .25s, background .25s;
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  box-shadow: none;
}

.svc-tab:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 18px rgba(225, 29, 42, .12);
  transform: translateY(-3px);
}

.svc-tab.is-active {
  border-color: var(--brand);
  background: #FFF1F2;
  box-shadow: 0 6px 18px rgba(225, 29, 42, .15);
  transform: translateY(-3px);
}

.svc-tab-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, transform .25s;
  flex-shrink: 0;
}

.svc-tab-icon svg {
  width: 20px;
  height: 20px;
  transition: color .25s
}

.svc-tab.is-active .svc-tab-icon {
  transform: scale(1.1)
}

.svc-tab:nth-child(1) .svc-tab-icon {
  background: #FFF1F2
}

.svc-tab:nth-child(1) .svc-tab-icon svg {
  color: #E11D2A
}

.svc-tab:nth-child(2) .svc-tab-icon {
  background: #EEF3FF
}

.svc-tab:nth-child(2) .svc-tab-icon svg {
  color: #3B6FE0
}

.svc-tab:nth-child(3) .svc-tab-icon {
  background: #ECFEFF
}

.svc-tab:nth-child(3) .svc-tab-icon svg {
  color: #0891B2
}

.svc-tab:nth-child(4) .svc-tab-icon {
  background: #FFF7ED
}

.svc-tab:nth-child(4) .svc-tab-icon svg {
  color: #F97316
}

.svc-tab:nth-child(5) .svc-tab-icon {
  background: #F0FDF4
}

.svc-tab:nth-child(5) .svc-tab-icon svg {
  color: #16A34A
}

.svc-tab:nth-child(6) .svc-tab-icon {
  background: #FDF4FF
}

.svc-tab:nth-child(6) .svc-tab-icon svg {
  color: #A855F7
}

.svc-tab:nth-child(7) .svc-tab-icon {
  background: #FFFBEB
}

.svc-tab:nth-child(7) .svc-tab-icon svg {
  color: #D97706
}

.svc-tab:nth-child(8) .svc-tab-icon {
  background: #F0F9FF
}

.svc-tab:nth-child(8) .svc-tab-icon svg {
  color: #0EA5E9
}

.svc-tab:nth-child(9) .svc-tab-icon {
  background: #FDF2F8
}

.svc-tab:nth-child(9) .svc-tab-icon svg {
  color: #EC4899
}

.svc-tab:nth-child(10) .svc-tab-icon {
  background: #F0FDFA
}

.svc-tab:nth-child(10) .svc-tab-icon svg {
  color: #0D9488
}

.svc-tab-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  line-height: 1.3;
  transition: color .25s;
}

.svc-tab.is-active .svc-tab-label {
  color: var(--brand)
}

/* ── SHARED SECTION BG ICONS ── */
.sbi-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.sbi {
  position: absolute;
  color: var(--brand);
  opacity: .07
}

.sbi.white {
  color: #fff;
  opacity: .08
}

.sbi.fa {
  animation: wbi-float-a 8s ease-in-out infinite
}

.sbi.fb {
  animation: wbi-float-b 9s ease-in-out infinite
}

.sbi.fp {
  animation: wbi-pulse 5s ease-in-out infinite
}

.hero {
  overflow: hidden
}

.offer-section {
  position: relative;
  overflow: hidden;
  border-radius: 48px 48px 48px 48px
}

.reviews-section {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 48px 48px
}

.process-section {
  position: relative;
  overflow: hidden;
  border-radius: 50px 50px 0 0
}

.book-section {
  position: relative;
  overflow: hidden;
  border-radius: 52px 52px 0 0
}

.faq-section {
  position: relative;
  overflow: hidden;
  border-radius: 50px 50px 0 0
}

/* ── WHY / FEATURES ── */
#why {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 48px 48px
}

.why-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.wbi {
  position: absolute;
  color: var(--brand)
}

.wbi-1 {
  width: 115px;
  top: 7%;
  left: 1.5%;
  opacity: .07;
  animation: wbi-float-a 7s ease-in-out infinite
}

.wbi-2 {
  width: 72px;
  top: 5%;
  right: 3%;
  opacity: .07;
  animation: wbi-float-b 9s ease-in-out infinite 1s
}

.wbi-3 {
  width: 90px;
  bottom: 12%;
  left: 2.5%;
  opacity: .07;
  animation: wbi-float-a 8s ease-in-out infinite 2s
}

.wbi-4 {
  width: 82px;
  bottom: 8%;
  right: 2%;
  opacity: .07;
  animation: wbi-float-b 10s ease-in-out infinite 0.5s
}

.wbi-5 {
  width: 50px;
  top: 44%;
  left: 6%;
  opacity: .08;
  animation: wbi-float-a 6s ease-in-out infinite 1.5s
}

.wbi-6 {
  width: 40px;
  top: 16%;
  right: 12%;
  opacity: .09;
  animation: wbi-pulse 4s ease-in-out infinite
}

.wbi-7 {
  width: 46px;
  bottom: 30%;
  right: 6%;
  opacity: .07;
  animation: wbi-float-b 7s ease-in-out infinite 3s
}

.wbi-8 {
  width: 28px;
  top: 60%;
  left: 12%;
  opacity: .09;
  animation: wbi-pulse 5s ease-in-out infinite 2s
}

@keyframes wbi-float-a {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg)
  }

  50% {
    transform: translateY(-18px) rotate(4deg)
  }
}

@keyframes wbi-float-b {

  0%,
  100% {
    transform: translateY(-8px) rotate(3deg)
  }

  50% {
    transform: translateY(10px) rotate(-4deg)
  }
}

@keyframes wbi-pulse {

  0%,
  100% {
    transform: scale(1) rotate(0deg)
  }

  50% {
    transform: scale(1.2) rotate(18deg)
  }
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.feature i {
  font-size: 1.8rem;
  color: var(--brand);
  background: var(--brand-soft);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.feature h6 {
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600
}

.feature p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0
}

/* ── LAUNDRY & DRY CLEANING PROCESS ── */
.dproc-section {
  background: #fff;
  border-radius: 0 0 44px 44px;
  overflow: hidden
}

.dproc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}

.dproc-panel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  border: none;
}

.dproc-panel-navy {
  background: #EEF3FF
}

.dproc-panel-brand {
  background: #FFF1F2
}

/* Panel header */
.dproc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px 16px;
  border-bottom: 1.5px solid rgba(8, 42, 89, .1);
}

.dproc-head-brand {
  border-bottom-color: rgba(225, 29, 42, .15)
}

.dproc-head-navy {
  background: transparent
}

.dproc-head-brand {
  background: transparent
}

section.section.dproc-section {
  padding-top: 0;
}

.dproc-head-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.dproc-head-navy .dproc-head-icon {
  background: rgba(8, 42, 89, .12);
  color: var(--navy)
}

.dproc-head-brand .dproc-head-icon {
  background: rgba(225, 29, 42, .12);
  color: var(--brand)
}

.dproc-head h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 2px
}

.dproc-head p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0
}

.dproc-head-brand h3 {
  color: var(--brand)
}

/* Steps container */
.dproc-steps {
  padding: 12px 18px 16px
}

/* Step row */
.dproc-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .18s;
  cursor: default;
}

.dproc-panel-navy .dproc-step:hover {
  background: rgba(8, 42, 89, .07)
}

.dproc-panel-brand .dproc-step:hover {
  background: rgba(225, 29, 42, .07)
}

/* Arrow connector */
.dproc-conn {
  display: flex;
  align-items: center;
  height: 12px;
  padding-left: 20px;
  font-size: .6rem;
  opacity: .3;
  line-height: 1;
}

.dproc-conn i {
  color: var(--navy)
}

.dproc-conn-brand i {
  color: var(--brand)
}

/* Number */
.dproc-num {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--navy);
  min-width: 22px;
  flex-shrink: 0;
  opacity: .5;
}

.dproc-num-brand {
  color: var(--brand)
}

/* Icon bubble */
.dproc-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.dproc-ico-navy {
  background: rgba(8, 42, 89, .1);
  color: var(--navy)
}

.dproc-ico-brand {
  background: rgba(225, 29, 42, .1);
  color: var(--brand)
}

/* Text */
.dproc-txt {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.dproc-txt strong {
  font-size: .97rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

.dproc-txt em {
  font-style: normal;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.35;
}

@media(max-width:768px) {
  .dproc-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }
}

/* ── PROCESS STEPS ── */
.process-section {
  background: #ffffff;
  margin-top: 30px
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative
}

.process-step {
  position: relative;
  padding: 0 24px;
  text-align: center;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.process-step:hover {
  transform: translateY(-6px);
}

/* horizontal connector line between steps */
.ps-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--navy));
  opacity: .2;
  z-index: 0;
}

.ps-last .ps-connector {
  display: none
}

/* icon circle */
.ps-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--navy);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 28px rgba(8, 42, 89, .1);
  transition: all .3s;
}

.ps-icon-wrap.ps-icon-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 8px 28px rgba(225, 29, 42, .25);
}

.process-step:hover .ps-icon-wrap {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(8, 42, 89, .18)
}

.process-step:hover .ps-icon-wrap.ps-icon-brand {
  box-shadow: 0 16px 40px rgba(225, 29, 42, .4)
}

.ps-body {
  padding: 0 8px
}

.ps-num {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.ps-body h5 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.ps-body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0
}

@media(max-width:768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px
  }

  .ps-connector {
    display: none
  }
}

@media(max-width:480px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

/* ── REVIEWS ── */
.reviews-section {
  background: #fff;
  padding-bottom: 80px
}

.rv-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft)
}

.rv-g-score {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink)
}

.rv-g-stars {
  display: flex;
  gap: 2px;
  color: #FBBC05;
  font-size: .8rem
}

.rv-g-count {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 400
}

/* Marquee rows */
@keyframes marquee-rtl {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes marquee-ltr {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

.rv-marquee {
  overflow: hidden;
  margin-top: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  margin-bottom: 20px
}

.rv-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content
}

.rv-row-rtl {
  margin-top: 44px
}

.rv-row-rtl .rv-marquee-track {
  animation: marquee-rtl 190s linear infinite
}

.rv-row-ltr .rv-marquee-track {
  animation: marquee-ltr 190s linear infinite
}

.rv-marquee:hover .rv-marquee-track,
.rv-marquee.rv-touch-pause .rv-marquee-track {
  animation-play-state: paused
}

/* Card */
.rv-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 380px;
  flex-shrink: 0;
  transition: box-shadow .25s, transform .25s
}

.rv-card:hover {
  box-shadow: 0 12px 40px rgba(8, 42, 89, .1);
  transform: translateY(-3px)
}

.rv-card:nth-child(odd) {
  background: #f0f8ff
}

.rv-card:nth-child(even) {
  background: #fff5f5
}

.rv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.rv-card-stars {
  display: flex;
  gap: 3px;
  color: #FBBC05;
  font-size: 1rem
}

.rv-g-logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
  background: var(--bg-soft);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--line)
}

.rv-card-text {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  flex: 1;
  margin: 0;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis
}

.rv-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto
}

.rv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--av-bg, var(--brand));
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
  flex-shrink: 0
}

.rv-reviewer-info strong {
  display: block;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 2px
}

.rv-reviewer-info span {
  color: var(--muted);
  font-size: .76rem;
  display: flex;
  align-items: center;
  gap: 4px
}

.rv-reviewer-info .bi-geo-alt-fill {
  font-size: .65rem;
  color: var(--brand)
}

@media(max-width:768px) {
  .rv-card {
    width: 300px;
    padding: 20px 18px
  }

  .rv-card-text {
    font-size: .9rem;
    -webkit-line-clamp: 3
  }
}

/* ── BEFORE / AFTER ── */
.ba-section {
  background: #f8f9fb;
  border-radius: 40px;
  overflow: hidden
}

.ba-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(8, 42, 89, .09);
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s
}

.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 64px rgba(8, 42, 89, .14);
  border-color: transparent
}

.ba-wrap {
  position: relative;
  overflow: hidden;
  user-select: none;
  cursor: col-resize
}

.ba-before {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: saturate(0.1) brightness(0.56) sepia(0.3)
}

.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 340px;
  object-fit: cover;
  clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
  pointer-events: none
}

.ba-divider {
  position: absolute;
  top: 0;
  left: var(--ba-pos, 50%);
  transform: translateX(-50%);
  height: 100%;
  width: 2px;
  background: #fff;
  pointer-events: none;
  box-shadow: 0 0 16px rgba(255, 255, 255, .7)
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 6px 24px rgba(225, 29, 42, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .8rem;
  gap: 2px
}

.ba-range {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: col-resize;
  width: 100%;
  height: 100%;
  z-index: 10;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none
}

.ba-lbl {
  position: absolute;
  top: 14px;
  color: #fff;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 12px;
  border-radius: 99px;
  pointer-events: none;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px)
}

.ba-lbl-b {
  left: 14px;
  background: rgba(0, 0, 0, .52);
  border: 1px solid rgba(255, 255, 255, .18)
}

.ba-lbl-a {
  right: 14px;
  background: rgba(22, 163, 74, .82);
  border: 1px solid rgba(255, 255, 255, .28)
}

.ba-caption {
  padding: 16px 20px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line)
}

.ba-cap-left {
  display: flex;
  align-items: center;
  gap: 8px
}

.ba-cap-left i {
  color: #22c55e;
  font-size: 1rem;
  flex-shrink: 0
}

.ba-drag-hint {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px
}

.ba-drag-hint i {
  color: var(--brand);
  font-size: .88rem
}

@media(max-width:768px) {

  .ba-before,
  .ba-after {
    height: 250px
  }
}

/* ── SERVICE AREAS ── */
.ws {
  font-family: 'Poppins', sans-serif;
  padding: 80px 0;
  background: #fff1f273;
  border-radius: 48px 48px 0 0;
  overflow: hidden
}

.ws>.container {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 28px
}

/* Heading */
.ws .hero {
  min-height: 100%;
  padding: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.ws .hero h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.15
}

.ws .hero h2 .accent {
  color: var(--brand)
}

.ws .hero p {
  font-size: .95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65
}

.ws .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  border: 1.5px solid rgba(225, 29, 42, .18);
  color: var(--brand);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0
}

.ws .dot-anim {
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
  display: inline-block;
  animation: ws-blink 1.8s infinite;
  flex-shrink: 0
}

@keyframes ws-blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

/* Stats */
.ws .stats-row {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden
}

.ws .stat-cell {
  padding: 20px 0;
  border-right: 1px solid rgba(255, 255, 255, .08)
}

.ws .stat-cell:last-child {
  border-right: none
}

.ws .stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px
}

.ws .stat-num span {
  color: var(--brand)
}

.ws .stat-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em
}

/* Map + sidebar */
.ws .body-row {
  display: flex;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
  border: 1.5px solid var(--line)
}

/* Map removed, full area list in its place — let the row grow to fit
   every location instead of clipping to the old map height. */
.ws .body-row {
  height: auto;
  overflow: visible;
}

.ws .map-col {
  flex: 1;
  min-width: 0;
  position: relative
}

.ws #ws-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.ws .leaflet-container {
  background: #e8eef5 !important;
  font-family: 'Poppins', sans-serif !important
}

.ws .leaflet-tile {
  filter: saturate(0.4) brightness(1.05) contrast(0.96)
}

.ws .leaflet-control-zoom a {
  background: #fff !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
  box-shadow: none !important
}

.ws .leaflet-control-zoom a:hover {
  background: var(--bg-soft) !important
}

.ws .leaflet-control-attribution {
  background: rgba(248, 249, 250, .92) !important;
  color: var(--muted) !important;
  font-size: 9px !important
}

.ws .leaflet-control-attribution a {
  color: var(--muted) !important
}

.ws .leaflet-popup-content-wrapper {
  background: #fff !important;
  border: 1.5px solid rgba(225, 29, 42, .2) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  padding: 0 !important
}

.ws .leaflet-popup-content {
  margin: 0 !important;
  padding: 14px 18px !important;
  color: var(--ink) !important;
  font-family: 'Poppins', sans-serif !important;
  min-width: 180px
}

.ws .leaflet-popup-tip-container {
  width: 24px !important;
  height: 12px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  position: relative !important
}

.ws .leaflet-popup-tip {
  width: 14px !important;
  height: 14px !important;
  background: #fff !important;
  border-right: 1.5px solid rgba(225, 29, 42, .2) !important;
  border-bottom: 1.5px solid rgba(225, 29, 42, .2) !important;
  box-shadow: none !important;
  margin: -7px auto 0 !important;
  transform: rotate(45deg) !important
}

.ws .leaflet-popup-close-button {
  color: var(--muted) !important;
  top: 8px !important;
  right: 10px !important;
  font-size: 16px !important
}

.ws .popup-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px
}

.ws .popup-desc {
  font-size: .75rem;
  color: var(--muted)
}

.ws .popup-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--brand-soft);
  color: var(--brand)
}

.ws .popup-tag-zone {
  background: var(--bg-soft);
  color: var(--navy)
}

/* Sidebar */
.ws .sidebar-col {
  width: 340px;
  flex-shrink: 0;
  border-left: 1.5px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden
}

.ws .sidebar-head {
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0
}

.ws .sidebar-head h3 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px
}

.ws .search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  transition: border-color .2s
}

.ws .search-wrap:focus-within {
  border-color: var(--brand)
}

.ws .search-wrap input {
  background: none;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  width: 100%
}

.ws .search-wrap input::placeholder {
  color: var(--muted)
}

.ws .search-ic {
  color: var(--muted);
  font-size: 1rem;
  flex-shrink: 0
}

.ws .area-list {
  overflow-y: auto;
  flex: 1
}

.ws .area-list::-webkit-scrollbar {
  width: 3px
}

.ws .area-list::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 2px
}

/* Full area list (map removed) — overrides the fixed-height/overflow-hidden
   sidebar above so every location shows, no clipping/scrolling. */
.ws .sidebar-col-full {
  width: 100%;
  border-left: none;
  height: auto;
  max-height: none;
  overflow: visible;
}

.ws .area-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px 24px;
  overflow: visible;
  flex: none;
}

.ws .area-list-grid .area-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}

.ws .area-list-grid .aname {
  font-size: 14px;
  white-space: normal;
}

.ws .area-list-grid .adesc {
  font-size: 11px;
  white-space: normal;
}

@media (max-width: 992px) {
  .ws .area-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ws .area-list-grid {
    grid-template-columns: 1fr;
  }
}

.ws .area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .15s
}

.ws .area-item:hover {
  background: var(--bg-soft)
}

.ws .area-item.active {
  background: var(--brand-soft)
}

.ws .area-item.active .adot {
  background: var(--brand);
  border-color: var(--brand)
}

.ws .adot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
  border: 2px solid #c5cdd8;
  flex-shrink: 0;
  transition: all .2s
}

.ws .aname {
  font-size: .83rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3
}

.ws .adesc {
  font-size: .7rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.ws .abadge {
  font-size: .62rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  flex-shrink: 0
}

.ws .badge-prime {
  background: var(--brand-soft);
  color: var(--brand)
}

.ws .badge-zone {
  background: var(--bg-soft);
  color: var(--navy-mid);
  border: 1px solid var(--line)
}

/* CTA */
.ws .cta-bar {
  padding: 18px 24px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.ws .cta-text {
  font-size: .88rem;
  color: var(--muted);
  margin: 0
}

.ws .cta-text strong {
  color: var(--ink-soft);
  font-weight: 600
}

.ws .btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .83rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none
}

.ws .btn-brand:hover {
  background: var(--brand-dark);
  color: #fff
}

.ws .btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: .83rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 9px;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none
}

.ws .btn-navy:hover {
  background: var(--navy);
  color: #fff
}

@media(max-width:768px) {
  .ws .hero {
    flex-direction: column;
    align-items: flex-start
  }

  .ws .body-row {
    flex-direction: column;
    height: auto;
    border-radius: 12px
  }

  .ws .map-col {
    height: 300px;
    position: relative
  }

  .ws .sidebar-col {
    width: 100%;
    border-left: none;
    border-top: 1.5px solid var(--line);
    max-height: 260px
  }

  .ws .sidebar-col-full {
    max-height: none;
  }

  .ws .cta-bar {
    padding: 14px 16px
  }
}

/* ── APP SECTION ── */
.app-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0 0 52px 52px
}

.app-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(180, 215, 255, .38), transparent 68%);
  top: -110px;
  left: -90px;
  border-radius: 50%;
  pointer-events: none
}

.app-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 195, 195, .22), transparent 68%);
  bottom: -80px;
  right: 8%;
  border-radius: 50%;
  pointer-events: none
}

.app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 580px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    gap: 50px;
}

/* Left */
.app-left {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.app-heading {
  font-size: 2.55rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 16px
}

.app-heading em {
  font-style: normal;
  color: var(--brand)
}

.app-sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 370px
}

.app-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 295px
}

.app-btn-dark {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: .98rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s
}

.app-btn-dark:hover {
  background: #2a2a2a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22)
}

.app-btn-dark i {
  font-size: 1.25rem
}

.app-btn-light {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #efefef;
  color: #333;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: .98rem;
  font-weight: 600;
  border: 1.5px solid #e0e0e0;
  text-decoration: none;
  transition: all .25s
}

.app-btn-light:hover {
  background: #e5e5e5;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .1)
}

.app-btn-light i {
  font-size: 1.25rem
}

.ps-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--brand);
  color: #fff;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s
}

.ps-app-btn:hover {
  background: var(--brand-dark, #c0392b);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .15)
}

.ps-app-btn i {
  font-size: 1rem
}

/* Center */
.app-center {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: -60px
}

.app-phone-img {
  width: 480px;
  max-width: 100%;
  display: block;
  will-change: transform
}

/* Right */
.app-right {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-left: 16px
}

.app-qr-label {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  line-height: 1.35
}

.app-qr-box {
  background: #e8e8e8;
  border-radius: 20px;
  padding: 18px;
  display: inline-block;
  width: fit-content
}

.app-qr-img {
  width: 155px;
  height: 155px;
  object-fit: contain
}

@media(max-width:1100px) {
  .app-inner {
    padding: 50px 32px 0;
    gap: 28px
  }

  .app-heading {
    font-size: 2rem
  }

  .app-qr-label {
    font-size: 1.55rem
  }

  .app-phone-img {
    width: 320px
  }
}

@media(max-width:991px) {
  .app-inner {
    grid-template-columns: 1fr;
    padding: 50px 24px 40px;
    text-align: center;
    min-height: auto;
    gap: 36px
  }

  .app-sub {
    max-width: 100%;
    margin: 0 auto 28px
  }

  .app-btns {
    max-width: 320px;
    align-items: center;
    margin: 0 auto
  }

  .app-center {
    order: -1
  }

  .app-phone-img {
    width: 260px
  }

  .app-right {
    padding-left: 0;
    align-items: center
  }

  .app-qr-label {
    font-size: 1.3rem;
    text-align: center
  }
}

/* ── BOOKING ── */
/* ── Book Section ── */
.book-section {
  background: var(--bg-soft);
  margin-top: 40px
}

.book-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start
}

/* Left panel */
.book-left {
  padding-top: 8px
}

.book-heading {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 14px;
  color: var(--navy)
}

.book-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 380px
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 1rem
}

.check-list li:last-child {
  border-bottom: none
}

.check-list li i {
  color: var(--brand);
  font-size: 1.05rem;
  flex-shrink: 0
}

.book-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 28px
}

.book-badge i {
  font-size: 1.8rem;
  color: var(--navy);
  flex-shrink: 0
}

.book-badge strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  font-weight: 700
}

.book-badge span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 2px
}

/* Right panel — form box */
.booking-form-box {
  background: rgba(225, 29, 42, .06);
  border: 1.5px solid rgba(225, 29, 42, .14);
  border-radius: 24px;
  overflow: hidden
}

.bf-header {
  background: rgba(225, 29, 42, .09);
  border-bottom: 1px solid rgba(225, 29, 42, .13);
  padding: 28px 36px 24px
}

.bf-tag {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 14px
}

.bf-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  font-family: 'Poppins', sans-serif
}

.bf-sub {
  font-size: .85rem;
  color: var(--muted);
  margin: 0
}

.booking-form {
  padding: 28px 36px 32px
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1.5px solid rgba(225, 29, 42, .18);
  background: #fff;
  padding: .75rem 1rem .75rem 2.6rem;
  font-size: .92rem;
  font-family: 'Poppins', sans-serif;
  color: var(--ink)
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(225, 29, 42, .1);
  background: #fff
}

.bf-field {
  position: relative
}

.bf-field>i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 1rem;
  pointer-events: none;
  z-index: 2
}

.bf-field-ta>i {
  top: 14px;
  transform: none
}

.bf-field textarea.form-control {
  padding-left: 2.6rem
}

.bf-submit {
  border-radius: 12px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 8px 24px rgba(225, 29, 42, .3)
}

.bf-wa-link {
  color: var(--muted)
}

.bf-wa-link a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none
}

.bf-wa-link a:hover {
  color: var(--brand)
}

.bf-wa-link i {
  color: #25D366
}

@media(max-width:991px) {
  .book-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .book-heading {
    font-size: 2rem
  }
}

@media(max-width:576px) {
  .bf-header {
    padding: 22px 20px 18px
  }

  .booking-form {
    padding: 20px 20px 24px
  }
}


/* ── BLOG ── */
.blog-section {
  background: #fff;
  border-radius: 0 0 44px 44px;
}

/* Header */
.blog-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 20px
}

.blog-hd-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px
}

.blog-hd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
  flex-shrink: 0
}

.blog-hd-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.15
}

.blog-hd-title em {
  font-style: normal;
  color: var(--brand)
}

.blog-all-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--line);
  transition: color .2s, border-color .2s;
  flex-shrink: 0
}

.blog-all-link:hover {
  color: var(--brand);
  border-color: var(--brand)
}

.blog-all-link i {
  transition: transform .22s
}

.blog-all-link:hover i {
  transform: translate(3px, -3px)
}

/* Article list */
.blog-list {
  display: flex;
  flex-direction: column
}

.bli {
  display: grid;
  grid-template-columns: 56px 140px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0 28px 14px;
  border-top: 1px solid var(--line);
  text-decoration: none;
  position: relative;
  transition: background .22s
}

.bli:last-child {
  border-bottom: 1px solid var(--line)
}

.bli::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--brand);
  transition: width .3s ease;
  border-radius: 0 4px 4px 0
}

.bli:hover::before {
  width: 3px
}

.bli:hover {
  background: rgba(225, 29, 42, .025)
}

/* Number */
.bli-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--line);
  line-height: 1;
  letter-spacing: -.03em;
  transition: color .22s;
  font-variant-numeric: tabular-nums
}

.bli:hover .bli-num {
  color: var(--brand)
}

/* Thumbnail */
.bli-thumb {
  width: 140px;
  height: 100px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0
}

.bli-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease
}

.bli:hover .bli-thumb img {
  transform: scale(1.07)
}

/* Content */
.bli-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0
}

.bli-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tc, var(--brand))
}

.bli-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
  transition: color .22s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden
}

.bli:hover .bli-title {
  color: var(--brand)
}

.bli-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden
}

/* Right col */
.bli-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0
}

.bli-date {
  font-size: .74rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap
}

.bli-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9rem;
  transition: all .25s;
  flex-shrink: 0
}

.bli:hover .bli-arrow {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.08)
}

@media(max-width:991px) {
  .bli {
    grid-template-columns: 40px 110px 1fr auto;
    gap: 20px;
    padding: 22px 0
  }

  .bli-thumb {
    width: 110px;
    height: 80px
  }

  .bli-num {
    font-size: 1.6rem
  }
}

@media(max-width:640px) {
  .blog-hd {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px
  }

  .bli {
    grid-template-columns: 110px 1fr;
    grid-template-rows: auto auto;
    gap: 14px 16px;
    padding: 20px 0
  }

  .bli-num {
    display: none
  }

  .bli-right {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
  }

  .bli-desc {
    display: none
  }

  .bli::before {
    display: none
  }
}

/* ── FAQ ── */
.faq-section {
  background: #ffffff
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s, transform .3s;
}
.faq-item:hover {
  border-color: rgba(225,29,42,.22);
  box-shadow: 0 8px 28px rgba(8,42,89,.09);
  transform: translateX(4px);
}

.faq-item:has(.faq-btn:not(.collapsed)) {
  box-shadow: inset 3px 0 0 var(--brand), 0 10px 36px rgba(8, 42, 89, .09)
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 22px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: color .25s
}

.faq-btn:not(.collapsed) {
  color: var(--brand)
}

.faq-btn:focus {
  outline: none;
  box-shadow: none
}

.faq-q {
  flex: 1;
  line-height: 1.4
}

.faq-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: transform .38s ease, background .25s, color .25s
}

.faq-btn:not(.collapsed) .faq-icon {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff
}

.faq-body-wrap {
  border-top: 1px solid transparent;
  transition: border-color .25s
}

.faq-body-wrap.show {
  border-top-color: var(--line)
}

.faq-body {
  padding: 4px 24px 22px;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75
}

/* ── CTA BAND ── */
.cta-band {
  padding: 56px 0;
  background: transparent;
  border-radius: 44px 44px 0 0;
  overflow: hidden
}

.cta-band-box {
  background: linear-gradient(135deg, #EEF3FF 0%, #FFF1F2 100%);
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
}

.cta-band-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 42, .08), transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.cta-band-box::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 42, 89, .06), transparent 70%);
  bottom: -120px;
  left: -80px;
  pointer-events: none;
}

.cta-band h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  position: relative
}

.cta-band p {
  color: var(--muted);
  font-size: 1.05rem;
  position: relative
}

.cta-band .btn-light {
  background: var(--brand);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(225, 29, 42, .25);
  position: relative
}

.cta-band .btn-light:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px)
}

.cta-band .btn-outline-light {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  position: relative
}

.cta-band .btn-outline-light:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px)
}

/* ── FOOTER ── */
.footer {
  overflow: hidden;
  border-top: 3px solid var(--brand);
}

.ft-wrap {
  display: grid;
  grid-template-columns: 650px 1fr
}

/* — LEFT PANEL (now navy dark) — */
.ft-left {
  background: var(--navy-deep);
  padding: 50px 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ft-left>*:not(.ft-bubbles) {
  position: relative;
  z-index: 1
}

.ft-logo-img {
  height: 44px;
  object-fit: contain;
  align-self: flex-start
}

.ft-tagline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0
}

.ft-cities {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  letter-spacing: .04em
}

.ft-contact-list {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.ft-ci {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78)
}

.ft-ci i {
  color: var(--brand);
  font-size: .88rem;
  flex-shrink: 0;
  width: 16px
}

.ft-apps-lbl {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .45);
  margin: 0
}

.ft-app-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.ft-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  text-decoration: none;
  transition: all .2s;
  min-width: 138px
}

.ft-app-btn:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px);
  color: #fff
}

.ft-app-btn i {
  font-size: 1.35rem;
  flex-shrink: 0
}

.ft-app-btn div {
  line-height: 1.25
}

.ft-app-btn div small {
  font-size: .62rem;
  display: block;
  opacity: .6;
  font-weight: 400
}

.ft-app-btn div strong {
  font-size: .86rem;
  display: block
}

.ft-grating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 99px;
  padding: 7px 16px;
  align-self: flex-start;
  backdrop-filter: blur(4px)
}

.ft-g-icon {
  color: #4285f4;
  font-size: 1rem
}

.ft-grating strong {
  color: #fff;
  font-size: .95rem;
  font-weight: 800
}

.ft-stars {
  color: #FBBF24;
  font-size: .8rem;
  letter-spacing: 1px
}

/* Floating bubble animation (white on dark) */
.ft-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.ft-b {
  position: absolute;
  border-radius: 50%;
  width: var(--sz);
  height: var(--sz);
  left: var(--lf);
  bottom: -80px;
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .12);
  animation: ftRise var(--dur) ease-in var(--del) infinite
}

@keyframes ftRise {
  0% {
    transform: translateY(0) scale(.8);
    opacity: 0
  }

  8% {
    opacity: 1
  }

  88% {
    opacity: .65
  }

  100% {
    transform: translateY(-115vh) scale(1.15);
    opacity: 0
  }
}

/* — RIGHT PANEL — */
.ft-right {
  background-color: #F8F9FF;
  background-image:
    linear-gradient(135deg, #EEF3FF 0%, #FFF1F2 100%),
    radial-gradient(rgba(8,42,89,.04) 1px, transparent 1px);
  background-size: cover, 20px 20px;
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(8,42,89,.08);
}

.ft-right::before,
.ft-right::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ftRingPulse 10s ease-in-out infinite
}

.ft-right::before {
  width: 520px;
  height: 520px;
  border: 1px solid rgba(8, 42, 89, .05);
  top: -230px;
  right: -130px
}

.ft-right::after {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(8, 42, 89, .04);
  bottom: -130px;
  left: -70px;
  animation-delay: 5s
}

@keyframes ftRingPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .4
  }

  50% {
    transform: scale(1.08);
    opacity: .8
  }
}

.ft-nav-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px
}

.ft-nav-head {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.ft-chevron {
  transition: transform .3s;
  font-size: .85rem;
  display: none
}

.ft-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

@media(max-width:767px) {
  .ft-nav-wrap {
    grid-template-columns: 1fr;
    gap: 0
  }

  .ft-chevron {
    display: inline-block
  }

  /* Scoped to the actual accordion columns (Services/Company/Connect) only
     — .ft-nav-head is reused as a plain, non-collapsible heading by the
     Newsletter block below, which must not pick up this clickable-accordion
     styling (it has no chevron/toggle behavior of its own). */
  .ft-nav-col .ft-nav-head {
    cursor: pointer;
    font-size: 1rem;
    padding: 16px 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(8, 42, 89, .1);
    user-select: none
  }

  .ft-nav-col.ft-open .ft-chevron {
    transform: rotate(180deg)
  }

  .ft-nav-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s;
    padding-top: 0
  }

  .ft-nav-col.ft-open .ft-nav-list {
    max-height: 500px;
    padding-top: 10px;
    padding-bottom: 14px
  }

  .ft-nav-list a {
    font-size: 19px;
    line-height: 2.4
  }
}

.ft-nav-list a {
  color: rgb(5 29 62);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 32px;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.ft-nav-list a:hover {
  color: var(--brand);
  transform: translateX(5px);
}

/* ── FOOTER NEWSLETTER ── */
.ft-newsletter {
  position: relative;
  z-index: 1;
  padding: 22px 0 4px;
  border-top: 1px solid rgba(8, 42, 89, .1);
  margin-top: 8px;
}

.ft-newsletter p {
  font-size: .84rem;
  color: var(--muted);
  margin: 6px 0 14px;
  max-width: 420px;
  line-height: 1.6;
}

.ft-newsletter-form form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.ft-newsletter-form p {
  margin: 0;
  flex: 1 1 220px;
  max-width: none;
}

.ft-newsletter-form input[type=email],
.ft-newsletter-form input[type=text] {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: .88rem;
  font-family: inherit;
  color: var(--navy);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.ft-newsletter-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(225, 29, 42, .1);
}

.ft-newsletter-form .wpcf7-submit {
  border: none;
  border-radius: 50px;
  background: var(--brand);
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  font-family: inherit;
  padding: 12px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .22s, transform .22s;
}

.ft-newsletter-form .wpcf7-submit:hover {
  background: var(--brand-d, #B0121C);
  transform: translateY(-2px);
}

.ft-newsletter-form .wpcf7-response-output {
  flex: 1 1 100%;
  margin: 10px 0 0 !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: .82rem;
}

.ft-newsletter-form .wpcf7-not-valid-tip {
  font-size: .76rem;
  color: var(--brand);
  margin-top: 4px;
}

.ft-right-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgba(8, 42, 89, .1);
  border-bottom: 1px solid rgba(8, 42, 89, .1);
  margin-bottom: 22px;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

.ft-socials {
  display: flex;
  gap: 9px
}

.ft-soc {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(8,42,89,.15);
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: .95rem;
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  background: #fff;
}

.ft-soc:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(225,29,42,.3);
}

.ft-payments {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  align-items: center
}

.ft-pay {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .13);
  transition: transform .18s, box-shadow .18s
}

.ft-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2)
}

.ft-pay svg {
  display: block
}

.ft-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

.ft-legal-links {
  display: flex;
  gap: 20px
}

.ft-legal-links a {
  color: rgba(8, 42, 89, .42);
  font-size: .77rem;
  text-decoration: none;
  transition: color .2s
}

.ft-legal-links a:hover {
  color: var(--navy)
}

.ft-copy {
  color: rgba(8, 42, 89, .38);
  font-size: .77rem
}

/* Responsive */
@media(max-width:1100px) {
  .ft-wrap {
    grid-template-columns: 390px 1fr
  }

  .ft-left,
  .ft-right {
    padding: 48px 36px
  }
}

@media(max-width:860px) {
  .ft-wrap {
    grid-template-columns: 1fr
  }

  .ft-right {
    padding: 48px 32px
  }

  .ft-nav-wrap {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:767px) {
  .ft-nav-wrap {
    grid-template-columns: 1fr !important
  }
}

@media(max-width:576px) {

  .ft-left,
  .ft-right {
    padding: 40px 24px
  }

  .ft-legal {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  .ft-right-mid {
    flex-direction: column;
    align-items: flex-start
  }
}

@media(max-width:767px) {
  .footer {
    padding-bottom: 0
  }
}


/* ── FLOATING CONTACT ── */
.fab-wrap {
  position: fixed;
  bottom: 36px;
  right: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
}

.fab-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .22);
  transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s;
}

.fab-item:hover {
  transform: translateY(-4px) scale(1.08);
  color: #fff;
}

.fab-call {
  background: #081538;
  box-shadow: 0 6px 20px rgba(8, 21, 56, .4);
}

.fab-mail {
  background: #1d4ed8;
  box-shadow: 0 6px 20px rgba(29, 78, 216, .4);
}

.fab-wa {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
}

.fab-call:hover {
  box-shadow: 0 10px 28px rgba(8, 21, 56, .5);
}

.fab-mail:hover {
  box-shadow: 0 10px 28px rgba(29, 78, 216, .5);
}

.fab-wa:hover {
  box-shadow: 0 10px 28px rgba(37, 211, 102, .5);
}

@media (max-width: 767px) {
  .fab-wrap {
    bottom: calc(70px + env(safe-area-inset-bottom));
    /* Was right:14px — sat stacked directly above the bottom nav's own
       WhatsApp tab (same corner, both circular icons), reading as
       cluttered/overlapping. Moved to the left corner, clear of every
       bottom-nav tab. */
    left: 14px;
    right: auto;
  }

  .fab-item {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
}

/* ── Offer Popup ── */
.op-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 50, .7);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity .4s ease;
  /* JS sets display:flex a frame before adding .op-show (so the opacity
     transition has a starting point) — without this, that single frame
     (and any dropped-frame edge case that delays .op-show longer) leaves
     a full-viewport, invisible-but-still-clickable layer sitting above
     literally everything else on the page (z-index 999999), silently
     swallowing every tap/click site-wide until it resolves. */
  pointer-events: none;
}

.op-backdrop.op-show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.op-backdrop.op-show {
  opacity: 1;
  visibility: visible
}

.op-card {
  display: flex;
  width: 100%;
  max-width: 780px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
  transform: translateY(28px) scale(.97);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  position: relative
}

.op-backdrop.op-show .op-card {
  transform: translateY(0) scale(1)
}

/* Close */
.op-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s
}

.op-close:hover {
  background: rgba(255, 255, 255, .25)
}

/* Left panel */
.op-left {
  width: 240px;
  flex-shrink: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 28px;
  position: relative;
  overflow: hidden;
  text-align: center
}

.op-bg-num {
  position: absolute;
  font-size: 13rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em
}

.op-badge {
  background: var(--brand);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
  position: relative
}

.op-pct {
  font-size: 5.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  position: relative;
  letter-spacing: -.04em
}

.op-pct sup {
  font-size: 2rem;
  vertical-align: super;
  font-weight: 800
}

.op-pct-label {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: .18em;
  position: relative;
  margin-top: -4px
}

.op-left-sub {
  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
  font-weight: 500;
  margin: 10px 0 0;
  position: relative
}

.op-dots {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 6px;
  margin-top: 28px;
  position: relative
}

.op-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15)
}

/* Right panel */
.op-right {
  flex: 1;
  background: #fff;
  padding: 36px 36px 32px
}

.op-logo-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px
}

.op-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  color: var(--muted)
}

.op-brand-name strong {
  color: var(--navy)
}

.op-flag {
  font-size: .78rem;
  color: var(--muted)
}

.op-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.2
}

.op-desc {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px
}

.op-desc strong {
  color: var(--navy)
}

/* Code box */
.op-code-box {
  background: rgba(225, 29, 42, .06);
  border: 1.5px dashed rgba(225, 29, 42, .3);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.op-code-lbl {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em
}

.op-code {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: .12em;
  font-family: 'Poppins', sans-serif
}

/* Perks */
.op-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.op-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 500
}

.op-perks li i {
  color: var(--brand);
  font-size: .9rem;
  flex-shrink: 0
}

/* CTA */
.op-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 8px 24px rgba(225, 29, 42, .3)
}

.op-cta:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(225, 29, 42, .4)
}

.op-skip {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--muted);
  font-size: .8rem;
  margin-top: 12px;
  cursor: pointer;
  padding: 6px;
  transition: color .2s
}

.op-skip:hover {
  color: var(--ink)
}

@media(max-width:600px) {
  .op-card {
    flex-direction: column;
    max-width: 400px;
    border-radius: 22px
  }

  .op-left {
    width: 100%;
    padding: 30px 24px 24px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px
  }

  .op-bg-num {
    font-size: 8rem
  }

  .op-pct {
    font-size: 3.5rem
  }

  .op-pct-label {
    font-size: 1.4rem
  }

  .op-dots {
    display: none
  }

  .op-badge {
    margin-bottom: 0
  }

  .op-right {
    padding: 24px 22px 26px
  }

  .op-title {
    font-size: 1.5rem
  }
}

@media(max-width:768px) {
  .hero {
    padding: 90px 0 60px;
    text-align: center;
    min-height: 100svh
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto
  }

  .hero-trust {
    justify-content: center
  }

  .offer-pct {
    font-size: 1.5rem
  }

  .booking-form {
    padding: 24px
  }
}

section#services .sh2 {
  max-width: 1000px;
  margin: 0 auto 17px;
}

@media(max-width:991px) {
  .svc-tabs {
    display: none
  }
}

/* ── MOBILE BOTTOM NAV (app-like) ── */
.mob-nav {
  display: none;
}

@media (max-width: 767px) {

  /* ── Bottom navigation bar ── */
  .mob-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99997;
    background: #fff;
    border-top: 1px solid rgba(8, 42, 89, .07);
    padding: 4px 4px calc(4px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(8, 42, 89, .09);
    align-items: flex-end;
    justify-content: space-around;
    height: calc(54px + env(safe-area-inset-bottom));
  }

  .mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 3px 6px 1px;
    color: #9ca3af;
    text-decoration: none;
    font-size: .56rem;
    font-weight: 600;
    letter-spacing: .03em;
    transition: color .18s;
    position: relative;
    flex: 1;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-nav-item i {
    font-size: 1.15rem;
    line-height: 1;
    transition: transform .2s cubic-bezier(.22, 1, .36, 1);
  }

  .mob-nav-item.is-active {
    color: var(--navy);
  }

  .mob-nav-item.is-active i {
    transform: translateY(-2px);
  }

  .mob-nav-item::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 22px;
    height: 3px;
    background: var(--brand);
    border-radius: 0 0 4px 4px;
    transition: transform .22s cubic-bezier(.22, 1, .36, 1);
  }

  .mob-nav-item.is-active::before {
    transform: translateX(-50%) scaleX(1);
  }

  /* WhatsApp item always green */
  .mob-nav-wa {
    color: #25D366 !important;
  }

  .mob-nav-wa::before {
    background: #25D366;
  }

  /* Center Book CTA button */
  .mob-nav-book {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--brand);
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .03em;
    flex: 1;
    position: relative;
    bottom: 8px;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-nav-book-btn {
    width: 46px;
    height: 46px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    box-shadow: 0 5px 18px rgba(225, 29, 42, .45);
    transition: transform .18s, box-shadow .18s;
  }

  .mob-nav-book:active .mob-nav-book-btn {
    transform: scale(.92);
    box-shadow: 0 3px 10px rgba(225, 29, 42, .4);
  }

  /* ── Mobile-specific overrides ── */

  /* Slim navbar — just logo */
  .navbar {
    padding: 7px 0;
  }

  /* Body padding so content isn't hidden behind bottom nav */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  /* Hide floating WhatsApp (in bottom nav already) */
  .whatsapp-float {
    display: none;
  }

  /* Chat widget above bottom nav */
  #radiantChatFrame {
    bottom: 76px !important;
  }

  /* App-like section spacing on mobile */
  .section {
    padding: 52px 0;
  }

  /* Hero btns — compact single row on mobile */
  .hero-btns {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hbtn {
    min-width: 0;
    padding: 10px 14px 10px 10px;
    border-radius: 14px;
    flex: 1;
  }

  .hbtn-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .hbtn-text small {
    font-size: .6rem;
  }

  .hbtn-text strong {
    font-size: .85rem;
  }

  .hbtn-arrow {
    display: none;
  }

  /* Trust strip horizontal scroll on mobile */
  .trust-strip {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .trust-card {
    flex-shrink: 0;
    min-width: 200px;
  }
}



/* Tanu */


/* Blog Page */

/* ─── CONTENT AREA ───────────────────────────────────── */
.blog-section {
  padding: 50px;
}

/* ─── SECTION LABEL ──────────────────────────────────── */
.section-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 0;
}

.section-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: #e11d2a;
  margin-top: 6px;
}


.section-label-wrap .label-text {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}


/* ─── ARTICLE CARD ───────────────────────────────────── */
.article-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s, transform 0.25s;
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
}

.article-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.11);
  transform: translateY(-3px);
}

.article-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.article-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.article-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.badge-featured {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e11d2a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.article-card .card-body {
  padding: 16px 18px 20px;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.article-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.article-meta i {
  font-size: 12px;
}

.article-meta .dot {
  width: 3px;
  height: 3px;
  background: var(--muted);
  border-radius: 50%;
}

.article-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #081538;
}

.article-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
}

.read-more {
  color: #e11d2a;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.read-more:hover {
  color: var(--red-dark);
  gap: 8px;
}

/* ─── SIDEBAR ────────────────────────────────────────── */


.sidebar {
  padding-left: 50px;
  position: sticky !important;
  top: 120px;
  height: fit-content;
}


/* Categories */
.categories-box {
  margin-bottom: 32px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 30px;
  border-radius: 12px;
}

.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 12px;
}

.cat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.cat-list li:last-child {
  border-bottom: none;
}

.cat-list li:hover {
  color: #e11d2a;
}

.cat-list li i {
  color: var(--muted);
  font-size: 15px;
  width: 18px;
}

.cat-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.cat-count {
  margin-left: auto;
  background: var(--gray-bg);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Newsletter box */
.newsletter-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 32px;
}

.newsletter-box .nl-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px;
}

.newsletter-box .nl-title .accent {
  color: #e11d2a;
}

.newsletter-box .nl-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}

.newsletter-box input {
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  padding: 10px 14px;
  font-size: 12.5px;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-box input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-box input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-subscribe {
  width: 100%;
  background: #e11d2a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-subscribe:hover {
  background: #b81622;
}

.nl-note {
  text-align: center;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #fff;
  font-size: 14px;
}

/* Popular Posts */
.popular-posts {
  border: 1px solid #eee;
  padding: 20px 30px;
  border-radius: 12px;
}

.popular-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.popular-item:last-child {
  border-bottom: none;
}

.popular-item:hover .pop-title {
  color: #e11d2a;
}

.pop-thumb {
  width: 70px;
  height: auto;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
}

.pop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pop-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 5px;
  color: var(--text);
  transition: color 0.2s;
}

.pop-date {
  font-size: 11px;
  color: var(--muted);
}

/* ─── PAGINATION ─────────────────────────────────────── */
.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.pg-list {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.pg-list li a,
.pg-list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.pg-list li a:hover {
  border-color: #e11d2a;
  color: #e11d2a;
}

.pg-list li.active span {
  background: #e11d2a;
  border-color: #e11d2a;
  color: #fff;
}

.pg-list li .pg-next {
  width: auto;
  padding: 0 14px;
  border-radius: 50px;
  gap: 5px;
}

/* ─── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 0 0;
}

.cta-icon-wrap {
  width: 52px;
  height: 52px;
  background: #e11d2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.cta-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cta-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-schedule {
  background: #e11d2a;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-schedule:hover {
  background: var(--red-dark);
  color: #fff;
}

.btn-whatsapp {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-whatsapp:hover {
  border-color: #fff;
  color: #fff;
}

.search-bar-wrap {
  position: relative;
  max-width: 340px;
  margin-bottom: 36px;
}

.search-bar-wrap input {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  padding: 10px 44px 10px 18px;
  font-size: 13px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.search-bar-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.search-bar-wrap input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.search-bar-wrap .search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
}

/* Blog Details */

.blog-details-section {
  padding: 50px 0;
}

.art-meta-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  margin-bottom: 0;
}

.art-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
}

.art-meta-item i {
  color: rgba(225, 29, 42, .9);
  font-size: .85rem;
}

.art-meta-item strong {
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
}

.art-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.art-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color .2s;
}

.art-chip i {
  color: var(--brand);
  font-size: .9rem;
}

.art-chip:hover {
  border-color: var(--brand);
}

/* Table of Contents */
.toc-box {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.toc-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--brand), var(--brand-dark));
  border-radius: 2px 0 0 2px;
}

.toc-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc-label i {
  color: var(--brand);
}

.toc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.toc-list li .toc-n {
  font-size: .68rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: .06em;
  min-width: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.toc-list a {
  font-size: .88rem;
  color: var(--txt);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
  transition: color .2s;
}

.toc-list a:hover {
  color: var(--brand);
}

/* Prose typography */
.prose {
  font-family: 'Poppins', sans-serif;
}

.prose h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--navy);
  line-height: 1.22;
  letter-spacing: -.02em;
  margin: 56px 0 20px;
  padding-top: 8px;
  scroll-margin-top: 100px;
}

.prose h2 em {
  color: var(--brand);
  font-style: italic;
}

.prose h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy);
  margin: 32px 0 14px;
}

.prose p {
  font-size: .97rem;
  color: var(--txt);
  line-height: 1.88;
  margin-bottom: 15px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--navy);
  font-weight: 700;
}

.prose a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Pull quote */
.pull-quote {
  position: relative;
  margin: 48px 0;
  padding: 36px 40px 36px 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 20px;
  overflow: hidden;
}

.pull-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 9rem;
  line-height: 1;
  color: var(--brand);
  opacity: .25;
  font-family: 'Playfair Display', serif;
  pointer-events: none;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 700;
  color: #fff;
  line-height: 1.65;
  margin: 0 0 16px;
}

.pull-quote cite {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pull-quote cite::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--brand);
  display: inline-block;
}

/* Highlight box (tip/warning) */
.highlight-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(225, 29, 42, .05);
  border: 1.5px solid rgba(225, 29, 42, .18);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 32px 0;
}

.highlight-box.tip {
  background: rgba(8, 21, 56, .04);
  border-color: rgba(8, 21, 56, .14);
}

.highlight-box-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-box.tip .highlight-box-ico {
  background: var(--navy);
}

.highlight-box-body p {
  font-size: .9rem;
  color: var(--txt);
  line-height: 1.75;
  margin: 0;
}

.highlight-box-body strong {
  color: var(--navy);
  font-size: .88rem;
}

/* Garment frequency table */
.freq-table {
  width: 100%;
  margin: 40px 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: 0 4px 24px rgba(8, 21, 56, .06);
}

.freq-table thead tr {
  background: var(--navy);
}

.freq-table thead th {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  padding: 16px 20px;
  text-align: left;
}

.freq-table tbody tr {
  background: #fff;
  transition: background .18s;
}

.freq-table tbody tr:hover {
  background: rgba(225, 29, 42, .04);
}

.freq-table tbody tr:nth-child(even) {
  background: #FAFBFD;
}

.freq-table tbody tr:nth-child(even):hover {
  background: rgba(225, 29, 42, .04);
}

.freq-table td {
  padding: 14px 20px;
  font-size: .875rem;
  color: var(--txt);
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.freq-table td:first-child {
  font-weight: 700;
  color: var(--navy);
}

.freq-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.freq-badge.often {
  background: rgba(225, 29, 42, .1);
  color: var(--brand);
}

.freq-badge.moderate {
  background: rgba(8, 21, 56, .08);
  color: var(--navy);
}

.freq-badge.rare {
  background: rgba(100, 116, 139, .1);
  color: var(--muted);
}

/* Step cards */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0;
}

.step-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.step-card:hover {
  box-shadow: 0 12px 40px rgba(8, 21, 56, .09);
  transform: translateY(-3px);
  border-color: rgba(225, 29, 42, .25);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(225, 29, 42, .35);
}

.step-body h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.step-body p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Author card */
.author-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 22px;
  padding: 36px;
  margin: 56px 0 0;
}

.author-av {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #fff;
  font-weight: 900;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  border: 3px solid rgba(255, 255, 255, .2);
}

.author-info small {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  display: block;
  margin-bottom: 6px;
}

.author-info h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.author-info p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  margin: 0;
}

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1.5px solid var(--line);
  padding-top: 32px;
  margin-top: 32px;
}

.share-lbl {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .2s;
}

.share-btn.fb {
  background: #1877F2;
  color: #fff;
}

.share-btn.fb:hover {
  background: #1562d0;
}

.share-btn.wa {
  background: #25D366;
  color: #fff;
}

.share-btn.wa:hover {
  background: #1eba57;
}

.share-btn.tw {
  background: #000;
  color: #fff;
}

.share-btn.tw:hover {
  background: #222;
}

.share-btn.cp {
  background: var(--light);
  border: 1.5px solid var(--line);
  color: var(--navy);
}

.share-btn.cp:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* Tag cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.tag-pill {
  font-size: .75rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  transition: all .2s;
}

.tag-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(225, 29, 42, .04);
}


html,
body {
  overflow-x: clip !important;
}

.ct-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-ct-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brand);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .22s, transform .22s, box-shadow .22s;
  box-shadow: 0 8px 24px rgba(225, 29, 42, .35);
}

.btn-ct-primary:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ct-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color .22s, background .22s;
}

.btn-ct-ghost:hover {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

/* ─── CONTACT INFO STRIP ───────────────── */
.ct-info-strip {
  background: #fff;
  padding: 50px 0;
}

.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(8, 21, 56, .07);
  border: 1px solid var(--line);
  min-height: 100%;
  transition: box-shadow .22s, transform .22s;
  position: relative;
  overflow: hidden;
}

.ct-info-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}

.ct-info-card:hover {
  box-shadow: 0 8px 32px rgba(8, 21, 56, .12);
  transform: translateY(-3px);
}

.ct-info-card:hover::after {
  transform: scaleX(1);
}

.ct-info-ico {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #e11d2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.ct-info-body {
  flex: 1;
  min-width: 0;
}

.ct-info-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.ct-info-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
  overflow-wrap: break-word;
}

.ct-info-sub {
  font-size: .78rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.ct-info-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.ct-info-link:hover {
  text-decoration: underline;
}


.ct-main-section {
  background: var(--light);
  padding: 50px 0;
}

.ct-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(8, 21, 56, .07);
  height: 100%;
}

.ct-trust-title {
  color: #fff;
}

.ct-form .form-control,
.ct-form .form-select {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: .88rem;
  color: var(--txt);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  font-family: 'Poppins', sans-serif;
}

.ct-form .form-control::placeholder {
  color: #aab4c4;
}

.ct-form .form-control:focus,
.ct-form .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(225, 29, 42, .08);
  outline: none;
}

.ct-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Contact Form 7 wraps every field in its own <p> tag, which carries the
   browser default ~1em top/bottom margin — the original design has no <p>
   wrapping at all, spacing fields only via the Bootstrap row gutter. */
.ct-form .wpcf7-form p {
  margin: 0;
}

.btn-ct-submit {
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-size: .95rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .22s, transform .18s, box-shadow .22s;
  box-shadow: 0 6px 20px rgba(225, 29, 42, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.btn-ct-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(225, 29, 42, .4);
}

/* Trust Card */
.ct-trust-card {
  background: var(--navy);
  border-radius: 18px;
  padding: 40px;
  height: 100%;
  position: relative;
  overflow: clip;
}

.ct-main-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}


.ct-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.ct-trust-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ct-trust-item:first-child {
  padding-top: 0;
}

.ct-trust-ico {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(225, 29, 42, .08);
  border: 1px solid rgba(225, 29, 42, .3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand);
}

.ct-trust-name {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2px;
}

.ct-trust-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
}

.section-location-wrap {
  padding: 50px 0;
}

.section-location-wrap .nav-pills .nav-link {
  color: #444;
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid #e0d8d0;
  border-radius: 50px;
  margin-bottom: 8px;
  background: #fff;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  width: auto;
}

.section-location-wrap .nav-pills .nav-link:hover {
  border-color: #e53935;
  color: #e53935;
  background: #fff7f7;
}

.section-location-wrap .nav-pills .nav-link.active {
  background: #e53935;
  border-color: #e53935;
  color: #fff;
  box-shadow: 0 4px 14px rgba(229, 57, 53, 0.22);
}

/* ── INFO CARD ── */
.section-location-wrap .info-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.section-location-wrap .info-card h5 {
  font-size: 17px;
  font-weight: 800;
  color: #0d1b3e;
  margin-bottom: 14px;
}

.section-location-wrap .info-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.section-location-wrap .info-row:last-child{
    margin-bottom: 0;
}
.section-location-wrap .info-row i {
  color: var(--brand);
  margin-top: 2px;
  font-size: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--brand);
}

/* ── MAP ── */
.section-location-wrap .map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  height: 450px;
}

.section-location-wrap .map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.section-location-wrap .locations-wrap .nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.section-location-wrap .info-row span {
  font-size: 14px;
}

.section-location-wrap .info-row a {
  font-size: 14px;
}


.section-location-wrap .location-info-wrap .tab-pane {
  grid-template-columns: 42% 58%;
  gap: 40px;
  margin-top: 50px;
}

.section-location-wrap .location-info-wrap .tab-pane.show.active {
  display: grid;
}

.section-location-wrap .location-info-wrap .tab-pane h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px;
}

 .faq-section-wrap { padding: 50px 0; background: var(--light) }
  .faq-section .accordion{
  margin-top: 50px;
 }

    /* Accordion */
    .faq-accordion .accordion-item {
      background: #fff; border: none;
      border-radius: 12px !important;
      margin-bottom: 15px;
      box-shadow: 0 1px 8px rgba(0,0,0,.06);
      overflow: hidden;
    }

    .faq-accordion .accordion-button {
      font-family: 'Poppins', sans-serif;
      color: var(--dark); background: #fff;
      padding: 18px 20px;
      box-shadow: none !important;
      gap: 12px;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
      color: var(--brand); background: #fff8f8;
    }

    .faq-accordion .accordion-button::after { display: none; }

    .faq-accordion .accordion-button .acc-icon {
      width: 26px; height: 26px; flex-shrink: 0;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700; transition: all .25s;
    }

    .faq-accordion .accordion-button.collapsed .acc-icon {
      background: var(--light-bg); color: var(--brand);
    }
    .faq-accordion .accordion-button:not(.collapsed) .acc-icon {
      background: var(--brand); color: #fff;
    }

    .faq-accordion .accordion-body {
      line-height: 1.8; padding: 0 20px 18px 58px;
      font-size: 14px;
    }

    /* ══════════════════════════════════════
       SIDEBAR — SUPPORT CARD
    ══════════════════════════════════════ */
    .support-card {
      background: var(--navy);
      border-radius: 12px; padding: 40px;
      color: #fff;
    }

    .support-card h3 {
      font-size: 22px; font-weight: 700;
      margin-bottom: 8px;
      color: #fff;
    }
    .support-card p { color: rgba(255,255,255,.65); margin-bottom: 15px; line-height: 1.6; }

    .contact-option {
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px; padding: 12px 14px;
      margin-bottom: 15px; text-decoration: none;
      color: #fff; font-size: 13px; font-weight: 500;
      transition: all .2s;
    }
    .contact-option:hover { background: rgba(255,255,255,.15); color: #fff; }
    .contact-option .co-left { display: flex; align-items: center; gap: 10px; }
    .contact-option .co-icon {
      width: 34px; height: 34px;
      background: rgba(255,255,255,.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; color: var(--brand);
    }
    .contact-option .co-sub { font-size: 11px; color: rgba(255,255,255,.5); }

    .btn-contact-support {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 12px;
      background: var(--brand); color: #fff;
      border: none; border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px; font-weight: 600;
      cursor: pointer; transition: all .2s;
      margin-top: 14px;
    }
    .btn-contact-support:hover { background: #c62828; }

    .section-location-wrap .info-card p {
    font-size: 14px;
    margin-bottom: 30px;
}

.footer .ft-left p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.sp-intro-img video#promoVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 32px;
}

.video-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.6);
    color:#fff;
    font-size:28px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    z-index:5;
}

.video-play-btn:hover{
    background:var(--brand);
}

.sp-intro-img {
    position: relative;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity .3s ease;
    z-index: 10;
}

/* Playing state + no hover = hide button */
.sp-intro-img.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

/* Playing state + hover = show button */
.sp-intro-img.playing:hover .video-play-btn {
    opacity: 1;
    pointer-events: auto;
}

    /* ─── HERO ─────────────────────────────── */
    .sp-hero {
      position: relative;
      background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
      padding: 130px 0 0;
      overflow: hidden;
		text-align: center;
    }

.sp-hero:before{
	position:absolute;
    content: '';
	top: 0;
    left: 0;
    width: 100%;
	height: 100%;
	background: #000f234f;
	z-index: 1;
	text-align: center;

}

/*     .sp-hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(225, 29, 42, .12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(15, 34, 85, .9) 0%, transparent 60%);
    }
 */
    /* Diagonal line texture */
/*     .sp-hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(-45deg,
          transparent,
          transparent 28px,
          rgba(255, 255, 255, .032) 28px,
          rgba(255, 255, 255, .032) 29px);
      z-index: 0;
    } */

    /* Horizontal lines overlay */
/*     .sp-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(0deg,
          transparent,
          transparent 48px,
          rgba(255, 255, 255, .025) 48px,
          rgba(255, 255, 255, .025) 49px);
      z-index: 0;
    } */

    /* Animated vector elements */
    .sp-hero-vectors {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 1;
    }

    .sp-vec {
      position: absolute;
      opacity: 0;
      animation: vecFloat 6s ease-in-out infinite;
    }

    @keyframes vecFloat {
      0% {
        opacity: 0;
        transform: translateY(20px) rotate(0deg);
      }

      20% {
        opacity: 1;
      }

      80% {
        opacity: .6;
      }

      100% {
        opacity: 0;
        transform: translateY(-40px) rotate(15deg);
      }
    }

    @keyframes vecPulse {

      0%,
      100% {
        transform: scale(1) rotate(0deg);
        opacity: .18;
      }

      50% {
        transform: scale(1.12) rotate(8deg);
        opacity: .32;
      }
    }

    @keyframes vecOrbit {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    @keyframes vecDrift {

      0%,
      100% {
        transform: translateX(0) translateY(0);
      }

      33% {
        transform: translateX(18px) translateY(-12px);
      }

      66% {
        transform: translateX(-12px) translateY(10px);
      }
    }

    .sp-vec-hanger {
      top: 12%;
      left: 6%;
      animation: vecDrift 8s ease-in-out infinite;
      opacity: .14;
    }

    .sp-vec-shirt {
      top: 55%;
      left: 2%;
      animation: vecDrift 11s ease-in-out infinite 1s;
      opacity: .1;
    }

    .sp-vec-drop1 {
      top: 20%;
      left: 38%;
      animation: vecFloat 7s ease-in-out infinite 0.5s;
    }

    .sp-vec-drop2 {
      top: 70%;
      left: 28%;
      animation: vecFloat 9s ease-in-out infinite 2s;
    }

    .sp-vec-drop3 {
      top: 40%;
      left: 52%;
      animation: vecFloat 6s ease-in-out infinite 1.5s;
    }

    .sp-vec-sparkle1 {
      top: 8%;
      left: 55%;
      animation: vecPulse 4s ease-in-out infinite;
      opacity: .22;
    }

    .sp-vec-sparkle2 {
      top: 75%;
      left: 48%;
      animation: vecPulse 5s ease-in-out infinite 1.2s;
      opacity: .16;
    }

    .sp-vec-sparkle3 {
      top: 30%;
      left: 18%;
      animation: vecPulse 6s ease-in-out infinite 0.8s;
      opacity: .12;
    }

    .sp-vec-ring1 {
      top: 5%;
      right: 10%;
      width: 180px;
      height: 180px;
      border: 1.5px solid rgba(225, 29, 42, .18);
      border-radius: 50%;
      animation: vecOrbit 20s linear infinite;
      opacity: 1;
    }

    .sp-vec-ring1::after {
      content: '';
      position: absolute;
      inset: 20px;
      border: 1px solid rgba(225, 29, 42, .1);
      border-radius: 50%;
    }

    .sp-vec-ring2 {
      bottom: 10%;
      left: 8%;
      width: 120px;
      height: 120px;
      border: 1px dashed rgba(255, 255, 255, .1);
      border-radius: 50%;
      animation: vecOrbit 15s linear infinite reverse;
      opacity: 1;
    }

    .sp-vec-grid {
      top: 0;
      right: 0;
      bottom: 0;
      width: 45%;
      background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 80% at 80% 50%, black 0%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 80% 50%, black 0%, transparent 70%);
    }

    .sp-hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      min-height: 560px;
      align-items: end;
    }

    @media(max-width:991px) {
      .sp-hero-grid {
        grid-template-columns: 1fr;
      }
    }

    .sp-hero-left {
      padding-top: 48px;
      padding-bottom: 72px;
      position: relative;
      z-index: 2;
    }

    .sp-hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(225, 29, 42, .15);
      border: 1px solid rgba(225, 29, 42, .3);
      color: #fca5a5;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 50px;
      margin-bottom: 24px;
    }

    .sp-hero-pill span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #E11D2A;
      animation: blink 1.4s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .2
      }
    }

    .sp-hero h1 {
      font-family: 'Poppins', sans-serif;
      font-weight: 900;
      font-size: clamp(2.2rem, 4.5vw, 3.8rem);
      color: #fff;
      line-height: 1.1;
      letter-spacing: -.04em;
      margin: 0 0 22px;
	text-shadow: 0 4px 32px rgba(0, 0, 0, .45), 0 1px 4px rgba(0, 0, 0, .3) !important;
    }

    .sp-hero h1 em {
      color: var(--brand);
      font-style: normal;
    }

    .sp-hero-desc {
    font-size: 1rem;
    color: #FFF;
    line-height: 1.78;
    margin: 0 auto 36px;
    max-width: 480px;
}

    .sp-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
	  text-align:center;
		justify-content:center;
		 
    }

    .sp-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--brand);
      color: #fff;
      font-size: .88rem;
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      padding: 15px 30px;
      border-radius: 12px;
      text-decoration: none;
      transition: background .22s, transform .22s, box-shadow .22s;
      box-shadow: 0 8px 24px rgba(225, 29, 42, .35);
    }

    .sp-btn-primary:hover {
      background: var(--brand-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(225, 29, 42, .45);
    }

    .sp-btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      border: 1.5px solid rgba(255, 255, 255, .25);
      color: #fff;
      font-size: .88rem;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 12px;
      text-decoration: none;
      transition: border-color .22s, background .22s;
    }

    .sp-btn-ghost:hover {
      border-color: rgba(255, 255, 255, .6);
      background: rgba(255, 255, 255, .07);
      color: #fff;
    }

    .sp-hero-right {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .sp-hero-img-wrap {
      position: relative;
      border-radius: 20px 20px 0 0;
      overflow: hidden;
      height: 520px;
    }

    .sp-hero-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .sp-hero-img-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(8, 21, 56, .6) 100%);
      z-index: 1;
    }

    .sp-hero-float {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      z-index: 2;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .sp-hero-stat {
      flex: 1;
      min-width: 100px;
      background: rgba(8, 21, 56, .75);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 14px;
      padding: 14px 16px;
    }

    .sp-hero-stat strong {
      display: block;
      font-size: 1.35rem;
      font-weight: 900;
      color: #fff;
      font-family: 'Poppins', sans-serif;
      line-height: 1;
    }

    .sp-hero-stat span {
      font-size: .7rem;
      color: rgba(255, 255, 255, .55);
      display: block;
      margin-top: 4px;
    }

    @media(max-width:991px) {
      .sp-hero {
        padding: 110px 0 0;
      }

      .sp-hero-img-wrap {
        height: 340px;
        border-radius: 20px 20px 0 0;
      }

      .sp-hero-left {
        padding-bottom: 40px;
      }
    }

    /* ─── STATS STRIP ──────────────────────── */
    .sp-strip {
      background: #fff;
      border-bottom: 1px solid var(--line);
      padding: 0;
    }

    .sp-strip-inner {
      display: flex;
      flex-wrap: wrap;
    }

    .sp-strip-item {
      flex: 1;
      min-width: 160px;
      padding: 22px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      border-right: 1px solid var(--line);
    }

    .sp-strip-item:last-child {
      border-right: none;
    }

    .sp-strip-ico {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      background: rgba(225, 29, 42, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--brand);
      flex-shrink: 0;
    }

    .sp-strip-item strong {
      display: block;
      font-size: .9rem;
      font-weight: 700;
      color: var(--navy);
      font-family: 'Poppins', sans-serif;
    }

    .sp-strip-item span {
      font-size: .75rem;
      color: var(--muted);
    }

    @media(max-width:767px) {
      .sp-strip-item {
        min-width: 50%;
        border-bottom: 1px solid var(--line);
      }

      .sp-strip-item:nth-child(even) {
        border-right: none;
      }
    }

    /* ─── Breadcrumb ───────────────────────── */
    .sp-crumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      font-size: .75rem;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 22px;
		justify-content: center;
    }
.sp-crumb a {
    color: rgb(255 255 255 / 85%);
    text-decoration: none;
    transition: color .2s;
}

    .sp-crumb a:hover {
      color: #fff;
    }

    .sp-crumb i {
      font-size: 18PX;
      opacity: .6;
    }

    .sp-crumb span {
      color: #FFF
    }

        /* ─── TESTIMONIALS ──────────────────────── */
    .sp-testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }

    .sp-testi-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 32px 28px 28px;
      position: relative;
      transition: box-shadow .3s, transform .3s;
      overflow: hidden;
    }

    .sp-testi-card:hover {
      box-shadow: 0 20px 52px rgba(8, 21, 56, .1);
      transform: translateY(-5px);
    }

    .sp-testi-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
    }

    .sp-testi-stars i {
      color: #F59E0B;
      font-size: .9rem;
    }

    .sp-testi-q {
      position: absolute;
      top: 20px;
      right: 24px;
      font-size: 5.5rem;
      line-height: 1;
      color: var(--brand);
      opacity: .08;
      font-family: 'Poppins', sans-serif;
      font-weight: 900;
      pointer-events: none;
      user-select: none;
    }

    .sp-testi-text {
      font-size: .93rem;
      color: var(--txt);
      line-height: 1.82;
      margin: 0 0 22px;
    }

    .sp-testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
    }

    .sp-testi-av {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
      color: #fff;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .04em;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .sp-testi-author strong {
      display: block;
      font-size: .88rem;
      font-weight: 700;
      color: var(--navy);
    }

    .sp-testi-author span {
      font-size: .77rem;
      color: var(--muted);
    }

    .sp-testi-badges {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .sp-testi-bdg {
      display: flex;
      align-items: center;
      gap: 14px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 16px 28px;
      min-width: 176px;
      transition: box-shadow .25s;
    }

    .sp-testi-bdg:hover {
      box-shadow: 0 8px 28px rgba(8, 21, 56, .08);
    }

    .sp-testi-bdg>i {
      font-size: 1.55rem;
      color: var(--brand);
    }

    .sp-testi-bdg strong {
      display: block;
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--navy);
    }

    .sp-testi-bdg span {
      font-size: .73rem;
      color: var(--muted);
    }

    @media(max-width:991px) {
      .sp-testi-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:580px) {
      .sp-testi-grid {
        grid-template-columns: 1fr;
      }
    }

    .testimonial-section{
padding: 50px 0;
    }

    .sp-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}

.sp-h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -.03em;
    margin: 0 0 16px;
}

.sp-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
}

.sp-h2 em {
    color: var(--brand);
    font-style: normal;
}

.sp-sub {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 560px;
}


   /* ─── CTA SECTION ──────────────────────── */
    .sp-cta {
      padding: 50px 0;
      background: var(--brand);
      position: relative;
      overflow: hidden;
    }

    .sp-cta::before {
      content: '';
      position: absolute;
      right: -200px;
      top: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .06);
    }

    .sp-cta::after {
      content: '';
      position: absolute;
      left: -100px;
      bottom: -150px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(0, 0, 0, .07);
    }

    .sp-cta-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
    }

    @media(max-width:767px) {
      .sp-cta-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
      }
    }

    .sp-cta-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .75);
      margin-bottom: 14px;
    }

    .sp-cta-tag::before {
      content: '';
      width: 20px;
      height: 2px;
      border-radius: 2px;
      background: rgba(255, 255, 255, .5);
    }

    .sp-cta h2 {
      font-family: 'Poppins', sans-serif;
      font-weight: 900;
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      color: #fff;
      line-height: 1.15;
      letter-spacing: -.04em;
      margin: 0 0 14px;
    }

    .sp-cta p {
      color: rgba(255, 255, 255, .75);
      font-size: .97rem;
      line-height: 1.75;
      margin: 0;
    }

    .sp-cta-right {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      flex-shrink: 0;
    }

    @media(max-width:767px) {
      .sp-cta-right {
        align-items: center;
      }
    }

    .sp-cta-phone {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(0, 0, 0, .15);
      border: 1.5px solid rgba(255, 255, 255, .25);
      border-radius: 16px;
      padding: 16px 28px;
      font-family: 'Poppins', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: #fff;
      text-decoration: none;
      letter-spacing: .02em;
      transition: background .2s;
      white-space: nowrap;
    }

    .sp-cta-phone:hover {
      background: rgba(0, 0, 0, .25);
      color: #fff;
    }

    .sp-cta-phone i {
      font-size: 1.2rem;
      opacity: .8;
    }

    .sp-cta-btns {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .sp-cta-btn-w {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--brand);
      font-size: .88rem;
      font-weight: 700;
      padding: 13px 24px;
      border-radius: 12px;
      text-decoration: none;
      transition: background .2s;
    }

    .sp-cta-btn-w:hover {
      background: #f1f5f9;
      color: var(--brand);
    }

    .sp-cta-btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .15);
      border: 1.5px solid rgba(255, 255, 255, .3);
      color: #fff;
      font-size: .88rem;
      font-weight: 600;
      padding: 12px 22px;
      border-radius: 12px;
      text-decoration: none;
      transition: background .2s;
    }

    .sp-cta-btn-wa:hover {
      background: rgba(255, 255, 255, .22);
      color: #fff;
    }

.art-featured-img img {width: 100%;height: auto;border-radius: 22px;}

.art-featured-img {
    margin-bottom: 30px;
    border-radius: 22px;
}

.ft-legal-links a {
    color: rgb(8 42 89 / 76%);
    font-size: 14px;
}

.ft-copy {
    color: rgb(8 42 89 / 76%);
    font-size: 14px;
}

.pp-note i {
    color: var(--brand) !important;
}

.vc-card{
height: auto !important;}

.blog-details-section h2 {
    font-family: 'Poppins', sans-serif !important;
    color: var(--ink);
    font-weight: 700 !important;
    letter-spacing: -.025em !important;
    margin: 20px 0 10px;
    padding-top: 8px;
    scroll-margin-top: 100px;
    font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
    line-height: 1.2;
}

.near-you-btn.is-brand {
    display: none;
}

.af-award-row img{
	height: 40px !important;
}

.rl-book-form .rl-date-label {
    text-align: left;
}

/* ── APP WALKTHROUGH SECTION ── */
.aw-section {
  padding: 50px 0;
  background-color: var(--bg-soft);
  background-image: radial-gradient(rgba(8,42,89,.045) 1px, transparent 1px);
  background-size: 22px 22px;
  position: relative;
  overflow: hidden;
}

.aw-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.aw-sub  { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-top: 14px; }

/* Connecting spine down the center on desktop */
.aw-steps { position: relative; }
.aw-steps::before {
  content: '';
  position: absolute;
  top: 12px; bottom: 12px; left: 50%;
  width: 2px; transform: translateX(-50%);
  background: repeating-linear-gradient(
    to bottom,
    rgba(225,29,42,.22) 0, rgba(225,29,42,.22) 8px,
    transparent 8px, transparent 16px
  );
  z-index: 0;
}

.aw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}
.aw-row + .aw-row { margin-top: 10px; }

/* Reverse the visual order for even rows (zigzag) */
.aw-row.aw-reverse .aw-text  { order: 2; }
.aw-row.aw-reverse .aw-visual { order: 1; }

/* ── TEXT SIDE ── */
.aw-text { padding: 20px 0; }
.aw-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--navy); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.15rem;
  margin-bottom: 20px; letter-spacing: -0.02em;
  box-shadow: 0 10px 26px rgba(8,42,89,.22);
}
.aw-row:nth-child(2) .aw-step-num { background: var(--brand); box-shadow: 0 10px 26px rgba(225,29,42,.22); }
.aw-row:nth-child(3) .aw-step-num { background: var(--navy); box-shadow: 0 10px 26px rgba(13,59,120,.22); }
.aw-row:nth-child(4) .aw-step-num { background: var(--brand); box-shadow: 0 10px 26px rgba(225,29,42,.22); }
.aw-row:nth-child(5) .aw-step-num { background: var(--navy); box-shadow: 0 10px 26px rgba(8,42,89,.22); }
.aw-row:nth-child(6) .aw-step-num { background: var(--brand); box-shadow: 0 10px 26px rgba(13,59,120,.22); }

.aw-step-eyebrow {
  display: block; font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em; color: var(--brand);
  margin-bottom: 10px;
}
.aw-step-title {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.25;
  margin: 0 0 14px;
}
.aw-step-body { font-size: .95rem; color: var(--ink-soft); line-height: 1.85; margin: 0 0 18px; }

.aw-step-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.aw-step-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--navy);
  background: #fff; border: 1.5px solid var(--line);
  padding: 7px 13px; border-radius: 99px;
}
.aw-step-tag i { color: var(--brand); font-size: .82rem; }

/* ── VISUAL SIDE — phone frame ── */
.aw-visual { display: flex; justify-content: center; }
.aw-phone {
    position: relative;
    width: 250px;
    border-radius: 38px;
    padding: 6px;
    background: linear-gradient(160deg, #081538, #082a59);
    box-shadow: 0 40px 80px -20px rgba(8, 42, 89, .35), 0 0 0 1px rgba(255, 255, 255, .06) inset;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}
.aw-phone:hover { transform: translateY(-6px) rotate(0deg); }

.aw-phone-screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 589 / 1280;
}
.aw-phone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aw-phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #0a0a0a;
  border-radius: 0 0 16px 16px; z-index: 2;
}

/* Floating badge on the phone (price / highlight) */
.aw-phone-badge {
  position: absolute; z-index: 3;
  background: var(--navy-deep); color: #fff;
  border-radius: 12px; padding: 10px 15px;
  font-size: .78rem; font-weight: 700;
  box-shadow: 0 16px 34px rgba(8,42,89,.3);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.aw-phone-badge i { color: var(--brand); font-size: .95rem; }
.aw-phone-badge.bottom-right {
    bottom: -20px;
    right: -40px;
}
.aw-phone-badge.top-right {
    top: -20px;
    right: -40px;
}
.aw-phone-badge.mid-left { top: 50%; left: -20px; transform: translateY(-50%); }



/* ── RESPONSIVE ── */
@media (max-width: 1099px) {
  .aw-row { gap: 44px; }
  .aw-phone { width: 220px; }
}
@media (max-width: 991px) {
  .aw-steps::before { display: none; }
  .aw-row, .aw-row.aw-reverse { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .aw-row .aw-text, .aw-row.aw-reverse .aw-text { order: 2; }
  .aw-row .aw-visual, .aw-row.aw-reverse .aw-visual { order: 1; }
  .aw-step-tags { justify-content: center; }
  .aw-row + .aw-row { margin-top: 48px; }
  .aw-cta-strip { flex-direction: column; text-align: center; padding: 34px 28px; }
}
@media (max-width: 576px) {
  .aw-phone { width: 200px; }
  .aw-phone-badge.bottom-right, .aw-phone-badge.top-right, .aw-phone-badge.mid-left { display: none; }
  .aw-cta-strip-btns { flex-direction: column; width: 100%; }
  .aw-cta-strip-btns .btn { width: 100%; }
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

form,
.form-group,
.input-group,
.input-wrap{
    width:100%;
    max-width:100%;
    min-width:0;
}

input,
select,
textarea{
    display:block;
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
    -webkit-appearance:none;
    appearance:none;
}
.form-group{
    flex:1 1 auto;
    min-width:0;
}

.sp-strip {
    margin-top: 30px;
}

.sp-hero-actions-band {
    margin-bottom: 30px;
}

section.sp-award-band {
    display: none;
}