/* ============================================================
   CHANDEL TOUR AND TRAVELS — style.css
   ============================================================ */

/* CSS Variables */
:root {
  --primary:        #0B2D5C;
  --primary-hover:  #14407C;
  --accent:         #D9A441;
  --accent-hover:   #e4b764;
  --background:     #FAFBFC;
  --section-bg:     #F3F5F7;
  --card-bg:        #FFFFFF;
  --text:           #1A1A1A;
  --text-light:     #5F6B7A;
  --border:         #E5EAF0;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow:         0 4px 24px rgba(11,45,92,0.08);
  --shadow-lg:      0 8px 40px rgba(11,45,92,0.14);
  --transition:     all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--primary);
}
h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

.text-accent { color: var(--accent); }
.bg-section  { background-color: var(--section-bg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.4px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,45,92,0.3);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,164,65,0.4);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-right a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
}
.topbar-right a:hover { color: var(--accent); }

@media (max-width: 767px) {
  .topbar { display: none; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: #fff;
  box-shadow: 0 2px 16px rgba(11,45,92,0.07);
  padding: 10px 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  box-shadow: 0 4px 24px rgba(11,45,92,0.13);
  padding: 7px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 8px;
}
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  max-width: 180px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--primary) !important; }
.nav-link.active { color: var(--primary) !important; font-weight: 700; }

.toggler-icon { font-size: 20px; color: var(--primary); }
.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-actions {
  position: fixed;
  bottom: 28px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1); color: #fff; }
.whatsapp-btn { background: #25D366; }
.call-btn     { background: var(--primary); }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-pad { padding: 80px 0; }

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}
.section-header h2 { font-size: clamp(28px, 4vw, 40px); }
.section-header p  { color: var(--text-light); margin-top: 12px; }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: rgba(217,164,65,0.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-section {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-slides { height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,45,92,0.78) 0%, rgba(11,45,92,0.45) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8vw;
  max-width: 760px;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  display: inline-block;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider Controls */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover { background: var(--accent); border-color: var(--accent); }

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dot.active { background: var(--accent); transform: scale(1.3); }

@media (max-width: 767px) {
  .hero-section { height: 88vh; }
  .hero-content { padding: 0 24px; }
  .hero-content p { font-size: 15px; }
}

/* ============================================================
   BOOKING BAR
   ============================================================ */
.booking-bar {
  background: var(--primary);
  padding: 20px 0;
  position: relative;
  z-index: 5;
}
.booking-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.booking-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.booking-item > i {
  font-size: 26px;
  color: var(--accent);
}
.booking-item small { display: block; font-size: 11px; opacity: 0.7; }
.booking-item a { color: #fff; font-weight: 600; font-size: 15px; }
.booking-item a:hover { color: var(--accent); }
.booking-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.booking-cta .btn { white-space: nowrap; }

@media (max-width: 991px) {
  .booking-divider { display: none; }
  .booking-bar-inner { justify-content: center; }
  .booking-cta { width: 100%; text-align: center; }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(11,45,92,0.07);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: #fff;
}
.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.service-card p { color: var(--text-light); font-size: 14px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 14px;
}
.card-link:hover { color: var(--accent); gap: 10px; }

/* Full-image service cards (services.php) */
.service-card-full {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.service-card-full:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card-full:hover .service-card-img img { transform: scale(1.06); }
.service-card-icon {
  position: absolute;
  bottom: -20px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow);
}
.service-card-body {
  padding: 30px 24px 24px;
}
.service-card-body h4 { font-size: 18px; margin-bottom: 8px; }
.service-card-body p  { color: var(--text-light); font-size: 14px; margin-bottom: 16px; }

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.package-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.package-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.package-card:hover .package-img img { transform: scale(1.06); }
.package-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.package-body { padding: 22px; }
.package-body h4 { font-size: 18px; margin-bottom: 8px; }
.package-places { color: var(--text-light); font-size: 13px; margin-bottom: 16px; }
.package-places i { color: var(--accent); margin-right: 4px; }
.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.package-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us-section { background-color: var(--background); }
.why-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(11,45,92,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--primary); color: #fff; }
.why-card h5 { font-size: 16px; margin-bottom: 10px; }
.why-card p  { color: var(--text-light); font-size: 14px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a8a 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-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.04'%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");
}
.stat-item { position: relative; color: #fff; }
.stat-item i { font-size: 36px; color: var(--accent); margin-bottom: 12px; display: block; }
.stat-item h3 {
  font-size: 42px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.stat-item p { color: rgba(255,255,255,0.78); font-size: 15px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 10px 4px 30px;
}
.stars { color: var(--accent); font-size: 15px; margin-bottom: 14px; }
.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--primary); }
.testimonial-author small  { color: var(--text-light); font-size: 12px; }

/* Swiper pagination */
.swiper-pagination-bullet { background: var(--primary); opacity: 0.3; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--accent); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #0B2D5C 0%, #1a4a8a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(217,164,65,0.12);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.cta-inner h2 { color: #fff; font-size: clamp(26px, 4vw, 42px); margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,0.82); font-size: 17px; margin-bottom: 30px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,45,92,0.82) 0%, rgba(11,45,92,0.55) 100%);
}
.page-hero-content { position: relative; text-align: center; width: 100%; }
.page-hero-content h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); margin-bottom: 14px; }
.breadcrumb-item a { color: rgba(255,255,255,0.75); }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-img-wrap { position: relative; display: inline-block; width: 100%; }
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.exp-num { display: block; font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; line-height: 1; }
.exp-text { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }

