:root {
  --orange: #f7941d;
  --orange-dark: #d97d0e;
  --navy: #1b2a6b;
  --navy-dark: #111d4e;
  --white: #ffffff;
  --off-white: #f5f6fa;
  --text-dark: #1c1c2e;
  --text-muted: #6b7280;
  --border: rgba(255, 255, 255, 0.12);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: "Rajdhani", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

/* Add this at the very top, after :root */
html {
  overflow-x: hidden;
  max-width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: #e1e1e15e;
  color: var(--text-dark);
  overflow-x: hidden;
  margin: 0;  
  gap: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── TOP BAR ───────────────────────────────────────────────────── */
#topbar {
  background: var(--navy-dark);
  border-bottom: 2px solid var(--orange);
  padding: 7px 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
}

#topbar .tb-left,
#topbar .tb-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#topbar .tb-right {
  justify-content: flex-end;
}

#topbar a:hover {
  color: var(--orange);
}

.tb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.tb-item i {
  color: var(--orange);
  font-size: 0.78rem;
}

.tb-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
}

.tb-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  transition:
    background var(--transition),
    color var(--transition);
}

.tb-social a:hover {
  background: var(--orange);
  color: #fff;
}

/* ── HEADER ────────────────────────────────────────────────────── */
#mainHeader {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(27, 42, 107, 0.1);
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: box-shadow var(--transition);
}

#mainHeader.scrolled {
  box-shadow: 0 4px 32px rgba(27, 42, 107, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 24px;
}

/* Logo */
.site-logo img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}

.site-logo:hover img {
  transform: scale(1.03);
}

/* ── NAV ────────────────────────────────────────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  list-style: none;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.4px;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.main-nav > li > a .nav-chevron {
  font-size: 0.65rem;
  margin-top: 1px;
  transition: transform var(--transition);
}

.main-nav > li:hover > a,
.main-nav > li > a.active {
  color: var(--orange);
  background: rgba(247, 148, 29, 0.07);
}

.main-nav > li:hover > a .nav-chevron {
  transform: rotate(180deg);
}

/* Pill underline effect */
.main-nav > li > a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav > li:hover > a::after,
.main-nav > li > a.active::after {
  transform: scaleX(1);
}

/* ── DROPDOWN COMMON ───────────────────────────────────────────── */
.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(27, 42, 107, 0.16);
  border: 1px solid rgba(27, 42, 107, 0.07);
  min-width: 230px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
  z-index: 200;
}

.main-nav > li:hover > .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom li {
  position: relative;
  list-style: none;
}

.dropdown-menu-custom li > a {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 9px 18px;
  transition:
    background var(--transition),
    color var(--transition),
    padding-left var(--transition);
}

.dropdown-menu-custom li > a:hover {
  background: rgba(247, 148, 29, 0.07);
  color: var(--orange);
  padding-left: 24px;
}

.dropdown-menu-custom li > a i.fa-chevron-right {
  font-size: 0.6rem;
  color: var(--text-muted);
}

/* Category label inside dropdown */
.dd-category-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange);
  padding: 10px 18px 4px;
}

.dd-divider {
  height: 1px;
  background: rgba(27, 42, 107, 0.07);
  margin: 6px 12px;
}

/* ── MULTILEVEL FLYOUT (Level 2 → Level 3) ─────────────────────── */

/* Level 2 — category row that has children */
.has-children {
  position: relative;
}

.has-children > a .fa-chevron-right {
  font-size: 0.58rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Level 3 — flyout panel */
.submenu-l3 {
  position: absolute;
  top: -8px;
  left: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(27, 42, 107, 0.16);
  border: 1px solid rgba(27, 42, 107, 0.07);
  min-width: 300px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
  z-index: 300;
  list-style: none;
}

/* flip to left if near viewport edge — handled via JS class */
.submenu-l3.flip-left {
  left: auto;
  right: 100%;
  transform: translateX(-8px);
}

.has-children:hover > .submenu-l3 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu-l3.flip-left:hover,
.has-children:hover > .submenu-l3.flip-left {
  transform: translateX(0);
}

.submenu-l3 li a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 9px 18px;
  transition:
    background var(--transition),
    color var(--transition),
    padding-left var(--transition);
}

.submenu-l3 li a i {
  color: var(--orange);
  font-size: 0.75rem;
  width: 14px;
}

.submenu-l3 li a:hover {
  background: rgba(247, 148, 29, 0.07);
  color: var(--orange);
  padding-left: 24px;
}

/* ── GET QUOTE BTN ─────────────────────────────────────────────── */
.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.6px;
  padding: 10px 22px;
  border-radius: 7px;
  border: 2px solid transparent;
  white-space: nowrap;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(247, 148, 29, 0.28);
}

.btn-quote:hover {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.22);
}

/* ── HAMBURGER ─────────────────────────────────────────────────── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--transition);
  z-index: 1100;
}

.hamburger-btn:hover {
  background: rgba(27, 42, 107, 0.07);
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s,
    width 0.25s;
  transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE OVERLAY ────────────────────────────────────────────── */
#mobileOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 29, 78, 0.55);
  backdrop-filter: blur(3px);
  z-index: 1070;
  opacity: 0;
  transition: opacity 0.3s;
}

#mobileOverlay.active {
  opacity: 1;
}

/* ── MOBILE DRAWER ─────────────────────────────────────────────── */
#mobileDrawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100dvh;
  background: #fff;
  z-index: 1080;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#mobileDrawer.open {
  transform: translateX(0);
}

.drawer-head {
  background: var(--navy-dark);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.drawer-head img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.drawer-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}

.drawer-close:hover {
  background: var(--orange);
}

.drawer-body {
  overflow-y: auto;
  flex: 1;
  padding: 8px 0;
}

.drawer-body::-webkit-scrollbar {
  width: 4px;
}

.drawer-body::-webkit-scrollbar-track {
  background: transparent;
}

.drawer-body::-webkit-scrollbar-thumb {
  background: rgba(27, 42, 107, 0.15);
  border-radius: 4px;
}

/* Mobile Nav List */
.mob-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mob-nav > li {
  border-bottom: 1px solid rgba(27, 42, 107, 0.06);
}

.mob-nav > li > a,
.mob-nav > li > .mob-acc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  padding: 13px 20px;
  cursor: pointer;
  transition:
    color var(--transition),
    background var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.mob-nav > li > a:hover,
.mob-nav > li > .mob-acc-toggle:hover {
  color: var(--orange);
  background: rgba(247, 148, 29, 0.05);
}

