/* ============================================================
   Urvashi Travels Bilaspur — Master Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --color-white:   #f5f5f5;
  --color-btn:     #0CB2DB;
  --color-btn1:    #E8F4F8;
  --text-color:    #5a6b72;
  --primary:       #0CB2DB;
  --primary-dark:  #0895b8;
  --primary-light: #a8e6f3;
  --title-color:   #1E1E1E;
  --color-black1:  #f9f9f9;
  --bg-dark:       #f5f7fa;
  --bg-card:       #ffffff;
  --bg-deep:       #e8ecf0;
  --border:        rgba(12,178,219,.12);
  --glow:          0 0 30px rgba(12,178,219,.15);
  --tr:            all .35s cubic-bezier(.4,0,.2,1);
  --r:             12px;
  --rl:            20px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.12);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-color);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--title-color);
  line-height: 1.2;
}

a { text-decoration: none; transition: var(--tr); }
img { max-width: 100%; height: auto; }

/* ── Utility Classes ── */
.text-primary   { color: var(--primary) !important; }
.bg-primary-lt  { background: var(--color-btn1); }
.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.badge-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--color-btn1);
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-color);
  max-width: 560px;
}

.divider-line {
  width: 52px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  margin: 0 auto 28px;
}
.divider-line.left { margin: 0 0 28px; }

/* ── Buttons ── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  box-shadow: 0 4px 18px rgba(12,178,219,.35);
  transition: var(--tr);
  cursor: pointer;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(12,178,219,.45);
  color: #fff;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--primary);
  transition: var(--tr);
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Floating Contact Bar (WhatsApp / Call) ── */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  transition: var(--tr);
  border: none;
  cursor: pointer;
}
.floating-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,.22); }
.wa-btn  { background: #25D366; color: #fff; }
.call-btn{ background: var(--primary); color: #fff; }

/* ── Navbar ── */
.navbar-custom {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: var(--tr);
  box-shadow: var(--shadow-sm);
}
.navbar-custom.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}
.navbar-brand img { height: 52px; object-fit: contain; }
.navbar-custom .nav-link {
  font-weight: 500;
  color: var(--title-color) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  font-size: .95rem;
  transition: var(--tr);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary) !important;
  background: var(--color-btn1);
}
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }

/* ── Hero / Banner ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1a22;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12,178,219,.55) 0%, rgba(11,26,34,.85) 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title span { color: var(--primary); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
}
.hero-stat p {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Search / Quick Book Bar ── */
.search-bar-wrap {
  position: relative;
  z-index: 10;
  margin-top: -40px;
}
.search-card {
  background: #fff;
  border-radius: var(--rl);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  border: 1px solid var(--border);
}
.search-card .form-label { font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--title-color); }
.search-card .form-control,
.search-card .form-select {
  border-radius: var(--r);
  border: 1.5px solid var(--bg-deep);
  padding: 10px 14px;
  font-size: .92rem;
  color: var(--title-color);
  transition: var(--tr);
}
.search-card .form-control:focus,
.search-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12,178,219,.12);
}

/* ── Services Cards ── */
.service-card {
  background: var(--bg-card);
  border-radius: var(--rl);
  border: 1px solid var(--border);
  padding: 32px 24px;
  transition: var(--tr);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  border-radius: 0 4px 4px 0;
  transform: scaleY(0);
  transition: var(--tr);
  transform-origin: top;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--glow);
  border-color: var(--primary);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 62px;
  height: 62px;
  border-radius: var(--r);
  background: var(--color-btn1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--tr);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}
.service-card h5 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--title-color);
}
.service-card p {
  font-size: .91rem;
  color: var(--text-color);
  margin: 0;
}
.service-img-card {
  border-radius: var(--rl);
  overflow: hidden;
  position: relative;
  height: 260px;
}
.service-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.service-img-card:hover img { transform: scale(1.06); }
.service-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* ── Why Choose Us ── */
.feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--color-btn1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
}
.feature-item h6 { font-size: 1rem; font-weight: 700; color: var(--title-color); margin-bottom: 4px; }
.feature-item p  { font-size: .88rem; color: var(--text-color); margin: 0; }

/* ── Destination / Package Cards ── */
.pkg-card {
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--tr);
  height: 100%;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pkg-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.pkg-card:hover .pkg-img img { transform: scale(1.07); }
.pkg-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
}
.pkg-body { padding: 20px; }
.pkg-body h5 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; color: var(--title-color); }
.pkg-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: var(--text-color);
  margin-bottom: 14px;
}
.pkg-meta span { display: flex; align-items: center; gap: 5px; }
.pkg-price { font-size: 1.3rem; font-weight: 800; color: var(--primary); font-family: 'DM Sans', sans-serif; }
.pkg-price small { font-size: .78rem; font-weight: 400; color: var(--text-color); }

/* ── Testimonials ── */
.testi-section { background: var(--bg-dark); }
.testi-card {
  background: #fff;
  border-radius: var(--rl);
  padding: 28px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--tr);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; }
