:root {
  --brand-grad: linear-gradient(135deg, #e15d5d, #aa3511);
  --brand-1: #b54127;
  --brand-2: #aa3511;

  --ink: #111827;
  --muted: #6b7280;

  --white: #ffffff;
  --off: #f5f6f8;
  --stroke: #e5e7eb;

  --radius: 18px;
  --shadow: 0 14px 40px rgba(17, 24, 39, 0.1);
}

/* block user */
body{
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}
input, textarea{
  user-select:text; /* forms still work */
}

body {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans",
    "Helvetica Neue",
    sans-serif;
  background: var(--white);
  color: var(--ink);
  padding-top: 0 !important;
}

a {
  text-decoration: none;
}

section {
  padding: 40px 0;
}

.sec-white {
  background: var(--white);
}

.sec-off {
  background: var(--off);
}

/* =========================
   HEADER + TOPBAR (CLEAN FINAL)
========================= */

/* ===== TOP BAR ===== */
.topbar {
  background: linear-gradient(90deg, #e15d5d 0%, #b54127 50%, #aa3511 100%);

  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-left i {
  margin: 0;
  line-height: 1;
}

/* Social Icons */
.topbar-right.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-right.social-icons a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.topbar-right.social-icons a i {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 15px;
  display: block;
}

.topbar-right.social-icons a:hover {
  background: #fff;
  color: #7a2e0e;
  transform: translateY(-2px);
}

/* Desktop topbar divider (optional) */
@media (min-width: 576px) {
  .topbar-left span+span::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.45);
    margin: 0 12px 0 6px;
    transform: translateY(2px);
  }
}

/* ===== HEADER ===== */
.main-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.logo {
  height: 55px;
}

/* Nav links */
.nav-link {
  font-weight: 600;
  color: var(--ink) !important;
  padding: 10px 14px !important;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-link:hover {
  background: rgba(181, 65, 39, 0.08);
  color: var(--brand-2) !important;
}

/* CTA */
.btn-book {
  background: var(--brand-grad);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(170, 53, 17, 0.22);
  transition: 0.25s ease;
}

.btn-book:hover {
  filter: brightness(0.98);
  transform: translateY(-2px);
  color: #fff;
}

/* =========================
   PREMIUM MOBILE TOGGLER
========================= */

.navbar-toggler {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.navbar-toggler:hover {
  background: rgba(181, 65, 39, 0.08);
  border-color: rgba(170, 53, 17, 0.25);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(170, 53, 17, 0.15);
}

/* Custom hamburger lines */
.navbar-toggler-icon {
  background-image: none !important;
  width: 20px;
  height: 2px;
  background: var(--brand-2);
  position: relative;
  transition: 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--brand-2);
  transition: 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -6px;
}

.navbar-toggler-icon::after {
  top: 6px;
}

/* Open state animation */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
  background: var(--brand-2);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
  background: var(--brand-2);
}

/* =========================
   MEGA DROPDOWN (DESKTOP)
========================= */
.nav-item.mega {
  position: static;
}

.mega-menu {
  width: auto;
  /* text ke according */
  min-width: 520px;
  max-width: 90vw;
  left: 50% !important;
  transform: translateX(-50%);
  margin-top: 10px;

  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 0;
}

.mega-inner {
  display: grid;
  grid-template-columns: max-content max-content;
  /* shrink */
  gap: 48px;
}

.mega-col {
  padding: 18px 22px;
}

.mega-col+.mega-col {
  border-left: 1px solid rgba(17, 24, 39, 0.08);
}

.mega-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.mega-item {
  display: block;
  padding: 9px 0;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: 0.18s ease;
  white-space: nowrap;
}

.mega-item:hover {
  color: var(--brand-2);
}

/* =========================
   MOBILE FIXES (<= 992px)
========================= */
@media (max-width: 991.98px) {

  /* Topbar: email + phone stack */
  .topbar {
    padding: 10px 0;
  }

  .topbar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px;
  }

  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
  }

  .topbar-left span {
    white-space: nowrap;
  }

  .topbar-right.social-icons {
    gap: 8px;
    flex-shrink: 0;
  }

  .topbar-right.social-icons a {
    width: 30px;
    height: 30px;
  }

  /* Header spacing */
  .logo {
    height: 42px;
  }

  .navbar-toggler {
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(17, 24, 39, 0.1);
  }

  /* Collapse menu must scroll (NOT background) */
  .navbar-collapse {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 10px;
    padding-bottom: 14px;
  }

  /* Dropdown/mega inside collapse */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none !important;
  }

  /* Mega dropdown becomes normal list */
  .nav-item.mega {
    position: relative;
  }

  .mega-menu {
    width: 100% !important;
    min-width: 0;
    max-width: 100%;
    left: 0 !important;
    transform: none !important;
    margin-top: 8px;
  }

  .mega-inner {
    display: block;
    gap: 0;
  }

  .mega-col {
    padding: 10px 14px;
  }

  .mega-col+.mega-col {
    border-left: 0;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
  }

  .mega-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 6px 0 8px;
  }

  .mega-item {
    white-space: normal;
    padding: 12px 10px;
    border-radius: 12px;
    background: rgba(17, 24, 39, 0.03);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.35;
  }

  .mega-item:hover {
    background: rgba(181, 65, 39, 0.08);
  }

  /* Prevent ms-auto weird push */
  .navbar-nav.ms-auto {
    margin-left: 0 !important;
  }

  /* Make Book Now full width */
  .navbar-nav .btn-book {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 16px;
  }
}