.mob-acc-toggle .mob-chevron {
  font-size: 0.7rem;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.mob-acc-toggle.expanded .mob-chevron {
  transform: rotate(180deg);
}

/* Mobile sub panel */
.mob-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--off-white);
}

.mob-sub.open {
  max-height: 800px;
}

.mob-sub-cat {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange);
  padding: 12px 20px 4px;
}

.mob-sub ul {
  list-style: none;
  padding: 0 0 8px;
}

.mob-sub ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 9px 20px 9px 28px;
  transition:
    color var(--transition),
    background var(--transition);
}

.mob-sub ul li a i {
  color: var(--orange);
  font-size: 0.75rem;
  width: 14px;
}

.mob-sub ul li a:hover {
  color: var(--orange);
  background: rgba(247, 148, 29, 0.07);
}

.drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(27, 42, 107, 0.08);
  flex-shrink: 0;
}

.drawer-footer .btn-quote {
  width: 100%;
  justify-content: center;
}

.drawer-contacts {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-contacts a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.drawer-contacts a i {
  color: var(--orange);
  font-size: 0.78rem;
  width: 14px;
}

.drawer-contacts a:hover {
  color: var(--orange);
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .main-nav > li > a {
    padding: 10px 10px;
    font-size: 0.95rem;
  }

  .mega-dropdown {
    min-width: 560px;
  }
}

@media (max-width: 991px) {
  .desktop-nav,
  .btn-quote.desktop-only {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
  }

  #mobileOverlay {
    display: block;
    pointer-events: none;
  }

  #mobileOverlay.active {
    pointer-events: auto;
  }
}

@media (max-width: 575px) {
  #topbar .tb-left {
    gap: 12px;
  }

  .site-logo img {
    height: 46px;
  }
}

/* ══════════════════════════════════════════
       HERO BANNER SLIDER
    ═══════════════════════════════════════════ */
#heroBanner {
  position: relative;
  overflow: hidden;
  background: #e8f3fb;
}

.hero-slide {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Per-slide backgrounds */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* transition: transform 8s ease; */
}
/* .owl-item.active .slide-bg {
  transform: scale(1.04);
} */
/* Gradient overlay per slide */
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

/* ── WHITE CARD (left panel) ── */
.hero-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 36px 36px 32px;
  box-shadow: 0 20px 60px rgba(27, 42, 107, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.6);
  max-width: 500px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
}

/* Animate card content on slide change */
.owl-item .hero-card {
  opacity: 0;
  transform: translateX(-30px);
  transition: none;
}
.owl-item.active .hero-card {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.7s 0.3s ease,
    transform 0.7s 0.3s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(247, 148, 29, 0.12);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  border: 1px solid rgba(247, 148, 29, 0.3);
  margin-bottom: 16px;
}
.hero-badge i {
  font-size: 0.65rem;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 14px;
}
.hero-title span {
  color: var(--orange);
}

.hero-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* ── BUTTONS ── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 11px 24px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.35);
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.btn-hero-primary:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(247, 148, 29, 0.4);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: 2px solid rgba(27, 42, 107, 0.25);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}
.btn-hero-outline:hover {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

/* ── PRODUCT IMAGE (right) ── */
.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.hero-img-wrap img {
  max-height: 380px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(27, 42, 107, 0.18));
  transition: none;
}
.owl-item .hero-img-wrap img {
  opacity: 0;
  transform: translateX(40px) scale(0.96);
  transition: none;
}
.owl-item.active .hero-img-wrap img {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition:
    opacity 0.8s 0.45s ease,
    transform 0.8s 0.45s ease;
}

/* Floating badge on image */
.hero-spec-badge {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(27, 42, 107, 0.14);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  animation: floatBadge 3.5s ease-in-out infinite;
}
.hero-spec-badge i {
  color: var(--orange);
}
.hero-spec-badge.badge-tl {
  top: 30px;
  left: 10px;
}
.hero-spec-badge.badge-br {
  bottom: 40px;
  right: 10px;
  animation-delay: 1.2s;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ── OWL CUSTOM DOTS ── */
#heroBanner .owl-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
#heroBanner .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  margin: 0;
}
#heroBanner .owl-dot.active span {
  background: var(--orange);
  border-color: var(--orange);
  width: 28px;
  border-radius: 5px;
}

/* ── OWL CUSTOM NAV ── */
#heroBanner .owl-nav {
  position: absolute;
  bottom: 20px;
  right: 32px;
  display: flex;
  gap: 8px;
  margin: 0;
}
#heroBanner .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(27, 42, 107, 0.12) !important;
  color: var(--navy) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem !important;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition) !important;
  box-shadow: 0 4px 12px rgba(27, 42, 107, 0.1);
}
#heroBanner .owl-nav button:hover {
  background: var(--orange) !important;
  color: #fff !important;
  transform: scale(1.06);
}
#heroBanner .owl-nav button span {
  display: none;
}
#heroBanner .owl-nav .owl-prev::after {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
#heroBanner .owl-nav .owl-next::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* ── SLIDE NUMBER INDICATOR ── */
.slide-counter {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 10;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(27, 42, 107, 0.35);
  backdrop-filter: blur(6px);
  padding: 5px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}
.slide-counter .current {
  color: var(--orange);
  font-size: 1.05rem;
}

/* ── RESPONSIVE SLIDER ── */
@media (max-width: 991px) {
  .hero-slide {
    min-height: auto;
    padding: 40px 0;
  }
  .hero-card {
    padding: 28px 24px 24px;
  }
  .hero-img-wrap {
    padding: 20px 0 40px;
  }
  .hero-img-wrap img {
    max-height: 280px;
  }
  .hero-spec-badge {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-card {
    max-width: 100%;
  }
  .hero-img-wrap img {
    max-height: 220px;
  }
  .btn-hero-primary,
  .btn-hero-outline {
    font-size: 0.88rem;
    padding: 9px 18px;
  }
  #heroBanner .owl-nav {
    bottom: 16px;
    right: 16px;
  }
  #heroBanner .owl-dots {
    bottom: 22px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-desc {
    font-size: 0.86rem;
  }
  .slide-counter {
    display: none;
  }
}

/* ─── ABOUT SECTION WRAPPER ────────────────────── */
.abt-section {
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric background accent */
.abt-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(247, 148, 29, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.abt-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(27, 42, 107, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ─── SECTION LABEL (eyebrow) ──────────────────── */
.abt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247, 148, 29, 0.1);
  border: 1px solid rgba(247, 148, 29, 0.28);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

/* ─── H1 MAIN HEADING ──────────────────────────── */
.abt-h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 0;
}

.abt-h1 .accent {
  color: var(--orange);
}

/* Decorative underline bar under heading */
.abt-heading-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 28px;
}

