* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0077c8;
  --accent: #e85a1a;
  --dark: #0d1b2a;
  --nav-h: 70px;
  --top-h: 36px;

  --primary-light: #2499e8;
  --primary-dark: #005a99;
  --primary-faint: rgba(0, 119, 200, 0.1);

  --accent-light: #ff7a3d;
  --accent-dark: #b94312;

  --dark: #1a1a1a;
  --darker: #111111;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --card-bg: #ffffff;
  --text-dark: #1e1e1e;
  --text-mid: #555555;
  --text-muted: #999999;
  --border: rgba(0, 119, 200, 0.18);

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.14);
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Brand palette ── */
  --primary-d: #005fa0;
  --primary-l: #2295e0;
  --primary-xs: rgba(0, 119, 200, 0.07);

  --accent-d: #c04512;
  --accent-l: #ff7a3d;
  --accent-xs: rgba(232, 90, 26, 0.08);

  /* neutrals — keep as is */
  --navy: #0d2137;
  --navy-l: #163350;
  --white: #ffffff;
  --off: #f5f7fa;
  --off2: #edf1f7;
  --text: #1e2d3d;
  --muted: #6b7a8d;
  --border: rgba(13, 33, 55, 0.09);

  --font-head: "Playfair Display", serif;
  --font-body: "DM Sans", sans-serif;
  --font-disp: "Bebas Neue", cursive;
  --sh-sm: 0 2px 14px rgba(13, 33, 55, 0.07);
  --sh-md: 0 8px 36px rgba(13, 33, 55, 0.12);
  --sh-lg: 0 20px 60px rgba(13, 33, 55, 0.16);

  --crimson: #0077c8;
  --crimson-d: #005fa0;
  --navy: #162740;
  --gold: #c9a84c;
  --gold-l: #e8cc7a;
  --font-body: "DM Sans", sans-serif;
}

html {
  font-size: 16px;
}

html,
body {
  font-family: var(--font-body);
  background: var(--off);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── TOP BAR ── */
.top {
  position: relative;
  z-index: 1000;
  background: #4e1800;
  height: var(--top-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f53602b0;
}

.top-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ti {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #ffffff;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
}

.ti i {
  color: var(--accent);
  font-size: 11px;
}

.ti a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.ti a:hover {
  color: #fff;
}

.tsep {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.gst {
  background: rgba(0, 119, 200, 0.18);
  border: 1px solid rgba(0, 119, 200, 0.3);
  border-radius: 4px;
  padding: 2px 9px;
  font-size: 11px;
  color: #7ec8f7;
  white-space: nowrap;
}

.soc {
  display: flex;
  align-items: center;
  gap: 7px;
}

.soc a {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  border: 1px solid #ffffff5b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  text-decoration: none;
  transition: all 0.2s;
}

.soc a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── HEADER WRAPPER ── */
/* Default: floats over slider — no background, card is transparent */
.hw-outer {
  position: relative;
  z-index: 900;
  background: transparent;
  transition: box-shadow 0.3s ease;
}

/* Float the .hdr over the slider with no bg or border */
.hw-outer:not(.is-sticky) .hdr {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

/* Nav links white when floating over dark slider */
.hw-outer:not(.is-sticky) .nl {
  color: #000000;
}

.hw-outer:not(.is-sticky) .nl:hover,
.hw-outer:not(.is-sticky) .ni:hover > .nl {
  color: #e85a1a;
  background: rgba(255, 255, 255, 0.12);
}

.hw-outer:not(.is-sticky) .nl .chev {
  color: #000;
}

.hw-outer:not(.is-sticky) .btn-call {
  background: rgb(106 196 231 / 31%);
  color: #000000;
  border-color: rgb(58 180 227 / 73%);
}

.hw-outer:not(.is-sticky) .btn-call i {
  color: #000000;
}

.hw-outer:not(.is-sticky) .btn-call:hover {
  background: #09a0db;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-call :hover .btn-call i {
  color: #fff;
}

.hw-outer:not(.is-sticky) .ham {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.hw-outer:not(.is-sticky) .ham span {
  background: #fff;
}

/* Sticky state: top bar has scrolled away — white card snaps to top */
.hw-outer.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* background: #eef2f7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10); */
  animation: slideDown 0.28s ease;
}

.hw-outer.is-sticky .hdr {
  background: #fff;
  border-radius: 0 0 16px 16px;
  border-top: none;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.11);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0.6;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hw {
  padding: 8px 16px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 900;
}

/* Spacer only reserves top bar height; header floats over slider below */
.sticky-spacer {
  display: block;
  /* height: var(--top-h); */
}

/* ── FLOATING HEADER ── */
.hdr {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  position: relative;
  transition:
    border-radius 0.3s ease,
    box-shadow 0.3s ease;
}

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
}

.logo-name {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.3px;
  line-height: 1.1;
}

.logo-sub {
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ── DESKTOP NAV ── */
.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
}

.ni {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nl {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: none;
  font-family: "DM Sans", sans-serif;
  white-space: nowrap;
  transition: all 0.18s;
  line-height: 1;
}

.nl:hover,
.ni:hover > .nl {
  color: var(--primary);
  background: #eff6ff;
}

.nl .chev {
  font-size: 9px;
  color: #9ca3af;
  transition: transform 0.22s;
  margin-top: 1px;
}

.ni:hover > .nl .chev {
  transform: rotate(180deg);
  color: var(--accent);
}

.ni:hover > .nl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}

/* ── L1 DROPDOWN ── */
.dd {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 215px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 6px;
}

.ni:hover > .dd {
  display: block;
  animation: ddIn 0.16s ease;
}

@keyframes ddIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dd-sec {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 12px 4px;
}

.dd-sep {
  height: 1px;
  background: #f1f5f9;
  margin: 4px 6px;
}

.di {
  position: relative;
}

.da {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  font-size: 13px;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.14s;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
}

.da i.ic {
  font-size: 13px;
  color: var(--primary);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  transition: color 0.14s;
}

.da:hover {
  background: #eff6ff;
  color: var(--primary);
}

.da:hover i.ic {
  color: var(--accent);
}

.da .sarr {
  margin-left: auto;
  font-size: 9px;
  color: #d1d5db;
  transition: color 0.14s;
}

.di:hover > .da .sarr {
  color: var(--accent);
}

/* ── L2 SUB ── */
.sub {
  display: none;
  position: absolute;
  left: calc(100% + 0px);
  top: -6px;
  min-width: 195px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.09);
  padding: 6px;
  z-index: 1001;
}

.di:hover > .sub {
  display: block;
  animation: ddIn 0.14s ease;
}

.sub .da {
  font-size: 12.5px;
}

/* ── MEGA ── */
.mega {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  padding: 22px;
  z-index: 1000;
}

.ni:hover > .mega {
  display: flex;
  animation: ddIn 0.16s ease;
}

.mc {
  flex: 1;
  padding: 0 16px;
  border-right: 1px solid #f1f5f9;
}

.mc:first-child {
  padding-left: 0;
}
.mc:last-child {
  border-right: none;
  padding-right: 0;
}

.mc-title {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid #fde8db;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mc-title i {
  font-size: 12px;
}

.ml {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 12.5px;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.14s;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}

.ml i {
  font-size: 13px;
  color: var(--primary);
  margin-top: 1px;
  flex-shrink: 0;
  width: 15px;
  transition: color 0.14s;
}

.ml:hover {
  color: var(--primary);
}
.ml:hover i {
  color: var(--accent);
}

.ml .slbl {
  font-size: 10.5px;
  color: #9ca3af;
  display: block;
  margin-top: 1px;
}

/* ── CTA ── */
.cta-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 6px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgb(106 196 231 / 31%);
  color: #374151;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--primary);
  transition: all 0.18s;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
}

.btn-call:hover {
  background: #eff6ff;
  color: var(--primary);
  border-color: #bfdbfe;
}

.btn-call i {
  font-size: 12px;
  color: var(--primary);
}

.btn-q {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: #ff4f0082;
  color: #000000;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #ff5100d3;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: background 0.18s;

  white-space: nowrap;
}

.btn-q:hover {
  background: #c94a12;
  color: #fff;
}
.btn-q i {
  font-size: 12px;
}

/* ── HAMBURGER ── */
.ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  border-radius: 9px;
  transition: all 0.18s;
  flex-shrink: 0;
}