.testi-text { font-size: .94rem; color: var(--text-color); font-style: italic; margin-bottom: 20px; line-height: 1.75; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-btn1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 1.1rem;
}
.testi-author h6 { font-size: .95rem; font-weight: 700; margin: 0; color: var(--title-color); }
.testi-author small { font-size: .8rem; color: var(--text-color); }

/* ── Counter / Stats ── */
.counter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' 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/g%3E%3C/svg%3E");
}
.counter-item { text-align: center; position: relative; z-index: 1; }
.counter-item h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 4px;
}
.counter-item p { color: rgba(255,255,255,.82); font-size: .95rem; font-weight: 500; margin: 0; }

/* ── Fleet Section ── */
.fleet-card {
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--tr);
  height: 100%;
}
.fleet-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.fleet-img { height: 200px; overflow: hidden; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.fleet-card:hover .fleet-img img { transform: scale(1.06); }
.fleet-body { padding: 20px; }
.fleet-body h5 { font-size: 1.05rem; font-weight: 700; color: var(--title-color); margin-bottom: 6px; }
.fleet-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.fleet-spec {
  background: var(--color-btn1);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
}

/* ── Contact Page ── */
.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--rl);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--tr);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-icon {
  width: 52px; min-width: 52px; height: 52px;
  border-radius: var(--r);
  background: var(--color-btn1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}
.contact-info-card h6 { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-color); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a {
  font-size: .96rem;
  color: var(--title-color);
  font-weight: 500;
  margin: 0;
}
.contact-info-card a:hover { color: var(--primary); }

/* ── Form Styles ── */
.form-section-card {
  background: #fff;
  border-radius: var(--rl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--title-color); margin-bottom: 6px; }
.form-control, .form-select {
  border-radius: var(--r);
  border: 1.5px solid #e0e6ea;
  padding: 11px 14px;
  font-size: .93rem;
  color: var(--title-color);
  transition: var(--tr);
  background: #fafbfc;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12,178,219,.12);
  background: #fff;
}
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── Map Section ── */
.map-wrap {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0b1a22 0%, #0a3344 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230CB2DB' fill-opacity='0.06'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 12px; }
.page-hero .breadcrumb { background: transparent; padding: 0; margin: 0; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.65); font-size: .9rem; }
.page-hero .breadcrumb-item.active { color: var(--primary); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── About Page ── */
.about-img-wrap {
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
}
.about-img-wrap img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--rl); }
.about-badge {
  position: absolute;
  bottom: 24px; right: -16px;
  background: var(--primary);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--r);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge h3 { font-size: 2rem; font-weight: 900; font-family: 'DM Sans', sans-serif; color: #fff; margin: 0; line-height: 1; }
.about-badge p  { font-size: .8rem; margin: 4px 0 0; color: rgba(255,255,255,.85); }

/* ── Team Card ── */
.team-card {
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--tr);
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.team-img { height: 220px; overflow: hidden; background: var(--bg-dark); }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-body { padding: 20px; }
.team-body h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: var(--title-color); }
.team-body small { color: var(--primary); font-weight: 600; font-size: .85rem; }

/* ── Gallery ── */
.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .55s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,178,219,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--tr);
  font-size: 2rem;
  color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Footer ── */
.footer-main {
  background: #0b1a22;
  padding: 64px 0 32px;
  color: rgba(255,255,255,.72);
}
.footer-logo { height: 50px; object-fit: contain; margin-bottom: 16px; filter: brightness(10); }
.footer-about { font-size: .92rem; line-height: 1.75; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: var(--tr);
  border: 1px solid rgba(255,255,255,.1);
}
.social-icon:hover { background: var(--primary); color: #fff; transform: translateY(-3px); border-color: var(--primary); }
.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .91rem;
  transition: var(--tr);
  display: flex; align-items: center; gap: 7px;
}
.footer-links a::before { content: '›'; color: var(--primary); font-size: 1.1rem; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 3px;
  min-width: 18px;
}
.footer-contact-item span {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.footer-bottom {
  background: #071018;
  padding: 16px 0;
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom a { color: var(--primary); }

/* ── Back to Top ── */
.back-top {
  position: fixed;
  bottom: 90px;
  right: 26px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(12,178,219,.4);
  opacity: 0; visibility: hidden;
  transition: var(--tr);
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ── Accordion (FAQ) ── */
.custom-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--r) !important;
  overflow: hidden;
  margin-bottom: 12px;
}
.custom-accordion .accordion-button {
  font-weight: 600;
  color: var(--title-color);
  background: #fff;
  box-shadow: none;
  border-radius: var(--r) !important;
  font-size: .95rem;
}
.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--color-btn1);
}
.custom-accordion .accordion-button::after {
  filter: none;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(46%) sepia(83%) saturate(576%) hue-rotate(163deg) brightness(98%) contrast(104%);
}

/* ── Tooltip & Badge ── */
.tip-badge {
  background: var(--color-btn1);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
}

