/* ============================================================
   ACP PRADUMAN CAB SERVICE — style-new.css
   Theme: Deep Purple × Nature-Organic
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');
/* ── VARIABLES ── */
:root {
  --plum:       #CC5500;        /* was #4a1a6b  → deep burnt orange */
  --plum-deep:  #8B3300;        /* was #2e0a45  → very deep orange-brown */
  --plum-mid:   #E86000;        /* was #6b2d9a  → mid orange */
  --plum-light: #FF7A1A;        /* was #9c5cd4  → bright orange */
  --plum-soft:  #FFB066;        /* was #c49de8  → soft warm orange */
  --plum-pale:  #FFF0E0;        /* was #f0e8ff  → pale warm cream */
  --leaf:       #C8860A;        /* was #4caf73  → logo gold/amber */
  --leaf-dark:  #8B5E00;        /* was #2e7d50  → deep gold */
  --leaf-light: #F0B84B;        /* was #7dd4a0  → light gold */
  --gold:       #FF6B00;        /* was #e8b84b  → primary logo orange */
  --gold-light: #FF9A3C;        /* was #f5d07a  → lighter orange */
  --dark:       #0A0A0A;        /* was #1a0a2e  → logo black background */
  --dark2:      #1A1A1A;        /* was #241240  → slightly lighter black */
  --text:       #3D2200;        /* was #3d2e5a  → deep orange-brown text */
  --text-muted: #8B6040;        /* was #7a6b92  → muted warm brown */
  --white:      #ffffff;        /* unchanged */
  --off-white:  #FFF8F0;        /* was #faf8ff  → warm off-white */
  --cream:      #FFF3E0;        /* was #f5f0ff  → warm orange-tinted cream */
  --border:     #F5C89A;        /* was #ddd0f5  → warm orange border */
  --shadow-sm:  0 2px 12px rgba(204, 85, 0, 0.10);   /* orange-tinted shadows */
  --shadow:     0 6px 30px rgba(204, 85, 0, 0.16);
  --shadow-md:  0 12px 50px rgba(204, 85, 0, 0.22);
  --shadow-lg:  0 20px 70px rgba(204, 85, 0, 0.30);
  --radius-sm:  8px;            /* unchanged */
  --radius:     14px;           /* unchanged */
  --radius-lg:  22px;           /* unchanged */
  --radius-xl:  32px;           /* unchanged */
  --font:       'DM Sans', sans-serif;           /* unchanged */
  --font-serif: 'Playfair Display', serif;       /* unchanged */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);   /* unchanged */
  --spring:     cubic-bezier(0.34, 1.56, 0.64, 1); /* unchanged */
  --t:          0.3s;           /* unchanged */
}
/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.1;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ── UTILITIES ── */
.section-pad   { padding: 90px 0; }
.bg-cream      { background: var(--cream); }
.bg-off-white  { background: var(--off-white); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--plum-pale), #FFB066);
  color: var(--plum-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(107,45,154,0.15);
}
.section-tag i, .section-tag svg { font-size: 12px; color: var(--plum-mid); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.22;
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--plum-mid); }
.section-title span { color: var(--plum-mid); }

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 580px;
}
.section-sub--center { margin: 0 auto; text-align: center; }

/* ── DECORATIVE BLOB SVG HELPERS ── */
.blob-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, var(--plum-deep) 0%, var(--dark2) 100%);
  padding: 9px 0;
  position: relative;
  overflow: hidden;
}
.topbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,157,232,0.3), transparent);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar-left a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.9);
  font-size: 12.5px;
  transition: color var(--t) var(--ease);
}
.topbar-left a:hover { color: var(--plum-soft); }
.topbar-left a svg { width: 13px; height: 13px; color: var(--plum-soft); }
.topbar-right .address-span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
}
.topbar-right .address-span svg { width: 12px; height: 12px; color: var(--plum-light); }
.topbar-socials {
  display: flex;
  gap: 6px;
}
.topbar-socials a {
  width: 27px; height: 27px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  border-radius: 7px;
  font-size: 11px;
  transition: all var(--t) var(--ease);
  border: 1px solid rgba(255,255,255,0.06);
}
.topbar-socials a:hover {
  background: var(--plum-mid);
  color: var(--white);
  border-color: var(--plum-mid);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.main-navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.main-navbar.scrolled {
  box-shadow: 0 4px 30px rgba(255,126,26,0.1);
  border-bottom-color: var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  gap: 16px;
}
.nav-logo img { height: 77px; width: auto; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  margin-bottom: 0;
  justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  letter-spacing: -0.1px;
}
.nav-links > li > a i { font-size: 9px; transition: transform var(--t) var(--ease); }
.nav-links > li > a:hover,
.nav-links > li.has-dropdown:hover > a {
  color: var(--plum-mid);
  background: var(--plum-pale);
}
.nav-links > li.has-dropdown:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.28s var(--ease);
  border: 1px solid var(--border);
  z-index: 999;
}
.wide-dropdown {
    min-width: 270px;
    /* columns: 2; */
    /* column-gap: 0; */
    max-height: 420px;
    overflow: auto;
  }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  font-size: 13px;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--t) var(--ease);
  break-inside: avoid;
}
.dropdown li a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--plum-light);
  opacity: 0;
  transition: opacity var(--t);
  flex-shrink: 0;
}
.dropdown li a:hover {
  color: var(--plum-mid);
  background: var(--plum-pale);
  padding-left: 16px;
}
.dropdown li a:hover::before { opacity: 1; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-whatsapp {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #25d366, #1ebe5c);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  transition: all var(--t) var(--ease);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.nav-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.nav-cta {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  color: var(--white);
  border-radius: 50px;
  font-size: 13px; font-weight: 700;
  transition: all var(--t) var(--ease);
  box-shadow: 0 4px 16px rgba(107,45,154,0.35);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--plum), var(--plum-deep));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,45,154,0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(30,10,50,0.55);
  z-index: 1099;
  backdrop-filter: blur(3px);
}
.mobile-overlay.active { display: block; }
.mobile-menu {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--white);
  z-index: 1100;
  overflow-y: auto;
  transition: right 0.38s var(--spring);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 60px rgba(255,126,26,0.25);
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--plum-deep), var(--dark2));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-close { color: rgba(255,255,255,0.7); font-size: 16px; padding: 4px; transition: color var(--t); }
.mobile-close:hover { color: var(--plum-soft); }
.mobile-nav { flex: 1; padding: 8px 0; }
.mobile-nav > li > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid rgba(255,126,26,0.06);
  transition: all var(--t);
}
.mobile-nav > li > a:hover { color: var(--plum-mid); background: var(--plum-pale); }
.mobile-nav > li > a i { font-size: 10px; transition: transform var(--t); }
.mob-has-sub.sub-open > a { color: var(--plum-mid); }
.mob-has-sub.sub-open > a i { transform: rotate(45deg); }
.mob-sub { display: none; background: var(--plum-pale); border-left: 3px solid var(--plum-light); margin-left: 20px; padding: 0}
.mob-sub.open { display: block; }
.mob-sub li a {
  display: block; padding: 10px 16px;
  font-size: 13px; color: var(--text);
  border-bottom: 1px solid rgba(255,126,26,0.06);
  transition: all var(--t);
}
.mob-sub li a:hover { color: var(--plum-mid); }
.mobile-menu-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.mob-call {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  color: var(--white);
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 700; font-size: 14px;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(107,45,154,0.3);
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-swiper { flex: 1; }
.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
    padding: 80px 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:rgba(0, 0, 0, 0.2);
  z-index: -1;
    opacity: 0.6;
}
/* Nature-vine SVG overlay */
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239c5cd4' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L40 42v-2zm0 4L80 4v2L40 46v-2zm0 4L80 8v2L40 50v-2zm0 4L80 12v2L40 54v-2zm0 4L80 16v2L40 58v-2zm0 4L80 20v2L40 62v-2zm0 4L80 24v2L40 66v-2zm0 4L80 28v2L40 70v-2zm0 4L80 32v2L40 74v-2zm0 4L80 36v2L40 78v-2zm0 4L80 40v2L40 80v-2zm-2 2L78 40h2L40 80h-2zm-4 0L74 40h2L36 80h-2zm-4 0L70 40h2L32 80h-2z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 660px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,122,26,0.25);
  border: 1px solid rgba(196,157,232,0.4);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow svg { width: 14px; height: 14px; }
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(30,8,50,0.5);
}
.hero-content h1 .accent { color: var(--plum-light); font-style: italic; }
.hero-content h1 .leaf-accent { color: var(--leaf); }
.hero-content p {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  color: var(--white);
  border-radius: 50px;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 8px 30px rgba(107,45,154,0.5);
  transition: all var(--t) var(--ease);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(107,45,154,0.6);
  background: linear-gradient(135deg, var(--plum), var(--plum-deep));
}
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,0.45);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  backdrop-filter: blur(6px);
  transition: all var(--t) var(--ease);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