/* Floating buttons spacing (optional) */
@media (max-width: 575.98px) {

  .whatsapp-float,
  .call-float {
    right: 10px !important;
    bottom: 14px !important;
  }
}

/* Body lock class (use with JS) */
body.nav-open {
  overflow: hidden;
  height: 100vh;
}

/* =========================
   HERO SLIDER (FINAL - CLEAN + NO DUPLICATES)
========================= */

/* Remove any accidental gap between header and hero */
.main-header {
  margin-bottom: 0 !important;
}

.heroS {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Wrapper */
.heroS {
  position: relative;
}

/* Carousel */
.heroS__carousel {
  margin-top: 0 !important;
}

/* Slide */
.heroS__slide {
  min-height: 620px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 0 !important;
  padding-top: 0 !important;
  image-rendering: -webkit-optimize-contrast;
}

/* Overlay (sharp image + readable text) */
.heroS__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.38),
      rgba(0, 0, 0, 0.28) 45%,
      rgba(0, 0, 0, 0.4)),
    radial-gradient(900px 520px at 50% 40%,
      rgba(0, 0, 0, 0.22),
      rgba(0, 0, 0, 0) 62%);
}

/* Content */
.heroS__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
}

/* Kicker */
.heroS__kicker {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Title */
.heroS__title {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin: 0;
  font-size: clamp(30px, 4.2vw, 56px);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Sub */
.heroS__sub {
  color: rgba(255, 255, 255, 0.88);
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 1.06rem;
  line-height: 1.6;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* =========================
   CTA BUTTONS (EQUAL WIDTH + PREMIUM)
========================= */

.heroS__cta {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  justify-content: center;
  gap: 12px;
}

.heroS__cta .btn {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 750;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.25s ease;
}

/* Primary */
.heroS__cta .btn-brand {
  background: var(--brand-grad);
  color: #fff;
  border: 0;
  box-shadow:
    0 14px 32px rgba(170, 53, 17, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.heroS__cta .btn-brand:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow:
    0 18px 38px rgba(170, 53, 17, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Secondary (Glass) */
.heroS__cta .btn-soft2 {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.heroS__cta .btn-soft2:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
  color: #fff;
}

/* Icon pill */
.heroS__cta .btn i {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* =========================
   DOTS (INDICATORS)
========================= */

.heroS__dots {
  bottom: 45px;
}

.heroS__dots [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.heroS__dots .active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.12);
}

/* =========================
   HERO FLOATING FEATURE CARDS (PREMIUM)
========================= */

.heroS__cards {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  padding-bottom: 30px;
}

.hCard {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 20px 22px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.1),
    0 6px 16px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.hCard::before {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: var(--brand-grad);
}

.hCard:hover {
  transform: translateY(-6px);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.14),
    0 10px 20px rgba(0, 0, 0, 0.08);
}

.hCard__title {
  font-weight: 750;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.hCard__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {
  .heroS__slide {
    min-height: 520px;
  }

  .heroS__cards {
    margin-top: -36px;
  }
}

/* Hide floating cards on mobile */
@media (max-width: 767.98px) {
  .heroS__cards {
    display: none !important;
  }
}

@media (max-width: 575.98px) {

  /* Mobile hero height (single final value) */
  .heroS__slide {
    min-height: 92vh;
    padding-top: 60px;
    padding-bottom: 80px;
    align-items: center;
  }

  .heroS__content {
    padding: 0 16px;
  }

  .heroS__title {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.15;
  }

  .heroS__sub {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  /* Stack CTA buttons on mobile */
  .heroS__cta {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* === TOUR CARD (matches your screenshot layout) === */
/* CARD */
.tours-section {
  padding: 40px 20px;
}

/* GRID */
.tour-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* important */
  gap: 26px;
}


/* Make card full width inside grid */
.tour-card {
  width: 100%;
}

.tour-card {
  width: 100%;
  /* grid decides the width */
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  transition: .4s;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.18);
}

/* IMAGE */
.tour-img {
  position: relative;
  height: 195px;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

/* badges */
.duration {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.discount {
  position: absolute;
  top: 16px;
  right: -34px;
  background: var(--brand-grad);
  color: white;
  padding: 5px 40px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(45deg);
}

/* BODY */
.tour-body {
  padding: 8px 18px 18px;
}

h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--ink);
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
}

.rating span {
  color: var(--muted);
  font-size: 12px;
}

/* chips */
.chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.chips span {
  background: #f3f4f6;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
}

/* services */
.services {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px 0;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 12px;
}

.services div {
  font-size: 13px;
  text-align: center;
  color: var(--muted);
}

.services i {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-1);
  font-size: 15px;
}

/* bottom */
.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 12px;
  color: var(--muted);
}

.price span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  color: transparent;
}

/* buttons */
.btns {
  display: flex;
  gap: 8px;
}

.btn-outline {
  border: 2px solid var(--brand-1);
  background: white;
  color: var(--brand-1);
  padding: 8px 13px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.btn-fill {
  background: var(--brand-grad);
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.tour-body .tour-ito {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  /* soft grey */
  margin: 14px 0 18px;
  position: relative;
  padding-left: 18px;
  font-weight: 400;
}

/* small left accent line */
.tour-body .tour-ito::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 70%;
  width: 3px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ff7a18, #ffb347);
}

/* para */
.sec-desc {
  margin: 12px auto 30px;
  color: #6b7280;
  line-height: 1.7;
  font-size: 20px;
}

.more-text {
  display: none;
}

.more-text.show {
  display: inline;
}

.read-more-btn {
  color: var(--brand-1);
  font-weight: 600;
  cursor: pointer;
}

/* Tablet */
@media (max-width: 900px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature tiles */
.feature-tile {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  height: 100%;
}

.icbox {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(181, 65, 39, 0.1);
  color: var(--brand-1);
  border: 1px solid rgba(181, 65, 39, 0.18);
  font-size: 1.15rem;
}

/* Routes badges */
.route-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #fff;
  color: #374151;
  margin: 0.25rem 0.25rem 0 0;
  font-weight: 750;
  font-size: 0.92rem;
}

.route-badge i {
  color: var(--brand-1);
}

/* FAQ */
.accordion-button {
  background: #fff !important;
  border: 1px solid var(--stroke) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  font-weight: 900;
  color: #111827 !important;
}

.accordion-item {
  background: transparent;
  border: 0;
}

.accordion-body {
  color: #374151;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta a {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.18);
}

.sticky-cta a.whatsapp {
  background: #25d366;
}

.sticky-cta a.call {
  background: var(--brand-grad);
}

/* Small helpers */

/* =========================MINI HERO SLIDER ========================= */
.mini-hero-slider {
  padding: 20px 0 0;
  margin-top: -18px;
}

.mini-carousel {
  border: 1px solid var(--stroke);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
}

/* slide padding */
.mini-carousel .carousel-item {
  padding: 18px;
}

/* card */
.mini-cardx {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  overflow: hidden;
  background:
    radial-gradient(900px 240px at 18% 12%,
      rgba(181, 65, 39, 0.06),
      transparent 55%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 255, 255, 0.94));
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mini-cardx:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.1);
}

/* top sheen */
.mini-cardx::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 90px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0));
  pointer-events: none;
}

