*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #e63946;
  --primary-d: #6b1223;
  --secondary: #2a9d8f;
  --accent: #f4a261;
  --dark: #264653;
  --light: #f8f9fa;
  --light-bg: #f8f9fa;
  --text: #424242;
  --text-main: #1d2d44;
  --text-sub: #6b7a8d;
  --navy: #1d2d44;
  --navy-l: #1f3a5f;
  --teal: #2a9d8f;
  --amber: #f4a261;
  --off-white: #ffffff;
  --gold: #c9a84c;
  --gold-l: #e8cc7a;
  --gold-xs: rgba(201, 168, 76, 0.12);
  --white: #ffffff;
  --off: #f7f4f0;
  --off2: #eef1f6;
  --muted: #6b7a8d;
  --mid: #1e1d1c;
  --bg: #eef0f4;
  --surface: #ffffff;
  --row-alt: #fafaf9;
  --topbar-bg: #0f0f0f;
  --topbar-text: #b8b8b8;
  --header-border: #ececec;
  --green: #16a34a;
  --badge-sale: #e63946;
  --badge-new: #2a9d8f;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.22s ease;
  --font-head: "Outfit", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-disp: "Bebas Neue", cursive;
  --shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
  --shadow-sm: 0 2px 14px rgba(22, 39, 64, 0.07);
  --shadow-md: 0 8px 36px rgba(22, 39, 64, 0.13);
  --shadow-lg: 0 16px 56px rgba(22, 39, 64, 0.17);
  --sh-sm: 0 2px 14px rgba(22, 39, 64, 0.07);
  --sh-md: 0 8px 36px rgba(22, 39, 64, 0.12);
  --sh-lg: 0 20px 60px rgba(22, 39, 64, 0.16);
  --shadow-dropdown: 0 16px 48px rgba(0, 0, 0, 0.14);
  --border: rgba(29, 45, 68, 0.1); 

  --crimson: #e63946;
  --primary-d: #6b1223;
  --crimson-l: #b82240;
  --crimson-xs: rgba(139, 26, 46, 0.07);
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: var(--text);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #e0e0e0;
  padding: 3px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.top-bar-left {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.top-bar-item i {
  color: var(--primary);
  font-size: 1rem;
}

.top-bar-item:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.top-bar-divider {
  width: 1px;
  height: 25px;
  background: #e0e0e0;
}

.top-bar-right {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.social-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 11px;
}

.social-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar-main {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand-custom {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand-custom span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  letter-spacing: 1px;
}

.nav-menu-items {
  list-style: none;
  display: flex;
  gap: 3.5rem;
  margin: 0;
  align-items: center;
}

.nav-menu-items .nav-link-item {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link-item:hover {
  color: var(--primary);
}

.nav-link-item:hover::after {
  width: 100%;
}

.nav-item {
  position: relative;
}

.dropdown-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  min-width: 220px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 1rem;
  z-index: 2000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav-item:hover .dropdown-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-link {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-item-link:hover {
  background: #f0f7ff;
  color: var(--primary);
  padding-left: 1.8rem;
}

.submenu-wrapper {
  position: relative;
}

.submenu-wrapper > .dropdown-item-link::after {
  content: "›";
  position: absolute;
  right: 1.2rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.submenu-level-2 {
  position: absolute;
  left: 100%;
  top: 0;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  min-width: 220px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  margin-left: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 2000;
}

.submenu-wrapper:hover .submenu-level-2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu-level-2-item {
  position: relative;
}

.submenu-level-2-item > .dropdown-item-link::after {
  content: "›";
  position: absolute;
  right: 1.2rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.submenu-level-3 {
  position: absolute;
  left: 100%;
  top: 0;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  min-width: 200px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  margin-left: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 2000;
}

.submenu-level-2-item:hover .submenu-level-3 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.btn-get-quote {
  background: linear-gradient(135deg, var(--primary), #d32f2f);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.25);
}

.btn-get-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
  color: white;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background-image: url(../image/img/slider-bg.webp);
  background-size: Contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: clip;
  /* min-height: 90vh; */
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  border-bottom: 2px solid var(--primary);
}

.deco-blob-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgb(224 54 63 / 18%) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 1;
  animation: float1 6s ease-in-out infinite;
}

.deco-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgb(224 54 63 / 18%) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  z-index: 1;
  animation: float2 8s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(50px);
  }
}

/* Floating elements */
.floating-element {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: floatElement 6s ease-in-out infinite;
}

/* Circle */
.float-1 {
  width: 70px;
  height: 70px;
  background: rgba(230, 57, 70, 0.1);
  border: 1.5px solid rgba(230, 57, 70, 0.2);
  border-radius: 50%;
  top: 8%;
  left: 4%;
  animation-delay: 0s;
  animation-duration: 7s;
}

/* Rotated square / diamond */
.float-2 {
  width: 44px;
  height: 44px;
  background: rgba(42, 157, 143, 0.12);
  border: 1.5px solid rgba(42, 157, 143, 0.25);
  border-radius: 6px;
  transform-origin: center;
  top: 28%;
  right: 8%;
  animation-delay: 1s;
  animation-duration: 8s;
  rotate: 45deg;
}

/* Large soft circle */
.float-3 {
  width: 110px;
  height: 110px;
  background: rgba(244, 162, 97, 0.09);
  border: 1.5px solid rgba(244, 162, 97, 0.18);
  border-radius: 50%;
  bottom: 12%;
  left: 12%;
  animation-delay: 2s;
  animation-duration: 9s;
}

/* Small solid circle accent */
.float-4 {
  width: 18px;
  height: 18px;
  background: rgba(230, 57, 70, 0.22);
  border-radius: 50%;
  top: 55%;
  right: 4%;
  animation-delay: 1.5s;
  animation-duration: 5s;
}

/* Rounded square */
.float-5 {
  width: 56px;
  height: 56px;
  background: rgba(42, 157, 143, 0.09);
  border: 1.5px solid rgba(42, 157, 143, 0.2);
  border-radius: 12px;
  bottom: 22%;
  right: 18%;
  animation-delay: 0.5s;
  animation-duration: 7s;
}

/* Triangle via clip-path */
.float-6 {
  width: 52px;
  height: 52px;
  background: rgba(230, 57, 70, 0.13);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: 70%;
  left: 40%;
  animation-delay: 3s;
  animation-duration: 10s;
}

/* Thin ring */
.float-7 {
  width: 90px;
  height: 90px;
  background: transparent;
  border: 2px solid rgba(230, 57, 70, 0.15);
  border-radius: 50%;
  top: 15%;
  left: 38%;
  animation-delay: 2.5s;
  animation-duration: 12s;
}

/* Small diamond */
.float-8 {
  width: 28px;
  height: 28px;
  background: rgba(42, 157, 143, 0.18);
  border-radius: 4px;
  rotate: 45deg;
  top: 42%;
  left: 22%;
  animation-delay: 4s;
  animation-duration: 6s;
}

@keyframes floatElement {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  25% {
    transform: translateY(-18px) translateX(8px);
  }

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

  75% {
    transform: translateY(-16px) translateX(6px);
  }
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-left {
  max-width: 100%;
}

.hero-tag {
  display: inline-block;
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.hero-heading {
  font-family: "Outfit", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-heading .gradient-text {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary-cta {
  background: linear-gradient(135deg, var(--primary), #d32f2f);
  color: white;
  padding: 1.1rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.25);
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(230, 57, 70, 0.35);
  color: white;
}

.btn-secondary-cta {
  background: transparent;
  color: var(--dark);
  padding: 1rem 2.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-secondary-cta:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(230, 57, 70, 0.05);
}

/* ===== SLIDER CONTAINER ===== */
.hero-right {
  position: relative;
  height: 550px;
  width: 500px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  /* overflow visible so arrows can protrude on desktop */
  overflow: visible;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* The swiper itself clips its own slides */
.swiper-hero {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.slide-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff999973 0%, #c9c9c9b4 100%);
  padding: 3rem;
}

.slide-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.slide-info-box {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.slide-title {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.slide-desc {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

/* Navigation Buttons */
.slider-nav-button {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #ffffff;
  border: 1.5px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.25s ease;
  font-size: 1rem;
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.slider-nav-button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.28);
}

/* Desktop: protrude outside the slider */
.slider-prev {
  left: -23px;
}

.slider-next {
  right: -23px;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  width: 28px;
  border-radius: 6px;
}

/* ===== MOBILE DRAWER ===== */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  z-index: 3001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-drawer-brand {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.mobile-drawer-brand span {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text);
  transition: all 0.2s;
}

.mobile-drawer-close:hover {
  background: var(--primary);
  color: #fff;
}

.mobile-nav-list {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-list > li {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
}

.mob-arrow {
  font-size: 0.72rem;
  transition: transform 0.25s;
  color: #bbb;
}

.mobile-nav-link.active .mob-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.mobile-submenu {
  display: none;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  padding: 0.3rem 0;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 0.75rem 2rem;
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
}

.mobile-submenu a:hover {
  color: var(--primary);
  padding-left: 2.4rem;
}

.mobile-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.mobile-drawer-footer .btn-get-quote {
  display: block;
  text-align: center;
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-wrapper {
    gap: 3rem;
  }

  .hero-heading {
    font-size: 3.2rem;
  }

  .hero-right {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 3rem 0 4rem;
    min-height: auto;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-heading {
    font-size: 2.4rem;
  }

  /* Slider full width, fixed height so swiper renders */
  .hero-right {
    width: 100% !important;
    height: 380px !important;
    /* arrows go inside the box on tablet/mobile */
  }

  .slider-container {
    width: 100%;
    height: 100%;
  }

  .swiper-hero {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    width: 100%;
    height: 100%;
  }

  /* Put arrows INSIDE slider-container on mobile */
  .slider-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .slider-prev {
    left: 12px !important;
    right: auto !important;
  }

  .slider-next {
    right: 12px !important;
    left: auto !important;
  }

  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .top-bar-left {
    display: none;
  }

  /* Hide floating shapes that overlap text on mobile */
  .float-1,
  .float-3,
  .float-6,
  .float-7,
  .float-8 {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0 2.5rem;
    min-height: auto;
  }

  .hero-heading {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 0.45rem 1rem;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
  }

  .hero-right {
    width: 100% !important;
    height: 340px !important;
  }

  /* Image must fill the slide */
  .slide-image-container {
    width: 100%;
    height: 100%;
    padding: 2rem 3rem 5rem;
    /* bottom pad clears the info box */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide-image {
    max-height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }

  .slide-info-box {
    padding: 0.9rem 1rem;
    bottom: 0.8rem;
    left: 0.8rem;
    right: 0.8rem;
  }

  .slide-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .slide-desc {
    font-size: 0.78rem;
  }

  .slider-nav-button {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .slider-prev {
    left: 8px !important;
  }

  .slider-next {
    right: 8px !important;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
  }

  .deco-blob-1,
  .deco-blob-2 {
    display: none;
  }

  .floating-element {
    display: none;
  }

  .navbar-main {
    padding: 1rem 0;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.75rem;
  }

  .hero-right {
    height: 300px !important;
    min-width: 340px !important;
  }

  .slide-image {
    max-height: 270px;
  }
}

/* ===== SECTION WRAPPER ===== */
.opw-about {
  background-image: url(../image/img/abt-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 6rem 0 0;
  overflow: hidden;
  position: relative;
}

/* ===== SECTION EYEBROW ===== */
.opw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(230, 57, 70, 0.07);
  border: 1px solid rgba(230, 57, 70, 0.18);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.4rem;
}

.opw-eyebrow i {
  font-size: 0.7rem;
}

/* ===== HEADING ===== */
.opw-heading {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
}

.opw-heading .opw-accent {
  color: var(--primary);
}

.opw-subhead {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ===== STAT PILLS ===== */
.opw-stats {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.opw-stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  min-width: 100px;
  text-align: center;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.opw-stat-pill:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.1);
}

.opw-stat-pill .stat-num {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.opw-stat-pill .stat-label {
  font-size: 0.72rem;
  color: var(--text-sub);
  font-weight: 500;
  margin-top: 0.2rem;
  white-space: nowrap;
}

/* ===== CTA BUTTONS ===== */
.opw-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.opw-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--primary);
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}

.opw-btn-primary:hover {
  background: transparent;
  color: var(--primary);
}

.opw-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all 0.25s ease;
}

.opw-btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--light-bg);
}

/* ===== CONTACT STRIP ===== */
.opw-contact-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: var(--light-bg);
  border-radius: 10px;
  border: 1.5px solid var(--border);
}

.opw-contact-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #c0392b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.opw-contact-strip .contact-name {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.2;
}

.opw-contact-strip .contact-role {
  font-size: 0.75rem;
  color: var(--text-sub);
}

.opw-contact-strip .contact-phone {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
  text-decoration: none;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ===== IMAGE MOSAIC ===== */
.opw-mosaic {
  position: relative;
  height: 560px;
}

/* Decorative rotating ring SVG */
.opw-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: opw-spin-slow 30s linear infinite;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
}

@keyframes opw-spin-slow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Second ring counter-rotating */
.opw-ring-2 {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: opw-spin-ccw 20s linear infinite;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}

@keyframes opw-spin-ccw {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/* Floating dots / shapes */
.opw-float-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.opw-fd-1 {
  width: 60px;
  height: 60px;
  background: rgba(230, 57, 70, 0.12);
  border: 2px solid rgba(230, 57, 70, 0.25);
  top: 6%;
  left: 10%;
  animation: opw-float-a 6s ease-in-out infinite;
}

.opw-fd-2 {
  width: 20px;
  height: 20px;
  background: var(--amber);
  opacity: 0.5;
  top: 18%;
  right: 8%;
  animation: opw-float-b 5s ease-in-out infinite 1s;
}

.opw-fd-3 {
  width: 44px;
  height: 44px;
  background: rgba(42, 157, 143, 0.15);
  border: 2px solid rgba(42, 157, 143, 0.3);
  border-radius: 8px;
  rotate: 30deg;
  bottom: 16%;
  left: 4%;
  animation: opw-float-a 8s ease-in-out infinite 0.5s;
}

.opw-fd-4 {
  width: 12px;
  height: 12px;
  background: var(--primary);
  opacity: 0.35;
  bottom: 28%;
  right: 14%;
  animation: opw-float-b 4.5s ease-in-out infinite 2s;
}

.opw-fd-5 {
  width: 80px;
  height: 80px;
  background: rgba(244, 162, 97, 0.1);
  border: 2px dashed rgba(244, 162, 97, 0.3);
  top: 48%;
  left: 0%;
  animation: opw-float-a 9s ease-in-out infinite 1.5s;
}

@keyframes opw-float-a {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  33% {
    transform: translateY(-18px) translateX(8px);
  }
  66% {
    transform: translateY(-10px) translateX(-6px);
  }
}

@keyframes opw-float-b {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-22px) scale(1.15);
  }
}

/* Image cards */
.opw-img-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(29, 45, 68, 0.18);
  z-index: 3;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.opw-img-card:hover {
  box-shadow: 0 24px 60px rgba(29, 45, 68, 0.26);
  z-index: 10;
}

.opw-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card 1 – large, top-left, slight tilt */
.opw-card-1 {
  width: 250px;
  height: 300px;
  top: 2%;
  left: 4%;
  /* transform: rotate(-3deg); */
}

.opw-card-1:hover {
  transform: rotate(0deg) scale(1.03);
}

/* Card 2 – medium, top-right */
.opw-card-2 {
  width: 250px;
  height: 300px;
  top: 2%;
  right: 10%;
  /* transform: rotate(3.5deg); */
}

.opw-card-2:hover {
  transform: rotate(0deg) scale(1.03);
}

/* Card 3 – wide, bottom-center */
.opw-card-3 {
  width: 550px;
  height: 250px;
  bottom: -8%;
  left: 4%;
  /* transform: translateX(-50%) rotate(-2deg); */
}

.opw-card-3:hover {
  transform: translateX(0%) rotate(0deg) scale(1.05);
}

/* Badge on image */
.opw-img-badge {
  position: absolute;
  background: white;
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  z-index: 5;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--navy);
  pointer-events: none;
}

.opw-img-badge i {
  color: var(--primary);
  font-size: 0.85rem;
}

.opw-badge-1 {
  bottom: 34%;
  left: 1%;
  animation: opw-float-b 5s ease-in-out infinite;
}

.opw-badge-2 {
  top: 32%;
  right: 0%;
  animation: opw-float-a 7s ease-in-out infinite 0.8s;
}

/* Green GST verified badge */
.opw-badge-2 i {
  color: var(--teal);
}

/* ===== FULL-WIDTH POINTS STRIP ===== */
.opw-points-strip {
  background: var(--navy);
  padding: 3.5rem 0;
  margin-top: 4rem;
}

.opw-points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.opw-point-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  text-align: center;
}

.opw-point-item:last-child {
  border-right: none;
}

.opw-point-icon-wrap {
  max-width: 44px;
  width: 100%;
  margin: auto;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.opw-point-item:nth-child(1) .opw-point-icon-wrap {
  background: rgba(230, 57, 70, 0.18);
  color: var(--primary);
}
.opw-point-item:nth-child(2) .opw-point-icon-wrap {
  background: rgba(42, 157, 143, 0.18);
  color: var(--teal);
}
.opw-point-item:nth-child(3) .opw-point-icon-wrap {
  background: rgba(244, 162, 97, 0.18);
  color: var(--amber);
}
.opw-point-item:nth-child(4) .opw-point-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.opw-point-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.opw-point-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .opw-mosaic {
    height: 400px;
    margin-bottom: 3rem;
  }

  .opw-card-1 {
    width: 180px;
    height: 220px;
  }
  .opw-card-2 {
    width: 148px;
    height: 170px;
  }
  .opw-card-3 {
    width: 240px;
    height: 155px;
  }

  .opw-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .opw-point-item:nth-child(2) {
    border-right: none;
  }
  .opw-point-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .opw-point-item:nth-child(4) {
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .opw-subhead {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .opw-about {
    padding: 4rem 0 0;
  }

  .opw-mosaic {
    height: 340px;
  }

  .opw-card-1 {
    width: 160px;
    height: 180px;
    top: 0;
    left: 2%;
  }
  .opw-card-2 {
    width: 160px;
    height: 180px;
    top: 0;
    right: 2%;
  }
  .opw-card-3 {
    width: 335px;
    height: 150px;
    bottom: -5%;
  }

  .opw-points-grid {
    grid-template-columns: 1fr;
  }
  .opw-point-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .opw-point-item:last-child {
    border-bottom: none;
  }
  .opw-point-item:nth-child(3) {
    border-right: none;
    border-top: none;
  }
  .opw-point-item:nth-child(4) {
    border-top: none;
  }

  .opw-stats {
    gap: 0.8rem;
  }
  .opw-stat-pill {
    min-width: 80px;
    padding: 0.7rem 1rem;
  }
  .opw-stat-pill .stat-num {
    font-size: 1.3rem;
  }

  .opw-heading {
    font-size: 1.8rem;
  }
  .opw-img-badge {
    display: none;
  }
}

/* ══════════════════════════════════════════
       SHARED SECTION HEADER
    ══════════════════════════════════════════ */
.sec-header {
  margin-bottom: 48px;
}

.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.sec-kicker::before,
.sec-kicker::after {
  content: "";
  display: block;
  height: 1.5px;
  width: 28px;
  background: var(--primary);
  border-radius: 2px;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 12px;
}

.sec-title em {
  font-style: italic;
  color: var(--primary);
}

.sec-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 540px;
}

.sec-sub.center {
  margin: 0 auto;
}

.sec-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}

.sec-line span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--primary);
}

.sec-line span:first-child {
  width: 40px;
}

.sec-line span:last-child {
  width: 12px;
  opacity: 0.4;
}

/* ══════════════════════════════════════════
       SECTION 1 — GRID ROW/COL
    ══════════════════════════════════════════ */
.section-grid {
  padding: 84px 0 90px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid background */
.section-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(22, 39, 64, 0.055) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  pointer-events: none;
}

/* Decorative side blob */
.section-grid::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 26, 46, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── GRID CARD ── */
.g-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.g-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Image wrapper */
.g-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

.g-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.g-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.g-card:hover .g-img-wrap img {
  transform: scale(1.07);
}

/* Category badge over image */
.g-img-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  pointer-events: none;
}

.g-img-cat i {
  font-size: 0.58rem;
}

/* Wishlist / Quick CTA top-right */
.g-img-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s 0.05s;
}

.g-card:hover .g-img-actions {
  opacity: 1;
  transform: translateX(0);
}

.g-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(22, 39, 64, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.75rem;
  transition:
    background 0.22s,
    color 0.22s;
  cursor: pointer;
}

.g-action-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Image overlay gradient */
.g-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 39, 64, 0.22) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Card body */
.g-body {
  padding: 22px 22px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.g-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.g-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.g-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
}