.ham:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.ham span {
  display: block;
  width: 20px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: all 0.28s;
  transform-origin: center;
}

.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ham.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── OVERLAY ── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1500;
  opacity: 0;
  transition: opacity 0.3s;
}

.overlay.open {
  display: block;
  opacity: 1;
}

/* ── SLIDE DRAWER ── */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 90vw);
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.drawer.open {
  right: 0;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
}

.drawer-logo-name {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.drawer-logo-sub {
  font-size: 8.5px;
  color: var(--accent);
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7280;
  font-size: 14px;
  transition: all 0.18s;
  flex-shrink: 0;
}

.drawer-close:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}

.drawer-body {
  flex: 1;
  padding: 8px 12px 16px;
  overflow-y: auto;
}

/* MOBILE ACCORDION */
.mob-item {
  border-bottom: 1px solid #f8fafc;
}

.mob-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: #1e293b;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  text-align: left;
  border-radius: 10px;
  transition: background 0.15s;
  gap: 8px;
}

.mob-trigger:hover {
  background: #f8fafc;
}

.mob-trigger .ml-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mob-trigger .ml-left i {
  font-size: 14px;
  color: var(--primary);
  width: 18px;
  text-align: center;
}

.mob-trigger .mchev {
  font-size: 10px;
  color: #9ca3af;
  transition: transform 0.22s;
  flex-shrink: 0;
}

.mob-trigger.open .mchev {
  transform: rotate(180deg);
  color: var(--accent);
}

.mob-trigger > a {
  color: #1e293b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  font-size: 14.5px;
  font-weight: 500;
}

.mob-trigger > a i {
  font-size: 14px;
  color: var(--primary);
  width: 18px;
  text-align: center;
}

.mob-panel {
  display: none;
  padding: 2px 0 6px 28px;
}

.mob-panel.open {
  display: block;
}

.mob-l2 {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  font-size: 13.5px;
  color: #475569;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.14s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  font-family: "DM Sans", sans-serif;
  text-align: left;
  justify-content: flex-start;
}

.mob-l2:hover {
  background: #eff6ff;
  color: var(--primary);
}

.mob-l2 i.il {
  font-size: 12px;
  color: var(--primary);
  width: 14px;
  flex-shrink: 0;
}

.mob-l2 .mchev {
  margin-left: auto;
  font-size: 9px;
  color: #9ca3af;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.mob-l2.open .mchev {
  transform: rotate(180deg);
  color: var(--accent);
}

.mob-l3 {
  display: none;
  padding: 2px 0 4px 23px;
}
.mob-l3.open {
  display: block;
}

.mob-l3 a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.14s;
}

.mob-l3 a:hover {
  background: #f0f9ff;
  color: var(--primary);
}

.mob-l3 a i {
  font-size: 11px;
  color: #93c5fd;
  width: 13px;
  flex-shrink: 0;
}

.drawer-cta {
  padding: 12px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  background: #fff;
  position: sticky;
  bottom: 0;
}

.drawer-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  transition: all 0.18s;
}

.dc1 {
  background: #f1f5f9;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}

.dc1:hover {
  background: #eff6ff;
  color: var(--primary);
}

.dc2 {
  background: var(--accent);
  color: #fff;
}

.dc2:hover {
  background: #c94a12;
}

.drawer-contact {
  padding: 14px 10px 4px;
  margin-top: 4px;
}

.drawer-contact .dc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: #64748b;
  border-bottom: 1px solid #f8fafc;
}

.drawer-contact .dc-item:last-child {
  border-bottom: none;
}

.drawer-contact .dc-item i {
  color: var(--accent);
  font-size: 13px;
  width: 16px;
  text-align: center;
}

.drawer-contact .dc-item a {
  color: #64748b;
  text-decoration: none;
}

.drawer-contact .dc-item a:hover {
  color: var(--primary);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav,
  .cta-wrap {
    display: none;
  }
  .ham {
    display: flex;
  }
}

