:root {
  --primary: #cf1f25;
  --primary-dark: #a71118;
  --accent: #f18a00;
  --accent-soft: #fff3dc;
  --navy: #24374f;
  --navy-dark: #1b2a3d;
  --ink: #1c1c1c;
  --text: #4f565e;
  --muted: #75808d;
  --line: #e7e7e7;
  --bg: #f5f6f8;
  --card: #ffffff;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 24px rgba(22, 28, 45, .06);
  --shadow-md: 0 18px 44px rgba(22, 28, 45, .10);
  --shadow-lg: 0 26px 68px rgba(22, 28, 45, .16);
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f4f5f7 0%, #fbfbfc 22%, #f5f6f8 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  max-width: calc(var(--container) + 32px);
  margin: 0 auto;
  padding-inline: 16px;
}

.section-space-sm {
  padding: 40px 0;
}

.serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 900;
}

.section-space {
  padding: 40px 0;
}
/* ========================= TOP STRIP ========================= */
.topStrip {
  position: relative;
  background: linear-gradient(90deg, #b40f15 0%, var(--primary) 46%, #d65a11 100%);
  color: #fff;
  font-size: .88rem;
  overflow: hidden;
}

.topStrip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, .14), transparent 18%),
    radial-gradient(circle at right center, rgba(255, 255, 255, .10), transparent 18%);
  pointer-events: none;
}

.topStrip__wrap {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 9px 0;
}

.topStrip__left,
.topStrip__right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.topStripInfo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.topStripInfo i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #ffd48d;
  font-size: .88rem;
}

.topStripSocial {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topStripSocial a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: .25s ease;
}

.topStripSocial a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .22);
}

@media (max-width: 767.98px) {
  .topStrip__left {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    font-size: 12px;
  }

  .topStripSocial {
    display: none;
  }
}

/* ========================= HEADER ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36, 55, 79, 0.08);
}

.navbar {
  padding: 12px 0;
}

.brandLogo {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 768px) {
  .brandLogo {
    max-width: 150px;
  }

}

/* Mobile */
@media (max-width: 480px) {
  .brandLogo {
    max-width: 200px;
  }
  
}

.navbar-nav .nav-link {
  font-weight: 800;
  color: var(--navy);
  padding-inline: 14px !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary);
}

.headerCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.headerCta:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* ========================= DROPDOWN ========================= */
.dropdown-menu {
  border: 0;
  border-radius: 18px;
  padding: 10px;
  min-width: 290px;
  max-width: 340px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 34, 66, 0.12);
  margin-top: 14px;
}

.dropdown-item {
  font-weight: 700;
  color: var(--navy);
  border-radius: 12px;
  padding: 11px 14px;
  line-height: 1.45;
  white-space: normal;
  word-break: break-word;
  transition: all 0.25s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(255, 145, 77, 0.10);
  color: var(--primary);
}

.nav-item.dropdown .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
}

/* desktop hover dropdown */
@media (min-width: 1200px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* tablet/mobile */
@media (max-width: 1199.98px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-toggler {
    padding: 8px 10px;
    border-radius: 12px;
    background: #f8f8f8;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 14px;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(20, 34, 66, 0.10);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .navbar-nav {
    gap: 2px;
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
    font-size: 1.05rem;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid rgba(36, 55, 79, 0.08);
    box-shadow: none;
    border-radius: 16px;
  }

  .dropdown-item {
    font-size: 0.95rem;
    padding: 10px 12px;
  }

  .headerCta {
    width: 100%;
    margin-top: 14px;
    padding: 13px 16px;
  }
  .splitCatalog{
    display:flex !important;
    flex-direction:column !important;
    gap:18px;
  }

  .heroQuoteCard{
    order:1;
    width:100% !important;
    margin:0 !important;
  }

  .sideCard{
    order:2;
    width:100%;
  }
}

/* small mobile */
@media (max-width: 767.98px) {
  .shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .navbar-brand {
    gap: 10px;
    max-width: calc(100% - 56px);
  }

  .brandIcon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .brandText small {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .brandText span {
    font-size: 0.86rem;
    line-height: 1.1;
  }

  .navbar-collapse {
    padding: 14px;
    border-radius: 16px;
  }

  .navbar-nav .nav-link {
    font-size: 1rem;
  }

  .dropdown-item {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .headerCta {
    font-size: 0.95rem;
  }
}

/* extra small mobile */
@media (max-width: 420px) {
  .brandText span {
    font-size: 0.78rem;
  }

  .brandText small {
    font-size: 0.52rem;
  }

  .brandIcon {
    width: 40px;
    height: 40px;
  }

  .navbar-toggler {
    padding: 6px 8px;
  }

  .dropdown-item {
    font-size: 0.88rem;
  }
}
/* ================= DESKTOP DROPDOWN FIX ================= */
@media (min-width: 1200px) {
  .dropdown-menu {
    min-width: 420px;   /* increase width */
    max-width: 520px;
  }

  .dropdown-item {
    white-space: nowrap;     /* ❌ NO WRAP */
    overflow: hidden;
    text-overflow: ellipsis; /* adds ... if too long */
  }
}
@media (max-width: 1199.98px) {
  .dropdown-item {
    white-space: normal;   /* ✅ allow wrap on mobile */
    word-break: break-word;
  }
}
/* ========================= HERO SLIDER ========================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: 0;
}

.heroSlider {
  margin-top: 0;
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #1b2a3d;
  isolation: isolate;
}

.heroSlide {
  position: relative;
  height: 77vh;
  display: flex;
  align-items: center;
}

.heroSlide>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.heroSlideContent {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 80px 60px;
  margin-left: 80px;
  color: #fff;
}

.heroKicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff4db;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.heroTitle {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  max-width: 1000px;
  color: #fff;
}

.heroTitle span {
  color: #ffc85c;
}

.heroLead {
  margin: 14px 0 0;
  max-width: 1000px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.7;
  font-size: .92rem;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btnHeroPrimary,
.btnHeroGhost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
}

.btnHeroPrimary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.btnHeroGhost {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
}

.heroStats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 760px;
}

.heroStat {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.heroStat strong {
  display: block;
  font-size: 1.05rem;
}

.heroStat span {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  line-height: 1.55;
  margin-top: 4px;
}

.heroThumbs {
  position: absolute;
  left: max(24px, calc((100vw - var(--container)) / 2 + 16px));
  right: max(24px, calc((100vw - var(--container)) / 2 + 16px));
  bottom: 20px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.heroThumbs button {
  border: 0;
  background: rgba(255, 255, 255, .10);
  color: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  text-align: left;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: .25s ease;
  min-height: 64px;
}

.heroThumbs button.active,
.heroThumbs button:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-2px);
}

.heroThumbs small {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .70);
  margin-bottom: 3px;
  font-weight: 800;
}

.heroThumbs strong {
  display: block;
  font-size: .84rem;
  line-height: 1.3;
  font-weight: 800;
}

.heroNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 0, 0, 0.12);
  color: #ff0000;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.heroNav.prev {
  left: 20px;
}

.heroNav.next {
  right: 20px;
}

.heroQuoteCard {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e7edf5;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.heroQuoteCard .miniHead {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 153, 0, 0.12);
  color: #f59e0b;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

.heroQuoteCard .miniHead i {
  font-size: 12px;
  line-height: 1;
}

.heroQuoteCard .quoteTitle {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: #153160;
  margin: 0 0 12px;
}

.heroQuoteCard .quoteText {
  font-size: 17px;
  line-height: 1.8;
  color: #5b6b84;
  margin: 0 0 22px;
  max-width: 95%;
}

.heroQuoteCard .form-control {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid #d8e2ee;
  box-shadow: none;
  padding: 12px 16px;
  font-size: 15px;
}

.heroQuoteCard .form-control:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.10);
}

.heroQuoteCard input[type="date"] {
  padding-right: 14px;
}

/* ========================= FORMS ========================= */
.form-control,
.form-select {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #dfe5eb;
  box-shadow: none !important;
  padding-inline: 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(207, 31, 37, .42);
  box-shadow: 0 0 0 .2rem rgba(207, 31, 37, .08) !important;
}

.quoteBtn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  box-shadow: var(--shadow-sm);
}

/* ========================= SECTION HEADS ========================= */
.sectionHead {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.sectionKicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .12em;
  font-weight: 900;
  margin-bottom: 10px;
}

.sectionKicker__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 8px rgba(207, 31, 37, .08);
}

.sectionHead h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: .95;
  color: var(--navy);
  font-weight: 900;
}