.g-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
}

.g-duration i {
  color: var(--gold);
  font-size: 0.6rem;
}

/* Title as anchor */
.g-title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
  display: block;
  transition: color 0.22s;
}

.g-title:hover {
  color: var(--primary);
}

.g-desc {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 14px;
  flex: 1;
}

/* Highlights */
.g-highlights {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.g-hi {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text);
}

.g-hi i {
  color: var(--primary);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* Footer */
.g-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  gap: 10px;
  flex-wrap: wrap;
}

.g-price-wrap {
}

.g-price-free {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.g-price-note {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1px;
}

.g-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s;
  flex-shrink: 0;
}

.g-cta:hover {
  background: var(--primary-d);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(139, 26, 46, 0.35);
}

.g-cta i {
  font-size: 0.65rem;
}

/* Rating stars */
.g-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.g-stars i {
  color: var(--gold);
  font-size: 0.65rem;
}

.g-stars span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 3px;
}

/* ══════════════════════════════════════════
       SECTION 2 — OWL CAROUSEL
    ══════════════════════════════════════════ */
.section-carousel {
  padding: 80px 0 90px;
  background: var(--off);
  position: relative;
  overflow: hidden;
}

.section-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary) 0%,
    var(--gold) 50%,
    var(--navy) 100%
  );
}

