/* ========= CSS VARIABLES ========= */
:root {
  --primary: #4cb4ea;
  --primary-dk: #027dc3;
  --primary-light: #fdf0f0;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gold: #e8a020;
  --gold-l: #e8cc7a;
  --light: #fefefe;
  --white: #ffffff;
  --gap: 1.25rem;
  --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --closed: 5rem;
  --open: 30rem;
  --accent: #ff6b35;
  --base: #ca4445;
  --secondary: #232728;
  --whatsapp: #25d366;
  --whatsapp-dk: #1aab54;
  --text: #7d8081;
  --gray: #efe6e1;
  --bg: #f5ede8;
  --cream: #efe6e1;
  --ink: #1a1410;
  --rust: #b85c2b;
  --soft: #e8e0d0;
  --muted: #6b5f52;
  --accent-color: #1a8ccc;
  --dark-color: #003d71;
  --light-blue: #e8f4f8;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --success: #28a745;
  --gradient-primary: linear-gradient(135deg, #0066b2 0%, #00a0dc 100%);
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(0, 102, 178, 0.9) 0%,
    rgba(0, 160, 220, 0.9) 100%
  );

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --c2-base: #ca4445;
  --c2-base-rgb: 202, 68, 69;
  --c2-dark: #232728;
  --c2-dark-rgb: 35, 39, 40;
  --c2-white: #ffffff;
  --c2-muted: #7d8081;
  --border: #e2e2ea;
  --c2-light-bg: #f5f3f0;
  --c2-border: rgba(255, 255, 255, 0.1);
  --black: #111010;
  --dark: #1a1a1a;
  --mid: #1e1d1c;
  --muted: #888580;
  --gray: #666666;
  --border: #e4e4e7;
  --bg: #eef0f4;
  --surface: #ffffff;
  --off-white: #f8f5f0;
  --row-alt: #fafaf9;
  --topbar-bg: #0f0f0f;
  --topbar-text: #b8b8b8;
  --header-border: #ececec;
  --green: #16a34a;
  --amber: #d97706;
  --badge-sale: #e63946;
  --badge-new: #2a9d8f;
  --font-head: "Oswald", sans-serif;
  --font-display: "Playfair Display", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
  --shadow-dropdown: 0 16px 48px rgba(0, 0, 0, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* ========= TOP BAR ========= */
.topbar {
  background: var(--primary);
  padding: 2px 0;
  font-size: 13px;
  color: #fff;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgb(2 126 193);
}

.topbar .tb-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar .tb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar .tb-item i {
  font-size: 15px;
  opacity: 0.85;
}

.topbar .tb-item span {
  font-weight: 600;
  letter-spacing: 0.3px;
}

.tb-item a {
  color: var(--white);
  font-weight: 900;
}

.topbar .tb-item small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  font-weight: 300;
}

.topbar .tb-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}

.topbar .tb-right a {
  color: #fff;
  font-size: 10px;
  opacity: 0.85;
  transition: var(--transition);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.topbar .tb-right a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.topbar-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
}

/* ========= MAIN NAVBAR ========= */
.main-nav {
  background: var(--light);
  padding: 0 15px;
  /* position: absolute; */
  top: 54px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.main-nav.scrolled {
  box-shadow: 0 2px 30px rgba(200, 16, 46, 0.25);
}

.navbar-brand {
  /* padding: 14px 0; */
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: 175px;
}

.navbar-brand img {
  width: 150px;
}

.brand-logo-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
}

.brand-logo-wrap i {
  font-size: 26px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.brand-text {
  line-height: 1;
}

.brand-text .b-name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-text .b-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav links */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 22px 14px;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

.nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: #000000;
}

.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after {
  left: 0;
  right: 0;
}

.nav-menu > li > a .arrow-icon {
  font-size: 10px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.nav-menu > li:hover > a .arrow-icon {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--dark2);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  list-style: none;
}