@media (max-width: 640px) {
  :root {
    --top-h: 32px;
    --nav-h: 60px;
  }

  .top-inner {
    padding: 0 14px;
  }

  .ti:nth-child(3),
  .tsep:nth-child(4),
  .gst,
  .tsep:nth-child(6) {
    display: none;
  }

  .top-left {
    gap: 10px;
  }

  .hw {
    padding: 6px 10px;
  }

  .hdr {
    padding: 0 14px;
    border-radius: 12px;
  }

  .logo img {
    height: 36px;
  }

  .logo-name {
    font-size: 14px;
  }

  .logo-sub {
    font-size: 8px;
    letter-spacing: 1.8px;
  }

  .soc a {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .soc {
    gap: 5px;
  }
}

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
#heroSlider {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: calc(
    -1 * (var(--nav-h) + 18px)
  ); /* pull up behind the floating header */
  z-index: 1; /* below header z-index:900 */
}

.slide {
  position: relative;
  display: none;
  width: 100%;
}

.slide.active {
  display: block;
}

/* Image drives the height — full width, natural aspect ratio */
.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* filter: brightness(0.62); */
  transition: filter 0.6s ease;
}

/* .slide:hover img { filter: brightness(0.72); } */

/* ── Overlay caption ── */
.slide-caption {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  padding: clamp(1.5rem, 5vw, 3.5rem) clamp(1.5rem, 7vw, 5rem);
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, transparent 100%); */
  line-height: 1;
}

.slide-tag {
  display: inline-block;
  letter-spacing: 0.18em;
  font-size: clamp(0.6rem, 1.3vw, 0.72rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid #e85b1a4b;
  padding: 10px;
  border-radius: 2px;

  margin-bottom: clamp(0.6rem, 2vw, 1.1rem);
}

.slide-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 5.5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  max-width: 680px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.slide-sub {
  font-size: clamp(0.78rem, 1.6vw, 1rem);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  margin-bottom: clamp(1rem, 3vw, 1.8rem);
  max-width: 480px;
  line-height: 1.6;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  background: var(--accent);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(0.72rem, 1.3vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7em 1.6em;
  border: none;
  border-radius: 2px;
  transition:
    background 0.25s,
    color 0.25s,
    gap 0.25s;
}

.slide-btn:hover {
  background: #fff;
  color: #1a1508;
  gap: 0.85em;
}

/* ── Arrow controls ── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  width: clamp(36px, 4.5vw, 52px);
  height: clamp(36px, 4.5vw, 52px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  cursor: pointer;
  transition:
    background 0.22s,
    border-color 0.22s,
    color 0.22s;
  z-index: 10;
}

.slider-arrow:hover {
  background: #f9400287;
  border-color: #ff5e00;
  color: #ffffff;
}

.arrow-prev {
  left: clamp(0.8rem, 2.5vw, 2rem);
}
.arrow-next {
  right: clamp(0.8rem, 2.5vw, 2rem);
}

/* ── Dot indicators ── */
.slider-dots {
  position: absolute;
  bottom: clamp(0.8rem, 2vw, 1.4rem);
  right: clamp(1rem, 3vw, 2rem);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
}

.dot.active {
  background: #f9400287;
  border-color: #f94002;
  transform: scale(1.35);
}

/* ── Progress bar ── */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #e8c97a;
  width: 0%;
  z-index: 10;
  transition: none;
}

/* ── Slide-in animation ── */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide.active .slide-tag {
  animation: slideUp 0.55s 0.1s both;
}
.slide.active .slide-title {
  animation: slideUp 0.55s 0.22s both;
}
.slide.active .slide-sub {
  animation: slideUp 0.55s 0.34s both;
}
.slide.active .slide-btn {
  animation: slideUp 0.55s 0.44s both;
}

/* ── Outer card ── */
.au {
  max-width: 1262px;
  width: 100%;
  margin: auto;
  padding: 72px 68px 64px;
  position: relative;
  overflow: hidden;
}

/* subtle noise */
.au::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* gold left-edge accent */
.au::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), transparent 60%);
}

/* ── Float clearfix ── */
.au__body {
  position: relative;
}

.au__body::after {
  content: "";
  display: table;
  clear: both;
}

/* ════════════════════════════════
FLOATED IMAGE STACK  (right)
════════════════════════════════ */
.au__stack {
  float: right;
  width: 44%;
  margin: 4px 0 20px 52px;
  position: relative;
  padding-bottom: 100px;
}

.au__stack2{
  float: left;
  width: 44%;
  margin: 4px 52px 20px 0px;
  padding-bottom: 0;
}

/* ── Primary image ── */
.au__img-main {
  position: relative;
  z-index: 3;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13, 27, 42, 0.15);
}

.au__img-main img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.08);
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s;
}

.au__img-main:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.05);
}

/* accent corner rule — top-right */
.au__img-main::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 56%;
  height: 56%;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  z-index: 0;
  pointer-events: none;
}



/* ── Second image — overlaps bottom-left ── */
.au__img-b {
  position: absolute;
  bottom: 0;
  left: -36px;
  width: 62%;
  z-index: 5;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(13, 27, 42, 0.15);
  border: 3px solid #f8f9fa;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.au__img-b:hover {
  transform: translateY(-6px);
}

.au__img-b img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: grayscale(25%) contrast(1.1);
  transition: filter 0.6s;
}

.au__img-b:hover img {
  filter: grayscale(0%) contrast(1.05);
}

/* ── Third image — overlaps bottom-right ── */
.au__img-c {
  position: absolute;
  bottom: -18px;
  right: -24px;
  width: 52%;
  z-index: 4;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(13, 27, 42, 0.12);
  border: 3px solid #f8f9fa;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.au__img-c:hover {
  transform: translateY(-6px);
}

.au__img-c img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%) contrast(1.1);
  transition: filter 0.6s;
}

.au__img-c:hover img {
  filter: grayscale(0%) contrast(1.05);
}

/* accent corner rule — bottom-left of stack */
.au__stack::before {
  content: "";
  position: absolute;
  bottom: 88px;
  left: -46px;
  width: 50%;
  height: 50%;
  border-bottom: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
  z-index: 0;
  pointer-events: none;
}

.au__stack2::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -16px;
}

/* ── Badge — sits between main and overlap ── */
.au__badge {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: floatY 3.8s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.1);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 8px));
  }
}