/* Background watermark text */
.section-carousel::after {
  content: "PRODUCTS";
  position: absolute;
  bottom: 20px;
  right: -10px;
  font-family: var(--font-disp);
  font-size: 8rem;
  color: rgba(22, 39, 64, 0.04);
  letter-spacing: 0.12em;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

/* Carousel header row */
.carousel-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.carousel-nav-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cnav-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}

.cnav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ── CAROUSEL CARD ── */
.c-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  margin: 6px 4px 12px;
}

.c-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Image */
.c-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/4;
}

.c-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.c-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.c-card:hover .c-img-wrap img {
  transform: scale(1.08);
}

/* Top badge */
.c-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
}

.badge-hot {
  background: #e63757;
}

.badge-new {
  background: #0d9d74;
}

.badge-free {
  background: var(--navy);
}

.badge-pop {
  background: var(--gold);
  color: var(--navy) !important;
}

/* Overlay gradient */
.c-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 39, 64, 0.28) 0%,
    transparent 55%
  );
  pointer-events: none;
}

/* Quick enquire button (hover) */
.c-quick-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  white-space: nowrap;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(139, 26, 46, 0.45);
}

.c-card:hover .c-quick-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Card body */
.c-body {
  padding: 18px 18px 16px;
}

.c-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.c-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.c-cat i {
  font-size: 0.58rem;
}