/* ── Modal ── */
.modal-content { border-radius: var(--rl); border: none; box-shadow: var(--shadow-lg); overflow: hidden; }
.modal-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border: none; padding: 20px 24px; }
.modal-header .btn-close { filter: invert(1); opacity: .8; }
.modal-body { padding: 28px 24px; }
.modal-footer { border-top: 1px solid var(--border); padding: 16px 24px; }

/* ── Carousel override ── */
.carousel-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  transition: var(--tr);
}
.carousel-indicators .active {
  width: 24px;
  border-radius: 100px;
  background: var(--primary);
}
.carousel-control-prev-icon,
.carousel-control-next-icon { background-size: 16px; }

/* ── Responsive Tweaks ── */
@media (max-width: 991px) {
  .navbar-collapse { background: rgba(255,255,255,.98); border-radius: var(--r); padding: 16px; margin-top: 12px; box-shadow: var(--shadow-md); }
  .hero-stats { gap: 22px; }
  .search-card { padding: 20px; }
  .about-badge { right: 8px; }
}
@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
  .form-section-card { padding: 24px 18px; }
  .hero-title { font-size: 2.2rem; }
  .hero-section { min-height: 88vh; }
  .page-hero { padding: 100px 0 50px; }
  .counter-section { padding: 40px 0; }
  .floating-contact { bottom: 18px; right: 14px; }
}

/* ── Animate on scroll placeholders ── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"]  { transform: translateX(-24px); }
[data-aos="fade-left"]   { transform: translateX(24px); }
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ============================================================
   HORIZONTAL SCROLL FIX — Complete Solution
   ============================================================ */

/* 1. Root-level lockdown */
html {
  overflow-x: hidden !important;
  max-width: 100vw;
}
body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* 2. Bootstrap row negative-margin fix — THE #1 culprit */
.row {
  --bs-gutter-x: 1.5rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* 3. Container padding safety */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  padding-left: 15px;
  padding-right: 15px;
  overflow-x: hidden;
  max-width: 100%;
}

/* 4. Sections must not exceed viewport */
section,
header,
footer,
nav,
div {
  max-width: 100%;
}

/* 5. Images, iframes, embeds */
img, video, iframe, embed, object {
  max-width: 100% !important;
  display: block;
}

/* 6. Hero — the most common offender */
.hero-section,
.hero-content,
.hero-overlay,
.hero-bg {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

/* 7. AOS slide animations cause horizontal overflow on mobile
      — clip the containing wrapper, not the element itself     */
[data-aos="fade-left"],
[data-aos="fade-right"] {
  overflow: hidden;   /* removed: clips child; instead use clip on section */
}
/* Better: wrap sections in clip context */
.section-pad,
.section-pad-sm,
.counter-section,
.testi-section,
.page-hero,
.search-bar-wrap {
  overflow-x: hidden;
}

/* 8. About badge — negative right value causes overflow */
.about-badge {
  right: 8px !important;   /* was -16px, which bleeds outside */
}

/* 9. Navbar collapse on mobile */
.navbar-collapse {
  width: 100%;
  max-width: 100%;
}

/* 10. Cards */
.service-card,
.testi-card,
.pkg-card,
.fleet-card,
.form-section-card,
.search-card,
.contact-info-card {
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

/* 11. Text overflow prevention */
h1, h2, h3, h4, h5, h6, p, a, span, li, td, th {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* 12. Floating buttons — keep within viewport */
.floating-contact {
  right: 14px;
  max-width: calc(100vw - 28px);
}
.back-top {
  right: 14px;
}

/* ── Mobile-specific overrides ── */
@media (max-width: 767px) {

  /* Tighten container padding */
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Fix Bootstrap columns from bleeding */
  .col, [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Hero tweaks */
  .hero-title {
    font-size: 1.9rem;
    line-height: 1.2;
  }
  .hero-stats {
    gap: 14px;
  }
  .hero-stat h3 {
    font-size: 1.5rem;
  }

  /* Search bar */
  .search-bar-wrap {
    margin-top: 0;
  }
  .search-card {
    border-radius: 0;
    padding: 18px 12px;
    box-shadow: none;
    border-left: none;
    border-right: none;
  }

  /* About badge overflow fix */
  .about-badge {
    position: static !important;
    margin-top: 16px;
    display: inline-block;
    border-radius: 12px;
  }

  /* Form card */
  .form-section-card {
    padding: 20px 14px;
  }

  /* Map iframe */
  .map-wrap iframe {
    height: 260px;
  }

  /* Page hero */
  .page-hero {
    padding: 90px 0 44px;
  }

  /* Footer columns */
  .footer-main .col-6 {
    width: 50%;
  }
  .footer-about {
    max-width: 100%;
  }

  /* Floating contact */
  .floating-contact {
    bottom: 16px;
    right: 10px;
    gap: 8px;
  }
  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
  .back-top {
    right: 10px;
    bottom: 78px;
  }
}
.pkg-body h5 {
  font-size: 1rem;
}

.pkg-price {
  font-size: 1.1rem;
}

.btn-primary-custom {
  padding: 8px 16px;
  font-size: 0.85rem;
}