.sectionHead h2 span {
  color: var(--primary);
}

.sectionHead p {
  margin: 10px 0 0;
  color: var(--text);
  line-height: 1.82;
}

/* ========================= SPLIT CATALOG ========================= */
.splitCatalog {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: start;
}

.packageBoard {
  background: #fff;
  border: 1px solid rgba(36, 55, 79, .08);
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.filterRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filterChip {
  padding: 11px 15px;
  border-radius: 999px;
  background: #f6f8fa;
  border: 1px solid #e2e8ee;
  font-weight: 900;
  color: var(--navy);
  font-size: .88rem;
}

.packageGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* ========================= PACKAGE CARDS ========================= */
.packageCard {
  position: relative;
  background: #fff;
  border: 1px solid #e5eaef;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: .28s ease;
  height: 100%;
}

.packageCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.packageMedia {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.packageMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.packageCard:hover .packageMedia img {
  transform: scale(1.08);
}

.badgeTag {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--primary);
  color: #fff;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
}

.priceTag {
  position: absolute;
  right: 14px;
  top: 14px;
  background: rgba(255, 255, 255, .94);
  color: var(--primary);
  padding: 8px 11px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
}

.packageBody {
  padding: 18px;
}

.metaLine {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.metaLine span {
  font-size: .75rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4f8fc;
  color: var(--navy);
  font-weight: 900;
}

.metaLine .reviewCount {
  margin-left: auto;
  /* 👉 ye right push karega */
  background: #fff6e5;
  color: #ce8400;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.metaLine .reviewCount i {
  margin-right: 4px;
}

.packageBody h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 900;
}

.packageBody p {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.7;
  font-size: .9rem;
}

.miniSpecs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}


.packageFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.scoreLine {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #ce8400;
  font-size: .8rem;
  font-weight: 900;
}

.cardBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--primary));
  border: none !important;
  outline: none !important;
  box-shadow: none; /* agar shadow bhi black feel de raha ho */
}

/* ========================= SIDE RAIL ========================= */
.sideRail {
  display: grid;
  gap: 18px;
}

.sideCard {
  background: linear-gradient(180deg, #fff, #fbfcfd);
  border: 1px solid rgba(36, 55, 79, .08);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.sideCard h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.1rem;
}

.sideCard p {
  margin: 0;
  color: var(--text);
  line-height: 1.72;
  font-size: .92rem;
}

.quickList {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.quickList a,
.quickList div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f5f8fc;
  color: var(--navy);
  font-weight: 800;
  border: 1px solid #e6edf4;
  font-size: .9rem;
}

/* ========================= EDITORIAL BAND ========================= */
.editorialBand {
  background: linear-gradient(135deg, var(--navy) 0%, #314765 100%);
  color: #fff;
}

.editorialGrid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.editorialMedia {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.editorialCopy {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.editorialCopy h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.editorialCopy p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.85;
}

.editorialCopy .btnHeroPrimary {
  margin-top: 18px;
}

/* ========================= GRIDS ========================= */
.cityGrid,
.featureGrid,
.blogGrid,
.testimonialGrid,
.dealList {
  display: grid;
  gap: 18px;
}

.cityGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featureGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blogGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonialGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dealList {
  grid-template-columns: 1fr;
}

/* ========================= CARDS ========================= */
.cityCard,
.featureCard,
.blogCard,
.testimonialCard,
.dealCard {
  background: #fff;
  border: 1px solid rgba(36, 55, 79, .08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.cityCard {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: .25s ease;
}

.cityCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cityCard strong {
  display: block;
  color: var(--navy);
}

.cityCard span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 4px;
  line-height: 1.5;
}

.cityCard i {
  color: var(--primary);
}

.featureCard {
  padding: 24px;
}

.featureIcon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(207, 31, 37, .12), rgba(241, 138, 0, .18));
  color: var(--primary);
  font-size: 1.2rem;
}

.featureCard h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.04rem;
}

.featureCard p {
  margin: 0;
  color: var(--text);
  line-height: 1.76;
}

.blogCard img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
}