.au__badge-num {
  font-family: "DM Serif Display", serif;
  font-size: 1.9rem;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.au__badge-lbl {
  font-size: 0.48rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.7;
  margin-top: 4px;
  display: block;
}

/* ════════════════════════════════
TEXT (flows around float)
════════════════════════════════ */
.au__eyebrow {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.au__title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 28px;
}

.au__title em {
  font-style: italic;
  color: var(--accent);
}

.au__lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(13, 27, 42, 0.7);
  margin-bottom: 24px;
}

.au__rule {
  border: none;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  margin: 28px 0;
}

.au__body p {
  font-size: 0.93rem;
  line-height: 1.95;
  color: #666666;
  margin-bottom: 18px;
}

/* pull quote */
.au__pull {
  border-left: 2px solid var(--accent);
  padding: 10px 0 10px 22px;
  margin: 22px 0;
}

.au__pull p {
  font-family: "DM Serif Display", serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(13, 27, 42, 0.8) !important;
  line-height: 1.65;
  margin: 0 !important;
}

/* CTA */
.au__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 14px 30px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--dark);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    color 0.3s,
    border-color 0.3s,
    gap 0.3s;
  cursor: pointer;
}

.au__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.au__cta:hover::before {
  transform: scaleX(1);
}

.au__cta:hover {
  color: #ffffff;
  border-color: var(--accent);
  gap: 20px;
}

.au__cta span,
.au__cta svg {
  position: relative;
  z-index: 1;
}

.au__cta svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ════════════════════════════════
STATS — full width below
════════════════════════════════ */
.au__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  margin-top: 52px;
}

.au__stat {
  padding: 32px 24px;
  border-right: 1px solid rgba(13, 27, 42, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.au__stat:last-child {
  border-right: none;
}

.au__stat:hover {
  background: rgba(232, 90, 26, 0.04);
}

.au__stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.au__stat:hover::after {
  width: 60%;
}

.au__stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  display: block;
  line-height: 1;
  min-height: 3.5rem;
}

.au__stat-label {
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666666;
  margin-top: 7px;
  display: block;
}

/* ── Animations ── */
.au__body,
.au__stats {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.au__body {
  animation-delay: 0.1s;
}

.au__stats {
  animation-delay: 0.32s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .au {
    padding: 52px 36px;
  }

  .au__stack {
    width: 48%;
    margin-left: 36px;
  }
}

@media (max-width: 600px) {
  .au {
    padding: 40px 24px;
  }

  .au__stack {
    float: none;
    width: 100%;
    margin: 0 0 56px 0;
    padding-bottom: 110px;
  }

  .au__img-main img {
    height: 280px;
  }

  .au__img-b {
    left: -8px;
    width: 58%;
  }

  .au__img-b img {
    height: 160px;
  }

  .au__img-c {
    right: -8px;
    width: 46%;
    bottom: -10px;
  }

  .au__img-c img {
    height: 130px;
  }

  .au__badge {
    right: 8px;
    top: 42%;
  }

  .au__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .au__stat:nth-child(2) {
    border-right: none;
  }

  .au__stat:nth-child(3),
  .au__stat:nth-child(4) {
    border-top: 1px solid rgba(13, 27, 42, 0.08);
  }

  .au__stat:nth-child(4) {
    border-right: none;
  }

  .au__stat:nth-child(3) {
    border-right: 1px solid rgba(13, 27, 42, 0.08);
  }
}

/* ═══════════════════════════════
           SECTION WRAPPER
        ═══════════════════════════════ */
.products-section {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(0, 119, 200, 0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0, 119, 200, 0.04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(0, 119, 200, 0.04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(0, 119, 200, 0.04) 75%);
  background-size: 28px 28px;
  background-position:
    0 0,
    0 14px,
    14px -14px,
    -14px 0;
  pointer-events: none;
  z-index: 0;
}

.bg-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 700;
  color: rgba(0, 119, 200, 0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 12px;
  z-index: 0;
  user-select: none;
}

.products-section .container {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════
           SECTION HEAD
        ═══════════════════════════════ */
.section-head {
  margin-bottom: 52px;
}

.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.sec-kicker i {
  font-size: 0.85rem;
  color: var(--accent);
}

.sec-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  display: block;
}

.sec-kicker::after {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 2px;
  display: block;
}

.sec-title-main {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.sec-title-main span {
  color: var(--accent);
}

.sec-subtitle {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 640px;
  margin-top: 12px;
}

/* ═══════════════════════════════
           PRODUCT GRID
        ═══════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════
           PRODUCT CARD
        ═══════════════════════════════ */
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  border: 1px solid rgba(0, 119, 200, 0.08);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 119, 200, 0.25);
}

/* ── Image ── */
.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--off-white);
  display: block;
  text-decoration: none;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 119, 200, 0) 0%,
    rgba(0, 119, 200, 0.1) 50%,
    rgba(0, 119, 200, 0) 100%
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.product-card:hover .card-img-wrap::after {
  opacity: 1;
}

/* Category badge — blue */
.card-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
  pointer-events: none;
}

/* Quick actions */
.card-actions {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.product-card:hover .card-actions {
  opacity: 1;
  transform: translateX(0);
}

.card-action-btn {
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
  transition:
    background var(--transition),
    color var(--transition),
    transform 0.2s;
  text-decoration: none;
}

.card-action-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  transform: scale(1.12);
}

/* Ribbon — accent orange */
.card-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-bottom-left-radius: 10px;
  z-index: 4;
  pointer-events: none;
}

/* ── Card Body ── */
.card-body-wrap {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.card-title-link {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color var(--transition);
}

.card-title-link:hover {
  color: var(--primary);
}

.card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

/* Stars — accent orange */
.card-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 12px;
}

.card-stars i {
  font-size: 0.72rem;
  color: var(--accent);
}
.card-stars span {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: 4px;
  font-weight: 600;
}

/* Tags */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.card-tag {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--primary-dark);
}

/* CTA row */
.card-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 119, 200, 0.12);
}

/* Enquire — primary blue */
.cta-enquire {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}

.cta-enquire:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 119, 200, 0.38);
}

.cta-whatsapp {
  width: 38px;
  height: 38px;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform 0.2s;
  flex-shrink: 0;
}

.cta-whatsapp:hover {
  background: #128c7e;
  color: #fff;
  transform: scale(1.08);
}