.nav-menu > li:hover > .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom li {
  position: relative;
}

.dropdown-menu-custom li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 20px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu-custom li a:hover {
  color: #fff;
  background: #00a1ff38;
  border-left-color: var(--primary-dk);
  padding-left: 26px;
}

/* Sub-dropdown (level 3) */
.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 210px;
  background: #222;
  border-top: 3px solid var(--primary-dk);
  border-radius: 0 8px 8px 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  list-style: none;
}

.dropdown-menu-custom li:hover > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-dropdown li a {
  font-size: 13px;
  border-left: 3px solid transparent;
}

.sub-dropdown li a:hover {
  border-left-color: var(--primary-dk);
  background: #00a1ff38;
}

/* Nav right icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.nav-icon-btn:hover {
  background: var(--primary);
  color: #fff;
}

.btn-contact {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-contact:hover {
  background: var(--primary-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #027dc361;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 4.5px;
  border-radius: 2px;
  background: #000;
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  width: 28px;
}

.hamburger span:nth-child(2) {
  width: 20px;
}

.hamburger span:nth-child(3) {
  width: 28px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 28px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 28px;
}

/* ========= MOBILE SIDEBAR ========= */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(3px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--dark);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-sidebar.open {
  transform: translateX(0);
}

.mob-header {
  background: var(--dark2);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--primary);
  flex-shrink: 0;
}

.mob-header .mob-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mob-brand img {
  width: 150px;
}

