:root {
  --primary: #f93e14;
  --primary-dk: #c32400;
  --dark: #1a1a2e;
  --mid: #2c2c44;
  --gold: #e8a020;
  --navy: #162740;
  --gold-l: #e8cc7a;
  --gold-tint: rgba(232, 160, 32, 0.1);
  --off: #f6f6fa;
  --light: #f5f5f7;
  --text: #3a3a4a;
  --bg: #f4f4f7;
  --bg2: #ecedf2;
  --muted: #6e6e88;
  --white: #ffffff;
  --steel: #3d3d5c;
  --light-bg: #f5f5f7;
  --border: #e2e2ea;
  --text-muted-lt: #aaaacc;
  --accent: #e8a020;
  --white: #ffffff;
  --font-body: "Barlow", sans-serif;
  --font-head: "Barlow Condensed", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: #f0f0f2;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--dark);
  border-bottom: 2px solid rgb(251 54 7);
  padding: 6px 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.topbar a {
  color: var(--text-muted-lt);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar .divider {
  width: 1px;
  height: 14px;
  background: var(--border);
  margin: 0 10px;
}

.topbar .topbar-badge {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1px 7px;
  border-radius: 2px;
  text-transform: uppercase;
}

.topbar .social-icon {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: var(--mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-lt);
  font-size: 0.72rem;
  transition:
    background 0.2s,
    color 0.2s;
}

.topbar .social-icon:hover {
  background: var(--primary);
  color: #fff;
}

/* ─── MAIN NAVBAR ─── */
.main-nav {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  position: sticky;
  top: 0;
  z-index: 1050;
}

/* Logo */
.nav-logo img {
  height: 52px;
  width: auto;
  transition: filter 0.3s;
}

.nav-logo:hover img {
  filter: brightness(1.15) invert(0.05);
}

/* Nav Links */
.navbar-nav .nav-item > .nav-link {
  color: #000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 22px 14px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar-nav .nav-item > .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transition:
    left 0.25s,
    right 0.25s;
}

.navbar-nav .nav-item > .nav-link:hover,
.navbar-nav .nav-item > .nav-link.active {
  color: #000;
}

.navbar-nav .nav-item > .nav-link:hover::after,
.navbar-nav .nav-item > .nav-link.active::after {
  left: 14px;
  right: 14px;
}

.navbar-nav .nav-item > .nav-link .fa-chevron-down {
  font-size: 0.6rem;
  margin-left: 4px;
  opacity: 0.6;
  transition: transform 0.3s;
}

.navbar-nav .nav-item:hover > .nav-link .fa-chevron-down {
  transform: rotate(180deg);
}

/* ─── DROPDOWN ─── */
.navbar-nav .dropdown-menu {
  background: var(--dark);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 8px 8px;
  margin-top: 0;
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  animation: dropFade 0.2s ease;
}

@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu .dropdown-item {
  color: #c8cae0;
  font-size: 0.83rem;
  font-weight: 500;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}

.dropdown-menu .dropdown-item i {
  width: 18px;
  text-align: center;
  color: var(--primary);
  font-size: 0.78rem;
}

.dropdown-menu .dropdown-item:hover {
  background: var(--steel);
  color: #fff;
  padding-left: 26px;
}

.dropdown-menu .dropdown-divider {
  border-color: #ffffff85;
  margin: 4px 12px;
}

/* Dropdown Section Label */
.dropdown-menu .drop-label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-lt);
  padding: 10px 20px 4px;
}

/* ─── MULTILEVEL (nested) ─── */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-item::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.6rem;
  margin-left: auto;
  color: var(--text-muted-lt);
}

.dropdown-submenu > .sub-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--dark);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 8px;
  min-width: 200px;
  padding: 8px 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  animation: dropFade 0.2s ease;
}

.dropdown-submenu:hover > .sub-menu {
  display: block;
}

/* ─── DESKTOP HAMBURGER ─── */
.desktop-burger-btn {
  background: none;
  border: 1.5px solid #b7b7b7;
  border-radius: 6px;
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
  position: relative;
}

.desktop-burger-btn:hover {
  background: var(--steel);
  border-color: var(--primary);
}