.abt-heading-bar .bar-solid {
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
}

.abt-heading-bar .bar-thin {
  flex: 1;
  height: 2px;
  background: rgba(27, 42, 107, 0.1);
  border-radius: 2px;
}

/* ─── FLOATED IMAGE BLOCKS ─────────────────────── */
/*
      Images float left so body text wraps naturally around them.
      Each image gets a styled frame + caption.
    */
.abt-float-img {
  float: left;
  margin: 4px 28px 20px 0;
  position: relative;
}

.abt-float-img:nth-child(2) {
  /* second image pushes a bit further for visual rhythm */
  margin-top: 8px;
}

.abt-float-img .img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(27, 42, 107, 0.14);
  /* Orange corner accent */
  border: 3px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--orange) 0%, var(--navy) 100%) border-box;
}

.abt-float-img .img-frame img {
  display: block;
  width: 400px;
  height: 275px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.abt-float-img:hover .img-frame img {
  transform: scale(1.04);
}

/* Small floating label over image */
.abt-float-img .img-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(27, 42, 107, 0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.abt-float-img .img-label i {
  color: var(--orange);
  font-size: 0.6rem;
}

/* ─── BODY TEXT THAT WRAPS AROUND IMAGES ──────── */
.abt-body-text {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-muted);
  /* clearfix so next sibling clears the float properly */
}

.abt-body-text p {
  margin-bottom: 16px;
}

.abt-body-text p:last-child {
  margin-bottom: 0;
}

.abt-body-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Clearfix helper */
.abt-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ─── FULL-WIDTH STAT STRIP ────────────────────── */
.abt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
  box-shadow: 0 16px 48px rgba(27, 42, 107, 0.18);
}

.abt-stat-item {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: background var(--transition);
}

.abt-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.abt-stat-item:hover {
  background: var(--navy-dark);
}

.abt-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(247, 148, 29, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.1rem;
  color: var(--orange);
}

.abt-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.abt-stat-num span {
  color: var(--orange);
}

.abt-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* ─── FULL-WIDTH VALUES STRIP ──────────────────── */
.abt-values {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.abt-value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 26px 24px;
  border: 1px solid rgba(27, 42, 107, 0.08);
  box-shadow: 0 4px 18px rgba(27, 42, 107, 0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.abt-value-card:hover {
  box-shadow: 0 10px 32px rgba(27, 42, 107, 0.12);
  transform: translateY(-3px);
}

.abt-value-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(247, 148, 29, 0.28);
}

.abt-value-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.abt-value-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── CTA ROW ───────────────────────────────────── */
.abt-cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-abt-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.32);
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn-abt-primary:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(247, 148, 29, 0.42);
}

.btn-abt-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 8px;
  border: 2px solid rgba(27, 42, 107, 0.25);
  text-decoration: none;
  transition:
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.btn-abt-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 991px) {
  .abt-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .abt-section {
    padding: 60px 0;
  }

  .abt-float-img {
    float: none;
    margin: 0 0 20px 0;
  }

  .abt-float-img .img-frame img {
    width: 100%;
    height: 200px;
  }

  .abt-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-values {
    grid-template-columns: 1fr;
  }

  .abt-stat-item::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .abt-stats {
    grid-template-columns: 1fr 1fr;
  }

  .abt-stat-num {
    font-size: 1.8rem;
  }
}

/* ══════════════════════════════════════════════
       SHARED SECTION STYLES
    ══════════════════════════════════════════════ */
.prod-section {
  padding: 50px 0;
}

.prod-section--alt {
  background: var(--off-white);
}

/* Section header */
.prod-sec-header {
  margin-bottom: 48px;
}

.prod-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247, 148, 29, 0.09);
  border: 1px solid rgba(247, 148, 29, 0.25);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.prod-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}

.prod-title span {
  color: var(--orange);
}

.prod-subtitle {
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.prod-title-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.prod-title-bar .bar {
  width: 40px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
}

.prod-title-bar .bar-thin {
  width: 80px;
  height: 2px;
  background: rgba(27, 42, 107, 0.12);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════
       SHARED PRODUCT CARD
    ══════════════════════════════════════════════ */
.prod-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(27, 42, 107, 0.07);
  box-shadow: 0 2px 16px rgba(27, 42, 107, 0.06);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prod-card:hover {
  box-shadow: 0 12px 40px rgba(27, 42, 107, 0.13);
  transform: translateY(-4px);
}

/* Image link wrapper */
.prod-card__img-link {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--off-white);
  aspect-ratio: 4 / 4;
  /* consistent image height */
}

.prod-card__img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.prod-card:hover .prod-card__img-link img {
  transform: scale(1.05);
}

/* Category pill over image */
.prod-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(27, 42, 107, 0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Orange arrow badge on hover */
.prod-card__arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.prod-card:hover .prod-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Card body */
.prod-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Title — anchor tag, no heading element */
.prod-card__title-link {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.prod-card__title-link:hover {
  color: var(--orange);
}

/* Short description */
.prod-card__desc {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
  /* Clamp to 3 lines for uniform card heights */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Bottom border accent */
.prod-card::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  opacity: 0;
  transition: opacity var(--transition);
}

.prod-card:hover::after {
  opacity: 1;
}

/* ══════════════════════════════════════════════
       SECTION 1 — BOOTSTRAP GRID
    ══════════════════════════════════════════════ */
/* Row gap tweak */
.prod-grid .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

/* ══════════════════════════════════════════════
       SECTION 2 — OWL CAROUSEL
    ══════════════════════════════════════════════ */
.prod-carousel-wrap {
  position: relative;
}

/* Custom nav buttons */
.prod-carousel-wrap .owl-nav {
  position: absolute;
  top: -62px;
  right: 0;
  display: flex;
  gap: 8px;
  margin: 0;
}

.prod-carousel-wrap .owl-nav button {
  width: 38px;
  height: 38px;
  border-radius: 8px !important;
  background: var(--white) !important;
  border: 1.5px solid rgba(27, 42, 107, 0.15) !important;
  color: var(--navy) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem !important;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition) !important;
  box-shadow: 0 2px 10px rgba(27, 42, 107, 0.08);
}

.prod-carousel-wrap .owl-nav button:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
}

.prod-carousel-wrap .owl-nav button span {
  display: none;
}

.prod-carousel-wrap .owl-nav .owl-prev::after {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.prod-carousel-wrap .owl-nav .owl-next::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* Dots */
.prod-carousel-wrap .owl-dots {
  margin-top: 28px !important;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.prod-carousel-wrap .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27, 42, 107, 0.18) !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
}

.prod-carousel-wrap .owl-dot.active span {
  background: var(--orange) !important;
  width: 24px;
  border-radius: 4px !important;
}

/* Stage padding so cards don't get clipped */
.prod-carousel-wrap .owl-stage-outer {
  padding-bottom: 6px;
}

.prod-carousel-wrap .owl-item {
  padding: 4px 6px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .prod-section {
    padding: 60px 0;
  }

  .prod-sec-header {
    margin-bottom: 36px;
  }

  .prod-carousel-wrap .owl-nav {
    position: static;
    justify-content: flex-end;
    margin-bottom: 20px;
  }
}

/* ══ WHY CHOOSE US ══════════════════════════════ */
#whyUs {
  background: #f8f9fc;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

/* Subtle background grid */
#whyUs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 42, 107, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 42, 107, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ── Section label + title block ── */
.wcu-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 148, 29, 0.1);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(247, 148, 29, 0.28);
  margin-bottom: 16px;
}