/* image box */
.mini-thumbx {
  position: relative;
  width: 190px;
  min-width: 190px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid rgba(17, 24, 39, 0.1);
}

.mini-thumbx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

.mini-cardx:hover .mini-thumbx img {
  transform: scale(1.08);
}

/* image fade overlay */
.mini-thumbx::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 35%,
      rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

/* badges on image */
.mini-badges {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.78rem;
  color: #111827;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.mini-badge i {
  color: var(--brand-1);
}

/* body */
.mini-bodyx {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 6px 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.mini-titlex {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 1.12rem;
  line-height: 1.25;
  color: #0f172a;
}

.mini-desx {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 780px;
}

.mini-tagsx {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.mini-tagx {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #111827;
  font-weight: 850;
  font-size: 0.84rem;
}

.mini-tagx i {
  color: var(--brand-1);
}

/* CTA panel (right) */
.mini-ctax {
  position: relative;
  z-index: 2;
  width: 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding-left: 10px;
}

/* price row */
.mini-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 2px;
}

.mini-price .p-label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 800;
}

.mini-price .p-val {
  font-size: 1.05rem;
  font-weight: 950;
  color: #111827;
}

/* buttons */
.btn-minix {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  padding: 0.78rem 1rem;
  font-weight: 950;
  border: 0;
  color: #fff;
  background: var(--brand-grad);
  box-shadow: 0 14px 34px rgba(181, 65, 39, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}

.btn-minix:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 40px rgba(181, 65, 39, 0.26);
  color: #fff;
}