.desktop-burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #c8cae0;
  border-radius: 2px;
  transition: width 0.2s;
}

.desktop-burger-btn span:nth-child(2) {
  width: 14px;
}

.desktop-burger-btn:hover span {
  width: 20px;
}

/* Desktop burger dropdown panel */
.burger-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: none;
  animation: dropFade 0.22s ease;
  overflow: hidden;
}

.burger-dropdown.open {
  display: block;
}

.burger-dropdown .bd-header {
  background: var(--steel);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.burger-dropdown .bd-header .bd-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted-lt);
}

.burger-dropdown .bd-title span {
  color: var(--accent);
}

.burger-kw-list {
  padding: 12px 0;
}

.burger-kw-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    padding-left 0.2s;
}

.burger-kw-item:hover {
  background: var(--steel);
  padding-left: 24px;
}

.burger-kw-item .kw-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.burger-kw-item:hover .kw-icon {
  background: var(--primary);
  color: #fff;
}

.burger-kw-item .kw-text .kw-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #e0e2f4;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.burger-kw-item .kw-text .kw-sub {
  font-size: 0.72rem;
  color: var(--text-muted-lt);
  font-weight: 400;
}

.burger-kw-item:hover .kw-text .kw-name {
  color: #fff;
}

.burger-kw-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 18px;
}

.burger-dropdown .bd-footer {
  background: var(--steel);
  padding: 10px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.burger-dropdown .bd-footer .bd-foot-text {
  font-size: 0.73rem;
  color: var(--text-muted-lt);
}

.burger-dropdown .bd-footer .bd-foot-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* ─── MOBILE SIDEBAR ─── */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1200;
  backdrop-filter: blur(2px);
}

.mobile-backdrop.open {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100%;
  background: var(--dark);
  z-index: 1300;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-sidebar.open {
  right: 0;
}

.mobile-sidebar .sb-head {
  background: var(--mid);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-sidebar .sb-head img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.sb-close {
  width: 36px;
  height: 36px;
  background: var(--steel);
  border: none;
  border-radius: 6px;
  color: #c8cae0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.sb-close:hover {
  background: var(--primary);
  color: #fff;
}

/* Mobile nav accordion */
.sb-nav {
  flex: 1;
  padding: 8px 0;
}

.sb-nav-item {
  border-bottom: 1px solid var(--border);
}

.sb-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #dde0f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.sb-nav-link:hover {
  background: var(--mid);
  color: #fff;
}

.sb-nav-link .sb-icon {
  width: 32px;
  height: 32px;
  background: var(--mid);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--primary);
  margin-right: 12px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.sb-nav-link .sb-left {
  display: flex;
  align-items: center;
}

.sb-nav-link .sb-arrow {
  font-size: 0.65rem;
  color: var(--text-muted-lt);
  transition: transform 0.3s;
}

.sb-nav-link.expanded .sb-arrow {
  transform: rotate(90deg);
}

/* Submenu */
.sb-sub {
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sb-sub.open {
  max-height: 600px;
}

.sb-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 40px;
  color: #aab0cc;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}

.sb-sub-item:last-child {
  border-bottom: none;
}

.sb-sub-item i {
  color: var(--primary);
  width: 16px;
  font-size: 0.75rem;
}

.sb-sub-item:hover {
  background: var(--mid);
  color: #fff;
  padding-left: 46px;
}

/* Level-3 */
.sb-sub-sub {
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.sb-sub-sub.open {
  max-height: 400px;
}

.sb-sub-sub-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px 9px 56px;
  color: #8890b0;
  text-decoration: none;
  font-size: 0.78rem;
  transition:
    background 0.2s,
    color 0.2s;
}

.sb-sub-sub-item i {
  color: var(--accent);
  width: 14px;
  font-size: 0.7rem;
}

.sb-sub-sub-item:hover {
  background: var(--mid);
  color: #dde0f0;
}

/* Keyword badges in mobile sidebar */
.sb-keywords {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.sb-keywords .sb-kw-title {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-lt);
  margin-bottom: 10px;
}

.sb-kw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sb-kw-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.sb-kw-card:hover {
  background: var(--steel);
  border-color: var(--primary);
}

.sb-kw-card i {
  color: var(--primary);
  font-size: 0.85rem;
  width: 16px;
}

.sb-kw-card .kw-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #dde0f0;
}

/* Sidebar footer */
.sb-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: var(--mid);
  flex-shrink: 0;
}