.mob-header .mob-brand .mob-logo {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-header .mob-brand .mob-logo i {
  color: #fff;
  font-size: 20px;
}

.mob-header .mob-brand .mob-name {
  font-family: var(--font-head);
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.mob-header .mob-brand .mob-sub {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mob-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.mob-close:hover {
  background: var(--primary);
}

.mob-nav {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}

.mob-nav::-webkit-scrollbar {
  width: 4px;
}

.mob-nav::-webkit-scrollbar-track {
  background: transparent;
}

.mob-nav::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.mob-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mob-nav > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.mob-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

.mob-nav-link:hover::before,
.mob-nav-link.active-parent::before {
  width: 3px;
}

.mob-nav-link:hover,
.mob-nav-link.active-parent {
  color: #fff;
  padding-left: 26px;
}

.mob-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  flex-shrink: 0;
}

.mob-nav-link.active-parent .mob-arrow {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

/* Sub-menu in mobile */
.mob-submenu {
  display: none;
  background: rgba(0, 0, 0, 0.25);
}

.mob-submenu.open {
  display: block;
}

.mob-submenu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mob-submenu li a,
.mob-submenu li span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px 11px 36px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.mob-submenu li a:hover {
  color: #fff;
  padding-left: 44px;
}

.mob-submenu li span:hover {
  color: #fff;
  padding-left: 44px;
}

/* Level 3 */
.mob-sublevel {
  display: none;
  background: rgba(0, 0, 0, 0.3);
}

.mob-sublevel.open {
  display: block;
}

.mob-sublevel li a {
  padding: 10px 20px 10px 52px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

.mob-sublevel li a:hover {
  color: var(--gold);
  padding-left: 60px;
}

.mob-sub-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  flex-shrink: 0;
}

.mob-submenu li span.active-sub .mob-sub-arrow {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(90deg);
}

.mob-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark2);
  flex-shrink: 0;
}

.mob-footer .mob-contact-btn {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
  transition: var(--transition);
  margin-bottom: 12px;
}

.mob-footer .mob-contact-btn:hover {
  background: var(--primary-dk);
}

.mob-footer .mob-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.mob-footer .mob-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.mob-footer .mob-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@keyframes scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(12px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* ========= RESPONSIVE ========= */
@media (max-width: 991px) {
  .nav-menu,
  .btn-contact,
  .nav-icon-btn {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .topbar .tb-left {
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .topbar {
    display: none;
  }
}

/* ========= UTILITY ========= */
.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-2 {
  margin-right: 8px !important;
}

/* Navbar flex layout */
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-center {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

@media (max-width: 991px) {
  .nav-center {
    display: none;
  }
}

/* ============================================
       KEYFRAMES  (exact from Firdip source)
    ============================================ */
@keyframes topBottom {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes ping2 {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.85);
    opacity: 0.55;
  }
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  border-radius: 10%;
  padding: 27px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scalePop {
  from {
    opacity: 0;
    transform: scale(0.86);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lineDraw {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ─── SECTION ─────────────────────────────────────────────── */
.about-section {
  padding: 88px 0 0;
  background: #f0f2f5;
  overflow: hidden;
}

/* ─── EYEBROW ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  animation: fadeRight 0.7s ease both 0.1s;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--primary-dk);
  border-radius: 2px;
  display: inline-block;
}

/* ─── SECTION TITLE ───────────────────────────────────────── */
.section-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  animation: fadeUp 0.7s ease both 0.2s;
}

.section-title .hl {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title .hl::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: var(--primary-dk);
  border-radius: 2px;
  animation: lineDraw 0.6s ease both 0.75s;
  width: 0;
}

/* ═══════════════════════════════════════════════════════
    about-inner: clearfixed container so about-below
    naturally sits after both the float AND the text
═══════════════════════════════════════════════════════ */
.about-inner::after {
  content: "";
  display: table;
  clear: both;
}

/* ─── FLOAT IMAGE ─────────────────────────────────────── */
.about-img-float {
  float: left;
  width: 480px;
  margin: 6px 48px 48px 0;
  position: relative;
  animation: fadeLeft 0.85s ease both 0.25s;
}

.img-stack {
  position: relative;
  width: 100%;
}

.img-primary {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  position: relative;
  z-index: 2;
}

.img-secondary {
  position: absolute;
  bottom: -38px;
  right: -28px;
  width: 35%;
  object-fit: cover;
  border-radius: 4px;
  border: 4px solid #fff;
  box-shadow: 4px 8px 28px rgba(0, 0, 0, 0.15);
  z-index: 3;
  animation: scalePop 0.7s ease both 0.55s;
}

.since-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 6px 24px rgba(0, 167, 245, 0.45);
  animation: scalePop 0.6s ease both 0.5s;
  animation: topBottom 3s ease-in-out infinite;
}

.since-badge strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.since-badge span {
  font-size: 9px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
}

.iso-ribbon {
  position: absolute;
  bottom: 14px;
  left: 10px;
  background: var(--dark);
  color: var(--gold);
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: topBottom 4s ease-in-out infinite;
}

.img-corner-frame {
  position: absolute;
  bottom: -48px;
  left: -18px;
  width: 200px;
  height: 200px;
  border-left: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
  border-radius: 0 0 0 4px;
  opacity: 0.35;
  z-index: 1;
}

/* ─── TEXT CONTENT (wraps beside float) ───────────────── */
.about-text-wrap {
  /* no float, no overflow:hidden — plain block, wraps beside float */
  animation: fadeRight 0.85s ease both 0.3s;
}

.about-lead {
  font-size: 15.5px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 16px;
}

.about-lead strong {
  color: var(--dark);
  font-weight: 700;
}

.about-body {
  font-size: 14px;
  line-height: 1.92;
  color: #666;
  margin-bottom: 20px;
}

.usp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
}

.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: #444;
  line-height: 1.5;
}

.usp-list li i {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 153, 212, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

/* ─── BELOW-FLOAT BLOCK: full width, sits after both cols ─ */
.about-below {
  /* sits in normal flow after the clearfix — full container width */
  padding-top: 36px;
  border-top: 1px solid #e6e6e6;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeUp 0.7s ease both 0.55s;
}

.about-sig {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sig-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  flex-shrink: 0;
}

.sig-text strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}

.sig-text span {
  font-size: 12px;
  color: #999;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-rec {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 3px;
  text-decoration: none;
  transition:
    background 0.25s,
    gap 0.25s;
}

.btn-primary-rec:hover {
  background: var(--primary-dk);
  color: #fff;
  gap: 14px;
}

.btn-outline-rec {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--dark);
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 3px;
  border: 1.5px solid #ccc;
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s;
}

.btn-outline-rec:hover {
  border-color: var(--gold);
  color: var(--dark);
}

/* ─── STATS BAND ──────────────────────────────────────────── */
.stats-band {
  background: var(--primary);
  padding: 30px 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-dk),
    var(--primary) 55%,
    var(--primary-dk)
  );
}

.stats-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(245, 200, 0, 0.04);
  pointer-events: none;
}