.wcu-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.wcu-title span {
  color: var(--orange);
}

.wcu-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 460px;
}

/* ── Stat pills row ── */
.wcu-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.wcu-stat {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(27, 42, 107, 0.07);
  box-shadow: 0 4px 18px rgba(27, 42, 107, 0.07);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 140px;
  flex: 1;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.wcu-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27, 42, 107, 0.12);
}

.wcu-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), #f5a623);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wcu-stat-icon i {
  color: #fff;
  font-size: 1rem;
}

.wcu-stat-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.wcu-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── IMAGE STACK (right column) ── */
.wcu-img-stack {
  position: relative;
  height: 480px;
}

.wcu-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27, 42, 107, 0.18);
}

.wcu-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.wcu-img-main:hover img {
  transform: scale(1.04);
}

.wcu-img-small {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 54%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(27, 42, 107, 0.18);
  border: 5px solid #f8f9fc;
}

.wcu-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.wcu-img-small:hover img {
  transform: scale(1.04);
}

/* Orange dot accent */
.wcu-img-dot {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    0 0 0 6px rgba(247, 148, 29, 0.18),
    0 0 0 12px rgba(247, 148, 29, 0.08);
  z-index: 5;
}

/* Floating certified badge over image */
.wcu-cert-badge {
  position: absolute;
  bottom: 90px;
  right: 0px;
  max-width: calc(100% - 20px);
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(27, 42, 107, 0.25);
  z-index: 6;
  white-space: nowrap;
}

.wcu-cert-badge i {
  color: var(--orange);
  font-size: 1.1rem;
}

.wcu-cert-badge strong {
  display: block;
  font-size: 1rem;
  font-family: var(--font-head);
}

/* ── FEATURE CARDS GRID (bottom 3 cards) ── */
.wcu-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0px;
}

.wcu-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(27, 42, 107, 0.06);
  box-shadow: 0 4px 20px rgba(27, 42, 107, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.wcu-feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.wcu-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(27, 42, 107, 0.12);
  border-color: rgba(247, 148, 29, 0.2);
}

.wcu-feature-card:hover::after {
  transform: scaleX(1);
}

.wcu-fc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(247, 148, 29, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s ease;
}

.wcu-feature-card:hover .wcu-fc-icon {
  background: var(--orange);
}

.wcu-fc-icon i {
  font-size: 1.2rem;
  color: var(--orange);
  transition: color 0.25s ease;
}

.wcu-feature-card:hover .wcu-fc-icon i {
  color: #fff;
}

.wcu-fc-title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.wcu-fc-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Big faint icon watermark */
.wcu-feature-card .wcu-fc-watermark {
  position: absolute;
  bottom: -10px;
  right: -4px;
  font-size: 5rem;
  color: rgba(27, 42, 107, 0.035);
  pointer-events: none;
  line-height: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .wcu-img-stack {
    height: 360px;
    margin-bottom: 40px;
  }

  .wcu-img-main {
    width: 80%;
    height: 260px;
  }

  .wcu-img-small {
    width: 52%;
    height: 170px;
  }

  .wcu-cert-badge {
    right: 0;
  }

  .wcu-subtitle {
    max-width: 100%;
  }

  .wcu-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #whyUs {
    padding: 64px 0;
  }

  .wcu-img-stack {
    height: 300px;
  }

  .wcu-img-main {
    height: 210px;
  }

  .wcu-img-small {
    height: 140px;
  }

  .wcu-cert-badge {
    display: none;
  }

  .wcu-stats {
    gap: 8px;
  }
}

@media (max-width: 575px) {
  .wcu-features {
    grid-template-columns: 1fr;
  }

  .wcu-img-stack {
    height: 260px;
  }
}

/* ── Shared eyebrow / title pattern ── */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247, 148, 29, 0.09);
  border: 1px solid rgba(247, 148, 29, 0.25);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.sec-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}

.sec-title span {
  color: var(--orange);
}

.sec-sub {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}

.title-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.title-bar .bar {
  width: 40px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
}

.title-bar .bar-thin {
  width: 80px;
  height: 2px;
  background: rgba(27, 42, 107, 0.12);
  border-radius: 2px;
}

/* ══════════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════════ */
.testi-section {
  padding: 90px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.testi-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(247, 148, 29, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Carousel wrapper */
.testi-carousel-wrap {
  position: relative;
  padding-top: 8px;
}

/* Card */
.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px 28px;
  border: 1px solid rgba(27, 42, 107, 0.07);
  box-shadow: 0 4px 24px rgba(27, 42, 107, 0.07);
  position: relative;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  margin: 8px 0 4px;
}

.testi-card:hover {
  box-shadow: 0 12px 40px rgba(27, 42, 107, 0.13);
  transform: translateY(-4px);
}

/* Big quote icon */
.testi-quote-icon {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 3.5rem;
  color: rgba(247, 148, 29, 0.12);
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 900;
}

/* Stars */
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testi-stars i {
  color: var(--orange);
  font-size: 0.8rem;
}

/* Quote text */
.testi-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-author-img {
  width: 50px !important;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  flex-shrink: 0;
}

.testi-author-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.2;
}

.testi-author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testi-author-role span {
  color: var(--orange);
  font-weight: 600;
}