.sb-footer .sb-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aab0cc;
  text-decoration: none;
  font-size: 0.82rem;
  padding: 5px 0;
  transition: color 0.2s;
}

.sb-footer .sb-contact a i {
  color: var(--primary);
  width: 16px;
}

.sb-footer .sb-contact a:hover {
  color: #fff;
}

/* Mobile hamburger trigger */
.mobile-trigger {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #c8cae0;
  font-size: 1rem;
  flex-direction: column;
  gap: 5px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.mobile-trigger:hover {
  background: var(--steel);
  border-color: var(--primary);
}

.mobile-trigger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #c8cae0;
  border-radius: 2px;
  transition: width 0.2s;
}

.mobile-trigger span:nth-child(2) {
  width: 14px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991.98px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-trigger {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .mobile-trigger {
    display: none !important;
  }
}

/* Bootstrap dropdown override for hover on desktop */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.navbar-nav .nav-link.dropdown-toggle::after {
  display: none;
}

/* ─── SECTION WRAPPER ─── */
.about-section {
  padding: 90px 0 80px;
  background: var(--light);
}

/* ─── SECTION LABEL ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ─── H1 MAIN HEADING ─── */
h1.about-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

h1.about-title em {
  font-style: normal;
  color: var(--primary);
}

h1.about-title .underline-gold {
  position: relative;
  display: inline-block;
}

h1.about-title .underline-gold::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  right: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

/* ─── INTRO LEAD ─── */
.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.75;
  border-left: 3px solid var(--primary);
  padding-left: 18px;
  margin: 28px 0 24px;
}

.about-body {
  font-size: 0.95rem;
  line-height: 1.82;
  color: var(--text);
}

/* ─── FLOAT IMAGE BLOCK ─── */
.float-img-wrap {
  float: left;
  margin: 6px 30px 20px 0;
  position: relative;
  width: 375px;
  flex-shrink: 0;
}

.float-img-wrap .img-stack {
  position: relative;
}

.float-img-wrap .img-main {
  width: 100%;
  height: 275px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.float-img-wrap .img-thumb {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid var(--white);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.float-img-wrap .img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

/* clearfix */
.about-text-block::after {
  content: "";
  display: table;
  clear: both;
}

/* ─── STATS ROW ─── */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  flex: 1 1 120px;
  min-width: 110px;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 10px 10px 0 0;
}

.stat-card:hover {
  box-shadow: 0 8px 28px rgba(200, 40, 30, 0.12);
  transform: translateY(-3px);
}

.stat-card .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.stat-card .stat-num span {
  color: var(--primary);
}

.stat-card .stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ─── FULL-WIDTH IMAGE STRIP ─── */
.img-strip {
  margin-top: 60px;
  position: relative;
}

.img-strip-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 14px;
  border-radius: 14px;
  overflow: hidden;
}

.strip-img {
  position: relative;
  overflow: hidden;
}

.strip-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.strip-img:hover img {
  transform: scale(1.05);
}