.btn-minix-soft {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  padding: 0.78rem 1rem;
  font-weight: 950;
  border: 1px solid rgba(17, 24, 39, 0.12);
  color: #0f172a;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.btn-minix-soft:hover {
  border-color: rgba(181, 65, 39, 0.35);
  color: var(--brand-1);
  transform: translateY(-2px);
}

/* carousel controls */
.mini-carousel .carousel-control-prev,
.mini-carousel .carousel-control-next {
  width: 48px;
}

.mini-carousel .carousel-control-prev-icon,
.mini-carousel .carousel-control-next-icon {
  width: 22px;
  height: 22px;
}

/* responsive */
@media (max-width: 992px) {
  .mini-ctax {
    width: 200px;
    min-width: 200px;
  }

  .mini-thumbx {
    width: 170px;
    min-width: 170px;
  }
}

@media (max-width: 576px) {
  .mini-carousel .carousel-item {
    padding: 14px;
  }

  .mini-cardx {
    flex-direction: column;
    padding: 12px;
    gap: 12px;
  }

  .mini-thumbx {
    width: 100%;
    min-width: 100%;
    height: 170px;
  }

  .mini-ctax {
    width: 100%;
    min-width: 100%;
    padding-left: 0;
  }

  .mini-price {
    justify-content: flex-start;
  }
}

/* =========================
   MINI HEADER – PREMIUM STYLE
   Works with: .mini-head-wrap / .mini-badge-top / .mini-head-title / .mini-viewall
========================= */

.mini-head-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.mini-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(181, 65, 39, 0.08);
  color: var(--brand-1);
  margin-bottom: 6px;
}

.mini-badge-top i {
  font-size: 0.8rem;
}

.mini-head-title {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
}

.mini-head-title span {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mini-head-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: var(--brand-grad);
  margin-top: 8px;
}

.mini-head-sub {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 540px;
}

.mini-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1rem;
  border-radius: 14px;
  font-weight: 900;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  color: #111827;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.mini-viewall:hover {
  border-color: rgba(181, 65, 39, 0.35);
  color: var(--brand-1);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .mini-head-wrap {
    align-items: flex-start;
  }

  .mini-head-title {
    font-size: 1.35rem;
  }

  .mini-head-sub {
    max-width: 100%;
  }
}