/* ═══════════════════════════════
           LOAD MORE
        ═══════════════════════════════ */
.load-more-wrap {
  text-align: center;
  margin-top: 56px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: transparent;
  border: 2px solid transparent;
  background-image:
    linear-gradient(var(--white), var(--white)),
    linear-gradient(90deg, var(--primary), var(--accent));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: var(--primary-dark);
  border-radius: 50px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.load-more-btn:hover {
  background-image:
    linear-gradient(135deg, var(--primary), var(--accent)),
    linear-gradient(90deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0, 119, 200, 0.32);
}

.load-more-btn .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ═══════════════════════════════
           STATS STRIP
        ═══════════════════════════════ */
.stats-strip {
  background: linear-gradient(135deg, #00305a 0%, #1a1a1a 50%, #5c1a00 100%);
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--accent);
  padding: 36px 0;
  /* margin-top: 80px; */
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-num {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.col-md-3:nth-child(1) .stat-num sup,
.col-md-3:nth-child(2) .stat-num sup {
  color: var(--primary-light);
}
.col-md-3:nth-child(3) .stat-num sup,
.col-md-3:nth-child(4) .stat-num sup {
  color: var(--accent-light);
}

.stat-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

.stat-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.col-md-3:nth-child(1) .stat-icon,
.col-md-3:nth-child(2) .stat-icon {
  color: var(--primary-light);
  opacity: 0.75;
}
.col-md-3:nth-child(3) .stat-icon,
.col-md-3:nth-child(4) .stat-icon {
  color: var(--accent-light);
  opacity: 0.75;
}

/* ═══════════════════════════════
           RESPONSIVE
        ═══════════════════════════════ */
@media (max-width: 767px) {
  .products-section {
    padding: 60px 0 70px;
  }
  .section-head {
    margin-bottom: 36px;
  }
  .stats-strip {
    padding: 28px 0;
  }
  .stat-num {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stat-item + .stat-item::before {
    display: none;
  }
}

/* ═══ WHY SECTION ═══ */
.why-section {
  padding: 65px 0 65px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* ghost watermark — now uses primary blue tint */
.why-section::before {
  content: "WHY US";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-disp);
  font-size: clamp(6rem, 16vw, 14rem);
  color: rgba(0, 119, 200, 0.04);
  letter-spacing: 0.2em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

/* top-right glow — accent orange */
.why-section::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 90, 26, 0.07) 0%,
    transparent 68%
  );
  pointer-events: none;
}

/* bottom-left glow — primary blue */
.geo-blob-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 119, 200, 0.06) 0%,
    transparent 68%
  );
  pointer-events: none;
}

/* ─── SECTION HEADER ─── */
.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary); /* blue */
  margin-bottom: 12px;
}
.sec-kicker::before,
.sec-kicker::after {
  content: "";
  display: block;
  height: 1.5px;
  width: 30px;
  background: var(--primary);
  border-radius: 2px;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.16;
  margin-bottom: 14px;
}
.sec-title em {
  font-style: italic;
  color: var(--accent);
} /* orange emphasis */

.sec-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.76;
  max-width: 560px;
}
.sec-sub.mx-auto {
  margin: 0 auto;
}

.title-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}
.title-line span {
  display: block;
  height: 3px;
  border-radius: 3px;
}
.title-line .tl-long {
  width: 42px;
  background: var(--primary);
} /* blue */
.title-line .tl-short {
  width: 14px;
  background: var(--accent);
} /* orange */
.title-line .tl-dot {
  width: 6px;
  background: var(--primary);
  opacity: 0.3;
  border-radius: 50%;
  height: 6px;
}

/* ═══ ROW 1 — TOP FEATURE CARDS ═══ */
.top-features {
  margin-bottom: 64px;
}

.feat-top-card {
  background: var(--off);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s;
  box-shadow: var(--sh-sm);
}

/* top accent stripe — blue → orange gradient */
.feat-top-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.28s;
}
.feat-top-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  background: var(--white);
}
.feat-top-card:hover::before {
  opacity: 1;
}

.feat-bg-num {
  position: absolute;
  top: 10px;
  right: 16px;
  font-family: var(--font-disp);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(13, 33, 55, 0.055);
  pointer-events: none;
  transition: color 0.28s;
}
.feat-top-card:hover .feat-bg-num {
  color: rgba(0, 119, 200, 0.08);
}

.feat-icon-lg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary-xs); /* light blue bg */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary); /* blue icon */
  font-size: 1.5rem;
  transition:
    background 0.28s,
    transform 0.28s,
    color 0.28s;
  flex-shrink: 0;
}
.feat-top-card:hover .feat-icon-lg {
  background: var(--accent); /* orange on hover */
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.feat-top-title {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.28;
  margin-bottom: 10px;
}
.feat-top-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 14px;
}

.feat-top-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  margin-top: auto;
  transition:
    background 0.22s,
    border-color 0.22s;
}
.feat-top-card:hover .feat-top-stat {
  border-color: rgba(0, 119, 200, 0.2);
}

.feat-top-stat i {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
} /* orange star/icon */
.feat-stat-num {
  font-family: var(--font-disp);
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: 0.04em;
  line-height: 1;
}
.feat-stat-lbl {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

/* ═══ CENTER SPLIT ═══ */
.split-section {
  margin-bottom: 64px;
}

.split-img-col {
  position: relative;
}

.img-main-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/5;
  position: relative;
}
.img-main-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
}
.img-main-wrap:hover img {
  transform: scale(1.04);
}
.img-main-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(13, 33, 55, 0.55) 100%
  );
}