.strip-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.75) 0%,
    transparent 55%
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.strip-img .overlay .cap {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.strip-img .overlay .cap i {
  color: var(--gold);
  margin-right: 6px;
}

/* ─── CTA ROW ─── */
.about-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn-primary-red {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-primary-red:hover {
  background: var(--primary-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 40, 30, 0.3);
}

.btn-outline-dark-custom {
  background: transparent;
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 26px;
  border-radius: 8px;
  border: 2px solid var(--dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-outline-dark-custom:hover {
  background: var(--dark);
  color: #fff;
}

.phone-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.phone-cta .ph-circle {
  width: 40px;
  height: 40px;
  background: rgba(200, 40, 30, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  transition: background 0.2s;
}

.phone-cta:hover .ph-circle {
  background: var(--primary);
  color: #fff;
}

.phone-cta .ph-text .ph-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
}

.phone-cta .ph-text .ph-num {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}

/* ─── SIDE PANEL (floated right) ─── */
.side-panel-float {
  float: right;
  width: 340px;
  margin: 0 0 30px 36px;
}

.side-panel {
  background: var(--dark);
  border-radius: 14px;
  padding: 36px 30px;
}

.side-panel .sp-eyebrow {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.side-panel .sp-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cert-item:last-child {
  border-bottom: none;
}

.cert-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cert-item .cert-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #e0e2f0;
  line-height: 1.2;
}

.cert-item .cert-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.side-panel .sp-cta {
  margin-top: 26px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 13px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: block;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.side-panel .sp-cta:hover {
  background: var(--primary-dk);
  color: #fff;
}

/* ─── TIMELINE STRIP ─── */
.timeline-row {
  display: flex;
  gap: 0;
  margin-top: 50px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.tl-item {
  flex: 1;
  padding: 22px 20px;
  background: var(--white);
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: background 0.2s;
}

.tl-item:last-child {
  border-right: none;
}

.tl-item:hover {
  background: var(--dark);
}

.tl-item:hover .tl-year,
.tl-item:hover .tl-event {
  color: rgba(255, 255, 255, 0.85);
}

.tl-item:hover .tl-dot {
  background: var(--gold);
  border-color: var(--gold);
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid rgba(200, 40, 30, 0.3);
  margin: 0 auto 10px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.tl-year {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  transition: color 0.2s;
}

.tl-event {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 3px;
  transition: color 0.2s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991.98px) {
  .side-panel-float {
    float: none;
    width: 100%;
    margin: 0 0 36px 0;
  }

  .float-img-wrap {
    float: none;
    width: 100%;
    margin: 0 0 40px 0;
  }

  .float-img-wrap .img-main {
    height: 260px;
  }

  .img-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .img-strip-inner .strip-img:first-child {
    grid-column: span 2;
  }

  .timeline-row {
    flex-wrap: wrap;
  }

  .tl-item {
    flex: 1 1 calc(33.33% - 1px);
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding: 60px 0 50px;
  }

  .img-strip-inner {
    grid-template-columns: 1fr;
  }

  .img-strip-inner .strip-img:first-child {
    grid-column: span 1;
  }

  .float-img-wrap .img-thumb {
    display: none;
  }

  .stats-row {
    gap: 10px;
  }

  .timeline-row {
    display: none;
  }
}

/* ════════════════════════════════
       FEATURES SECTION
    ════════════════════════════════ */
.features-section {
  padding: 96px 0 100px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Background geometric pattern */
.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.015) 60px,
      rgba(255, 255, 255, 0.015) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.015) 60px,
      rgba(255, 255, 255, 0.015) 61px
    );
  pointer-events: none;
}

/* Red glow blob top-right */
.features-section::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(200, 40, 30, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Gold accent blob bottom-left */
.blob-gold {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(232, 160, 32, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* ── Section header ── */
.feat-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.feat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.feat-eyebrow::before,
.feat-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.6;
}

.feat-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.feat-title em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}

.feat-title em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.feat-subtitle {
  margin-top: 18px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── Cards grid ── */
.feat-grid {
  position: relative;
  z-index: 2;
}

/* ── Individual card ── */
.feat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 44px 36px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.35s;
  cursor: default;
}

/* Card number watermark */
.feat-card .card-num {
  position: absolute;
  top: 20px;
  right: 26px;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  transition: color 0.3s;
}

/* Top accent line — hidden until hover */
.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 16px 16px 0 0;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bottom glow — hidden until hover */
.feat-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(
    ellipse,
    rgba(200, 40, 30, 0.25) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.feat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 40, 30, 0.35);
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(200, 40, 30, 0.15);
}

.feat-card:hover::before {
  right: 0;
}

.feat-card:hover::after {
  opacity: 1;
}

.feat-card:hover .card-num {
  color: rgba(200, 40, 30, 0.12);
}

.feat-card:hover .feat-icon-wrap {
  background: var(--primary);
  border-color: var(--primary);
}

.feat-card:hover .feat-icon-wrap i {
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.feat-card:hover .feat-card-title {
  color: var(--white);
}

.feat-card:hover .feat-read-more {
  color: var(--primary);
  letter-spacing: 0.06em;
}

.feat-card:hover .feat-read-more i {
  transform: translateX(4px);
}

/* Icon */
.feat-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(200, 40, 30, 0.1);
  border: 1px solid rgba(200, 40, 30, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.feat-icon-wrap i {
  font-size: 1.5rem;
  color: var(--primary);
  transition:
    color 0.3s,
    transform 0.3s;
}

/* Card title (no heading tag) */
.feat-card-title {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 14px;
  transition: color 0.25s;
}

/* Divider */
.feat-divider {
  width: 36px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 16px;
  opacity: 0.7;
}

/* Body text */
.feat-card-body {
  font-size: 0.93rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
}

/* Read more link */
.feat-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition:
    color 0.25s,
    letter-spacing 0.25s;
}

.feat-read-more i {
  font-size: 0.72rem;
  transition: transform 0.25s;
}

/* ── Scroll reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.34s;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .features-section {
    padding: 64px 0 72px;
  }

  .feat-card {
    padding: 32px 26px 28px;
  }

  .trust-item + .trust-item::before {
    display: none;
  }
}

/* ════════════════════════════════
       SHARED SECTION STYLES
    ════════════════════════════════ */
.prod-section {
  padding: 88px 0 96px;
}

.prod-section.alt-bg {
  background: var(--bg2);
}

/* Section header */
.sec-head {
  margin-bottom: 52px;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.sec-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.sec-title em {
  font-style: normal;
  color: var(--primary);
}

.sec-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 480px;
  margin-top: 10px;
}

.sec-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border: 1.5px solid var(--primary);
  border-radius: 6px;
  padding: 9px 20px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.sec-view-all:hover {
  background: var(--primary);
  color: var(--white);
}

.sec-view-all i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.sec-view-all:hover i {
  transform: translateX(3px);
}

/* ════════════════════════════════
       PRODUCT CARD  (shared by both)
    ════════════════════════════════ */
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    box-shadow 0.28s,
    transform 0.28s,
    border-color 0.28s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
  transform: translateY(-5px);
  border-color: rgba(200, 40, 30, 0.2);
}

/* Image wrapper */
.prod-img-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--bg);
  aspect-ratio: 4 / 3;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.06);
}

/* Image overlay on hover */
.prod-img-wrap .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.prod-img-wrap .img-overlay span {
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.prod-card:hover .prod-img-wrap .img-overlay {
  background: rgba(26, 26, 46, 0.28);
}

.prod-card:hover .prod-img-wrap .img-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* Category badge */
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* Card body */
.prod-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Title link */
.prod-title-link {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.25;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.prod-title-link:hover {
  color: var(--primary);
}

/* Short divider */
.prod-line {
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 10px;
  opacity: 0.7;
}

/* Description */
.prod-desc {
  font-size: 0.85rem;
  line-height: 1.72;
  color: var(--muted);
  flex: 1;
}

/* Card footer link */
.prod-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #00000069;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-enquire {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.2s,
    color 0.2s;
}

.prod-enquire:hover {
  gap: 10px;
  color: var(--primary-dk);
}

.prod-enquire i {
  font-size: 0.65rem;
}

.prod-share {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.72rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.prod-share:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ════════════════════════════════
       SECTION 1 – GRID
    ════════════════════════════════ */
/* Nothing extra needed — Bootstrap g-4 handles it */

/* ════════════════════════════════
       SECTION 2 – OWL CAROUSEL
    ════════════════════════════════ */
.owl-carousel .prod-card {
  margin: 6px 4px 16px;
  /* breathing room so shadow isn't clipped */
}

/* Custom nav buttons */
.owl-nav-custom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.owl-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}

.owl-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

/* Custom dots */
.owl-theme .owl-dots {
  margin-top: 28px !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: var(--border) !important;
  margin: 0 4px !important;
  border-radius: 4px !important;
  transition:
    width 0.3s,
    background 0.3s !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  width: 24px !important;
  background: var(--primary) !important;
}

/* Hide default owl nav */
.owl-theme .owl-nav {
  display: none !important;
}

/* Carousel wrapper — give it overflow visible so card hover shadows show */
.owl-carousel.owl-loaded {
  overflow: visible;
}

.owl-stage-outer {
  overflow: hidden !important;
}

/* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
@media (max-width: 575px) {
  .prod-section {
    padding: 60px 0 68px;
  }

  .sec-head .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 14px !important;
  }
}

/* ══════════════════════════════════
    SECTION SHELL
══════════════════════════════════ */
.wcu-section {
  padding: 100px 0 108px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* faint diagonal stripe texture */
.wcu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0px,
    transparent 36px,
    rgba(200, 40, 30, 0.022) 36px,
    rgba(200, 40, 30, 0.022) 37px
  );
  pointer-events: none;
}

/* ── EYEBROW ── */
.wcu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.wcu-eyebrow::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ── TITLE ── */
.wcu-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.wcu-title em {
  font-style: normal;
  color: var(--primary);
}

/* ── LEAD TEXT ── */
.wcu-lead {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--muted);
  margin-top: 14px;
  max-width: 420px;
}