/* IMAGE-ONLY SLIDER */
.gallery-sec {
  background: var(--off);
  position: relative;
  margin-top: 40px;
}

/* SOFT BACKGROUND GLOW */
.gallery-sec::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(var(--brand-1), transparent 70%);
  opacity: 0.12;
  left: -120px;
  top: -120px;
}

/* SLIDER WRAP */
.gallery-wrap {
  position: relative;
  margin-top: 30px;
}

/* CARD */
.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.6s;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY CAPTION */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(6px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* CUSTOM ARROWS */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  font-size: 22px;
  z-index: 3;
}

.gallery-prev {
  left: -20px;
}

.gallery-next {
  right: -20px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--brand-grad);
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {

  .gallery-prev,
  .gallery-next {
    display: none;
  }

  .gallery-card img {
    height: 180px;
  }
}

/* ===============================
   FLEET PRO / CAR CARDS (CLEAN)
   =============================== */

/* ===============================
   SECTION HEAD
   =============================== */
.fleetpro {
  padding: 54px 0;
}

.fleetpro__head {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fleetpro__tag {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 0.8rem;
  border: 1px solid #e6e8ef;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  font-weight: 900;
}

.fleetpro__title {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: #0f172a;
  font-size: clamp(22px, 2.2vw, 32px);
}

.fleetpro__title span {
  background: linear-gradient(135deg, #b54127, #aa3511);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fleetpro__sub {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
  max-width: 70ch;
}

/* ===============================
   CARD
   =============================== */
.carcard {
  background: #fff;
  border: 1px solid #e6e8ef;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.1);
  position: relative;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.carcard:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 80px rgba(15, 23, 42, 0.16);
  border-color: rgba(181, 65, 39, 0.22);
}

/* ===============================
   MEDIA AREA
   =============================== */
.carcard__media {
  position: relative;
  background:
    radial-gradient(120% 90% at 20% 18%,
      rgba(181, 65, 39, 0.18) 0%,
      rgba(181, 65, 39, 0) 55%),
    radial-gradient(120% 90% at 80% 20%,
      rgba(15, 23, 42, 0.1) 0%,
      rgba(15, 23, 42, 0) 55%),
    linear-gradient(180deg, #fbfbfd 0%, #f3f4f7 100%);
}

.carcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #b54127, #aa3511);
  color: #fff;
  font-weight: 950;
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(181, 65, 39, 0.22);
  z-index: 2;
}

.carcard__imgwrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
}

.carcard__imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.carcard:hover .carcard__imgwrap img {
  transform: scale(1.05);
}

.carcard__mediaMeta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* rating */
.trust {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 950;
  color: #0f172a;
}

.trust i {
  color: #ffd600;
}

.trust span {
  color: #64748b;
  font-weight: 800;
  font-size: 0.86rem;
}

/* ===============================
   BODY
   =============================== */
.carcard__body {
  padding: 14px 14px 12px;
}

.carcard__row1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.carcard__title {
  margin: 0;
  font-weight: 950;
  color: #0f172a;
  font-size: 1.03rem;
}

.carcard__muted {
  margin: 6px 0 0;
  color: #64748b;
  font-weight: 750;
  font-size: 0.92rem;
}

.pill {
  border: 1px solid #e6e8ef;
  background: #fff;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.78rem;
  color: #0f172a;
  white-space: nowrap;
}

/* note */
.carcard__note {
  margin-top: 10px;
  border: 1px dashed rgba(100, 116, 139, 0.35);
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  color: #64748b;
  font-weight: 750;
  font-size: 0.86rem;
  line-height: 1.45;
  display: flex;
  gap: 10px;
}

.carcard__note i {
  color: #b54127;
  margin-top: 2px;
}

/* divider */
.carcard__divider {
  height: 1px;
  background: #e6e8ef;
  margin: 12px 0;
}

/* ===============================
   CHIPS
   =============================== */
.carChips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.carChip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f5f8;
  border: 1px solid #e3e7ee;
  font-size: 0.75rem;
  font-weight: 850;
  color: #1e293b;
}

.carChip i {
  font-size: 0.8rem;
  color: #b54127;
}