.blogBody {
  padding: 18px;
}

.blogTag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9f5d00;
  font-size: .76rem;
  font-weight: 900;
}

.blogBody h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.45;
}

.blogBody p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  font-size: .9rem;
}

.testimonialCard {
  padding: 24px;
}

.stars {
  display: inline-flex;
  gap: 4px;
  color: #f0a000;
  margin-bottom: 12px;
}

.testimonialCard p {
  color: var(--text);
  line-height: 1.84;
  margin-bottom: 14px;
}

.testimonialCard strong {
  display: block;
  color: var(--navy);
}

.testimonialCard span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 4px;
}

/* ========================= DEAL CARDS ========================= */
.dealCard {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 180px;
  align-items: stretch;
}

.dealCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dealBody {
  padding: 18px 18px 18px 20px;
}

.dealBody h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.45;
  font-weight: 700;
}

.dealBody p {
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.72;
  font-size: .92rem;
}

.dealMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dealMeta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f5f8fc;
  border: 1px solid #e6edf4;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 900;
}

.dealAction {
  border-left: 1px solid #e7edf2;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #fcfdff, #f7f9fb);
}

.dealPrice {
  text-align: center;
}

.dealPrice strong {
  display: block;
  color: var(--primary);
  font-size: 1.18rem;
}

.dealPrice span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
}

/* ========================= FAQ ========================= */
.faqWrap .accordion-item {
  border: 1px solid #e4e9ee;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
}

.faqWrap .accordion-button {
  box-shadow: none !important;
  padding: 18px 22px;
  font-weight: 900;
  color: var(--navy);
  background: #fff;
}

.faqWrap .accordion-button:not(.collapsed) {
  background: #f7fafc;
  color: var(--primary);
}

.faqWrap .accordion-body {
  color: var(--text);
  line-height: 1.82;
}

/* ========================= CTA PANEL ========================= */
.ctaPanel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 34px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(105deg, rgba(207, 31, 37, .92) 0%, rgba(207, 31, 37, .88) 34%, rgba(36, 55, 79, .92) 100%),
    url('/images/1-day-agra-mathura-vrindavan-family-tour-package5.webp') center/cover no-repeat;
}

.ctaPanel h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .98;
}

.ctaPanel p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  line-height: 1.82;
  max-width: 760px;
}

.ctaActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

/* ========================= FOOTER ========================= */
.footer {
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
  color: rgba(255, 255, 255, .82);
}

.footerTop {
  padding: 68px 0 26px;
}

.footerBrand p {
  color: rgba(255, 255, 255, .70);
  line-height: 1.82;
  max-width: 420px;
}

.footer h4 {
  color: #fff4da;
  margin-bottom: 16px;
  font-size: 1.04rem;
}

.footerLinks {
  display: grid;
  gap: 10px;
}

.footerLinks a {
  color: rgba(255, 255, 255, .72);
}

.footerLinks a:hover {
  color: #ffd48d;
}

.footerBottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 18px 0 26px;
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
}

/* ========================= FLOATING BAR ========================= */
.floatingBar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floatBtn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
}

.floatBtn.call {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.floatBtn.whatsapp {
  background: linear-gradient(135deg, #23d366, #0ea34d);
}

.srOnly {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================= ITINERARY / HERO BANNER ========================= */
.heroBanner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(19, 31, 48, .88) 0%, rgba(19, 31, 48, .76) 42%, rgba(19, 31, 48, .32) 100%),
    url('/images/1-day-agra-mathura-vrindavan-family-tour-package4.webp') center/cover no-repeat;
  padding: 45px 0;
}

.heroBanner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .28) 100%);
}

.heroContent {
  position: relative;
  z-index: 2;
  width: 100%;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .84);
  font-weight: 700;
  font-size: .92rem;
}

.crumbs span:last-child {
  color: #ffd48d;
}

.heroTag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff4dc;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  margin-bottom: 18px;
}

.heroMeta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.heroMetaCard {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 16px;
  color: #fff;
  backdrop-filter: blur(8px);
}

.heroMetaCard strong {
  display: block;
  font-size: 1rem;
}

.heroMetaCard span {
  display: block;
  font-size: .88rem;
  color: rgba(255, 255, 255, .78);
  margin-top: 4px;
}

/* ========================= MAIN GRID (ITINERARY PAGE) ========================= */
.mainGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.contentCard {
  background: linear-gradient(180deg, #fff, #fbfcfd);
  border: 1px solid rgba(36, 55, 79, .08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.contentCard h2,
.contentCard h3 {
  color: var(--navy);
}

.contentCard p {
  color: var(--text);
  line-height: 1.84;
}

.overviewGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.overviewMini {
  border-radius: 18px;
  background: #f6f9fc;
  border: 1px solid #e5edf4;
  padding: 16px;
}

.overviewMini strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}

.overviewMini span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.itineraryTimeline {
  display: grid;
  gap: 18px;
}

.dayCard {
  position: relative;
  padding: 22px 22px 22px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffaf3, #fff);
  border: 1px solid #f1dfc8;
  box-shadow: var(--shadow-sm);
}

.dayCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 22px 0 0 22px;
}

.dayHead {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.dayBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9d5d00;
  font-size: .8rem;
  font-weight: 900;
}

.dayTitle {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.dayList {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dayList li {
  display: flex;
  gap: 10px;
  color: var(--text);
  line-height: 1.72;
}

.dayList i {
  color: var(--primary);
  margin-top: 4px;
}

.infoTable {
  width: 100%;
  border-collapse: collapse;
}

.infoTable th,
.infoTable td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf1f5;
  text-align: left;
}

.infoTable th {
  width: 200px;
  color: var(--navy);
}

/* ========================= INFO TABLE FIX ========================= */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  /* contentCard ke padding se bahar na jaye */
  margin-inline: -0px;
}


@media (max-width: 767.98px) {

  .table-responsive .infoTable th {
    width: 120px;
    font-size: 0.83rem;
    white-space: nowrap;
    padding: 10px 10px;
  }

  .table-responsive .infoTable td {
    font-size: 0.85rem;
    padding: 10px 10px;
  }

  .table-responsive .infoTable th,
  .table-responsive .infoTable td {
    padding: 11px 12px;
  }
}

.checkGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkCard {
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e7edf3;
  padding: 18px;
}

.checkCard h4 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 1rem;
}