.c-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.c-stars i {
  color: var(--gold);
  font-size: 0.6rem;
}

.c-stars span {
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 3px;
}

/* Title as anchor */
.c-title {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.32;
  margin-bottom: 8px;
  display: block;
  transition: color 0.22s;
}

.c-title:hover {
  color: var(--primary);
}

.c-desc {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 12px;
}

.c-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.c-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
}

.c-meta-item i {
  color: var(--gold);
  font-size: 0.6rem;
}

.c-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    gap 0.22s,
    color 0.22s;
  flex-shrink: 0;
}

.c-cta i {
  font-size: 0.6rem;
  transition: transform 0.22s;
}

.c-cta:hover {
  color: var(--primary-d);
  gap: 8px;
}

.c-cta:hover i {
  transform: translateX(3px);
}

/* ── OWL CUSTOM DOTS ── */
.owl-carousel .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.owl-carousel .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: rgba(22, 39, 64, 0.18) !important;
  border-radius: 50% !important;
  transition: all 0.3s !important;
  margin: 0 !important;
}

.owl-carousel .owl-dot.active span,
.owl-carousel .owl-dot:hover span {
  background: var(--primary) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

.owl-carousel .owl-nav {
  display: none !important;
}

/* ── VIEW ALL BTN ── */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 11px 28px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.28s;
}