/* ===============================
   FOOTER BUTTONS
   =============================== */
.carcard__footer {
  padding-top: 2px;
}

.carcard__actions--full {
  display: flex;
  gap: 12px;
  width: 100%;
}

.btn-full {
  flex: 1;
  min-width: 0;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 950;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.btn-view {
  background: rgba(181, 65, 39, 0.1);
  border: 1px solid rgba(181, 65, 39, 0.28);
  color: #b54127;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.btn-view:hover {
  background: rgba(181, 65, 39, 0.16);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.btn-enq {
  position: relative;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #b54127, #aa3511);
  box-shadow: 0 18px 40px rgba(181, 65, 39, 0.22);
  overflow: hidden;
}

.btn-enq::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 60%;
  height: 180%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  opacity: 0.65;
  transition: transform 0.55s ease;
}

.btn-enq:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 24px 55px rgba(181, 65, 39, 0.3);
}

.btn-enq:hover::before {
  transform: translateX(220%) rotate(18deg);
}

/* mobile */
@media (max-width: 575.98px) {
  .btn-full {
    height: 44px;
    font-size: 0.92rem;
  }

  .carcard__imgwrap {
    height: 190px;
  }
}

/* ===== SECTION HEADING DESIGN ===== */
.sec-head {
  margin-bottom: 18px;
  max-width: 860px;
  /* prevents long boring full-width line */
}

.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(181, 65, 39, 0.08);
  border: 1px solid rgba(181, 65, 39, 0.14);
  color: #7a2e0e;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}

.sec-kicker i {
  color: var(--brand-1, #b54127);
  font-size: 0.95rem;
}

.tour-head {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: #0f172a;
  font-size: clamp(22px, 2.2vw, 32px);
}

.tour-head span {
  background: linear-gradient(135deg, #b54127, #aa3511);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-p {
  font-size: 1.1rem;
  font-weight: 300px;
}

/* action */
.quote-cta {
  margin-top: 35px;
  padding: 26px 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff7f5, #fff);
  border: 1px solid rgba(181, 65, 39, 0.18);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.quote-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

/* left text */
.quote-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-1);
  letter-spacing: 1px;
}

.quote-text h4 {
  margin: 6px 0 6px;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
}

.quote-text p {
  color: #6b7280;
  margin: 0;
  max-width: 520px;
}

/* whatsapp button */
.quote-btn {
  background: rgba(181, 65, 39, 0.1);
  border: 1px solid rgba(181, 65, 39, 0.28);
  color: #b54127;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}

.quote-btn:hover {
  transform: translateY(-3px);
}

.mini-cta {
  margin-top: 18px;
}

/* buttons container */
.mini-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* common button style */
.mini-btn {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

/* whatsapp button */
.mini-btn.primary {
  background: linear-gradient(135deg, #b54127, #b54127);
  color: #fff;
}

.mini-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px #ff9881;
}

/* enquiry button */
.mini-btn.secondary {
  background: rgba(181, 65, 39, 0.1);
  border: 1px solid rgba(181, 65, 39, 0.28);
  color: #b54127;
}

.mini-btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px #ff9881;
}

/* note */
.mini-note {
  margin-top: 14px;
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* booking work */
/* TITLES */
.section-title {
  text-align: center;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
}

.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  color: transparent;
}

/* WRAPPER */
.steps-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

/* CONNECTOR LINE */
.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 8%;
  width: 84%;
  height: 4px;
  background: linear-gradient(to right, #ddd, var(--brand-2));
  z-index: 0;
}

/* STEP CARD */
.step-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 40px 25px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  flex: 1;
  transition: 0.35s;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

/* ICON CIRCLE */
.step-icon {
  width: 80px;
  height: 80px;
  background: var(--brand-grad);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: auto;
  margin-top: -70px;
  box-shadow: 0 20px 40px rgba(170, 53, 17, 0.35);
  position: relative;
  z-index: 2;
}

/* BIG STEP NUMBER */
.step-no {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 60px;
  font-weight: 900;
  color: #000;
  opacity: 0.05;
}

.step-card h4 {
  margin-top: 20px;
  font-weight: 800;
}

.step-card p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* CTA */
.btn-book {
  background: var(--brand-grad);
  color: #fff;
  padding: 16px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(170, 53, 17, 0.35);
  transition: 0.3s;
}

.btn-book:hover {
  transform: translateY(-3px);
}

/* ============================= */
/* TABLET */
@media (max-width: 992px) {
  .steps-wrapper {
    gap: 20px;
  }

  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 26px;
    margin-top: -60px;
  }

  .steps-wrapper::before {
    left: 6%;
    width: 88%;
  }
}

/* ============================= */
/* MOBILE */
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  /* remove horizontal line */
  .steps-wrapper::before {
    display: none;
  }

  /* vertical timeline line */
  .booking-sec {
    position: relative;
  }

  .booking-sec::before {
    content: "";
    position: absolute;
    top: 190px;
    left: 50%;
    width: 4px;
    height: 65%;
    background: linear-gradient(var(--brand-1), var(--brand-2));
    transform: translateX(-50%);
    z-index: 0;
  }

  .step-card {
    width: 100%;
    max-width: 420px;
    padding-top: 55px;
  }

  /* center icon and place on timeline */
  .step-icon {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
  }

  .step-card h4 {
    margin-top: 35px;
  }

  .section-sub {
    padding: 0 15px;
  }
}