.img-badge {
  position: absolute;
  z-index: 5;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.img-badge-1 {
  bottom: 28px;
  left: -24px;
  animation: floatY 4s ease-in-out infinite;
}
.img-badge-2 {
  top: 28px;
  right: -24px;
  animation: floatY 4s ease-in-out infinite 2s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.badge-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.bw-primary {
  background: var(--primary-xs);
  color: var(--primary);
} /* blue badge */
.bw-accent {
  background: var(--accent-xs);
  color: var(--accent);
} /* orange badge */

.badge-val {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  color: var(--navy);
  line-height: 1;
}
.badge-lbl {
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin-top: 1px;
}

/* accent strip below image — primary navy bg */
.img-accent-strip {
  background: var(--navy);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  box-shadow: var(--sh-md);
}
.accent-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 90, 26, 0.2); /* orange tint on dark */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-l); /* bright orange */
  font-size: 1rem;
  flex-shrink: 0;
}
.accent-text strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 1.5rem;
  color: var(--accent-l);
  letter-spacing: 0.04em;
  line-height: 1;
}
.accent-text span {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Reasons list ── */
.reasons-col {
  padding-left: 20px;
}

.reason-item {
  display: flex;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
  cursor: default;
  margin-bottom: 10px;
}
.reason-item:last-child {
  margin-bottom: 0;
}
.reason-item:hover {
  background: var(--off);
  border-color: var(--border);
  transform: translateX(6px);
}

.reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.25s;
}

/* icon color — alternating primary/accent */
.ri-1 {
  background: var(--primary-xs);
  color: var(--primary);
}
.ri-2 {
  background: var(--accent-xs);
  color: var(--accent);
}
.ri-3 {
  background: var(--primary-xs);
  color: var(--primary-d);
}
.ri-4 {
  background: rgba(13, 150, 100, 0.1);
  color: #0d7a56;
}
.ri-5 {
  background: var(--accent-xs);
  color: var(--accent-d);
}
.ri-6 {
  background: var(--primary-xs);
  color: var(--primary);
}

.reason-item:hover .reason-icon {
  transform: scale(1.12) rotate(-5deg);
}
.reason-item:hover .ri-1 {
  background: var(--primary);
  color: #fff;
}
.reason-item:hover .ri-2 {
  background: var(--accent);
  color: #fff;
}
.reason-item:hover .ri-3 {
  background: var(--primary);
  color: #fff;
}
.reason-item:hover .ri-4 {
  background: #0d7a56;
  color: #fff;
}
.reason-item:hover .ri-5 {
  background: var(--accent);
  color: #fff;
}
.reason-item:hover .ri-6 {
  background: var(--primary);
  color: #fff;
}

.reason-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 5px;
}
.reason-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.68;
}

/* ═══ PROCESS STEPS ═══ */
.process-strip {
  background: var(--off);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.process-connector {
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--border) 0,
    var(--border) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

.step-num-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  box-shadow: var(--sh-sm);
}

.step-num-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent); /* orange badge number */
  color: #fff;
  font-family: var(--font-disp);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 2px solid var(--white);
  line-height: 1;
}

.step-card:hover .step-circle {
  background: var(--primary); /* blue fill on hover */
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(0, 119, 200, 0.35);
}
.step-card:hover .step-num-badge {
  background: var(--accent-d);
}

.step-title {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.28;
}
.step-desc {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.64;
}

.step-arrow {
  position: absolute;
  top: 28px;
  right: -16px;
  color: var(--primary);
  font-size: 0.75rem;
  z-index: 3;
  opacity: 0.45;
}
.step-card:last-child .step-arrow {
  display: none;
}

/* ═══ TRUST BADGES ═══ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  transition: all 0.25s;
}
.trust-badge:hover {
  background: var(--primary-xs);
  border-color: rgba(0, 119, 200, 0.25);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.trust-badge i {
  color: var(--primary);
  font-size: 0.82rem;
} /* blue icons */
.trust-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .why-section {
    padding: 64px 0 70px;
  }
  .reasons-col {
    padding-left: 0;
    margin-top: 40px;
  }
  .img-badge-1 {
    left: 6px;
  }
  .img-badge-2 {
    right: 6px;
  }
  .process-connector {
    display: none;
  }
  .step-card {
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .why-section {
    padding: 52px 0 56px;
  }
  .process-strip {
    padding: 32px 20px;
  }
  .feat-top-card {
    padding: 26px 22px;
  }
}
@media (max-width: 575px) {
  .img-badge {
    padding: 10px 12px;
    gap: 8px;
  }
  .badge-val {
    font-size: 1.1rem;
  }
}

/* ─── Shared helpers ─── */
.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.sec-kicker::before,
.sec-kicker::after {
  content: "";
  display: block;
  height: 1.5px;
  width: 28px;
  background: var(--primary);
  border-radius: 2px;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}

.sec-title em {
  font-style: italic;
  color: var(--primary);
}

.sec-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.76;
  max-width: 540px;
}

.tl {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}

.tl-a {
  display: block;
  height: 3px;
  width: 40px;
  background: var(--primary);
  border-radius: 3px;
}

.tl-b {
  display: block;
  height: 3px;
  width: 14px;
  background: var(--accent);
  border-radius: 3px;
}

/* ════════════════════════════════════════════
       SECTION 1 — TESTIMONIALS
    ════════════════════════════════════════════ */
.testi-section {
  padding:65px 0 65px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle halftone dot bg */
.testi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(13, 33, 55, 0.045) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

/* Big quote watermark */
.testi-section::after {
  content: "\201C";
  position: absolute;
  top: -40px;
  left: 32px;
  font-family: var(--font-head);
  font-size: clamp(12rem, 22vw, 20rem);
  color: rgba(0, 119, 200, 0.04);
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}

/* ── Top rating bar ── */
.rating-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 28px;
  margin-bottom: 48px;
  box-shadow: var(--sh-sm);
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-item + .rating-item {
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

.rating-platform-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.rpi-g {
  background: #fff;
  border: 1px solid rgba(66, 133, 244, 0.2);
  color: #4285f4;
}

.rpi-f {
  background: #fff;
  border: 1px solid rgba(24, 119, 242, 0.2);
  color: #1877f2;
}

.rpi-y {
  background: #fff;
  border: 1px solid rgba(255, 0, 0, 0.15);
  color: #f00;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars i {
  color: var(--accent);
  font-size: 0.72rem;
}

.rating-score {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.rating-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1px;
}

.rating-total {
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 1px;
}

.rating-separator {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 20px;
}

/* ── Testimonial Card ── */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px 24px;
  margin: 6px 8px 16px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.28s;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.testi-card:hover::before {
  opacity: 1;
}

/* Big quote icon */
.testi-quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.8rem;
  color: rgba(0, 119, 200, 0.07);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-head);
  font-weight: 900;
}

/* Stars */
.testi-stars {
  display: flex;
  gap: 3px;
}