.about-highlights { display: flex; flex-direction: column; gap: 10px; }
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.highlight-item i { color: var(--accent); font-size: 18px; }

.mvv-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border-top: 4px solid transparent;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.mvv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.mvv-card.mission { border-top-color: var(--primary); }
.mvv-card.vision  { border-top-color: var(--accent); }
.mvv-card.values  { border-top-color: #e74c3c; }
.mvv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(11,45,92,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin: 0 auto 20px;
}
.mvv-card h4 { margin-bottom: 12px; }
.mvv-card p  { color: var(--text-light); font-size: 14px; }

.fleet-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fleet-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.fleet-list li i { color: var(--accent); font-size: 18px; }

/* ============================================================
   SERVICE DETAIL LIST
   ============================================================ */
.service-detail-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.service-detail-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.service-detail-list li i { color: var(--accent); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-info-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(11,45,92,0.07);
  color: var(--primary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-info-card h5 { margin-bottom: 8px; }
.contact-info-card p  { color: var(--text-light); font-size: 14px; margin: 0; }
.contact-info-card a  { color: var(--text-light); }
.contact-info-card a:hover { color: var(--accent); }

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 6px; font-size: 26px; }
.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,45,92,0.08);
}
.contact-form .form-label { font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--text); }

.quick-contact-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.quick-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: var(--transition);
}
.quick-contact-btn:hover { background: var(--primary); color: #fff; }
.quick-contact-btn.whatsapp { border-color: #25D366; color: #25D366; }
.quick-contact-btn.whatsapp:hover { background: #25D366; color: #fff; }

.map-wrap h4 { color: var(--primary); }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-address { font-size: 14px; color: var(--text-light); }

/* FAQ */
.faq-accordion .faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  background: var(--card-bg);
  border: none;
  padding: 18px 20px;
}
.faq-accordion .accordion-button:not(.collapsed) { background: rgba(11,45,92,0.04); }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after {
  filter: invert(18%) sepia(100%) saturate(1500%) hue-rotate(202deg) brightness(90%);
}
.faq-accordion .accordion-body { padding: 16px 20px 20px; color: var(--text-light); font-size: 14.5px; }

/* ============================================================
   PACKAGES PAGE – Custom Package Box
   ============================================================ */
.custom-package-box {
  background: var(--card-bg);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
}
.custom-pkg-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.custom-package-box h3 { margin-bottom: 14px; }
.custom-package-box p  { color: var(--text-light); margin-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0a2348; color: rgba(255,255,255,0.78); }
.footer-top { padding: 70px 0 40px; }

.footer-brand img.footer-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 12px;
}
.footer-brand h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--accent); color: #fff; }

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 22px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-links a i { font-size: 10px; color: var(--accent); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}
.footer-contact li i { color: var(--accent); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.72); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.55); }
.text-accent { color: var(--accent) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 60px 0; }
  .stats-section { padding: 50px 0; }
  .cta-section { padding: 60px 0; }
  .footer-top { padding: 50px 0 30px; }
  .about-exp-badge { bottom: -10px; right: -10px; padding: 14px; }
  .exp-num { font-size: 30px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
  .section-header { margin-bottom: 36px; }
  .hero-prev, .hero-next { display: none; }
  .contact-form-card { padding: 28px 20px; }
  .custom-package-box { padding: 36px 24px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .page-hero { height: 260px; }
  .brand-text { max-width: 140px; font-size: 15px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .booking-bar-inner { flex-direction: column; }
}