/* Bottom accent */
.testi-card::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  border-radius: 0 0 16px 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.testi-card:hover::after {
  opacity: 1;
}

/* OWL nav */
.testi-carousel-wrap .owl-nav {
  position: absolute;
  top: -62px;
  right: 0;
  display: flex;
  gap: 8px;
  margin: 0;
}

.testi-carousel-wrap .owl-nav button {
  width: 38px;
  height: 38px;
  border-radius: 8px !important;
  background: var(--white) !important;
  border: 1.5px solid rgba(27, 42, 107, 0.15) !important;
  color: var(--navy) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem !important;
  box-shadow: 0 2px 10px rgba(27, 42, 107, 0.08);
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition) !important;
}

.testi-carousel-wrap .owl-nav button:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
}

.testi-carousel-wrap .owl-nav button span {
  display: none;
}

.testi-carousel-wrap .owl-nav .owl-prev::after {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.testi-carousel-wrap .owl-nav .owl-next::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.testi-carousel-wrap .owl-dots {
  margin-top: 28px !important;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testi-carousel-wrap .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27, 42, 107, 0.18) !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
}

.testi-carousel-wrap .owl-dot.active span {
  background: var(--orange) !important;
  width: 24px;
  border-radius: 4px !important;
}

.testi-carousel-wrap .owl-item {
  padding: 4px 8px;
}

.testi-carousel-wrap .owl-stage-outer {
  padding-bottom: 6px;
}

/* ══════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════ */
.faq-section {
  padding: 90px 0;
  background: var(--white);
}

/* Left column — image */
.faq-img-col {
  position: relative;
}

.faq-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(27, 42, 107, 0.14);
}

.faq-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
}

/* Overlay gradient on image */
.faq-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(27, 42, 107, 0.7) 100%
  );
}

/* Floating stat on image */
.faq-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(27, 42, 107, 0.14);
}

.faq-img-badge-item {
  text-align: center;
  flex: 1;
}

.faq-img-badge-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}

.faq-img-badge-num span {
  color: var(--orange);
}

.faq-img-badge-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.faq-img-badge-divider {
  width: 1px;
  height: 36px;
  background: rgba(27, 42, 107, 0.12);
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(27, 42, 107, 0.09);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27, 42, 107, 0.05);
  transition: box-shadow var(--transition);
}

.faq-item.open {
  box-shadow: 0 8px 28px rgba(27, 42, 107, 0.1);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-q-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.3;
}

.faq-item.open .faq-q-text {
  color: var(--orange);
}

.faq-q-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.75rem;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.faq-item.open .faq-q-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s ease,
    padding 0.28s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  border-top: 1px solid rgba(27, 42, 107, 0.07);
  padding-top: 14px;
}

/* ══════════════════════════════════════════
       CTA / CONTACT SECTION
    ══════════════════════════════════════════ */
.cta-section {
  padding: 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Decorative diagonal divider */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 53%;
  height: 100%;
  background: var(--navy-dark);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

/* ── LEFT — Form column ── */
.cta-form-col {
  padding: 70px 48px 70px 0;
}

@media (max-width: 991px) {
  .cta-form-col {
    padding: 60px 0 40px;
  }
}

.cta-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247, 148, 29, 0.12);
  border: 1px solid rgba(247, 148, 29, 0.28);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.cta-form-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 8px;
}

.cta-form-title span {
  color: var(--orange);
}

.cta-form-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  line-height: 1.65;
}

/* Form controls */
.cta-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-form .form-group.full {
  grid-column: 1 / -1;
}

.cta-form label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 11px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cta-form select option {
  background: var(--navy-dark);
  color: var(--white);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: var(--orange);
  background: rgba(247, 148, 29, 0.07);
}

.cta-form textarea {
  resize: none;
  height: 110px;
}

/* Select arrow */
.cta-select-wrap {
  position: relative;
}

.cta-select-wrap::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  pointer-events: none;
}

/* Submit button */
.btn-cta-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(247, 148, 29, 0.32);
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  margin-top: 6px;
}

.btn-cta-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(247, 148, 29, 0.42);
}

/* ── RIGHT — Contact info column ── */
.cta-info-col {
  padding: 70px 0 70px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) {
  .cta-info-col {
    padding: 0 0 60px;
  }
}

.cta-info-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.cta-info-title span {
  color: var(--orange);
}

.cta-info-sub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Image in contact col */
.cta-info-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cta-info-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.cta-info-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(247, 148, 29, 0.25) 0%,
    rgba(27, 42, 107, 0.4) 100%
  );
}

.cta-info-img-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.3;
}

.cta-info-img-text span {
  color: var(--orange);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Contact items */
.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cta-contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(247, 148, 29, 0.14);
  border: 1px solid rgba(247, 148, 29, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
}

.cta-contact-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}

.cta-contact-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.cta-contact-value a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.cta-contact-value a:hover {
  color: var(--orange);
}

/* Social row */
.cta-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.cta-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.cta-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

/* Logo + about col */
.footer-logo-img {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.footer-logo-text span {
  color: var(--orange);
}

.footer-about {
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
}

/* Certifications badges */
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-cert-badge i {
  color: var(--orange);
  font-size: 0.62rem;
}

/* Column title */
.footer-col-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

/* Link lists */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.87rem;
  transition:
    color var(--transition),
    gap var(--transition);
}

.footer-links li a i {
  color: var(--orange);
  font-size: 0.55rem;
}

.footer-links li a:hover {
  color: var(--white);
  gap: 12px;
}

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 4px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.87rem;
  outline: none;
  transition: border-color var(--transition);
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form input:focus {
  border-color: var(--orange);
}

.footer-newsletter-form button {
  padding: 10px 16px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background var(--transition);
}

.footer-newsletter-form button:hover {
  background: var(--orange-dark);
}

/* Footer image */
.footer-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.footer-img-wrap img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

/* Contact mini-list */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 0.85rem;
  margin-top: 2px;
  min-width: 14px;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.55;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--orange);
}

/* Social row in footer */
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-copy span {
  color: var(--orange);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .testi-section,
  .faq-section {
    padding: 60px 0;
  }

  .cta-section::before {
    display: none;
  }

  .faq-img-wrap img {
    min-height: 280px;
  }

  .cta-form .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .footer-newsletter-form {
    flex-direction: column;
  }

  .footer-newsletter-form input {
    border-right: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }

  .footer-newsletter-form button {
    border-radius: 8px;
  }
}