.testi-stars i {
  color: var(--accent);
  font-size: 0.7rem;
}

/* Quote text */
.testi-text {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.72;
  font-weight: 600;
}

/* Service chip */
.testi-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary-xs);
  border: 1px solid rgba(0, 119, 200, 0.14);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
}

.testi-chip i {
  font-size: 0.58rem;
}

/* Author */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.testi-avatar-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-disp);
  font-size: 1.1rem;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.author-detail {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 2px;
}

.author-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #0d7a56;
}

.author-verified i {
  font-size: 0.65rem;
}

/* Owl custom dots */
.testi-owl .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.testi-owl .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: rgba(13, 33, 55, 0.18) !important;
  border-radius: 50% !important;
  margin: 0 !important;
  transition: all 0.3s !important;
}

.testi-owl .owl-dot.active span,
.testi-owl .owl-dot:hover span {
  background: var(--primary) !important;
  width: 26px !important;
  border-radius: 4px !important;
}

.testi-owl .owl-nav {
  display: none !important;
}

/* Testi nav buttons */
.testi-nav {
  display: flex;
  gap: 8px;
}

.tnav-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: var(--sh-sm);
}

.tnav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Featured testimonial (left side) ── */
.featured-testi {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.featured-testi::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 9rem;
  color: rgba(232, 90, 26, 0.12);
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}

.featured-testi-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.featured-testi-text {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.74;
  font-weight: 600;
}

.featured-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

.featured-stars i {
  color: var(--accent);
  font-size: 0.75rem;
}

.featured-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(232, 90, 26, 0.4);
  flex-shrink: 0;
  object-fit: cover;
}

.feat-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.feat-detail {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.feat-chip {
  margin-left: auto;
  flex-shrink: 0;
  background: rgba(232, 90, 26, 0.15);
  border: 1px solid rgba(232, 90, 26, 0.3);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-l);
}

/* ════════════════════════════════════════════
       SECTION 2 — FAQ
    ════════════════════════════════════════════ */
.faq-section {
  padding: 88px 0 96px;
  background: var(--off);
  position: relative;
  overflow: hidden;
}

.faq-section::after {
  content: "FAQ";
  position: absolute;
  bottom: -20px;
  right: -16px;
  font-family: var(--font-disp);
  font-size: clamp(7rem, 15vw, 13rem);
  color: rgba(13, 33, 55, 0.032);
  letter-spacing: 0.1em;
  pointer-events: none;
  line-height: 1;
}

/* FAQ image column */
.faq-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 3/4;
}

.faq-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.faq-img-wrap:hover img {
  transform: scale(1.04);
}

.faq-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(13, 33, 55, 0.7) 100%
  );
}

/* Caption on image */
.faq-img-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(13, 33, 55, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 16px 18px;
  color: #fff;
}

.faq-cap-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.faq-cap-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Small stat badges on image */
.faq-img-stat {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--sh-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-img-stat.top {
  top: 20px;
  right: -16px;
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.fi-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.fii-c {
  background: var(--primary-xs);
  color: var(--primary);
}

.fi-val {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1;
}

.fi-lbl {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 1px;
}

/* Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.25s;
}

.faq-item.open {
  box-shadow: var(--sh-md);
  border-color: rgba(0, 119, 200, 0.18);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.22s;
  user-select: none;
}

.faq-q:hover {
  background: var(--primary-xs);
}

.faq-num {
  font-family: var(--font-disp);
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  width: 26px;
  line-height: 1;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--primary-xs);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition:
    background 0.25s,
    color 0.25s;
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: #fff;
}

.faq-qtext {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
  line-height: 1.38;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-chevron {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 20px 18px 76px;
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.76;
}

/* ════════════════════════════════════════════
       SECTION 3 — CTA BANNER
    ════════════════════════════════════════════ */
.cta-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* BG image with overlay */
.cta-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url("../images/Artboard 1.png");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

/* Diagonal overlay layers */
.cta-overlay-l {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 33, 55, 0.98) 0%,
    rgba(13, 33, 55, 0.88) 50%,
    rgba(13, 33, 55, 0.6) 100%
  );
}

.cta-overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(0, 119, 200, 0.28) 0%,
    transparent 40%
  );
}

/* Accent rings */
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 90, 26, 0.1);
  pointer-events: none;
}

.cta-ring-1 {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -80px;
}

.cta-ring-2 {
  width: 250px;
  height: 250px;
  top: -40px;
  right: 80px;
}

.cta-ring-3 {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: 40%;
}

.cta-wrap {
  position: relative;
  z-index: 5;
  padding: 80px 0 88px;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 90, 26, 0.14);
  border: 1px solid rgba(232, 90, 26, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-l);
  margin-bottom: 20px;
}

.cta-kicker i {
  font-size: 0.6rem;
  animation: blink 1.8s ease infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-title em {
  font-style: italic;
  color: var(--accent);
}

.cta-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.76;
  max-width: 520px;
  margin-bottom: 32px;
}

.cta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.cta-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.cta-chip i {
  color: var(--accent);
  font-size: 0.62rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-cta-p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 6px 28px rgba(0, 119, 200, 0.55);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-cta-p::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-cta-p:hover::after {
  transform: translateX(100%);
}

.btn-cta-p:hover {
  background: var(--primary-d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 119, 200, 0.65);
}

.btn-cta-s {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 13px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.btn-cta-s:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  transform: translateY(-1px);
}

/* Right side — enquiry form card */
.cta-form-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 34px 30px 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
}

/* Form heading kicker */
.cta-form-kicker {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-l);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-form-kicker i {
  font-size: 0.62rem;
  color: var(--accent);
}

.cta-form-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(232, 90, 26, 0.22);
}

.cta-form-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 22px;
}

.cta-form-title em {
  font-style: italic;
  color: var(--accent-l);
}

/* Field group */
.cf-group {
  position: relative;
  margin-bottom: 14px;
}

.cf-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.cf-field-wrap {
  position: relative;
}

.cf-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  pointer-events: none;
  transition: color 0.25s;
}

.cf-group.is-textarea .cf-icon {
  top: 14px;
  transform: none;
}

.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 11px 14px 11px 40px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  color: #fff;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.cf-input::placeholder,
.cf-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cf-select option {
  background: var(--navy);
  color: #fff;
}