/* ══════════════════════════════════
    IMAGE STACK (left column)
══════════════════════════════════ */
.img-stack-wrap {
  position: relative;
  height: 500px;
}

.img-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  z-index: 2;
}
.img-a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.img-a:hover img {
  transform: scale(1.04);
}

.img-b {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  border: 5px solid var(--white);
  z-index: 3;
}
.img-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.img-b:hover img {
  transform: scale(1.04);
}

/* Experience badge */
.exp-badge {
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(200, 40, 30, 0.35);
  min-width: 110px;
}
.exp-badge .exp-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}
.exp-badge .exp-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-top: 3px;
  line-height: 1.3;
}

/* Floating accent dot */
.dot-accent {
  position: absolute;
  top: -18px;
  right: 14%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 2px solid var(--gold);
  z-index: 1;
}
.dot-accent-sm {
  position: absolute;
  bottom: 58px;
  left: 2%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-tint);
  border: 2px solid rgba(200, 40, 30, 0.25);
  z-index: 1;
}

/* ══════════════════════════════════
    REASON CARDS (right column)
══════════════════════════════════ */
.reason-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  transition:
    box-shadow 0.25s,
    border-color 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}
.reason-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  border-radius: 12px 0 0 12px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.reason-card:hover {
  box-shadow: 0 10px 36px rgba(26, 26, 46, 0.09);
  border-color: rgba(200, 40, 30, 0.18);
  transform: translateX(4px);
}
.reason-card:hover::before {
  transform: scaleY(1);
}