/* ══════════════════════════════════════════════
       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(--orange);
  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(--orange);
  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(--orange);
  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,
    rgb(63 60 150 / 67%) 0%,
    rgb(62 62 149 / 66%) 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(--phero-blue),
    #60a5fa,
    var(--phero-blue)
  );
  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(--orange);
}

.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(--orange);
}

.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(--orange-dark);
  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(--orange);
  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(--orange);
  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(--orange);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--orange);
}

.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;
  }
}


/* ── MEGA DROPDOWN PANEL ──────────────────────────────────────── */
.mega-panel {
  position: absolute;
  top: calc(100% + 0px);
  left: 100%;
  transform: translateX(-50%) translateY(10px);
  min-width:1380px;
  width: 100%;
  background: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 20px 60px rgba(27,42,107,0.15);
  border: 1px solid rgba(27,42,107,0.08);
  border-top: 3px solid var(--orange);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 500;
  display: flex;
  flex-direction: column;
}
 
.main-nav > li:hover > .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-56%) translateY(0);
}
 
/* ── COLUMNS GRID ── */
.mega-cols {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid rgba(27,42,107,0.07);
}
 
.mega-col-item {
  padding: 0;
  border-right: 1px solid rgba(27,42,107,0.07);
  display: flex;
  flex-direction: column;
}
.mega-col-item:last-child { border-right: none; }
 
/* Image zone */
.mega-col-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #f5f6fa;
  border-bottom: 1px solid rgba(27,42,107,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mega-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.mega-col-item:hover .mega-col-img img { transform: scale(1.05); }
 
/* Column heading */
.mega-col-head {
  padding: 16px 20px 8px;
}
.mega-col-cat {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  margin-bottom: 8px;
}
.mega-col-cat i { color: var(--orange); font-size: 0.9rem; }
 
/* Links list */
.mega-col-links {
  list-style: none;
  padding: 0 2px 16px;
  margin: 0;
  flex: 1;
}
.mega-col-links li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  line-height: 1.3;
}
.mega-col-links li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
}
.mega-col-links li a:hover {
  background: rgba(247,148,29,0.07);
  color: var(--orange);
  padding-left: 12px;
}
.mega-col-links li a:hover::before { opacity: 1; transform: scale(1.3); }
 
/* ── FOOTER BAR ── */
.mega-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: #f8f9fc;
  border-radius: 0 0 14px 14px;
  flex-wrap: wrap;
  gap: 10px;
}
.mega-footer-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.mega-footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.mega-footer-tag i { color: var(--orange); font-size: 0.72rem; }
.mega-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 20px;
  border-radius: 7px;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}