/* ============================= */
/* SMALL MOBILE */
@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }

  .step-card {
    padding: 50px 20px 25px;
  }

  .step-card p {
    font-size: 14px;
  }

  .btn-book {
    width: 100%;
    display: inline-block;
    text-align: center;
  }
}

/* review */
.review-sec {
  background: var(--off);
  position: relative;
}

/* RATING SUMMARY */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.big-rating {
  font-size: 60px;
  font-weight: 900;
  color: var(--brand-2);
}

.stars i {
  color: #f59e0b;
}

.stars.small i {
  font-size: 14px;
}

/* REVIEW CARD */
.review-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.review-card p {
  color: var(--muted);
  margin: 15px 0 20px;
  line-height: 1.7;
}

/* USER */
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-user span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.section-s {
  text-align: center;
  color: var(--muted);
  margin-bottom: 70px;
}

/* NEW: WHY CHOOSE US */
/* SECTION BACKGROUND */
.why-premium {
  background:
    radial-gradient(circle at 20% 20%,
      rgba(225, 93, 93, 0.18),
      transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(170, 53, 17, 0.2), transparent 40%),
    linear-gradient(135deg, #0b1220, #111827 60%, #1f2937);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
}

/* TEXT */
.overline {
  letter-spacing: 4px;
  font-size: 12px;
  opacity: 0.65;
}

.why-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  margin: 15px 0 25px;
}

/* STATS STRIP */
.trust-strip {
  display: flex;
  gap: 60px;
  margin: 40px 0 45px;
  padding: 22px 30px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.trust-strip strong {
  font-size: 36px;
}

.trust-strip span {
  opacity: 0.75;
  font-size: 14px;
}

/* FEATURE LIST */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.35s;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
}

.why-item i {
  font-size: 26px;
  color: #ff8a65;
  background: rgba(255, 138, 101, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT CARD */
.why-card-big {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  padding: 55px;
  border-radius: 26px;
  position: relative;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.45);
}

.why-card-big::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.why-card-big h4 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}

.why-card-big p {
  opacity: 0.85;
  margin-bottom: 25px;
}

.why-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.why-perks i {
  color: #4ade80;
  margin-right: 8px;
}

/* PREMIUM BUTTON */
.btn-cta {
  position: relative;
  display: inline-block;
  background: var(--brand-grad);
  color: #fff;
  padding: 18px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(170, 53, 17, 0.6);
}

.btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transform: skewX(-25deg);
  transition: 0.7s;
}

.btn-cta:hover::after {
  left: 130%;
}

.btn-cta:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .why-title {
    font-size: 34px;
  }

  .trust-strip {
    gap: 30px;
    flex-wrap: wrap;
  }
}

/* ABOUT Us */
.about-premium {
  margin-bottom: 70px;
  position: relative;
}

/* IMAGE COLLAGE */
.about-images {
  position: relative;
}