/* Icon box */
.rc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-tint);
  border: 1px solid rgba(200, 40, 30, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.rc-icon i {
  font-size: 1.15rem;
  color: var(--primary);
  transition: transform 0.25s;
}
.reason-card:hover .rc-icon {
  background: var(--primary);
  border-color: var(--primary);
}
.reason-card:hover .rc-icon i {
  color: var(--white);
  transform: scale(1.1) rotate(-6deg);
}

/* Text */
.rc-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 5px;
  transition: color 0.2s;
}
.reason-card:hover .rc-title {
  color: var(--primary);
}
.rc-body {
  font-size: 0.85rem;
  line-height: 1.72;
  color: var(--muted);
}

/* ══════════════════════════════════
    BOTTOM CTA STRIP
══════════════════════════════════ */
.cta-strip {
  margin-top: 60px;
  background: var(--dark);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
/* red glow inside strip */
.cta-strip::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(200, 40, 30, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-strip .cta-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.cta-strip .cta-text {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}
.cta-strip .cta-text em {
  font-style: normal;
  color: var(--primary);
}
.cta-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-red {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-red:hover {
  background: var(--primary-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200, 40, 30, 0.4);
}
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

/* ══════════════════════════════════
    SCROLL REVEAL
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ══════════════════════════════════
    RESPONSIVE
══════════════════════════════════ */
@media (max-width: 991px) {
  .img-stack-wrap {
    height: 380px;
    margin-bottom: 48px;
  }
  .img-a {
    width: 70%;
    height: 260px;
  }
  .img-b {
    width: 58%;
    height: 200px;
  }
  .cta-strip {
    padding: 32px 28px;
  }
}
@media (max-width: 575px) {
  .wcu-section {
    padding: 64px 0 72px;
  }
  .img-stack-wrap {
    height: 300px;
  }
  .img-a {
    width: 76%;
    height: 210px;
  }
  .img-b {
    width: 62%;
    height: 170px;
  }
  .exp-badge {
    padding: 12px 16px;
  }
  .exp-badge .exp-num {
    font-size: 1.9rem;
  }
}

/* ── Shared eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 11px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.eyebrow.light {
  color: var(--gold);
}

.eyebrow.light::before {
  background: var(--gold);
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.sec-title em {
  font-style: normal;
  color: var(--primary);
}

.sec-title.on-dark {
  color: var(--white);
}

.sec-title.on-dark em {
  color: var(--gold);
}

/* ── Scroll reveal ── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.rv-l {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.rv-l.in {
  opacity: 1;
  transform: translateX(0);
}

.rv-r {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.rv-r.in {
  opacity: 1;
  transform: translateX(0);
}

.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

.d4 {
  transition-delay: 0.32s;
}

.d5 {
  transition-delay: 0.4s;
}

.d6 {
  transition-delay: 0.48s;
}

/* ══════════════════════════════════════════
       1. TESTIMONIALS
    ══════════════════════════════════════════ */
.testi-section {
  padding: 96px 0 104px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* grid bg */
.testi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 59px,
      rgba(255, 255, 255, 0.025) 59px,
      rgba(255, 255, 255, 0.025) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 59px,
      rgba(255, 255, 255, 0.025) 59px,
      rgba(255, 255, 255, 0.025) 60px
    );
  pointer-events: none;
}

/* glow */
.testi-section::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(251, 54, 7, 0.15) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* ── Image panel ── */
.testi-img-col {
  position: relative;
}

.testi-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.testi-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(251, 54, 7, 0.4);
  min-width: 110px;
  z-index: 3;
}

.testi-badge .tb-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.testi-badge .tb-lbl {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-top: 2px;
}

.testi-floater {
  position: absolute;
  top: 30px;
  right: -14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.testi-floater .fl-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-tint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
}

.testi-floater .fl-val {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.testi-floater .fl-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ── Testimonial cards ── */
.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
  cursor: default;
  height: 100%;
}

.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 22px;
  font-size: 5.5rem;
  font-family: Georgia, serif;
  color: rgba(251, 54, 7, 0.18);
  line-height: 1;
  user-select: none;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(251, 54, 7, 0.3);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(251, 54, 7, 0.4);
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.testi-role {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}

.testi-tag {
  margin-left: auto;
  background: rgba(251, 54, 7, 0.15);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid rgba(251, 54, 7, 0.25);
}

/* ══════════════════════════════════════════
       2. FAQ
    ══════════════════════════════════════════ */
.faq-section {
  padding: 96px 0 104px;
  background: var(--white);
  position: relative;
}

/* Diagonal accent top right */
.faq-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(251, 54, 7, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* FAQ image */
.faq-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}

.faq-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.82) 0%,
    transparent 55%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.faq-img-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.faq-img-cta:hover {
  background: var(--primary-dk);
  color: var(--white);
}