.btn-view-all:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 26, 46, 0.3);
}

.btn-view-all i {
  font-size: 0.7rem;
  transition: transform 0.28s;
}

.btn-view-all:hover i {
  transform: translateX(4px);
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .section-grid,
  .section-carousel {
    padding: 56px 0 60px;
  }

  .carousel-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sec-header {
    margin-bottom: 32px;
  }
}

/* ══ SECTION ══ */
.wcu-section {
  background-image: url(../image/img/why-bg.avif);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 96px 0 88px;
  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: #fff2f2;
  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(--light-bg);
  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-d);
  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(--light-bg);
  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: #fff2f2;
  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(--dark);
  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-disp);
  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;
  }
}

/* ─── Shared helpers ─── */
.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.sec-kicker::before,
.sec-kicker::after {
  content: "";
  display: block;
  height: 1.5px;
  width: 28px;
  background: var(--primary);
  border-radius: 2px;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}

.sec-title em {
  font-style: italic;
  color: var(--primary);
}

.sec-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.76;
  max-width: 540px;
}

.tl {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}

.tl-a {
  display: block;
  height: 3px;
  width: 40px;
  background: var(--primary);
  border-radius: 3px;
}

.tl-b {
  display: block;
  height: 3px;
  width: 14px;
  background: var(--gold);
  border-radius: 3px;
}

/* ════════════════════════════════════════════
       SECTION 1 — TESTIMONIALS
    ════════════════════════════════════════════ */
.testi-section {
  padding: 90px 0 96px;
  background-image: url(../image/img/why-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Subtle halftone dot bg */
.testi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(22, 39, 64, 0.045) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

/* Big quote watermark */
.testi-section::after {
  content: "\201C";
  position: absolute;
  top: -40px;
  left: 32px;
  font-family: var(--font-head);
  font-size: clamp(12rem, 22vw, 20rem);
  color: rgba(139, 26, 46, 0.04);
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}

/* ── Top rating bar ── */
.rating-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 28px;
  margin-bottom: 48px;
  box-shadow: var(--sh-sm);
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-item + .rating-item {
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

.rating-platform-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.rpi-g {
  background: #fff;
  border: 1px solid rgba(66, 133, 244, 0.2);
  color: #4285f4;
}

.rpi-f {
  background: #fff;
  border: 1px solid rgba(24, 119, 242, 0.2);
  color: #1877f2;
}

.rpi-y {
  background: #fff;
  border: 1px solid rgba(255, 0, 0, 0.15);
  color: #f00;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars i {
  color: var(--gold);
  font-size: 0.72rem;
}

.rating-score {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.rating-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1px;
}

.rating-total {
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 1px;
}

.rating-separator {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 20px;
}

/* ── Testimonial Card ── */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px 24px;
  margin: 6px 8px 16px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity 0.28s;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.testi-card:hover::before {
  opacity: 1;
}

/* Big quote icon */
.testi-quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.8rem;
  color: rgba(139, 26, 46, 0.07);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-head);
  font-weight: 900;
}

/* Stars */
.testi-stars {
  display: flex;
  gap: 3px;
}

.testi-stars i {
  color: var(--gold);
  font-size: 0.7rem;
}

/* Quote text */
.testi-text {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.72;
  font-weight: 600;
}

/* Service chip */
.testi-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary-xs);
  border: 1px solid rgba(139, 26, 46, 0.14);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
}