.mega-footer-cta:hover { background: var(--orange-dark); color: #fff; transform: translateY(-1px); }
 
/* ── RESPONSIVE: hide mega on mobile, keep existing mobile drawer ── */
@media (max-width: 991px) {
  .mega-panel { display: none !important; }
}

.cat-tile-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      background: #fff;
      border-radius: 16px;
      border: 1px solid rgba(27, 42, 107, 0.08);
      box-shadow: 0 2px 18px rgba(27, 42, 107, 0.07);
      overflow: hidden;
      margin-bottom: 56px;
    }

    .cat-tile {
      display: flex;
      flex-direction: column;
      align-items: center;
      /*justify-content: center;*/
      padding: 28px 16px 22px;
      cursor: pointer;
      border-right: 1px solid rgba(27, 42, 107, 0.07);
      border-bottom: 1px solid rgba(27, 42, 107, 0.07);
      transition: background 0.25s;
      text-decoration: none;
    }

    .cat-tile:last-child {
      border-right: none;
    }

    .cat-tile:hover {
      background: rgba(247, 148, 29, 0.05);
    }

    .cat-tile.active {
      background: rgba(247, 148, 29, 0.07);
    }

    .cat-tile-svg {
      width: 65%;
      height: auto;
      margin-bottom: 14px;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .cat-tile:hover .cat-tile-svg,
    .cat-tile.active .cat-tile-svg {
      transform: translateY(-5px) scale(1.05);
    }

    .cat-tile-name {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--navy);
      text-align: center;
      line-height: 1.2;
    }

    .cat-tile:hover .cat-tile-name,
    .cat-tile.active .cat-tile-name {
      color: var(--orange);
    }

    .cat-tile-count {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 4px;
      display: contents;
    }

    .cat-tile-count a{
      padding: 3px 0;
      font-size:15px;
    }

    @media (max-width: 1199px) {
      .cat-tile-row {
        grid-template-columns: repeat(3, 1fr);
      }

      .cat-tile {
        border-bottom: 1px solid rgba(27, 42, 107, 0.07);
      }
    }

    @media (max-width: 575px) {
      .cat-tile-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .cat-tile-svg {
        width: 56px;
        height: 56px;
      }
    }
    
    /* ── TAB NAV BAR ────────────────────────────── */
    .pdt-tabs-wrap {
      background: #fff;
      border-bottom: 1px solid rgba(27, 42, 107, 0.1);
      z-index: 90;
      box-shadow: 0 2px 12px rgba(27, 42, 107, 0.06);
    }

    .pdt-tab-nav {
      display: flex;
      align-items: center;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pdt-tab-nav::-webkit-scrollbar {
      display: none;
    }

    .pdt-tab-nav li {
      flex-shrink: 0;
    }

    .pdt-tab-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 0.92rem;
      letter-spacing: 0.3px;
      color: var(--text-muted);
      padding: 16px 24px;
      background: none;
      border: none;
      border-bottom: 3px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: color 0.22s, border-color 0.22s;
      position: relative;
    }

    .pdt-tab-btn i {
      font-size: 0.8rem;
    }

    .pdt-tab-btn:hover {
      color: var(--navy);
    }

    .pdt-tab-btn.active {
      color: var(--orange);
      border-bottom-color: var(--orange);
    }

    /* Review count badge */
    .pdt-tab-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(247, 148, 29, 0.12);
      color: var(--orange);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.68rem;
      min-width: 22px;
      height: 22px;
      padding: 0 6px;
      border-radius: 20px;
      border: 1px solid rgba(247, 148, 29, 0.25);
    }

    .pdt-tab-btn.active .pdt-tab-badge {
      background: var(--orange);
      color: #fff;
      border-color: var(--orange);
    }

    /* ── TAB PANELS WRAPPER ─────────────────────── */
    .pdt-panels-wrap {
      background: #fff;
      padding: 44px 0 60px;
    }

    .pdt-panel {
      display: none;
    }

    .pdt-panel.active {
      display: block;
    }

    /* ═══════════════════════════════════════════════
       PANEL 1 — DESCRIPTION
       Left: CKEditor content | Right: Key Highlights
    ═══════════════════════════════════════════════ */

    /* ── CKEditor content wrapper ───────────────── */
    /* All rules MUST be parented under .pdt-ck-content */
    .pdt-ck-content {
      font-family: var(--font-body);
      font-size: 0.94rem;
      line-height: 1.8;
      color: var(--text-muted);
    }

    /* Paragraphs */
    .pdt-ck-content p {
      margin-bottom: 18px;
      line-height: 1.8;
    }

    .pdt-ck-content p:last-child {
      margin-bottom: 0;
    }

    /* Bold & italic */
    .pdt-ck-content strong,
    .pdt-ck-content b {
      font-weight: 600;
      color: var(--text-dark);
    }

    .pdt-ck-content em,
    .pdt-ck-content i {
      font-style: italic;
      color: var(--text-muted);
    }

    /* Unordered list */
    .pdt-ck-content ul {
      list-style: none;
      padding: 0;
      margin: 0 0 18px;
    }

    .pdt-ck-content ul li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 5px 0;
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .pdt-ck-content ul li::before {
      content: '\f058';
      /* fa-circle-check */
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--orange);
      font-size: 0.85rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* Ordered list */
    .pdt-ck-content ol {
      padding-left: 20px;
      margin: 0 0 18px;
      counter-reset: pdt-ol;
      list-style: none;
    }

    .pdt-ck-content ol li {
      counter-increment: pdt-ol;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 5px 0;
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .pdt-ck-content ol li::before {
      content: counter(pdt-ol);
      min-width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.72rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* Blockquote */
    .pdt-ck-content blockquote {
      border-left: 4px solid var(--orange);
      background: rgba(247, 148, 29, 0.05);
      margin: 20px 0;
      padding: 14px 20px;
      border-radius: 0 8px 8px 0;
      font-style: italic;
      color: var(--text-dark);
    }

    .pdt-ck-content blockquote p {
      margin-bottom: 0;
    }

    /* Horizontal rule */
    .pdt-ck-content hr {
      border: none;
      border-top: 1px solid rgba(27, 42, 107, 0.1);
      margin: 24px 0;
    }

    /* Inline code */
    .pdt-ck-content code {
      background: rgba(27, 42, 107, 0.06);
      color: var(--navy);
      font-size: 0.85rem;
      padding: 2px 7px;
      border-radius: 4px;
    }

    /* Links */
    .pdt-ck-content a {
      color: var(--orange);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
    }

    .pdt-ck-content a:hover {
      color: var(--orange-dark);
    }

    /* Images from CKEditor */
    .pdt-ck-content img,
    .pdt-ck-content figure img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
    }

    .pdt-ck-content figure {
      margin: 20px 0;
    }

    .pdt-ck-content figcaption {
      text-align: center;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 8px;
    }

    /* ── TABLE — scoped under .pdt-ck-content ────── */
    /* PARENT CLASS IS REQUIRED — do not remove .pdt-ck-content */
    .pdt-ck-content table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      font-size: 0.88rem;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(27, 42, 107, 0.08);
    }

    .pdt-ck-content table thead,
    .pdt-ck-content table thead tr,
    .pdt-ck-content table thead th {
      background: var(--navy);
      color: #fff;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      padding: 13px 18px;
      text-align: left;
      border: none;
    }

    .pdt-ck-content table tbody tr {
      border-bottom: 1px solid rgba(27, 42, 107, 0.07);
      transition: background 0.2s;
    }

    .pdt-ck-content table tbody tr:hover {
      background: rgba(247, 148, 29, 0.04);
    }

    .pdt-ck-content table tbody tr:last-child {
      border-bottom: none;
    }

    .pdt-ck-content table tbody td {
      padding: 11px 18px;
      color: var(--text-muted);
      vertical-align: top;
      border: none;
    }

    .pdt-ck-content table tbody td:first-child {
      font-weight: 600;
      color: var(--text-dark);
      background: rgba(27, 42, 107, 0.025);
      white-space: nowrap;
    }

    /* Responsive table scroll */
    .pdt-ck-content .table,
    .pdt-ck-content .ck-table-resized {
      overflow-x: auto;
      display: block;
    }

    /* ── KEY HIGHLIGHTS (right column) ─────────── */
    .pdt-highlights {
      background: #f8f9fc;
      border-radius: 14px;
      border: 1px solid rgba(27, 42, 107, 0.07);
      padding: 28px 26px;
      height: 100%;
    }

    .pdt-hl-head {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 2px solid rgba(27, 42, 107, 0.08);
      position: relative;
    }

    .pdt-hl-head::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 48px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }

    .pdt-hl-head i {
      color: var(--orange);
      font-size: 1rem;
    }

    .pdt-hl-head span {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--navy);
    }

    .pdt-hl-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .pdt-hl-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .pdt-hl-list li i {
      color: var(--orange);
      font-size: 0.9rem;
      margin-top: 1px;
      flex-shrink: 0;
    }

    /* ═══════════════════════════════════════════════
       PANEL 2 — SPECIFICATIONS (standalone table)
    ═══════════════════════════════════════════════ */
    /* Specs table uses same .pdt-ck-content wrapper
       so all table styles above apply automatically  */

    /* ═══════════════════════════════════════════════
       PANEL 3 — DOWNLOADS
    ═══════════════════════════════════════════════ */
    .pdt-downloads-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }

    .pdt-dl-card {
      display: flex;
      align-items: center;
      gap: 16px;
      background: #f8f9fc;
      border: 1px solid rgba(27, 42, 107, 0.08);
      border-radius: 12px;
      padding: 18px 20px;
      transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
      text-decoration: none;
    }

    .pdt-dl-card:hover {
      box-shadow: 0 8px 28px rgba(27, 42, 107, 0.10);
      border-color: rgba(247, 148, 29, 0.3);
      transform: translateY(-2px);
    }

    .pdt-dl-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }

    .pdt-dl-icon.pdf {
      background: rgba(220, 53, 69, 0.1);
      color: #dc3545;
    }

    .pdt-dl-icon.dwg {
      background: rgba(247, 148, 29, 0.1);
      color: var(--orange);
    }

    .pdt-dl-icon.xlsx {
      background: rgba(25, 135, 84, 0.1);
      color: #198754;
    }

    .pdt-dl-icon.doc {
      background: rgba(27, 42, 107, 0.1);
      color: var(--navy);
    }

    .pdt-dl-name {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--navy);
      margin-bottom: 3px;
      transition: color 0.2s;
    }

    .pdt-dl-card:hover .pdt-dl-name {
      color: var(--orange);
    }

    .pdt-dl-meta {
      font-size: 0.76rem;
      color: var(--text-muted);
    }

    .pdt-dl-arrow {
      margin-left: auto;
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid rgba(27, 42, 107, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 0.8rem;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .pdt-dl-card:hover .pdt-dl-arrow {
      background: var(--orange);
      color: #fff;
      border-color: var(--orange);
    }

    /* ═══════════════════════════════════════════════
       PANEL 4 — REVIEWS
    ═══════════════════════════════════════════════ */
    .pdt-review-summary {
      display: flex;
      align-items: center;
      gap: 32px;
      background: #f8f9fc;
      border-radius: 14px;
      border: 1px solid rgba(27, 42, 107, 0.07);
      padding: 28px 32px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .pdt-rev-score {
      text-align: center;
      flex-shrink: 0;
    }

    .pdt-rev-big {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 3.5rem;
      color: var(--navy);
      line-height: 1;
    }

    .pdt-rev-big span {
      color: var(--orange);
    }

    .pdt-rev-stars {
      display: flex;
      gap: 4px;
      justify-content: center;
      margin: 6px 0 4px;
    }

    .pdt-rev-stars i {
      color: var(--orange);
      font-size: 1rem;
    }

    .pdt-rev-total {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* Bars */
    .pdt-rev-bars {
      flex: 1;
      min-width: 200px;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .pdt-rev-bar-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pdt-rev-bar-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      width: 36px;
      text-align: right;
    }

    .pdt-rev-bar-track {
      flex: 1;
      height: 8px;
      background: rgba(27, 42, 107, 0.08);
      border-radius: 4px;
      overflow: hidden;
    }

    .pdt-rev-bar-fill {
      height: 100%;
      background: var(--orange);
      border-radius: 4px;
      transition: width 0.8s ease;
    }

    .pdt-rev-bar-count {
      font-size: 0.75rem;
      color: var(--text-muted);
      width: 20px;
    }

    /* Review cards */
    .pdt-review-card {
      background: #f8f9fc;
      border: 1px solid rgba(27, 42, 107, 0.07);
      border-radius: 14px;
      padding: 24px;
      margin-bottom: 16px;
      position: relative;
      transition: box-shadow 0.25s;
    }

    .pdt-review-card:last-child {
      margin-bottom: 0;
    }

    .pdt-review-card:hover {
      box-shadow: 0 6px 24px rgba(27, 42, 107, 0.09);
    }

    .pdt-rv-head {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 14px;
    }

    .pdt-rv-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1rem;
      color: #fff;
    }

    .pdt-rv-name {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
      line-height: 1.2;
    }

    .pdt-rv-role {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .pdt-rv-stars {
      display: flex;
      gap: 3px;
    }

    .pdt-rv-stars i {
      color: var(--orange);
      font-size: 0.78rem;
    }

    .pdt-rv-date {
      margin-left: auto;
      font-size: 0.74rem;
      color: var(--text-muted);
      white-space: nowrap;
    }

    .pdt-rv-verified {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(25, 135, 84, 0.08);
      color: #198754;
      border: 1px solid rgba(25, 135, 84, 0.2);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 2px 8px;
      border-radius: 4px;
      margin-left: 8px;
    }

    .pdt-rv-text {
      font-size: 0.88rem;
      line-height: 1.72;
      color: var(--text-muted);
      font-style: italic;
    }

    .pdt-rv-product-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(27, 42, 107, 0.05);
      color: var(--navy);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 4px;
      border: 1px solid rgba(27, 42, 107, 0.08);
      margin-top: 12px;
    }

    .pdt-rv-product-tag i {
      color: var(--orange);
      font-size: 0.65rem;
    }

    /* Write a review */
    .pdt-write-review {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      border-radius: 14px;
      padding: 28px 28px;
      margin-top: 28px;
    }

    .pdt-wr-title {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 18px;
    }

    .pdt-wr-title span {
      color: var(--orange);
    }

    .pdt-wr-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .pdt-wr-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .pdt-wr-group.full {
      grid-column: 1 / -1;
    }

    .pdt-wr-group label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
    }

    .pdt-wr-group input,
    .pdt-wr-group textarea,
    .pdt-wr-group select {
      background: rgba(255, 255, 255, 0.07);
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      padding: 10px 14px;
      color: #fff;
      font-family: var(--font-body);
      font-size: 0.88rem;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }

    .pdt-wr-group input::placeholder,
    .pdt-wr-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .pdt-wr-group input:focus,
    .pdt-wr-group textarea:focus,
    .pdt-wr-group select:focus {
      border-color: var(--orange);
      background: rgba(247, 148, 29, 0.07);
    }

    .pdt-wr-group textarea {
      resize: none;
      height: 90px;
    }

    /* Star rating picker */
    .pdt-star-pick {
      display: flex;
      gap: 6px;
    }

    .pdt-star-pick input {
      display: none;
    }

    .pdt-star-pick label {
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: color 0.2s;
      line-height: 1;
      text-transform: none;
      letter-spacing: 0;
    }

    .pdt-star-pick label:hover,
    .pdt-star-pick label:hover~label,
    .pdt-star-pick input:checked~label {
      color: var(--orange);
    }

    .pdt-star-pick {
      flex-direction: row-reverse;
    }

    .btn-pdt-submit {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange);
      color: #fff;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.95rem;
      padding: 11px 26px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 18px rgba(247, 148, 29, 0.32);
      transition: background 0.25s, transform 0.2s;
      margin-top: 4px;
    }

    .btn-pdt-submit:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }

    /* ── RESPONSIVE ─────────────────────────────── */
    @media (max-width: 991px) {
      .pdt-highlights {
        margin-top: 32px;
      }

      .pdt-review-summary {
        gap: 20px;
        padding: 20px;
      }
    }

    @media (max-width: 767px) {
      .pdt-tab-btn {
        padding: 14px 16px;
        font-size: 0.84rem;
      }

      .pdt-panels-wrap {
        padding: 28px 0 44px;
      }

      .pdt-wr-form {
        grid-template-columns: 1fr;
      }

      .pdt-rev-bars {
        min-width: 100%;
      }
    }

    @media (max-width: 575px) {
      .pdt-tab-btn {
        padding: 12px 14px;
        font-size: 0.8rem;
        gap: 5px;
      }

      .pdt-ck-content table tbody td:first-child {
        white-space: normal;
      }
    }