/* Accordion override */
.faq-acc .accordion-item {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.faq-acc .accordion-item.open-item {
  border-color: rgba(251, 54, 7, 0.28);
  box-shadow: 0 6px 24px rgba(251, 54, 7, 0.08);
}

.faq-acc .accordion-button {
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  padding: 18px 20px;
  border-radius: 10px !important;
  box-shadow: none !important;
  transition:
    color 0.2s,
    background 0.2s;
}

.faq-acc .accordion-button::after {
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(251, 54, 7, 0.08);
  border-radius: 6px;
  transition:
    transform 0.3s,
    background 0.2s;
}

.faq-acc .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(251, 54, 7, 0.04);
}

.faq-acc .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background: rgba(251, 54, 7, 0.15);
}

.faq-acc .accordion-body {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--muted);
  padding: 0 20px 18px;
  background: var(--white);
}

.faq-acc .accordion-body a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* ══════════════════════════════════════════
       3. CTA / CONTACT
    ══════════════════════════════════════════ */
.cta-section {
  padding: 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 40px,
    rgba(255, 255, 255, 0.018) 40px,
    rgba(255, 255, 255, 0.018) 41px
  );
  pointer-events: none;
}

/* Big ghost text */
.cta-section .ghost-text {
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-family: var(--font-head);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* Form panel */
.cta-form-panel {
  background: var(--white);
  padding: 52px 48px;
  position: relative;
  z-index: 2;
}

.cta-form-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 4px;
  background: var(--primary);
}