.img-main {
  width: 85%;
  border-radius: 22px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

.img-small {
  position: absolute;
  width: 55%;
  right: 0;
  bottom: -40px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

/* TEXT */
.overline {
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Dark version */
.overline.dark {
  color: var(--brand-2);
  display: inline-block;
  position: relative;
}

/* small premium underline */
.overline.dark::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 6px;
  background: var(--brand-grad);
  border-radius: 2px;
}

.about-title {
  font-size: 42px;
  font-weight: 900;
  margin: 10px 0 20px;
  color: var(--ink);
}

.about-text {
  color: var(--muted);
  line-height: 1.8;
}

/* FEATURES */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 25px 0 30px;
}

.about-features i {
  color: var(--brand-1);
  margin-right: 8px;
}

/* BUTTON */
.btn-about {
  display: inline-block;
  background: var(--brand-grad);
  color: #fff;
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 20px 50px rgba(170, 53, 17, 0.35);
}

.btn-about:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .img-small {
    display: none;
  }

  .about-title {
    font-size: 32px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .about-title {
    font-size: 36px;
  }

  .img-main {
    width: 90%;
  }

  .img-small {
    width: 60%;
    bottom: -25px;
  }
}

@media (max-width: 768px) {

  /* center everything */
  .about-premium .row {
    text-align: center;
  }

  /* IMAGE COLLAGE → STACKED */
  .about-images {
    margin-bottom: 40px;
  }

  .img-main {
    width: 100%;
  }

  .img-small {
    display: none;
    /* remove floating image for clean mobile */
  }

  /* TEXT SPACING */
  .about-title {
    font-size: 30px;
    line-height: 1.25;
    margin-top: 40px;
  }

  .about-text {
    font-size: 15px;
  }

  /* FEATURES → SINGLE COLUMN */
  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
    max-width: 330px;
    margin: 25px auto 30px;
  }

  /* BUTTON FULL WIDTH */
  .btn-about {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .about-premium {
    padding: 70px 0;
  }

  .about-title {
    font-size: 26px;
  }
}

/* footer */
.footer-lux {
  background: #0b1220;
  color: #fff;
  padding: 90px 0 30px;
  position: relative;

}

/* TOP GLOW LINE */
.footer-glow {
  height: 2px;
  background: linear-gradient(to right, transparent, #e15d5d, transparent);
  margin-bottom: 60px;
  opacity: 0.8;
}

/* LOGO AREA */
.footer-logo {
  height: 55px;
  margin-bottom: 18px;
}

.footer-brand p {
  opacity: 0.7;
  line-height: 1.7;
  max-width: 320px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--brand-grad);
  transform: translateY(-3px);
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

/* CONTACT */
.footer-contact {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}

.footer-contact li {
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-contact i {
  color: #ff8a65;
  margin-right: 8px;
}

/* NEWSLETTER */
.newsletter {
  display: flex;
  margin-top: 18px;
}

.newsletter input {
  flex: 1;
  padding: 12px;
  border: none;
  background: #111827;
  color: #fff;
  border-radius: 10px 0 0 10px;
}

.newsletter button {
  background: var(--brand-grad);
  border: none;
  padding: 0 18px;
  color: #fff;
  border-radius: 0 10px 10px 0;
}

/* BOTTOM BAR */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.7;
}

.footer-policy a {
  color: #cbd5e1;
  margin-left: 20px;
  text-decoration: none;
}

.footer-policy a:hover {
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ===== Pop up ===== */
/* ===== Overlay ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9999;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* ===== Popup Container ===== */
.popup-container {
  background: rgba(255, 255, 255, 0.95);
  width: 95%;
  max-width: 420px;
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
  animation: popupFade 0.4s ease;
}

@keyframes popupFade {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== Close Button ===== */
.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== Header ===== */
.popup-header h3 {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 700;
}

.popup-header p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* ===== Form Styling ===== */
.form-group {
  margin-bottom: 15px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
  border-color: #ff6a00;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
}

/* ===== Submit Button ===== */
.submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #e15d5d 0%, #b54127 50%, #aa3511 100%);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 60, 0, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .popup-container {
    padding: 25px 18px;
  }
}