.stat-card {
  text-align: center;
  padding: 10px 16px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  color: var(--primary-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin: 0 auto 12px;
}

.stat-num {
  font-family: "Rajdhani", sans-serif;
  font-size: 35px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -1px;
}

.stat-num sup {
  font-size: 22px;
  color: var(--primary-dk);
  vertical-align: super;
}

.stat-label {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-top: 7px;
}

/* ─── MISSION / VISION / VALUES ──────────────────────────── */
.mission-band {
  background: var(--white);
  padding: 70px 0 78px;
  position: relative;
}

.mission-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--gold);
}

.mvv-header {
  text-align: center;
  margin-bottom: 50px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.mission-card {
  padding: 38px 34px;
  border-right: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.mission-card:last-child {
  border-right: none;
}

.mission-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.mission-card:hover::after {
  transform: scaleX(1);
}

.mission-card:hover {
  background: #f7fbfe;
}

.mc-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.mc-icon.y {
  background: rgba(245, 200, 0, 0.12);
  color: var(--gold);
}

.mc-icon.b {
  background: rgba(0, 153, 212, 0.1);
  color: var(--primary);
}

.mc-icon.d {
  background: rgba(10, 10, 10, 0.07);
  color: var(--dark);
}

.mc-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 11px;
  letter-spacing: 0.3px;
}

.mc-text {
  font-size: 13.5px;
  color: #777;
  line-height: 1.82;
}

/* ─── CERT TRUST BAR ──────────────────────────────────────── */
.cert-band {
  background: var(--primary);
  padding: 44px 0;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.cert-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin-bottom: 26px;
}

.cert-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s;
}

.cert-item i {
  font-size: 20px;
  color: #ffffff;
  transition: color 0.25s;
}

.cert-item:hover {
  color: var(--primary);
}

.cert-item:hover i {
  color: var(--primary);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .about-img-float {
    float: none;
    width: 100%;
    margin: 0 0 84px;
  }

  .img-secondary {
    right: -14px;
    bottom: -30px;
  }

  .since-badge {
    top: -14px;
    right: -8px;
  }

  .usp-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .mission-card:last-child {
    border-bottom: none;
  }

  .about-section {
    padding: 56px 0 0;
  }

  .cert-items {
    gap: 24px;
  }

  .about-below {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .stat-num {
    font-size: 38px;
  }

  .about-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ════════════════════════════════
       SHARED SECTION STYLES
    ════════════════════════════════ */
.prod-section {
  padding: 40px 0 40px;
}

.prod-section.alt-bg {
  background: var(--bg2);
}

/* Section header */
.sec-head {
  margin-bottom: 52px;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.sec-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.sec-title em {
  font-style: normal;
  color: var(--primary);
}

.sec-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 480px;
  margin-top: 10px;
}

.sec-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border: 1.5px solid var(--primary);
  border-radius: 6px;
  padding: 9px 20px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.sec-view-all:hover {
  background: var(--primary);
  color: var(--white);
}

.sec-view-all i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.sec-view-all:hover i {
  transform: translateX(3px);
}

/* ════════════════════════════════
       PRODUCT CARD  (shared by both)
    ════════════════════════════════ */
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    box-shadow 0.28s,
    transform 0.28s,
    border-color 0.28s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
  transform: translateY(-5px);
  border-color: rgba(200, 40, 30, 0.2);
}

/* Image wrapper */
.prod-img-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--bg);
  aspect-ratio: 4 / 4;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.06);
}