.testi-chip i {
  font-size: 0.58rem;
}

/* Author */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.testi-avatar-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-disp);
  font-size: 1.1rem;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.author-detail {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 2px;
}

.author-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #0d7a56;
}

.author-verified i {
  font-size: 0.65rem;
}

/* Owl custom dots */
.testi-owl .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.testi-owl .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: rgba(22, 39, 64, 0.18) !important;
  border-radius: 50% !important;
  margin: 0 !important;
  transition: all 0.3s !important;
}

.testi-owl .owl-dot.active span,
.testi-owl .owl-dot:hover span {
  background: var(--primary) !important;
  width: 26px !important;
  border-radius: 4px !important;
}

.testi-owl .owl-nav {
  display: none !important;
}

/* Testi nav buttons */
.testi-nav {
  display: flex;
  gap: 8px;
}

.tnav-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: var(--sh-sm);
}

.tnav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Featured testimonial (left side) ── */
.featured-testi {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.featured-testi::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 9rem;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}

.featured-testi-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.featured-testi-text {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.74;
  font-weight: 600;
}

.featured-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

.featured-stars i {
  color: var(--gold);
  font-size: 0.75rem;
}

.featured-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
  object-fit: cover;
}

.feat-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.feat-detail {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.feat-chip {
  margin-left: auto;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-l);
}

/* ════════════════════════════════════════════
       SECTION 2 — FAQ
    ════════════════════════════════════════════ */
.faq-section {
  padding: 88px 0 96px;
  background: var(--off);
  position: relative;
  overflow: hidden;
}

.faq-section::after {
  content: "FAQ";
  position: absolute;
  bottom: -20px;
  right: -16px;
  font-family: var(--font-disp);
  font-size: clamp(7rem, 15vw, 13rem);
  color: rgba(22, 39, 64, 0.032);
  letter-spacing: 0.1em;
  pointer-events: none;
  line-height: 1;
}

/* FAQ image column */
.faq-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 3/4;
}

.faq-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.faq-img-wrap:hover img {
  transform: scale(1.04);
}

.faq-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(22, 39, 64, 0.7) 100%
  );
}

/* Caption on image */
.faq-img-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(22, 39, 64, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 16px 18px;
  color: #fff;
}

.faq-cap-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.faq-cap-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Small stat badges on image */
.faq-img-stat {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--sh-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-img-stat.top {
  top: 20px;
  right: -16px;
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

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

.fi-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.fii-c {
  background: var(--primary-xs);
  color: var(--primary);
}

.fi-val {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1;
}

.fi-lbl {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 1px;
}

/* Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.25s;
}

.faq-item.open {
  box-shadow: var(--sh-md);
}

.faq-item.open {
  border-color: rgba(139, 26, 46, 0.18);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.22s;
  user-select: none;
}

.faq-q:hover {
  background: var(--primary-xs);
}

.faq-num {
  font-family: var(--font-disp);
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  width: 26px;
  line-height: 1;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--primary-xs);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition:
    background 0.25s,
    color 0.25s;
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: #fff;
}

.faq-qtext {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
  line-height: 1.38;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-chevron {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 20px 18px 76px;
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.76;
}

/* ════════════════════════════════════════════
       SECTION 3 — CTA BANNER
    ════════════════════════════════════════════ */
.cta-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* BG image with overlay */
.cta-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1800&q=70");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

/* Diagonal overlay layers */
.cta-overlay-l {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(22, 39, 64, 0.98) 0%,
    rgba(22, 39, 64, 0.88) 50%,
    rgba(22, 39, 64, 0.6) 100%
  );
}

.cta-overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(139, 26, 46, 0.28) 0%,
    transparent 40%
  );
}

/* Gold accent rings */
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  pointer-events: none;
}

.cta-ring-1 {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -80px;
}

.cta-ring-2 {
  width: 250px;
  height: 250px;
  top: -40px;
  right: 80px;
}

.cta-ring-3 {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: 40%;
}

.cta-wrap {
  position: relative;
  z-index: 5;
  padding: 80px 0 88px;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 20px;
}

.cta-kicker i {
  font-size: 0.6rem;
  animation: blink 1.8s ease infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.76;
  max-width: 520px;
  margin-bottom: 32px;
}

.cta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.cta-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.cta-chip i {
  color: var(--gold);
  font-size: 0.62rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-cta-p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 6px 28px rgba(139, 26, 46, 0.55);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-cta-p::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-cta-p:hover::after {
  transform: translateX(100%);
}

.btn-cta-p:hover {
  background: var(--primary-d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(139, 26, 46, 0.65);
}

.btn-cta-s {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 13px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.btn-cta-s:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  transform: translateY(-1px);
}

/* Right side — enquiry form card */
.cta-form-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 34px 30px 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--gold));
}

/* Form heading kicker */
.cta-form-kicker {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-form-kicker i {
  font-size: 0.62rem;
  color: var(--gold);
}

.cta-form-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.22);
}

.cta-form-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 22px;
}

.cta-form-title em {
  font-style: italic;
  color: var(--gold-l);
}