/* Hero swiper controls */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 48px; height: 48px;
  background: rgba(255,122,26,0.2);
  border: 1px solid rgba(196,157,232,0.3);
  border-radius: 50%;
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: all var(--t) var(--ease);
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: var(--plum-mid);
  border-color: var(--plum-mid);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: 14px; font-weight: 900; }
.hero-pagination { bottom: 100px !important; }
.hero-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.4); width: 8px; height: 8px; }
.hero-pagination .swiper-pagination-bullet-active { background: var(--plum-soft); width: 28px; border-radius: 4px; }

/* Hero Stats Strip */
.hero-stats-strip {
  background: linear-gradient(90deg, var(--plum-deep) 0%, var(--dark2) 100%);
  position: relative;
  z-index: 10;
}
.hero-stats-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--plum-mid), var(--plum-soft), var(--leaf), var(--plum-soft), var(--plum-mid));
}
.stats-row {
  display: flex;
  align-items: stretch;
}
.stat-block {
  flex: 1;
  padding: 22px 20px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--t);
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(107,45,154,0.15); }
.stat-block .num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 800;
  color: var(--plum-soft);
  line-height: 1;
  display: block;
}
.stat-block .num sup { font-size: 18px; color: var(--leaf-light); }
.stat-block .lbl {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 5px;
  display: block;
}

/* ══════════════════════════════════════════
   BOOKING FORM SECTION
══════════════════════════════════════════ */
.booking-section {
  padding: 0px 0;
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107,45,154,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.booking-glass {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(196,157,232,0.25);
  position: relative;
  overflow: hidden;
}
.booking-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plum-mid), var(--plum-light), var(--leaf));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.booking-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.booking-head p {
  margin-bottom: 0;
}
.booking-head-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--plum-pale), #FFF0E0);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-head-icon svg { width: 26px; height: 26px; color: var(--plum-mid); }
.booking-head h2 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700;
  color: var(--dark); margin-bottom: 3px;
}
.booking-head p { font-size: 13.5px; color: var(--text-muted); }

.form-label {
  display: block;
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.input-wrap {
  position: relative; display: flex; align-items: center;
}
.input-wrap svg {
  position: absolute; left: 14px;
  color: var(--plum-light); pointer-events: none; z-index: 1;
  width: 16px; height: 16px;
}
.input-wrap input {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--dark);
  background: var(--white);
  transition: all var(--t) var(--ease);
}
.input-wrap input:focus {
  outline: none;
  border-color: var(--plum-mid);
  box-shadow: 0 0 0 4px rgba(107,45,154,0.08);
  background: var(--plum-pale);
}
.input-wrap input::placeholder { color: #c3c3c3; }
.btn-submit-main {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700;
  cursor: pointer; border: none;
  box-shadow: 0 6px 20px rgba(107,45,154,0.4);
  transition: all var(--t) var(--ease);
}
.btn-submit-main:hover {
  background: linear-gradient(135deg, var(--plum), var(--plum-deep));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107,45,154,0.5);
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about-section {
  position: relative;
  overflow: hidden;
}
.about-section .blob-1 {
  width: 500px; height: 500px;
  background: var(--plum-mid);
  top: -150px; left: -200px;
}
.about-section .blob-2 {
  width: 300px; height: 300px;
  background: var(--leaf);
  bottom: -100px; right: -100px;
}

/* Image mosaic */
.about-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
  position: relative;
}
.ab-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.ab-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.ab-img:hover img { transform: scale(1.06); }
.ab-img-1 { grid-column: 1; grid-row: 1 / 3; border-radius: var(--radius-lg); }
.ab-img-2 { grid-column: 2; grid-row: 1; }
.ab-img-3 { grid-column: 2; grid-row: 2; }
.ab-badge-years {
  position: absolute;
  bottom: -20px; left: 20px;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 5;
  text-align: center;
  border: 3px solid var(--white);
}
.ab-badge-years strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 800; line-height: 1;
  color: var(--gold-light);
}
.ab-badge-years span { font-size: 11px; opacity: 0.9; line-height: 1.3; display: block; margin-top: 3px; }
.ab-badge-rating {
  position: absolute;
  top: 20px; right: -16px;
  background: var(--white);
  color: var(--dark);
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 5;
  display: flex; align-items: center; gap: 10px;
  border: 2px solid var(--plum-pale);
}
.ab-badge-rating .stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.ab-badge-rating strong { display: block; font-size: 15px; font-weight: 800; color: var(--dark); line-height: 1; }
.ab-badge-rating span { font-size: 11px; color: var(--text-muted); }