/* Image overlay on hover */
.prod-img-wrap .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.prod-img-wrap .img-overlay span {
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.prod-card:hover .prod-img-wrap .img-overlay {
  background: rgba(26, 26, 46, 0.28);
}

.prod-card:hover .prod-img-wrap .img-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* Category badge */
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* Card body */
.prod-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Title link */
.prod-title-link {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.25;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.prod-title-link:hover {
  color: var(--primary);
}

/* Short divider */
.prod-line {
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 10px;
  opacity: 0.7;
}

/* Description */
.prod-desc {
  font-size: 0.85rem;
  line-height: 1.72;
  color: var(--muted);
  flex: 1;
  margin: 0;
}

/* Card footer link */
.prod-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-enquire {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.2s,
    color 0.2s;
}

.prod-enquire:hover {
  gap: 10px;
  color: var(--primary-dk);
}

.prod-enquire i {
  font-size: 0.65rem;
}

.prod-share {
  height: 30px;
  padding: 5px 10px;
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.72rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

/* ════════════════════════════════
       SECTION 1 – GRID
    ════════════════════════════════ */
/* Nothing extra needed — Bootstrap g-4 handles it */

/* ════════════════════════════════
       SECTION 2 – OWL CAROUSEL
    ════════════════════════════════ */
.owl-carousel .prod-card {
  margin: 6px 4px 16px;
  /* breathing room so shadow isn't clipped */
}

/* Custom nav buttons */
.owl-nav-custom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.owl-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}

.owl-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

/* Custom dots */
.owl-theme .owl-dots {
  margin-top: 28px !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: var(--border) !important;
  margin: 0 4px !important;
  border-radius: 4px !important;
  transition:
    width 0.3s,
    background 0.3s !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  width: 24px !important;
  background: var(--primary) !important;
}

/* Hide default owl nav */
.owl-theme .owl-nav {
  display: none !important;
}

/* Carousel wrapper — give it overflow visible so card hover shadows show */
.owl-carousel.owl-loaded {
  overflow: visible;
}

.owl-stage-outer {
  overflow: hidden !important;
}

/* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
@media (max-width: 575px) {
  .prod-section {
    padding: 60px 0 68px;
  }

  .sec-head .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 14px !important;
  }
}

/* ══ SECTION ══ */
.wcu-section {
  background: var(--surface);
  padding: 40px 0 40px;
  overflow: hidden;
}

/* ══ EYEBROW ══ */
.wcu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.wcu-eyebrow .line {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ══ HEADLINE ══ */
.wcu-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.17;
  color: var(--black);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.wcu-headline em {
  font-style: italic;
  color: var(--primary);
}

.wcu-lead {
  font-size: 15px;
  line-height: 1.77;
  color: var(--muted);
  max-width: 400px;
}

/* ══ TRUST PILLS ══ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 14px;
  text-decoration: none;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.trust-pill:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.trust-pill i {
  font-size: 12px;
}

/* ══ CTA ══ */
.btn-wcu-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  margin-top: 30px;
  border: none;
}

.btn-wcu-primary:hover {
  background: var(--primary-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(183, 6, 22, 0.24);
}

.btn-wcu-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition:
    border-color var(--transition),
    color var(--transition);
  margin-top: 30px;
}

.btn-wcu-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ══ IMAGE STACK ══ */
.img-stack {
  position: relative;
  height: 440px;
}

.img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 74%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dropdown);
}