/* Field group */
.cf-group {
  position: relative;
  margin-bottom: 14px;
}

.cf-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.cf-field-wrap {
  position: relative;
}

.cf-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  pointer-events: none;
  transition: color 0.25s;
}

/* textarea icon sits at top */
.cf-group.is-textarea .cf-icon {
  top: 14px;
  transform: none;
}

.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 11px 14px 11px 40px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  color: #fff;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.cf-input::placeholder,
.cf-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cf-select option {
  background: var(--navy);
  color: #fff;
}

.cf-textarea {
  resize: none;
  height: 90px;
  padding-top: 12px;
  line-height: 1.6;
}

/* Focus state */
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: rgba(201, 168, 76, 0.55);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.cf-group:focus-within .cf-icon {
  color: var(--gold);
}

/* Select arrow */
.cf-select-wrap {
  position: relative;
}

.cf-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.62rem;
  pointer-events: none;
}

/* Row for 2-col fields */
.cf-row {
  display: flex;
  gap: 12px;
}

.cf-row .cf-group {
  flex: 1;
  min-width: 0;
}

/* Submit button */
.cf-submit {
  width: 100%;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition:
    background 0.28s,
    transform 0.22s,
    box-shadow 0.28s;
  box-shadow: 0 5px 22px rgba(139, 26, 46, 0.45);
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.cf-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.cf-submit:hover::after {
  transform: translateX(100%);
}

.cf-submit:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 26, 46, 0.6);
}

/* Privacy note */
.cf-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.38);
}

.cf-privacy i {
  color: rgba(201, 168, 76, 0.6);
  font-size: 0.62rem;
  flex-shrink: 0;
}

/* Success state */
.cf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  gap: 14px;
}

.cf-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(13, 122, 86, 0.2);
  border: 2px solid rgba(13, 122, 86, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dcf9a;
  font-size: 1.6rem;
}

.cf-success-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.cf-success-msg {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════════ */
footer {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Top gradient line */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary),
    var(--gold),
    var(--navy)
  );
}

/* Bg dot grid */
footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

/* Main footer body */
.footer-main {
  padding: 60px 0 48px;
  position: relative;
  z-index: 2;
}

/* Brand col */
.footer-brand {
  padding-right: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-logo-text {
}

.fl-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.fl-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-l);
  display: block;
  margin-top: 2px;
}

.footer-about {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.76;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fsoc-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  transition: all 0.25s;
}

.fsoc-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer column title */
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-title i {
  font-size: 0.65rem;
  color: var(--primary);
}

/* Nav links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.58);
  transition:
    color 0.22s,
    gap 0.22s;
}

.footer-link i {
  font-size: 0.55rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.22s;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
  gap: 12px;
}

.footer-link:hover i {
  transform: translateX(2px);
}

/* Contact info in footer */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.fci-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(139, 26, 46, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.72rem;
  margin-top: 1px;
}

.fci-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3px;
}

.fci-val {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.fci-val a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.fci-val a:hover {
  color: var(--gold-l);
}

/* Newsletter */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-top: 6px;
}

.nl-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nl-label i {
  color: var(--gold);
}

.nl-form {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.nl-input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  color: #fff;
  outline: none;
  transition: border-color 0.22s;
}

.nl-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.nl-input:focus {
  border-color: rgba(201, 168, 76, 0.5);
}

.nl-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    background 0.25s,
    transform 0.2s;
  flex-shrink: 0;
}

.nl-btn:hover {
  background: var(--primary-d);
  transform: translateY(-1px);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Bottom bar */
.footer-bottom {
  padding: 18px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copy a {
  color: var(--gold-l);
  transition: color 0.2s;
}

.footer-copy a:hover {
  color: var(--gold);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-link {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.22s;
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-scroll-top {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s;
}

.footer-scroll-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .testi-section,
  .faq-section {
    padding: 62px 0 68px;
  }

  .cta-wrap {
    padding: 58px 0 66px;
  }

  .cta-contact-card {
    margin-top: 36px;
  }

  .footer-brand {
    padding-right: 0;
    margin-bottom: 8px;
  }

  .faq-img-stat.top {
    right: 8px;
  }
}

@media (max-width: 767px) {
  .rating-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .rating-item + .rating-item {
    padding-left: 0;
    border-left: none;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }

  .rating-separator {
    display: none;
  }

  .cta-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .footer-main {
    padding: 48px 0 36px;
  }

  .faq-a-inner {
    padding-left: 20px;
  }
}

@media (max-width: 575px) {
  .testi-card {
    padding: 22px 18px 18px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


  /* ── All classes prefixed .phero- — zero conflicts ── */

.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(139 26 46 / 60%) 0%, rgb(139 26 46 / 41%) 100%);
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, rgb(139 26 46 / 60%) 0%, rgb(139 26 46 / 41%) 100%);
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--primary-d);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.sitemap-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid var(--crimson);
    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(--crimson);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: var(--primary-d);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-d);
}

.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;
    }
}



/* ══════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════ */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle crimson top-border accent */
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--crimson),
    var(--gold),
    var(--crimson)
  );
}

/* Inner container */
.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 0.5rem) clamp(0rem, 5vw, 0rem);
}

/* ── Section label row ────────────────────────────── */
.about__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.about__label-line {
  flex: 0 0 36px;
  height: 2px;
  background: var(--crimson);
}

.about__label-text {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--crimson);
}

/* ── Section title ────────────────────────────────── */
.about__title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  max-width: 600px;
  margin-bottom: 2.4rem;
}