.checkList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checkList li {
  display: flex;
  gap: 10px;
  color: var(--text);
  line-height: 1.65;
}

.checkList .yes {
  color: #1f9d55;
}

.checkList .no {
  color: var(--primary);
}

.galleryGrid,
.tourGrid {
  display: grid;
  gap: 18px;
}

.galleryGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tourGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.galleryCard,
.reviewCard,
.tourCard {
  background: #fff;
  border: 1px solid rgba(36, 55, 79, .08);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.galleryCard img {
  width: 100%;
  height: 200px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.reviewCard {
  padding: 22px;
}

.reviewCard p {
  color: var(--text);
  line-height: 1.82;
  margin-bottom: 12px;
}

.reviewCard strong {
  display: block;
  color: var(--navy);
}

.reviewCard span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 4px;
}

.tourCard {
  transition: .28s ease;
}

.tourCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.tourMedia {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.tourMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tourBadge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--primary);
  color: #fff;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
}

.tourBody {
  padding: 18px;
}

.tourMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tourMeta span {
  font-size: .75rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4f8fc;
  color: var(--navy);
  font-weight: 900;
}

.tourBody h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 900;
}

.tourBody p {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.7;
  font-size: .9rem;
}

.tourFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  /* flex-wrap: wrap; */
}

.tourFoot .cardBtn {
  /* width: 100% !important; */
  justify-content: center !important;
}

.bookingCard {
  position: sticky;
  top: 108px;
}

.priceBox {
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(207, 31, 37, .06), rgba(241, 138, 0, .12));
  border: 1px solid rgba(207, 31, 37, .12);
  padding: 18px;
  margin-bottom: 16px;
}

.priceBox strong {
  display: block;
  color: var(--primary);
  font-size: 1.6rem;
}

.priceBox span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 4px;
}

textarea.form-control {
  min-height: 110px;
  padding-top: 12px;
}

.trustMini {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.trustMini div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f5f8fc;
  color: var(--navy);
  font-weight: 800;
  border: 1px solid #e6edf4;
  font-size: .9rem;
}

/* ========================= PARTNER GRID ========================= */
.partnerGrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.centerCard {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 110px;
}

/* ========================= SLIDERS ========================= */
.singlePackageSlider {
  position: relative;
  width: 100%;
}