.img-secondary {
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 50%;
  height: 56%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dropdown);
  border: 5px solid var(--surface);
}

/* ══ FLOATING BADGE ══ */
.img-badge {
  position: absolute;
  top: 28px;
  left: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 10;
  animation: floatBadge 3.6s ease-in-out infinite;
  border: 1px solid var(--border);
  min-width: 170px;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.badge-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.badge-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

/* ══ RATING TAG ══ */
.rating-tag {
  position: absolute;
  bottom: 14px;
  right: -10px;
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.rating-tag .stars i {
  color: var(--amber);
  font-size: 10px;
}

/* ══ FEATURE CARDS ══ */
.features-wrap {
  margin-top: 56px;
}

.feat-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(183, 6, 22, 0.12);
}

.feat-card:hover::after {
  transform: scaleX(1);
}

.feat-icon {
  width: 46px;
  height: 46px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 15px;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.feat-card:hover .feat-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.feat-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}

.feat-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

/* ══ STATS BAR ══ */
.stats-bar {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-col {
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.stat-col + .stat-col {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.stat-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-val sup {
  font-size: 19px;
  color: var(--primary);
}

.stat-tag {
  font-size: 11px;
  color: var(--topbar-text);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

.stat-cta-col {
  flex-shrink: 0;
}

.btn-stat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 11px 22px;
  letter-spacing: 0.03em;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.btn-stat-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 991.98px) {
  .img-stack {
    height: 340px;
    margin-bottom: 56px;
  }
}

@media (max-width: 767.98px) {
  .wcu-section {
    padding: 64px 0;
  }

  .img-stack {
    height: 280px;
  }

  .stats-bar {
    padding: 24px 20px;
  }

  .stat-val {
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {
  .img-stack {
    height: 220px;
  }

  .img-badge {
    display: none;
  }

  .rating-tag {
    display: none;
  }

  .stat-col + .stat-col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-cta-col {
    width: 100%;
    text-align: center;
  }
}

/* ========== SECTION COMMON STYLES ========== */
.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 100px 0;
  background: #f8fafb;
}

.testimonials-carousel {
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  margin: 15px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 25px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 25px;
  border-top: 2px solid var(--light-blue);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.author-designation {
  font-size: 14px;
  color: var(--text-light);
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(0, 102, 178, 0.2);
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active span {
  width: 35px;
  border-radius: 10px;
  background: var(--primary);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-content {
  padding-right: 40px;
}

.faq-help-box {
  display: flex;
  gap: 20px;
  background: var(--light-blue);
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
}

.help-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-icon i {
  font-size: 28px;
  color: var(--white);
}

.help-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.help-text {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.help-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.help-link:hover {
  gap: 15px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--white);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 102, 178, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: var(--light-blue);
  color: var(--primary);
}

.faq-question i {
  font-size: 14px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 28px 25px 28px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 100px 0;
  background-image: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgb(0 102 178 / 61%) 0%,
    rgb(0 61 113 / 45%) 100%
  );
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 22px;
  color: var(--primary);
}

.contact-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
}

.contact-value a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-value a:hover {
  color: var(--light-blue);
}

.contact-form-box {
  background: var(--white);
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-group {
  position: relative;
  margin-bottom: 0;
}

.form-control {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 102, 178, 0.1);
}

.form-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 16px;
  pointer-events: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}

.submit-btn {
  width: 100%;
  padding: 16px 35px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.submit-btn:hover {
  background: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 102, 178, 0.4);
}

.map-container {
  margin-top: 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ========== FOOTER ========== */
.footer {
  background: #f8fafb;
  padding-top: 80px;
}

.footer-top {
  padding-bottom: 50px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 75px;
  width: auto;
}

.footer-about {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--light-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-title {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-links a i {
  font-size: 12px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 10px;
}

.footer-links a:hover i {
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact i {
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact span {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 25px 0;
  border-top: 2px solid #e9ecef;
}

.footer-copyright {
  font-size: 15px;
  color: var(--text-light);
}

.footer-copyright span {
  color: var(--primary);
  font-weight: 700;
}

.footer-legal span {
  color: var(--primary);
  font-weight: 700;
}

.footer-legal {
  text-align: right;
}

.footer-legal a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}

.footer-legal .separator {
  margin: 0 12px;
  color: var(--text-light);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .section-title {
    font-size: 36px;
  }

  .faq-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .footer-legal {
    text-align: left;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .testimonials-section,
  .faq-section,
  .cta-section {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 30px;
    margin: 10px;
  }

  .contact-form-box {
    padding: 30px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-top {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 26px;
  }

  .contact-info-item {
    padding: 20px;
  }

  .contact-form-box {
    padding: 25px;
  }
}

/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Tooltip bubble above the button */
.wa-tooltip {
  background: #fff;
  border-radius: 14px 14px 14px 4px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
  margin-bottom: 10px;
  max-width: 210px;
  position: relative;
  transform: translateY(6px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom left;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-tip-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}
.wa-tip-name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
  }
}
.wa-tip-msg {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.5;
}
/* Tiny tail on tooltip */
.wa-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  border: 5px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

/* Main WA button */
.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.wa-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}
.wa-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}
@keyframes wa-spin-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Second pulse ring */
.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Circle core */
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}
.wa-btn:hover .wa-circle {
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 10px 36px rgba(37, 211, 102, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.wa-circle i {
  font-size: 1.55rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Chat" label pill that slides out on hover */
.wa-label-pill {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.wa-btn:hover .wa-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 3;
  animation: badge-bounce 0.6s 0.5s ease both;
}
@keyframes badge-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

/* ══════════════════════════════════════════════
       GO TO TOP — RIGHT BOTTOM
    ══════════════════════════════════════════════ */
.gtt-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Circular progress track */
.gtt-btn {
  position: relative;
  width: 54px;
  height: 54px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG progress ring */
.gtt-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.gtt-track {
  fill: none;
  stroke: rgba(22, 39, 64, 0.1);
  stroke-width: 2.5;
}
.gtt-progress {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.1s linear;
}

/* Inner circle */
.gtt-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(22, 39, 64, 0.35);
  transition:
    background 0.25s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-btn:hover .gtt-inner {
  background: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(139, 26, 46, 0.45);
}
.gtt-btn:hover .gtt-inner i {
  animation: arrow-up 0.4s ease both;
}
@keyframes arrow-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  45% {
    transform: translateY(-6px);
    opacity: 0;
  }
  46% {
    transform: translateY(6px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tiny % label below */
.gtt-pct {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted, #6b7a8d);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1;
}

/* ── Responsive tweak ── */
@media (max-width: 480px) {
  .wa-float {
    left: 16px;
    bottom: 20px;
  }
  .gtt-float {
    right: 16px;
    bottom: 20px;
  }
  .wa-circle {
    width: 52px;
    height: 52px;
  }
  .wa-circle i {
    font-size: 1.35rem;
  }
}

.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59, 130, 246, 0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255, 255, 255, 0.65);
  --phero-sep: rgba(255, 255, 255, 0.4);

  font-family: "DM Sans", sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 30, 60, 0.82) 0%,
    rgba(29, 78, 216, 0.55) 100%
  );
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--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(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--phero-blue);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.sitemap-title {
  color: #2b2a28;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sitemap-card {
  background-color: white;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: #2b2a28;
}

.sitemap-card:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(6, 137, 213, 0.3);
  text-decoration: none;
}

.card-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.sitemap-card:hover .card-description {
  opacity: 1;
}

.category-section {
  margin-bottom: 40px;
}

.category-header {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary);
}

.main-links {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .sitemap-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .category-header {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .sitemap-card {
    padding: 15px;
  }

  .card-label {
    font-size: 1rem;
  }
}