.about__title em {
  font-style: italic;
  color: var(--crimson);
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════
   THE FLOAT CANVAS  ← this is where the magic happens
   Images float left / right; text flows around them
══════════════════════════════════════════════════════ */
.about__canvas {
  /* clearfix so the section wraps around floated images */
  overflow: hidden;
  /* establishes BFC — contains all floats */
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1.01rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
}

/* ── Floated image base ───────────────────────────── */
.img-float {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  flex-shrink: 0;
}

.img-float img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-float:hover img {
  transform: scale(1.04);
}

/* Gold bottom-left accent corner */
.img-float::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 40px;
  height: 40px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  border-radius: 0 0 0 3px;
  pointer-events: none;
}

/* ── Float LEFT (img 1 & 3) ───────────────────────── */
.img-float--left {
  float: left;
  width: clamp(180px, 28%, 260px);
  height: clamp(200px, 22vw, 290px);
  margin: 0 1.8rem 1.4rem 0;
  shape-outside: margin-box;
  /* text hugs the image */
}

/* ── Float RIGHT (img 2) ──────────────────────────── */
.img-float--right {
  float: right;
  width: clamp(170px, 26%, 240px);
  height: clamp(180px, 20vw, 270px);
  margin: 0 0 1.4rem 1.8rem;
  shape-outside: margin-box;
}

/* ── Paragraph spacing ────────────────────────────── */
.about__canvas p {
  margin-bottom: 1.1rem;
}

.about__canvas p:last-child {
  margin-bottom: 0;
}

/* Inline highlight spans */
.about__canvas strong {
  font-weight: 600;
  color: var(--navy);
}

.about__canvas .hl {
  color: var(--crimson);
  font-weight: 600;
}

/* ── Stats strip (sits inside the flow) ──────────── */
.stat-row {
  /* Block formatting context so it doesn't overlap floats
     but still flows inside the canvas */
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.5rem 0;
  overflow: hidden;
  /* new BFC: clears side floats inline */
}

.stat-box {
  flex: 1 1 130px;
  background: var(--offwhite);
  border-left: 3px solid var(--crimson);
  padding: 0.8rem 1.1rem;
  border-radius: 0 4px 4px 0;
  min-width: 110px;
}

.stat-box__num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-box__num span {
  color: var(--crimson);
}

.stat-box__lbl {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ── CTA at bottom ────────────────────────────────── */
.about__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
  clear: both;
  /* sits below all floats */
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--crimson);
  border: 2px solid var(--crimson);
  padding: 0.82rem 2.1rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition:
    color 0.35s,
    border-color 0.35s;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.btn-primary:hover {
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 0.82rem 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    color 0.3s,
    background 0.3s,
    border-color 0.3s;
}

.btn-outline svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-outline:hover {
  color: var(--white);
  background: var(--navy);
}

.btn-outline:hover svg {
  transform: translateX(4px);
}

/* ── Divider line ─────────────────────────────────── */
.about__divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, var(--crimson), transparent);
  margin: 0rem 0;
  opacity: 0.2;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 640px) {
  .img-float--left,
  .img-float--right {
    float: none;
    width: 100%;
    height: 220px;
    margin: 0 0 1.4rem 0;
    shape-outside: none;
  }

  .stat-row {
    gap: 0.8rem;
  }
}


























 a {
      text-decoration: none;
      color: inherit;
    }
     
    p{color:#1e2d3d;}
    strong{color:var(--primary) !important; font-weight:700 !important;}
    
    
    h1{
        font-size:35px !important;
        font-weight:700; 
        color:var(--primary) !important;
    }
    h2, h3, h4, h5, h6 {
        font-size:24px !important;
        font-weight:700;
        margin-top:25px;
        color:var(--primary) !important;
    }
    
    img {
      max-width: 100%;
      display: block;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

.abt-cont table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fff;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.abt-cont table thead {
    background: #111827;
}

.abt-cont table thead th {
    color: #fff;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left !important;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.abt-cont table thead th:last-child {
    border-right: none;
}

.abt-cont table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.abt-cont table tbody tr:last-child {
    border-bottom: none;
}

.abt-cont table tbody tr:hover {
    background: #f9fafb;
}

.abt-cont table tbody td {
    padding: 16px 20px;
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    vertical-align: top;
}

.abt-cont table tbody td strong {
    color: #111827;
}

.abt-cont table tbody td a {
    color: #2563eb;
    text-decoration: none;
    transition: 0.3s ease;
}

.abt-cont table tbody td a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Zebra Effect */
.abt-cont table tbody tr:nth-child(even) {
    background: #ffdede;
}

/* Responsive Table */
@media (max-width: 768px) {

    .abt-cont table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .abt-cont table thead th,
    .abt-cont table tbody td {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* =========================
   Global UL LI Styling
   Parent: .abt-cont
========================= */

/* UL */
.abt-cont ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

/* LI */
.abt-cont ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* Custom Bullet */
.abt-cont ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--crimson);
    font-size: 15px;
}

/* Nested UL */
.abt-cont ul ul {
    margin-top: 12px;
    margin-bottom: 0;
    padding-left: 20px;
}

/* Nested LI */
.abt-cont ul ul li {
    font-size: 14px;
    color: #555;
}

/* Hover Effect */
.abt-cont ul li:hover {
    color: #111;
    transition: 0.3s ease;
}

/* Links Inside LI */
.abt-cont ul li a {
    color: var(--crimson);
    text-decoration: none;
}

.abt-cont ul li a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

    .abt-cont ul li {
        font-size: 14px;
        line-height: 1.7;
        padding-left: 24px;
    }

    .abt-cont ul li::before {
        font-size: 13px;
        top: 3px;
    }
}