.sliderTrack {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sliderTrack::-webkit-scrollbar {
  display: none;
}

.sliderTrack .packageCard {
  flex: 0 0 calc(33.333% - 12px);
  min-width: calc(33.333% - 12px);
}

.sliderBtn {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 3;
}

.sliderBtn.prev {
  left: -10px;
}

.sliderBtn.next {
  right: -10px;
}

.singlePackageSlider .packageCard {
  box-shadow: none !important;
  border: 1px solid #e5eaef;
}

.clientGalleryAutoSlider {
  position: relative;
  width: 100%;
}

.clientGalleryViewport {
  overflow: hidden;
  width: 100%;
}

.clientGalleryTrack {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 0;
  scroll-snap-type: x mandatory;
}

.clientGalleryTrack::-webkit-scrollbar {
  display: none;
}

.clientGalleryAutoSlider .blogCard {
  flex: 0 0 calc(25% - 14px);
  min-width: calc(25% - 14px);
  background: #fff;
  border: 1px solid rgba(36, 55, 79, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: none !important;
  scroll-snap-align: start;
}

.clientGalleryAutoSlider .blogCard img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.clientGalleryAutoSlider .blogBody {
  padding: 16px;
  background: #fff;
}

.clientGalleryAutoSlider .blogBody h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

/* =================================================================
   RESPONSIVE — all breakpoints in one place, no duplicates
================================================================= */

/* ---------- 1199px ---------- */
@media (max-width: 1199.98px) {

  .heroMeta,
  .overviewGrid,
  .galleryGrid,
  .tourGrid,
  .blogGrid,
  .cityGrid,
  .testimonialGrid,
  .packageGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mainGrid {
    grid-template-columns: 1fr;
  }

  .bookingCard {
    position: static;
  }

  .sectionHead {
    flex-direction: column;
    align-items: start;
  }

  .footerTop .shell>div:first-child {
    grid-template-columns: 1.1fr 1fr 1fr !important;
    gap: 22px !important;
  }

  .footerTop .shell>div:last-child {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}

/* ---------- 991px ---------- */
@media (max-width: 991.98px) {
  .hero {
    padding: 0;
  }

  .heroSlider {
    border-radius: 0;
  }

  .heroSlide {
    display: none;
  }

  .heroSlide>img {
    object-position: center center;
  }

  .heroSlideContent {
    max-width: 100%;
    width: 100%;
    padding: 110px 20px 220px;
    margin: 0;
  }

  .heroKicker {
    font-size: 0.86rem;
    padding: 9px 14px;
    gap: 8px;
    margin-bottom: 16px;
  }

  .heroTitle {
    max-width: 100%;
    font-size: clamp(2.1rem, 8vw, 3.4rem);
    line-height: 1.02;
  }

  .heroLead {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 14px;
  }

  .heroActions {
    gap: 12px;
    margin-top: 22px;
  }

  .btnHeroPrimary,
  .btnHeroGhost {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.98rem;
  }

  .heroNav {
    width: 42px;
    height: 42px;
    top: 50%;
  }

  .heroNav.prev {
    left: 10px;
  }

  .heroNav.next {
    right: 10px;
  }

  .heroThumbs {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .heroThumbs button {
    min-height: unset;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .heroThumbs small {
    font-size: 0.65rem;
  }

  .heroThumbs strong {
    font-size: 0.95rem;
  }

  .heroMeta,
  .overviewGrid,
  .galleryGrid,
  .tourGrid,
  .blogGrid,
  .checkGrid,
  .cityGrid,
  .testimonialGrid,
  .packageGrid {
    grid-template-columns: 1fr;
  }

  .navbar-collapse {
    padding-top: 16px;
  }

  .headerCta {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .heroBanner {
    min-height: auto;
  }

  /* Enquiry section */
  .splitCatalog {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Deal cards */
  .dealCard {
    grid-template-columns: 180px 1fr;
  }

  .dealAction {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  /* Feature grid */
  .featureGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  /* Partner grid */
  .partnerGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Slider */
  .sliderTrack .packageCard {
    flex: 0 0 calc(50% - 9px);
    min-width: calc(50% - 9px);
  }

  .clientGalleryAutoSlider .blogCard {
    flex: 0 0 calc(50% - 9px);
    min-width: calc(50% - 9px);
  }

  /* Footer */
  .footerTop {
    padding: 48px 0 22px;
  }

  .footerTop .shell>div:first-child {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }

  .footerTop .shell>div:last-child {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-top: 24px !important;
  }

  .footerBrand p {
    max-width: 100%;
  }

  /* heroQuoteCard */
  .heroQuoteCard {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .heroQuoteCard .quoteTitle {
    font-size: 28px;
  }

  .heroQuoteCard .quoteText {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
  }
}

/* ---------- 767px ---------- */
@media (max-width: 767.98px) {
  .section-space-sm {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .heroSlide {
    min-height: 700px;
  }

  .heroSlideContent {
    padding: 95px 16px 250px;
  }

  .heroKicker {
    font-size: 0.8rem;
    padding: 8px 12px;
    margin-bottom: 14px;
  }

  .heroTitle {
    font-size: clamp(1.9rem, 9vw, 3rem);
    line-height: 1.04;
  }

  .heroLead {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .heroActions {
    flex-direction: column;
    align-items: stretch;
  }

  .btnHeroPrimary,
  .btnHeroGhost {
    width: 100%;
    min-height: 52px;
  }

  .heroThumbs {
    bottom: 12px;
  }

  /* Deal cards */
  .dealCard {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .dealCard img {
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .dealBody {
    padding: 14px !important;
  }

  .dealBody h3 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .dealBody p {
    font-size: 0.9rem;
  }

  .dealMeta {
    flex-wrap: wrap;
    gap: 6px;
  }

  .dealMeta span {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .dealAction {
    grid-column: auto !important;
    padding: 14px !important;
    border-top: 1px solid #e7edf2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .dealPrice {
    text-align: left !important;
  }

  .dealAction .cardBtn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Feature grid */
  .featureGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .featureCard {
    padding: 20px;
  }

  .featureIcon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .featureCard h3 {
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .featureCard p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  /* Partner grid */
  .partnerGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .centerCard {
    min-height: 100px;
    padding: 12px;
  }

  .centerCard strong {
    font-size: 0.95rem;
  }

  .centerCard span {
    font-size: 0.8rem;
  }

  /* Gallery slider */
  .clientGalleryTrack {
    gap: 0;
  }

  .clientGalleryAutoSlider .blogCard {
    flex: 0 0 100%;
    min-width: 100%;
    border-radius: 20px;
  }

  .clientGalleryAutoSlider .blogCard img {
    aspect-ratio: 16 / 11;
  }

  .clientGalleryAutoSlider .blogBody {
    padding: 14px;
  }

  /* Package slider */
  .singlePackageSlider {
    padding-inline: 0;
  }

  .sliderTrack {
    gap: 0;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
  }

  .sliderTrack .packageCard {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    border-radius: 24px;
  }

  .sliderBtn {
    width: 44px;
    height: 44px;
    top: 28%;
  }

  .sliderBtn.prev {
    left: 2px;
  }

  .sliderBtn.next {
    right: 2px;
  }

  /* Footer */
  .footerTop {
    padding: 38px 0 18px;
  }

  .footerTop .shell {
    padding-inline: 14px;
  }

  .footerTop .shell>div:first-child {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .footerTop .shell>div:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .footerBrand .navbar-brand {
    align-items: flex-start;
    gap: 10px;
  }

  .footerBrand p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .footer h4 {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .footerLinks {
    gap: 8px;
  }

  .footerLinks a {
    font-size: 0.93rem;
    line-height: 1.6;
    word-break: break-word;
  }

  .footerBottom {
    padding: 16px 0 22px;
    text-align: center;
  }

  .footerBottom .shell {
    justify-content: center !important;
    text-align: center;
  }

  .footerBottom span {
    width: 100%;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* Enquiry */
  .splitCatalog .sideCard {
    padding: 18px 14px !important;
    border-radius: 20px !important;
  }

  .splitCatalog .heroQuoteCard {
    padding: 18px 14px !important;
    border-radius: 20px !important;
  }

  .splitCatalog .sideCard h2 {
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
  }

  .splitCatalog .sideCard p,
  .splitCatalog .heroQuoteCard p {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
  }

  .splitCatalog .miniHead {
    font-size: 0.82rem !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }

  .splitCatalog .heroQuoteCard h3 {
    font-size: 1.55rem !important;
    margin-bottom: 8px !important;
  }

  .splitCatalog .row.g-3 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .splitCatalog .col-md-6 {
    width: 100% !important;
  }

  .blogCard img {
    height: 300px;
  }
}

/* ---------- 575px ---------- */
@media (max-width: 575.98px) {
  .brandText span {
    font-size: .92rem;
  }

  .topStrip__right {
    text-align: center;
  }

  .heroSlide {
    min-height: 120px;
  }

  .heroSlideContent {
    padding: 88px 14px 265px;
  }

  .heroTitle {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .heroLead {
    font-size: 0.92rem;
  }

  .heroNav {
    display: none;
  }

  .heroThumbs {
    left: 10px;
    right: 10px;
    gap: 8px;
  }

  .heroThumbs button {
    padding: 10px 12px;
  }

  .heroThumbs strong {
    font-size: 0.88rem;
  }

  /* Feature grid */
  .featureGrid {
    gap: 12px;
  }

  .featureCard {
    padding: 18px;
    border-radius: 20px;
  }

  .featureCard h3 {
    font-size: 0.96rem;
  }

  .featureCard p {
    font-size: 0.9rem;
  }

  /* Deal cards */
  .dealCard img {
    height: 190px !important;
    min-height: 190px !important;
    max-height: 190px !important;
  }

  /* Partner grid */
  .partnerGrid {
    grid-template-columns: 1fr;
  }

  .centerCard {
    min-height: 90px;
  }

  /* Footer */
  .footerTop .shell {
    padding-inline: 12px;
  }

  .footerTop .shell>div:first-child {
    gap: 18px !important;
  }

  .footerTop .shell>div:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .footerTop .shell>div:last-child>div {
    padding: 14px 10px !important;
    border-radius: 16px !important;
  }

  .footerTop .shell>div:last-child>div span {
    font-size: 0.8rem !important;
    line-height: 1.35;
  }

  .footerBrand p {
    font-size: 0.92rem;
  }

  .footerLinks a {
    font-size: 0.9rem;
  }

  .footerBottom span {
    font-size: 0.84rem;
  }

  /* Enquiry */
  .splitCatalog {
    gap: 14px !important;
  }

  .splitCatalog .sideCard {
    padding: 16px 12px !important;
  }

  .splitCatalog .heroQuoteCard {
    padding: 16px 12px !important;
  }

  .splitCatalog .sectionKicker {
    font-size: 0.72rem !important;
    letter-spacing: 0.08em !important;
  }

  .splitCatalog .sideCard h2 {
    font-size: clamp(1.35rem, 8vw, 1.8rem) !important;
    line-height: 1.2 !important;
  }

  .splitCatalog .heroQuoteCard h3 {
    font-size: 1.4rem !important;
  }

  .splitCatalog .form-control,
  .splitCatalog .form-select,
  .splitCatalog textarea {
    padding: 13px 14px !important;
    border-radius: 14px !important;
  }

  .splitCatalog .quoteBtn {
    min-height: 52px !important;
    font-size: 0.96rem !important;
  }

  /* heroQuoteCard */
  .heroQuoteCard {
    padding: 18px 15px;
    border-radius: 18px;
  }

  .heroQuoteCard .miniHead {
    font-size: 12px;
    padding: 7px 12px;
    margin-bottom: 12px;
  }

  .heroQuoteCard .quoteText {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .heroQuoteCard .form-control {
    min-height: 50px;
    font-size: 14px;
  }

  .contentCard,
  .sideCard {
    padding: 20px;
  }
}

/* ========================= SIDECARD FEATURE GRID MOBILE FIX ========================= */
@media (max-width: 767.98px) {
  .splitCatalog .sideCard>div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .splitCatalog .sideCard>div[style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

:root {
    --primary: #cf1f25;
    --primary-dark: #a71118;
    --accent: #f18a00;
    --accent-soft: #fff3dc;
}

.contactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* LEFT CARD */
.contactCardLeft {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contactCardLeft h2 span {
    color: var(--primary);
}

.tagline {
    margin: 10px 0 20px;
    color: #555;
}

.infoItem {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.infoItem i {
    color: var(--primary);
    margin-top: 4px;
}

.ctaBox {
    margin-top: 25px;
    padding: 15px;
    background: var(--accent-soft);
    border-radius: 10px;
}

.callBtn {
    display: inline-block;
    margin-top: 10px;
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
}

/* RIGHT CARD */
.contactCardRight {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contactCardRight h3 {
    margin-bottom: 20px;
}

.formGrid input,
.formGrid textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 12px;
}

.formGrid input:focus,
.formGrid textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.formGrid button {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
}

.formGrid button:hover {
    background: var(--primary-dark);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .contactGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contactCardLeft,
    .contactCardRight {
        padding: 25px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .contactSectionAlt {
        padding: 40px 15px;
    }

    .contactCardLeft,
    .contactCardRight {
        padding: 20px;
        border-radius: 10px;
    }

    .contactCardLeft h2 {
        font-size: 22px;
    }

    .contactCardRight h3 {
        font-size: 18px;
    }

    .tagline {
        font-size: 14px;
    }

    .infoItem {
        gap: 10px;
        font-size: 14px;
    }

    .formGrid input,
    .formGrid textarea {
        padding: 10px;
        font-size: 14px;
    }

    .formGrid button {
        padding: 10px;
        font-size: 15px;
    }

    .callBtn {
        padding: 7px 14px;
        font-size: 14px;
    }
}

.aboutModern {
    /* padding: 70px 0; */
    /* background: #fff; */
}

.aboutWrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.aboutLeft h2 span {
    color: var(--primary);
}

.aboutLeft p {
    margin-top: 15px;
    color: #555;
}

.highlightBar {
    margin-top: 20px;
    padding: 12px;
    background: var(--accent-soft);
    border-left: 4px solid var(--primary);
    border-radius: 6px;
    font-weight: 500;
}

.aboutRight img {
    width: 100%;
    border-radius: 12px;
}

.whyBetter {
    padding: 40px 0;
    text-align: center;
}

.sectionTitle {
    margin-bottom: 40px;
}

.sectionTitle span {
    color: var(--primary);
}

.whyCards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.whyCardNew {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-top: 4px solid transparent;
}

.whyCardNew:hover {
    transform: translateY(-8px);
    border-top: 4px solid var(--primary);
}

.iconBox {
    width: 55px;
    height: 55px;
    margin: auto;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconBox i {
    color: var(--primary);
    font-size: 18px;
}

.whyCardNew h3 {
    margin: 15px 0 8px;
}

.whyCardNew p {
    font-size: 14px;
    color: #555;
}

.dot {
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 5px;
}

.servicesModern {
    padding: 70px 0;
    text-align: center;
}

.servicesModern h2 span {
    color: var(--primary);
}

.servicesWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.serviceBox {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.callBtnAlt {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .aboutWrap {
        grid-template-columns: 1fr;
    }

    .servicesWrap {
        grid-template-columns: 1fr;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .whyCards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .whyCards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .whyCardNew {
        padding: 20px 15px;
    }

    .whyCardNew h3 {
        font-size: 17px;
    }

    .whyCardNew p {
        font-size: 13px;
    }
}

.dropdown-menu {
  max-height: 350px;   /* height control */
  overflow-y: auto;    /* vertical scroll */
  padding: 10px;
}

/* Smooth scroll look */
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .dropdown-menu {
    max-height: 250px;
    width: 100%;
  }
}

.myhcontent {
  max-height: 0;   /* adjust height */
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.myhcontent.active {
  max-height: 5000px; /* big enough to show full content */
}

.myhcontent h4{
  font-size: 20px;
}
.myhcontent h3{
  font-size: 25px;
}

/* Table Wrapper (for mobile scroll) */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}

/* Table Design */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-family: sans-serif;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Header */
.custom-table thead {
  background: var(--primary);
  color: #fff;
}

.custom-table th {
  padding: 14px;
  text-align: left;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Body */
.custom-table td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/* Alternate row */
.custom-table tbody tr:nth-child(even) {
  background: var(--accent-soft);
}

/* Hover effect */
.custom-table tbody tr:hover {
  background: #ffe4d1;
  transition: 0.3s;
}

/* Links */
.custom-table a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

.custom-table a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Price highlight */
.price {
  font-weight: bold;
  color: var(--primary);
}

/* Ask price badge */
.ask-price {
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/*Pop up form*/
.enquiryModal .modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
}

/* Header */
.enquiryHeader {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Body */
.enquiryBody {
  padding: 25px;
  background: #fff;
}

.form-control {
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  transition: 0.3s;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(207,31,37,0.1);
}

/* NEW PREMIUM CAPTCHA */
.captchaWrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f9f9f9;
  border: 1px solid #eee;
  margin-bottom: 15px;
}

.captchaQuestion {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  min-width: 60px;
}

.captchaInput {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  border: 1px solid #eee;
}

.captchaInput:focus {
  border-color: var(--primary);
}

.refreshCaptcha {
  cursor: pointer;
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
}

/* Button */
.enquiryBtn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.enquiryBtn:hover {
  opacity: 0.9;
}

/* CARD WRAPPER */
.sideCard {
  padding: 26px 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TEXT */
.mainTitle {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.mainDesc {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

/* FEATURE GRID */
/* GRID */
.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* CARD */
.featureCard {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 20px;
  padding: 18px;
}

/* TEXT */
.textWrap strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 16px;
}

.textWrap span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* COLORS */
.featureCard.warm {
  background: linear-gradient(180deg, #fff7ee, #fff);
  border: 1px solid #f0e2cb;
}

.featureCard.red {
  background: linear-gradient(180deg, #fff7f7, #fff);
  border: 1px solid #f2dbdd;
}

.featureCard.blue {
  background: linear-gradient(180deg, #f7fbff, #fff);
  border: 1px solid #dfe9f4;
}

/* ICON */
.iconBox {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.iconBox.orange {
  background: rgba(241,138,0,0.14);
  color: var(--accent);
}

.iconBox.red {
  background: rgba(207,31,37,0.12);
  color: var(--primary);
}

.iconBox.navy {
  background: rgba(36,55,79,0.1);
  color: var(--navy);
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .featureGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .featureGrid {
    grid-template-columns: 1fr;
  }

  .featureCard {
    padding: 16px;
  }

  .textWrap strong {
    font-size: 15px;
  }

  .textWrap span {
    font-size: 13px;
  }
}
/* BOTTOM GRID */
.bottomGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* BOTTOM CARD */
.bottomCard {
  border-radius: 18px;
  padding: 18px;
  color: #fff;
}

.bottomCard.dark {
  background: linear-gradient(135deg, var(--navy), #314765);
}

.bottomCard.gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.bottomCard small {
  display: block;
  opacity: 0.75;
  font-weight: 700;
  margin-bottom: 6px;
}

.bottomCard strong {
  font-size: 1rem;
  line-height: 1.4;
}

/* ✅ RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .featureGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .sideCard {
    padding: 20px;
    border-radius: 20px;
  }

  .featureGrid {
    grid-template-columns: 1fr;
  }

  .bottomGrid {
    grid-template-columns: 1fr;
  }

  .mainTitle {
    font-size: 1.4rem;
  }

  .featureCard {
    padding: 16px;
  }
    .ask-price
  {
    font-size: 10px;
  }
}


.sideLinksBox {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.sideLinksBox h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--navy);
  position: relative;
  padding-left: 10px;
}

.sideLinksBox h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  height: 16px;
  width: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.sideLinksList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sideLinksList li {
  border-bottom: 1px solid #eee;
}

.sideLinksList li:last-child {
  border-bottom: none;
}

.sideLinksList a {
  display: block;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

.sideLinksList a:hover {
  background: #f9f9f9;
  color: var(--primary);
  padding-left: 16px;
}

/* arrow effect */
.sideLinksList a::after {
  content: "→";
  position: absolute;
  right: 10px;
  opacity: 0;
  transition: 0.3s;
}

.sideLinksList a:hover::after {
  opacity: 1;
  right: 6px;
}

/* Table Wrapper */
.table-container {
  width: 100%;
  margin: 20px 0;
}

/* Table Design */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  min-width: unset; /* ❌ min-width hatao */
  font-family: sans-serif;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Wrap td content */
.custom-table td,
.custom-table th {
  padding: 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  word-break: break-word;   /* ✅ long words break */
  white-space: normal;       /* ✅ text wrap hoga */
  overflow-wrap: break-word; /* ✅ extra safety */
}

/* Fix column widths on mobile */
.custom-table th:first-child,
.custom-table td:first-child {
  width: 55%;  /* Package name column */
}

.custom-table th:nth-child(2),
.custom-table td:nth-child(2) {
  width: 20%;  /* Duration column */
}

.custom-table th:nth-child(3),
.custom-table td:nth-child(3) {
  width: 25%;  /* Price column */
}
/* Make dropdown full width */
.mega-dropdown {
  position: relative;
}
.mega-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;   /* 👈 ye gap cover karega */
}

.mega-menu {
  position: absolute !important;
  top: 100%;

  left: 50%;
  transform: translateX(-50%);

  width: 70vw;          /* 👈 full feel but not overflow */
  max-width: 1200px;    /* 👈 control width */

  padding: 25px 20px;
  border-radius: 12px;
  background: #fff;
  border: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* container */
.mega-container {
  width: 90%;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* columns */
.mega-col {
  flex: 1;
}

/* heading */
.mega-col h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mega-col h6 span {
  color: red;
}

/* links */
.mega-col a {
  display: block;
  padding: 6px 0;
  color: #444;
  text-decoration: none;
  border-bottom: 1px dashed #ccc;
  transition: 0.3s;
}

/* hover effect */
.mega-col a:hover {
  color: red;
  padding-left: 6px;
}

/* shadow like screenshot */
.mega-menu {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* MOBILE VIEW */
@media (max-width: 991px) {

  .mega-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100%;
    box-shadow: none;
    padding: 10px 15px;
    border-radius: 0;
  }

  .mega-container {
    flex-direction: column;   /* 👈 columns stack */
    gap: 15px;
  }

  .mega-col {
    width: 100%;
  }

  .mega-col h6 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .mega-col a {
    font-size: 14px;
    padding: 8px 0;
  }

}.tourFoot div,
.dealAction {
  display: flex;
  gap: 10px;
}

/* parent fix */
.tourFoot {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap; /* 👈 IMPORTANT */
}

/* buttons fix */
.tourFoot .cardBtn {
  flex: 1;                 /* 👈 equal width */
  width: 0 !important;     /* 👈 override 100% */
  display: flex;
  justify-content: center;
  align-items: center;
}
.packageFoot > div:last-child {
  display: flex;
  gap: 10px;
  width: 100%;
}

.packageFoot > div:last-child .cardBtn {
  flex: 1;
  width: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  /* 👇 IMPORTANT FIXES */
  padding: 12px 0;        /* equal horizontal space */
  white-space: nowrap;    /* text break na ho */
}


/* Mobile pe hero hide + form show */
@media only screen and (max-width:768px){

  .hero{
    display:none !important;
  }
}

/* ===============================
   MOBILE ORDER CHANGE
   heroQuoteCard upar
   sideCard niche
   =============================== */

@media (max-width:768px){

  .splitCatalog{
    display:flex !important;
    flex-direction:column !important;
    gap:18px;
  }

  .heroQuoteCard{
    order:1;
    width:100% !important;
    margin:0 !important;
  }

  .sideCard{
    order:2;
    width:100%;
  }

}

/* ===============================
   PACKAGE CARD FOOTER REDESIGN
   Theme:
   --primary: #cf1f25
   --primary-dark:#a71118
   --accent:#f18a00
   =============================== */

/* feature icons row */
.miniSpecs{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
  margin:14px 0 12px;
  text-align:center;
}

.miniSpecs strong{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
  font-weight:700;
  color:#24324a;
  
}

.miniSpecs i{
  width:30px;
  height:30px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;
  font-size:13px;
  flex-shrink:0;
}

/* tags */
.metaLine{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.metaLine span{
  padding:7px 14px;
  border-radius:9px;
  font-size:13px;
  font-weight:800;
}

.metaLine span:first-child{
  background:#e9fff1;
  color:#118347;
}

.metaLine span:last-child{
  background:#fff3dc;
  color:#d97706;
}

/* footer area */
.packageFoot{
  margin-top:8px;
}

.packageFoot > div:last-child{
  display:flex;
  gap:10px;
  width:100%;
}

/* common button */
.packageFoot .cardBtn{
  flex:1;
  width:0;
  height:46px;
  border:none;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:800;
  text-decoration:none;
  transition:.25s ease;
  white-space:nowrap;
}

/* left button */
.packageFoot a.cardBtn{
  background:#2e3f5d;
  color:#fff;
}

/* right button */
.packageFoot button.cardBtn{
  background: linear-gradient(135deg, #dba62a, var(--primary-dark)) !important;
    color: #fff;
}

/* hover */
.packageFoot .cardBtn:hover{
  transform:translateY(-2px);
  opacity:.96;
}

/* mobile */
@media(max-width:768px){

  .miniSpecs{
    gap:8px;
  }

  .miniSpecs strong{
    font-size:12px;
  }

  .miniSpecs i{
    font-size:16px;
  }

  .packageFoot .cardBtn{
    font-size:14px;
    height:44px;
  }
}
/* ==========================================
   MINI SPECS TEXT CENTER FIX
========================================== */

.miniSpecs strong{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center !important;
  gap:4px;
  line-height:1.15;
}

.miniSpecs strong,
.miniSpecs strong *{
  text-align:center !important;
}

.miniSpecs div{
  display:flex;
  justify-content:center;
}

@media(max-width:768px){

  .miniSpecs strong{
    font-size:11px;
    padding:8px 2px;
    text-align:center !important;
  }

}
/* ==========================================
   PACKAGE FOOT TOP DOTTED LINE
========================================== */

.packageFoot{
  margin-top:12px;
  padding-top:12px;
  position:relative;
}

/* dotted stylish line */
.packageFoot::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;

  background-image:radial-gradient(
    circle,
    rgba(241,138,0,.9) 1px,
    transparent 1.6px
  );

  background-size:10px 2px;
  background-repeat:repeat-x;
  opacity:.9;
}

/* mobile */
@media(max-width:768px){

  .packageFoot{
    margin-top:10px;
    padding-top:14px;
  }

  .packageFoot::before{
    background-size:8px 2px;
  }

}