.cf-textarea {
  resize: none;
  height: 90px;
  padding-top: 12px;
  line-height: 1.6;
}

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: rgba(232, 90, 26, 0.55);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(232, 90, 26, 0.12);
}

.cf-group:focus-within .cf-icon {
  color: var(--accent);
}

.cf-select-wrap {
  position: relative;
}

.cf-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.62rem;
  pointer-events: none;
}

.cf-row {
  display: flex;
  gap: 12px;
}

.cf-row .cf-group {
  flex: 1;
  min-width: 0;
}

.cf-submit {
  width: 100%;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition:
    background 0.28s,
    transform 0.22s,
    box-shadow 0.28s;
  box-shadow: 0 5px 22px rgba(0, 119, 200, 0.45);
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.cf-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.cf-submit:hover::after {
  transform: translateX(100%);
}

.cf-submit:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 119, 200, 0.6);
}

.cf-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.38);
}

.cf-privacy i {
  color: rgba(232, 90, 26, 0.6);
  font-size: 0.62rem;
  flex-shrink: 0;
}

.cf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  gap: 14px;
}

.cf-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(13, 122, 86, 0.2);
  border: 2px solid rgba(13, 122, 86, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dcf9a;
  font-size: 1.6rem;
}

.cf-success-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.cf-success-msg {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════════ */
footer {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary),
    var(--accent),
    var(--navy)
  );
}

footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.footer-main {
  padding: 60px 0 48px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  padding-right: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.fl-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.fl-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-l);
  display: block;
  margin-top: 2px;
}

.footer-about {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.76;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fsoc-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  transition: all 0.25s;
}

.fsoc-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-l);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-title i {
  font-size: 0.65rem;
  color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.58);
  transition:
    color 0.22s,
    gap 0.22s;
}

.footer-link i {
  font-size: 0.55rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.22s;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
  gap: 12px;
}

.footer-link:hover i {
  transform: translateX(2px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.fci-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 119, 200, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.72rem;
  margin-top: 1px;
}

.fci-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3px;
}

.fci-val {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.fci-val a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.fci-val a:hover {
  color: var(--accent-l);
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-top: 6px;
}

.nl-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nl-label i {
  color: var(--accent);
}

.nl-form {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.nl-input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  color: #fff;
  outline: none;
  transition: border-color 0.22s;
}

.nl-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.nl-input:focus {
  border-color: rgba(232, 90, 26, 0.5);
}

.nl-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    background 0.25s,
    transform 0.2s;
  flex-shrink: 0;
}

.nl-btn:hover {
  background: var(--primary-d);
  transform: translateY(-1px);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0;
  position: relative;
  z-index: 2;
}

.footer-bottom {
  padding: 18px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copy a {
  color: var(--accent-l);
  transition: color 0.2s;
}

.footer-copy a:hover {
  color: var(--accent);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-link {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.22s;
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-scroll-top {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s;
}

.footer-scroll-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .testi-section,
  .faq-section {
    padding: 62px 0 68px;
  }
  .cta-wrap {
    padding: 58px 0 66px;
  }
  .cta-contact-card {
    margin-top: 36px;
  }
  .footer-brand {
    padding-right: 0;
    margin-bottom: 8px;
  }
  .faq-img-stat.top {
    right: 8px;
  }
}

@media (max-width: 767px) {
  .rating-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .rating-item + .rating-item {
    padding-left: 0;
    border-left: none;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .rating-separator {
    display: none;
  }
  .cta-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }
  .footer-main {
    padding: 48px 0 36px;
  }
  .faq-a-inner {
    padding-left: 20px;
  }
}

@media (max-width: 575px) {
  .testi-card {
    padding: 22px 18px 18px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Tooltip bubble above the button */
.wa-tooltip {
  background: #fff;
  border-radius: 14px 14px 14px 4px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
  margin-bottom: 10px;
  max-width: 210px;
  position: relative;
  transform: translateY(6px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom left;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-tip-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}
.wa-tip-name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
  }
}
.wa-tip-msg {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.5;
}
/* Tiny tail on tooltip */
.wa-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  border: 5px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

/* Main WA button */
.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.wa-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}
.wa-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}
@keyframes wa-spin-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Second pulse ring */
.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Circle core */
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}
.wa-btn:hover .wa-circle {
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 10px 36px rgba(37, 211, 102, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.wa-circle i {
  font-size: 1.55rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Chat" label pill that slides out on hover */
.wa-label-pill {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.wa-btn:hover .wa-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 3;
  animation: badge-bounce 0.6s 0.5s ease both;
}
@keyframes badge-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

/* ══════════════════════════════════════════════
       GO TO TOP — RIGHT BOTTOM
    ══════════════════════════════════════════════ */
.gtt-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Circular progress track */
.gtt-btn {
  position: relative;
  width: 54px;
  height: 54px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG progress ring */
.gtt-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.gtt-track {
  fill: none;
  stroke: rgba(22, 39, 64, 0.1);
  stroke-width: 2.5;
}
.gtt-progress {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.1s linear;
}

/* Inner circle */
.gtt-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(22, 39, 64, 0.35);
  transition:
    background 0.25s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-btn:hover .gtt-inner {
  background: var(--crimson);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(139, 26, 46, 0.45);
}
.gtt-btn:hover .gtt-inner i {
  animation: arrow-up 0.4s ease both;
}
@keyframes arrow-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  45% {
    transform: translateY(-6px);
    opacity: 0;
  }
  46% {
    transform: translateY(6px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tiny % label below */
.gtt-pct {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted, #6b7a8d);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1;
}

/* ── Responsive tweak ── */
@media (max-width: 480px) {
  .wa-float {
    left: 16px;
    bottom: 20px;
  }
  .gtt-float {
    right: 16px;
    bottom: 20px;
  }
  .wa-circle {
    width: 52px;
    height: 52px;
  }
  .wa-circle i {
    font-size: 1.35rem;
  }
}


.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59,130,246,0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255,255,255,0.65);
  --phero-sep: rgba(255,255,255,0.4);

  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0; 
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 30, 60, 0.82) 0%,
    rgba(29, 78, 216, 0.55) 100%
  );
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: #ffa57d66;
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: #ffa57d66;
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--accent);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.sitemap-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent);
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
}