/* Contact info panel */
.cta-info-panel {
  padding: 52px 48px;
  position: relative;
  z-index: 2;
}

/* Form controls */
.nav-form .form-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.nav-form .form-control,
.nav-form .form-select {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text);
  padding: 11px 14px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.nav-form .form-control:focus,
.nav-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(251, 54, 7, 0.1);
  background: var(--white);
}

.nav-form textarea.form-control {
  resize: none;
}

.nav-form .form-select {
  appearance: auto;
}

.btn-submit {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(251, 54, 7, 0.35);
}

/* Contact info items */
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s;
}

.ci-item:hover .ci-icon {
  background: rgba(251, 54, 7, 0.2);
  color: var(--white);
}

.ci-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3px;
}

.ci-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.ci-val a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s;
}

.ci-val a:hover {
  color: var(--gold);
}

/* Map embed placeholder */
.map-box {
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  margin-top: 12px;
  background: var(--mid);
  position: relative;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1) contrast(0.9);
  opacity: 0.65;
}

.map-box .map-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* Social row */
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.soc-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
       4. FOOTER
    ══════════════════════════════════════════ */
.site-footer {
  background: #0f0f1e;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(251, 54, 7, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Brand col */
.ft-logo img {
  height: 46px;
  /* filter: brightness(0) invert(1); */
  margin-bottom: 16px;
}

.ft-about {
  font-size: 0.85rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.38);
  max-width: 280px;
}

/* Footer links */
.ft-col-title {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-col-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-links li {
  margin-bottom: 9px;
}

.ft-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    color 0.2s,
    gap 0.2s;
}

.ft-links a i {
  font-size: 0.55rem;
  color: var(--primary);
}

.ft-links a:hover {
  color: var(--white);
  gap: 10px;
}

/* Newsletter */
.ft-newsletter-wrap {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s;
}

.ft-newsletter-wrap:focus-within {
  border-color: var(--primary);
}

.ft-newsletter-wrap input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.83rem;
  font-family: var(--font-body);
  padding: 11px 14px;
}

.ft-newsletter-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.ft-newsletter-wrap button {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: 0 16px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
}

.ft-newsletter-wrap button:hover {
  background: var(--primary-dk);
}

.ft-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 50px 0 0;
}

.ft-bottom {
  padding: 20px 0;
}

.ft-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.ft-copy a {
  color: var(--gold);
  text-decoration: none;
}

.ft-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ft-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-bottom-links a:hover {
  color: var(--white);
}

/* Certif badges */
.cert-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cert-badge i {
  color: var(--gold);
  font-size: 0.6rem;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-form-panel,
  .cta-info-panel {
    padding: 40px 32px;
  }

  .cta-form-panel::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .testi-section,
  .faq-section {
    padding: 64px 0 72px;
    overflow: hidden;
  }

  .testi-badge {
    bottom: -14px;
    right: -8px;
  }

  .cta-form-panel,
  .cta-info-panel {
    padding: 36px 24px;
  }

  .ghost-text {
    display: none;
  }
}

@media (max-width: 575px) {
  .ft-bottom .d-flex {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start !important;
  }
}

/* ── Demo page bg ── */
body {
  margin: 0;
  min-height: 300vh;
  background: linear-gradient(180deg, #f7f4f0 0%, #edf1f7 50%, #f7f4f0 100%);
  font-family: sans-serif;
}
.demo-label {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  color: #9aa;
  pointer-events: none;
  text-align: center;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
       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(--primary);
  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(--primary);
  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(--primary);
  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(255, 109, 42, 0.55) 0%,
    rgba(255, 109, 42, 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), #60a5fa, var(--primary));
  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: var(--phero-blue-light);
}

.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: var(--phero-blue-light);
}

.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(--primary-dk);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.sitemap-container {
  max-width: 1200px;
  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(--primary);
  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(--primary);
  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(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary);
}

.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;
  }
}