/* About text */
.about-lead {
  font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 32px;
}
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.af-box {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(107,45,154,0.1);
  transition: all var(--t) var(--ease);
}
.af-box:hover {
  background: var(--plum-pale);
  border-color: var(--plum-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.af-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.af-icon-1 { background: linear-gradient(135deg, #f0e8ff, #FFF0E0); color: var(--plum-mid); }
.af-icon-2 { background: linear-gradient(135deg, #e8f5ee, #d0f0e0); color: var(--leaf-dark); }
.af-icon-3 { background: linear-gradient(135deg, #fff8e8, #ffefc0); color: #c87d00; }
.af-icon-4 { background: linear-gradient(135deg, #e8f0ff, #d0e0ff); color: #3060c0; }
.af-box strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.af-box p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.about-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-primary-pill {
  display: inline-block;
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  color: var(--white);
  border-radius: 50px;
  font-size: 14px; font-weight: 700;
  transition: all var(--t) var(--ease);
  box-shadow: 0 4px 16px rgba(107,45,154,0.35);
}
.btn-primary-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,45,154,0.45);
}
.phone-pill {
  display: flex; align-items: center; gap: 13px;
}
.phone-ring-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
  animation: pulseRing 2.2s infinite;
}
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,45,154,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(107,45,154,0); }
}
.phone-pill small { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.phone-pill strong { display: block; font-size: 16px; font-weight: 700; color: var(--dark); }

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
.services-section { position: relative; overflow: hidden; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all var(--t) var(--ease);
  cursor: pointer;
  z-index: 1;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: height var(--t) var(--ease);
  z-index: -1;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.svc-card:hover::before { height: 100%; opacity: 0.06; border-radius: var(--radius-lg); }

.svc-card--v1::before { background: linear-gradient(135deg, #7b2ff7, #4a1a6b); }
.svc-card--v2::before { background: linear-gradient(135deg, #2e7d50, #4caf73); }
.svc-card--v3::before { background: linear-gradient(135deg, #c87d00, #e8b84b); }
.svc-card--v4::before { background: linear-gradient(135deg, #1a4a9a, #4070d4); }
.svc-card--v5::before { background: linear-gradient(135deg, #8b1a6b, #c44d9a); }
.svc-card--v6::before { background: linear-gradient(135deg, #005a5a, #00a0a0); }

.svc-icon-wrap {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  transition: transform var(--t) var(--spring);
}
.svc-card:hover .svc-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.svc-card--v1 .svc-icon-wrap { background: linear-gradient(135deg, #f0e8ff, #dcc8ff); color: #7b2ff7; }
.svc-card--v2 .svc-icon-wrap { background: linear-gradient(135deg, #e0f5ec, #b8ecd4); color: #2e7d50; }
.svc-card--v3 .svc-icon-wrap { background: linear-gradient(135deg, #fff5e0, #ffe8a0); color: #c87d00; }
.svc-card--v4 .svc-icon-wrap { background: linear-gradient(135deg, #e0eaff, #b8ccff); color: #1a4a9a; }
.svc-card--v5 .svc-icon-wrap { background: linear-gradient(135deg, #ffe0f5, #ffb8e0); color: #8b1a6b; }
.svc-card--v6 .svc-icon-wrap { background: linear-gradient(135deg, #e0f5f5, #b8eaea); color: #005a5a; }

.svc-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.svc-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  transition: gap var(--t);
}
.svc-card--v1 .svc-link { color: #7b2ff7; }
.svc-card--v2 .svc-link { color: #2e7d50; }
.svc-card--v3 .svc-link { color: #c87d00; }
.svc-card--v4 .svc-link { color: #1a4a9a; }
.svc-card--v5 .svc-link { color: #8b1a6b; }
.svc-card--v6 .svc-link { color: #005a5a; }
.svc-card:hover .svc-link { gap: 10px; }
.svc-link svg { width: 14px; height: 14px; transition: transform var(--t); }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* ══════════════════════════════════════════
   PACKAGES SECTION
══════════════════════════════════════════ */
.packages-section { position: relative; overflow: hidden; }
.packages-section .blob-bg {
  width: 600px; height: 600px;
  background: var(--plum-light);
  top: -200px; right: -200px;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--t) var(--ease);
  position: relative;
}
.pkg-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--plum-light); }
.pkg-img-wrap { position: relative; height: 210px; overflow: hidden; }
.pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.08); }
.pkg-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,8,50,0.7) 0%, transparent 60%);
}
.pkg-category-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(107,45,154,0.85);
  color: var(--white);
  font-size: 10.5px; font-weight: 700;
  padding: 5px 13px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
}
.pkg-price-tag {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--white);
  color: var(--plum);
  font-size: 13px; font-weight: 800;
  padding: 5px 12px; border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.pkg-price-tag span { font-size: 10px; font-weight: 500; color: var(--text-muted); }
.pkg-body { padding: 20px 22px 22px; }
.pkg-body h4 {
  font-size: 16.5px; font-weight: 700;
  color: var(--dark); margin-bottom: 7px;
  line-height: 1.3;
}
.pkg-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.pkg-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; }
.pkg-tag-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px;
  background: var(--plum-pale);
  color: var(--plum-mid);
  font-size: 11.5px; font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(107,45,154,0.12);
}
.pkg-tag-pill svg { width: 11px; height: 11px; }
.pkg-cta-row { display: flex; gap: 8px; }
.btn-pkg-book {
  flex: 1; text-align: center;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700;
  transition: all var(--t) var(--ease);
  box-shadow: 0 3px 12px rgba(107,45,154,0.3);
}
.btn-pkg-book:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(107,45,154,0.4); }
.btn-pkg-wa {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 16px; transition: all var(--t);
}
.btn-pkg-wa:hover { background: #1ebe5c; transform: translateY(-1px); }

/* ══════════════════════════════════════════
   CHARDHAM SPECIAL BANNER
══════════════════════════════════════════ */
.chardham-banner {
  background: linear-gradient(135deg, var(--plum-deep), var(--dark2), #1a2a0a);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.chardham-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-opacity='0.04' fill='%23c49de8'%3E%3Cpolygon points='0 0 50 0 0 50'/%3E%3Cpolygon points='100 100 50 100 100 50'/%3E%3C/g%3E%3C/svg%3E");
}
.chardham-content { position: relative; z-index: 2; }
.chardham-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}
.chardham-heading .om-accent { color: var(--gold-light); font-style: italic; }
.chardham-desc {
  font-size: 15px; color: rgba(255,255,255,0.65);
  max-width: 500px; line-height: 1.8; margin-bottom: 30px;
}
.chardham-dhams {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px;
}
.dham-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(196,157,232,0.15);
  border: 1px solid rgba(196,157,232,0.3);
  border-radius: 50px;
  color: var(--plum-soft);
  font-size: 13px; font-weight: 600;
  backdrop-filter: blur(4px);
}
.dham-pill svg { width: 16px; height: 16px; color: var(--gold-light); }
.chardham-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-radius: 50px;
  font-size: 14px; font-weight: 800;
  box-shadow: 0 6px 20px rgba(232,184,75,0.4);
  transition: all var(--t) var(--ease);
}
.btn-gold-pill:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(232,184,75,0.5); }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 26px;
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: all var(--t);
}
.btn-outline-light:hover { border-color: var(--plum-soft); color: var(--plum-soft); }
.chardham-image-col {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.chardham-img-ring {
  position: relative;
  width: 380px; height: 380px;
}
.chardham-img-ring::before {
  content: '';
  position: absolute; inset: -16px;
  border-radius: 50%;
  border: 2px dashed rgba(196,157,232,0.3);
  animation: slowSpin 30s linear infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
.chardham-img-ring::after {
  content: '';
  position: absolute; inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(232,184,75,0.15);
  animation: slowSpin 50s linear infinite reverse;
}
.chardham-main-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(196,157,232,0.3);
  box-shadow: 0 20px 60px rgba(255,126,26,0.5);
}
.chardham-main-img img { width: 100%; height: 100%; object-fit: cover; }
.char-float-1, .char-float-2 {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 13px; font-weight: 600;
  color: var(--dark);
  border: 1px solid rgba(107,45,154,0.1);
}
.char-float-1 { top: 30px; right: -20px; }
.char-float-2 { bottom: 50px; left: -30px; }
.char-float-1 .f-icon, .char-float-2 .f-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.char-float-1 .f-icon { background: var(--plum-pale); color: var(--plum-mid); }
.char-float-2 .f-icon { background: #e0f5ec; color: var(--leaf-dark); }

/* ══════════════════════════════════════════
   CABS / FLEET SECTION
══════════════════════════════════════════ */
.fleet-section { background: var(--cream); position: relative; overflow: hidden; }
.cabs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cab-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--t) var(--ease);
  position: relative;
}
.cab-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--plum-light);
}
.cab-tile.featured-cab { border-color: var(--plum-mid); }
.popular-ribbon {
  position: absolute;
  top: 16px; right: -28px;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  color: var(--white);
  font-size: 10px; font-weight: 800;
  padding: 5px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  width: 120px;
  text-align: center;
}
.cab-img-area {
  background: linear-gradient(135deg, var(--plum-pale) 0%, #eee0ff 100%);
  padding: 20px;
  height: 155px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.cab-img-area::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30px;
  background: linear-gradient(to top, var(--white), transparent);
}
.cab-img-area img {
  max-height: 120px; width: auto;
  object-fit: contain;
  transition: transform 0.45s var(--ease);
  filter: drop-shadow(0 8px 20px rgba(255,126,26,0.2));
}
.cab-tile:hover .cab-img-area img { transform: scale(1.07) translateY(-4px); }
.cab-info { padding: 16px 18px 18px; }
.cab-info h5 { font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.cab-spec-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.spec-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px;
  background: var(--plum-pale);
  color: var(--plum-mid);
  border-radius: 50px;
  font-size: 11.5px; font-weight: 600;
  border: 1px solid rgba(107,45,154,0.1);
}
.spec-chip svg { width: 11px; height: 11px; }
.cab-rate-box {
  display: flex;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 13px;
  overflow: hidden;
}
.rate-col {
  flex: 1; padding: 9px 12px; text-align: center;
  border-right: 1px solid var(--border);
  line-height: 1;
}
.rate-col:last-child { border-right: none; }
.rate-col .r-lbl { display: block; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.rate-col .r-val { display: block; font-size: 16px; font-weight: 800; color: var(--plum-mid); font-family: var(--font-serif); }
.cab-action-row { display: flex; gap: 7px; }
.btn-cab-book {
  flex: 1; text-align: center;
  padding: 8px 10px;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 12.5px; font-weight: 700;
  transition: all var(--t) var(--ease);
  cursor: pointer;
}
.btn-cab-book:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(107,45,154,0.35); }
.btn-cab-call, .btn-cab-wa {
  width: 35px; height: 35px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 14px; transition: all var(--t);
}
.btn-cab-call { background: var(--dark); color: var(--white); }
.btn-cab-call:hover { background: var(--plum-deep); }
.btn-cab-wa { background: #25d366; color: var(--white); }
.btn-cab-wa:hover { background: #1ebe5c; }

/* ══════════════════════════════════════════
   ROUTES SECTION
══════════════════════════════════════════ */
.routes-section { background: var(--off-white); position: relative; overflow: hidden; }
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.route-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--t) var(--ease);
  group: true;
}
.route-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--plum-light); }
.route-thumb { position: relative; height: 160px; overflow: hidden; }
.route-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.route-tile:hover .route-thumb img { transform: scale(1.08); }
.route-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,8,50,0.75) 0%, rgba(30,8,50,0.1) 60%);
}
.route-pill-row {
  position: absolute;
  bottom: 10px; left: 10px;
  display: flex; gap: 6px;
}
.route-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,126,26,0.8);
  color: var(--white);
  font-size: 10.5px; font-weight: 600;
  padding: 3px 9px; border-radius: 50px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(196,157,232,0.3);
}
.route-pill svg { width: 10px; height: 10px; color: var(--plum-soft); }
.route-body { padding: 16px 18px 18px; }
.route-arrow-title {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.route-from, .route-to {
  font-size: 13.5px; font-weight: 700; color: var(--dark);
}
.route-arrow-icon {
  width: 22px; height: 22px;
  background: var(--plum-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.route-arrow-icon svg { width: 10px; height: 10px; color: var(--plum-mid); }
.route-body p { font-size: 12.5px; color: var(--text-muted); margin-bottom: 13px; line-height: 1.55; }
.route-foot {
  display: flex; gap: 8px; align-items: center;
}
.btn-route-view {
  flex: 1; text-align: center;
  padding: 8px 10px;
  background: var(--cream);
  color: var(--plum-mid);
  border-radius: var(--radius-sm);
  font-size: 12.5px; font-weight: 700;
  border: 1.5px solid var(--plum-pale);
  transition: all var(--t) var(--ease);
}
.btn-route-view:hover { background: var(--plum-mid); color: var(--white); border-color: var(--plum-mid); }
.btn-route-wa {
  width: 35px; height: 35px;
  background: #25d366; color: var(--white);
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center;
  font-size: 14px; transition: all var(--t);
}
.btn-route-wa:hover { background: #1ebe5c; transform: translateY(-1px); }

/* ══════════════════════════════════════════
   WHY CHOOSE US (Dark BG)
══════════════════════════════════════════ */
.why-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--plum-deep) 40%, #1a2e0a 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.why-section::before {
  content: '';
  position: absolute; top: -40%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,45,154,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute; bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(76,175,115,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.why-left-text .section-tag { background: rgba(196,157,232,0.15); color: var(--plum-soft); border-color: rgba(196,157,232,0.2); }
.why-left-text .section-title { color: var(--white); }
.why-left-text .section-title span { color: var(--plum-soft); }
.why-lead-text { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 36px; line-height: 1.8; }
.why-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white-pill {
  display: inline-block;
  padding: 13px 28px;
  background: var(--white);
  color: var(--plum-deep);
  border-radius: 50px;
  font-size: 14px; font-weight: 800;
  transition: all var(--t) var(--ease);
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}
.btn-white-pill:hover { background: var(--plum-soft); color: var(--plum-deep); transform: translateY(-2px); }
.btn-outline-white-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: all var(--t);
}
.btn-outline-white-pill:hover { border-color: var(--plum-soft); color: var(--plum-soft); }

.why-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why-box {
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.why-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.wb-1 { background: linear-gradient(135deg, rgba(123,47,247,0.25), rgba(255,126,26,0.15)); }
.wb-2 { background: linear-gradient(135deg, rgba(76,175,115,0.2), rgba(46,125,80,0.12)); }
.wb-3 { background: linear-gradient(135deg, rgba(232,184,75,0.2), rgba(200,125,0,0.12)); }
.wb-4 { background: linear-gradient(135deg, rgba(26,74,154,0.2), rgba(64,112,212,0.12)); }
.wb-5 { background: linear-gradient(135deg, rgba(196,77,154,0.2), rgba(139,26,107,0.12)); }
.wb-6 { background: linear-gradient(135deg, rgba(0,160,160,0.2), rgba(0,90,90,0.12)); }

.why-box-icon {
  font-size: 28px;
  margin-bottom: 13px;
  display: block;
}
.wb-1 .why-box-icon { color: #b97ff0; }
.wb-2 .why-box-icon { color: #7dd4a0; }
.wb-3 .why-box-icon { color: var(--gold-light); }
.wb-4 .why-box-icon { color: #80b0ff; }
.wb-5 .why-box-icon { color: #f080c0; }
.wb-6 .why-box-icon { color: #60d0d0; }

.why-box h5 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-box p { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 0}

/* ══════════════════════════════════════════
   CONTENT / BUSINESS SECTION
══════════════════════════════════════════ */
.content-biz-section { background: var(--cream); }
.content-biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cb-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.cb-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--plum-mid), var(--plum-light));
  transition: width 0.4s var(--ease);
}
.cb-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--plum-light); }
.cb-card:hover::after { width: 100%; }
.cb-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.cb-c1 .cb-icon { background: linear-gradient(135deg, var(--plum-pale), #dcc8ff); color: var(--plum-mid); }
.cb-c2 .cb-icon { background: linear-gradient(135deg, #e0f5ec, #b8ecd4); color: var(--leaf-dark); }
.cb-c3 .cb-icon { background: linear-gradient(135deg, #fff5e0, #ffe8a0); color: #c87d00; }
.cb-c4 .cb-icon { background: linear-gradient(135deg, #ffe0f5, #ffb8e0); color: #9a0060; }
.cb-c5 .cb-icon { background: linear-gradient(135deg, #e0eaff, #b8ccff); color: #1a4a9a; }
.cb-c6 .cb-icon { background: linear-gradient(135deg, #e0f5f5, #b8eaea); color: #005a5a; }
.cb-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 9px; }
.cb-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom:0 }
.cb-card a { color: var(--plum-mid); font-weight: 600; border-bottom: 1px dashed var(--plum-light); transition: all var(--t); }
.cb-card a:hover { color: var(--plum); border-bottom-style: solid; }

/* Trust Strip */
.trust-strip {
  background: linear-gradient(135deg, var(--plum-deep), var(--dark2));
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 44px;
  border: 1px solid rgba(196,157,232,0.15);
  position: relative; overflow: hidden;
}
.trust-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--plum-mid), var(--leaf), var(--gold), var(--plum-mid));
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 180px;
}
.trust-item-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.ti-1 { background: rgba(107,45,154,0.25); color: var(--plum-soft); }
.ti-2 { background: rgba(76,175,115,0.25); color: var(--leaf-light); }
.ti-3 { background: rgba(232,184,75,0.25); color: var(--gold-light); }
.ti-4 { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.trust-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 1px; }
.trust-item span { font-size: 12px; color: rgba(255,255,255,0.4); }
.trust-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section { background: var(--off-white); }
.testi-swiper { padding-bottom: 30px !important; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum-mid), var(--plum-light), var(--leaf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--plum-light); }
.testi-card:hover::before { transform: scaleX(1); }
.testi-quote-mark {
  font-family: var(--font-serif);
  font-size: 60px;
  color: var(--plum-pale);
  line-height: 0.5;
  margin-bottom: 16px;
  display: block;
  font-weight: 800;
}
.testi-card p {
  font-size: 14px; color: var(--text);
  line-height: 1.8; margin-bottom: 16px;
  font-style: italic;
  letter-spacing: -0.02em;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testi-stars i { color: var(--gold); font-size: 13px; }
.testi-stars .half-star { color: #ddd; position: relative; }
.testi-stars .half-star::before { content: '\f005'; font-family: 'Font Awesome 6 Pro'; color: var(--gold); position: absolute; left: 0; width: 50%; overflow: hidden; }
.testi-user {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--plum-pale);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-user strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-user span { font-size: 12px; color: var(--text-muted); }
.testi-pagination { bottom: 0 !important; }
.testi-pagination .swiper-pagination-bullet { background: var(--border); width: 8px; height: 8px; }
.testi-pagination .swiper-pagination-bullet-active { background: var(--plum-mid); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════ */
.faq-section { background: var(--cream); }
.faq-left h2 { line-height: 1.25; }
.faq-left p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
.faq-contact-card {
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  border-radius: var(--radius);
  padding: 24px 22px;
  color: var(--white);
}
.faq-contact-card h5 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.faq-contact-card p { font-size: 13px; opacity: 0.75; margin-bottom: 16px; color:#FFF }
.btn-faq-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px; font-weight: 700;
  transition: all var(--t);
}
.btn-faq-call:hover { background: rgba(255,255,255,0.25); }

.faq-list-col { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.faq-item:hover { border-color: var(--plum-light); }
.faq-item.open { border-color: var(--plum-light); box-shadow: var(--shadow-sm); }
.faq-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 17px 20px;
  font-size: 14.5px; font-weight: 600; color: var(--dark);
  text-align: left;
  gap: 12px;
  transition: all var(--t);
}
.faq-btn.active { color: var(--plum-mid); background: var(--plum-pale); }
.faq-chevron {
  width: 28px; height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--t) var(--spring);
}
.faq-chevron svg { width: 12px; height: 12px; color: var(--text-muted); transition: all var(--t); }
.faq-btn.active .faq-chevron { background: var(--plum-mid); transform: rotate(180deg); }
.faq-btn.active .faq-chevron svg { color: var(--white); }
.faq-answer { display: none; padding: 0 20px 18px; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 50%, var(--plum-mid) 100%);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c49de8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,184,75,0.15) 0%, transparent 60%);
}
.cta-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700; color: var(--white);
  margin-bottom: 10px; line-height: 1.25;
}
.cta-text p { color: rgba(255,255,255,0.7); font-size: 15px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-cta-call {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: var(--white);
  color: var(--plum-deep);
  border-radius: 50px;
  font-size: 15px; font-weight: 800;
  transition: all var(--t) var(--ease);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-cta-call svg { width: 18px; height: 18px; }
.btn-cta-call:hover { background: var(--plum-pale); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.btn-cta-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  background: rgba(37,211,102,0.15);
  border: 2px solid rgba(37,211,102,0.5);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px; font-weight: 700;
  transition: all var(--t) var(--ease);
}
.btn-cta-wa:hover { background: #25d366; border-color: #25d366; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum-mid), var(--plum-light), var(--leaf), var(--gold), var(--plum-soft));
}
.footer-top { padding: 35px 0 35px; }
.footer-brand p { color: rgba(255,255,255,1); font-size: 13.5px; line-height: 1.8; margin: 16px 0 22px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,1);
  border-radius: var(--radius-sm);
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--t) var(--ease);
}
.footer-social a:hover { background: var(--plum-mid); color: var(--white); border-color: var(--plum-mid); transform: translateY(-2px); }
.footer-heading {
  font-size: 13px; font-weight: 800;
  color: var(--white);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--plum-light);
  border-radius: 2px;
}
.footer-links-list { display: flex; flex-direction: column; gap: 9px; padding:0 }
.footer-links-list li a {
  font-size: 13.5px; color: rgba(255,255,255,0.9);
  display: flex; align-items: center; gap: 7px;
  transition: all var(--t) var(--ease);
}
.footer-links-list li a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--plum-light);
  opacity: 0.4;
  flex-shrink: 0;
}
.footer-links-list li a:hover { color: var(--plum-soft); padding-left: 6px; }
.footer-links-list li a:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; padding: 0}
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.fc-icon {
  width: 34px; height: 34px;
  background: rgba(107,45,154,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fc-icon svg { width: 14px; height: 14px; color: var(--plum-soft); }
.footer-contact-item small { display: block; font-size: 10px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.footer-contact-item a, .footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.9); transition: color var(--t); }
.footer-contact-item a:hover { color: var(--plum-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.9); margin-bottom:0 }
.footer-bottom a { color: rgba(255,255,255,0.45); font-weight: 600; transition: color var(--t); }
.footer-bottom a:hover { color: var(--plum-soft); }

/* ══════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════ */
.float-cluster {
  position: fixed;
  bottom: 24px; right: 20px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  z-index: 990;
}
.float-btn-round {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  transition: all var(--t) var(--spring);
  position: relative;
}
.float-btn-round:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.float-wa-btn { background: linear-gradient(135deg, #25d366, #1ebe5c); color: var(--white); }
.float-call-btn { background: linear-gradient(135deg, var(--plum-mid), var(--plum)); color: var(--white); }
.float-btn-round svg { width: 22px; height: 22px; }
/* Pulse on whatsapp */
.float-wa-btn::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.25);
  animation: float-pulse 2.5s infinite;
}
@keyframes float-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.float-label {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--dark);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transform: translateX(6px);
  transition: all var(--t) var(--ease);
}
.float-btn-round:hover .float-label { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════
   POPUP FORM
══════════════════════════════════════════ */
.popup-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(20,5,40,0.65);
  z-index: 9999;
  align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 460px;
  position: relative;
  box-shadow: 0 30px 80px rgba(255,126,26,0.35);
  animation: popIn 0.35s var(--spring);
  overflow: hidden;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.82) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-header {
  background: linear-gradient(135deg, var(--plum-deep), var(--plum));
  padding: 26px 32px 22px;
  position: relative;
}
.popup-header::after {
  content: '';
  position: absolute; bottom: -14px; left: 0; right: 0;
  height: 28px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.popup-close-btn {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all var(--t);
  z-index: 2;
}
.popup-close-btn:hover { background: rgba(255,255,255,0.3); color: var(--white); }
.popup-close-btn svg { width: 16px; height: 16px; }
.popup-header h3 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700; color: var(--white);
  margin-bottom: 4px;
}
.popup-header p { font-size: 13px; color: rgba(255,255,255,0.65); }
.popup-form-wrap { padding: 28px 32px 32px; }
.pf-field-group { margin-bottom: 16px; }
.pf-label {
  display: block;
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 7px;
}
.pf-input-wrap { position: relative; display: flex; align-items: flex-start; }
.pf-input-wrap svg {
  position: absolute; left: 13px; top: 13px;
  width: 16px; height: 16px;
  color: var(--plum-light); pointer-events: none; z-index: 1;
}
.pf-input-wrap input, .pf-input-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--dark);
  background: var(--off-white);
  transition: all var(--t) var(--ease);
  resize: none;
}
.pf-input-wrap input:focus, .pf-input-wrap textarea:focus {
  outline: none;
  border-color: var(--plum-mid);
  box-shadow: 0 0 0 4px rgba(107,45,154,0.08);
  background: var(--white);
}
.btn-popup-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum));
  color: var(--white);
  border-radius: var(--radius);
  font-size: 15px; font-weight: 800;
  cursor: pointer; border: none;
  box-shadow: 0 6px 20px rgba(107,45,154,0.4);
  transition: all var(--t) var(--ease);
  margin-top: 4px;
}
.btn-popup-submit:hover { background: linear-gradient(135deg, var(--plum), var(--plum-deep)); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(107,45,154,0.5); }
.btn-popup-submit svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1199px) {
  .cabs-grid { grid-template-columns: repeat(3, 1fr); }
  .routes-grid { grid-template-columns: repeat(3, 1fr); }
  .why-boxes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .nav-links, .nav-whatsapp { display: none; }
  .hamburger { display: flex; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .cabs-grid { grid-template-columns: repeat(2, 1fr); }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .content-biz-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features-grid { grid-template-columns: 1fr; }
  .about-mosaic { grid-template-rows: 220px 180px; }
  .chardham-img-ring { width: 280px; height: 280px; }
  .stats-row { flex-wrap: wrap; }
  .stat-block { min-width: 25%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-strip { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .section-pad { padding: 70px 0; }
}
@media (max-width: 767px) {
  .svc-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .cabs-grid { grid-template-columns: 1fr 1fr; }
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .content-biz-grid { grid-template-columns: 1fr; }
  .why-boxes-grid { grid-template-columns: 1fr 1fr; }
  .about-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ab-img-1 { grid-column: 1; grid-row: 1; height: 240px; }
  .ab-img-2, .ab-img-3 { display: none; }
  .about-features-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { gap: 10px; }
  .booking-glass { padding: 24px 20px; }
  .booking-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stat-block { min-width: 50%; }
  .chardham-img-ring { width: 230px; height: 230px; }
  .char-float-1, .char-float-2 { display: none; }
  .popup-form-wrap { padding: 20px 22px 24px; }
}
@media (max-width: 479px) {
  .cabs-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .why-boxes-grid { grid-template-columns: 1fr; }
  .about-features-grid { grid-template-columns: 1fr; }
  .hero-eyebrow { font-size: 10px; }
}
.hero__inner{
  width: 100%;
}
@media(min-width: 768px){
  .booking-section{
        position: absolute;
        top: 50%;
        z-index: 2;
        max-width: 420px;
        right: 10%;
        transform: translateY(-50%);
  }
}
.footer-brand img{
    width: 100px;
    background: #fff;
    padding: 4px;
    border-radius: 5px;
}
/* ============================================================
   CONTACT SECTION STYLES
   Modern, responsive contact page with form and map
   Compatible with ACP Praduman theme
   ============================================================ */

/* ---------------------- Section Container ---------------------- */
.contacts-section {
    background: linear-gradient(135deg, var(--off-white, #faf8ff) 0%, var(--cream, #f5f0ff) 100%);
    position: relative;
    overflow: hidden;
}

.contacts-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 45, 154, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contacts-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(76, 175, 115, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------------------- Contact Info Boxes ---------------------- */
.contact-info-box {
    background: var(--white, #ffffff);
    border-radius: 24px;
    padding: 28px 24px;
    text-align: center;
    transition: all var(--t, 0.3s) cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border, #ddd0f5);
    box-shadow: var(--shadow-sm, 0 2px 12px rgba(74, 26, 107, 0.08));
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum-mid, #6b2d9a), var(--plum-light, #9c5cd4), var(--leaf, #4caf73));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-info-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md, 0 12px 50px rgba(74, 26, 107, 0.16));
    border-color: var(--plum-light, #9c5cd4);
}

.contact-info-box:hover::before {
    transform: scaleX(1);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--plum-pale, #f0e8ff), #FFF0E0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all var(--t, 0.3s) ease;
}

.contact-info-box:hover .contact-info-icon {
    transform: scale(1.05) rotate(-5deg);
    background: linear-gradient(135deg, var(--plum-mid, #6b2d9a), var(--plum, #4a1a6b));
}

.contact-info-icon i {
    font-size: 32px;
    color: var(--plum-mid, #6b2d9a);
    transition: color var(--t, 0.3s) ease;
}

.contact-info-box:hover .contact-info-icon i {
    color: var(--white, #ffffff);
}

.contact-info-box h5 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark, #1a0a2e);
    margin-bottom: 16px;
}

.contact-info-details {
    margin-bottom: 16px;
}

.contact-info-details a,
.contact-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted, #7a6b92);
    text-decoration: none;
    padding: 6px 0;
    transition: all var(--t, 0.3s) ease;
}

.contact-info-details a i,
.contact-address i {
    color: var(--plum-mid, #6b2d9a);
    font-size: 14px;
    width: 20px;
}

.contact-info-details a:hover {
    color: var(--plum-mid, #6b2d9a);
    transform: translateX(3px);
}

.contact-address {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-support-hours {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px dashed var(--border, #ddd0f5);
}

.contact-support-hours span {
    font-size: 12px;
    font-weight: 600;
    color: var(--leaf, #4caf73);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-support-hours span i {
    font-size: 12px;
}

/* Social Links */
.contact-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px dashed var(--border, #ddd0f5);
}

.contact-social-links a {
    width: 36px;
    height: 36px;
    background: var(--plum-pale, #f0e8ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-mid, #6b2d9a);
    font-size: 14px;
    transition: all var(--t, 0.3s) ease;
}

.contact-social-links a:hover {
    background: linear-gradient(135deg, var(--plum-mid, #6b2d9a), var(--plum, #4a1a6b));
    color: var(--white, #ffffff);
    transform: translateY(-3px);
}

/* ---------------------- Google Map Box ---------------------- */
.contact-info-iframe {
    background: var(--white, #ffffff);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border, #ddd0f5);
    box-shadow: var(--shadow-sm, 0 2px 12px rgba(74, 26, 107, 0.08));
    transition: all var(--t, 0.3s) ease;
}

.contact-info-iframe:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md, 0 12px 50px rgba(74, 26, 107, 0.16));
    border-color: var(--plum-light, #9c5cd4);
}

.contact-info-iframe iframe {
    width: 100%;
    height: 250px;
    display: block;
    border: none;
}

.call-info {
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--plum-deep, #2e0a45), var(--dark, #1a0a2e));
}

.call-info h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-light, #f5d07a);
    margin-bottom: 6px;
}

.call-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--plum-mid, #6b2d9a), var(--plum, #4a1a6b));
    color: var(--white, #ffffff);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--t, 0.3s) ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 45, 154, 0.4);
    color: var(--white, #ffffff);
}

.contact-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--white, #ffffff);
    text-decoration: none;
    transition: color var(--t, 0.3s) ease;
}

.contact-number:hover {
    color: var(--plum-soft, #c49de8);
}

/* ---------------------- Contact Form Wrapper ---------------------- */
.contacts-section__item.form-wrapper {
    background: var(--white, #ffffff);
    border-radius: 24px;
    padding: 0;
    box-shadow: var(--shadow-md, 0 12px 50px rgba(74, 26, 107, 0.12));
    border: 1px solid var(--border, #ddd0f5);
    overflow: hidden;
    transition: all var(--t, 0.3s) ease;
}

.contacts-section__item.form-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg, 0 20px 70px rgba(74, 26, 107, 0.18));
}

.form-header {
    background: linear-gradient(135deg, var(--plum-deep, #2e0a45), var(--dark, #1a0a2e));
    padding: 30px 30px 25px;
    text-align: center;
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--white, #ffffff);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.form-header h3 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Contact Form */
.contact-form {
    padding: 32px 30px 38px;
}

.input-group-custom {
    margin-bottom: 0;
}

.form-label-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark, #1a0a2e);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label-custom i {
    color: var(--plum-mid, #6b2d9a);
    font-size: 13px;
}

.form-label-custom .required {
    color: #e74c3c;
    font-size: 14px;
}

.form-control-custom {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    font-family: var(--font, 'DM Sans', sans-serif);
    color: var(--text, #3d2e5a);
    background: var(--cream, #f5f0ff);
    border: 2px solid var(--border, #ddd0f5);
    border-radius: 16px;
    transition: all var(--t, 0.3s) ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--plum-mid, #6b2d9a);
    background: var(--white, #ffffff);
    box-shadow: 0 0 0 4px rgba(107, 45, 154, 0.1);
}

.form-control-custom::placeholder {
    color: #b0a0c8;
    font-size: 13px;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 100px;
}

/* Form Footer */
.form-footer {
    text-align: center;
}

.btn-round-two {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--plum-mid, #6b2d9a), var(--plum, #4a1a6b));
    color: var(--white, #ffffff);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--t, 0.3s) cubic-bezier(0.4, 0, 0.2, 1);
    width: auto;
    box-shadow: 0 6px 20px rgba(107, 45, 154, 0.3);
}

.btn-round-two:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 45, 154, 0.4);
    gap: 16px;
}

.btn-round-two i {
    font-size: 14px;
    transition: transform var(--t, 0.3s) ease;
}

.btn-round-two:hover i {
    transform: translateX(4px);
}

.form-note {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted, #7a6b92);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-note i {
    color: var(--leaf, #4caf73);
    font-size: 12px;
}

/* ---------------------- Responsive Design ---------------------- */
@media (max-width: 1199px) {
    .contacts-section {
        padding: 60px 0;
    }
}

@media (max-width: 991px) {
    .contacts-section {
        padding: 50px 0;
    }
    
    .form-header {
        padding: 25px 25px 20px;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 28px 25px 32px;
    }
}

@media (max-width: 767px) {
    .contact-info-box {
        padding: 22px 18px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-icon i {
        font-size: 28px;
    }
    
    .contact-info-box h5 {
        font-size: 16px;
    }
    
    .form-header h3 {
        font-size: 22px;
    }
    
    .form-header p {
        font-size: 13px;
    }
    
    .contact-form {
        padding: 24px 20px 28px;
    }
    
    .btn-round-two {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .call-info {
        padding: 16px 20px;
    }
    
    .contact-info-iframe iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .form-header h3 {
        font-size: 20px;
    }
    
    .form-label-custom {
        font-size: 12px;
    }
    
    .form-control-custom {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .btn-round-two {
        width: 100%;
        justify-content: center;
    }
    
    .call-btn {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-btn,
    .contact-number {
        text-align: center;
        justify-content: center;
    }
}

/* Animation for form fields on focus */
.form-control-custom:focus {
    animation: inputPulse 0.4s ease;
}

@keyframes inputPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
    100% {
        transform: scale(1);
    }
}
.mobile-menu-header img{
  width: 120px;
  background-color: #fff;
  padding: 4px;
  border-radius: 4px;
}
@media(max-width: 768px){
  .hero-content h1{
    font-size: 30px;
  }
  .hero-eyebrow{
    margin-bottom: 12px;
  }
  .hero-content p{
    font-size: 13px;
    line-height: 1.1;
  }
  .hero-content h1 br{
    display: none;
  }
  .hero-slide{
        padding: 45px 0 90px;
        min-height: 400px;
  }
  .btn-hero-primary, .btn-hero-secondary{
    padding: 10px 20px;
    font-size: 12px;
  }
  .hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next{
    left: calc(50% - 40px);
    width: 30px;
    height: 30px;
    bottom: 60px;
    top: auto;
  }
  .hero-actions{
    gap: 5px;
  }
  .hero-swiper .swiper-button-next{
    right: calc(50% - 40px);
    left: auto;
  }

  .booking-section{
    max-width: 96%;
    margin-inline: auto;
    margin-top: -40px;
    position: relative;
    z-index: 1;
  }
  .nav-cta.open-popup{
    display: none;
  }
}
  .hero-pagination{
    display: none;
  }
  .nav__call_btn{

  }