/* =========================================================
   Sarabjit Tour and Travels — Luxury Black + Yellow + White
   ========================================================= */

:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --black-soft: #1c1c1e;
  --yellow: #ffc93c;
  --yellow-2: #ffdd6b;
  --white: #ffffff;
  --gray: #8a8a92;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 20px 50px rgba(0,0,0,.35);
  --gradient-gold: linear-gradient(135deg, #ffc93c 0%, #ffe08a 50%, #ffc93c 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1c1c1e 100%);
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: #24242a;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-text, .footer-brand {
  font-family: 'Playfair Display', serif;
}

a { text-decoration: none; }

/* ===== Top Bar ===== */
.top-bar {
  background: var(--black);
  color: #d9d9e0;
  font-size: .85rem;
}
.top-bar i { color: var(--yellow); margin-right: 4px; }
.top-bar-social a { color: #d9d9e0; margin-left: 12px; transition: color .2s; }
.top-bar-social a:hover { color: var(--yellow); }

/* ===== Navbar ===== */
.main-navbar {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,201,60,.15);
}
.brand-text {
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
}
.brand-text::first-letter { color: var(--yellow); }
.main-navbar .nav-link {
  color: #e7e7ea;
  font-weight: 500;
  padding: 8px 16px !important;
  transition: color .2s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus { color: var(--yellow); }
.mega-menu {
  background: var(--black-soft);
  border: 1px solid rgba(255,201,60,.2);
  border-radius: var(--radius-md);
  padding: 10px;
}
.mega-menu .dropdown-item { color: #e7e7ea; border-radius: 8px; padding: 8px 14px; }
.mega-menu .dropdown-item:hover { background: rgba(255,201,60,.12); color: var(--yellow); }
.btn-book {
  background: var(--gradient-gold);
  color: var(--black);
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 26px;
  border: none;
  box-shadow: 0 8px 20px rgba(255,201,60,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,201,60,.5); color: var(--black); }

/* ===== Hero Slider ===== */
.hero-slider { position: relative; background: var(--black); }
.hero-slide {
  height: 620px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.92) 15%, rgba(10,10,10,.55) 60%, rgba(10,10,10,.25) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 620px; }
.hero-content .badge-line {
  display: inline-block;
  color: var(--yellow);
  letter-spacing: 3px;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-content h1 span { color: var(--yellow); }
.hero-content p { color: #cfcfd6; font-size: 1.05rem; margin-bottom: 28px; }
.hero-slider .carousel-indicators [data-bs-target] { background: var(--yellow); }

/* ===== Booking Card (glassmorphism) ===== */
.booking-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,201,60,.35);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.booking-card .form-label { color: #f1f1f4; font-size: .82rem; font-weight: 500; margin-bottom: 4px; }
.booking-card .form-control,
.booking-card .form-select {
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .92rem;
}
.booking-card .form-control:focus,
.booking-card .form-select:focus { box-shadow: 0 0 0 3px rgba(255,201,60,.4); }
.btn-gold {
  background: var(--gradient-gold);
  color: var(--black);
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 11px;
  width: 100%;
  transition: transform .2s;
}
.btn-gold:hover { transform: translateY(-2px); color: var(--black); }

/* ===== Section Titles ===== */
.section-tag {
  display: inline-block;
  color: var(--black);
  background: var(--gradient-gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title { font-size: 2.2rem; font-weight: 700; color: var(--black); margin-bottom: 14px; }
.section-sub { color: var(--gray); max-width: 640px; margin: 0 auto; }

/* ===== Why Choose Us ===== */
.feature-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: var(--yellow); }
.feature-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: var(--gradient-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--yellow);
  margin-bottom: 18px;
}

/* ===== Services / Routes / Fleet Cards ===== */
.service-card, .route-card, .fleet-card, .package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #eee;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}
.service-card:hover, .route-card:hover, .fleet-card:hover, .package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.route-card .route-img, .fleet-card .fleet-img, .package-card .package-img {
  height: 200px; background-size: cover; background-position: center; position: relative;
}
.route-card .price-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gradient-gold); color: var(--black);
  padding: 5px 14px; border-radius: 50px; font-weight: 700; font-size: .85rem;
}
.route-card .route-path { font-weight: 600; color: var(--black); }
.route-card .route-path i { color: var(--yellow); }
.fleet-card .popular-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--black); color: var(--yellow);
  padding: 5px 14px; border-radius: 50px; font-size: .78rem; font-weight: 600;
}
.fleet-specs span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .82rem; color: var(--gray); margin-right: 14px;
}
.fleet-specs i { color: var(--yellow); }

/* ===== Dark Section (Portfolio-style band) ===== */
.dark-section { background: var(--gradient-dark); color: var(--white); }
.dark-section .section-title { color: var(--white); }

/* ===== Stats ===== */
.stat-box { text-align: center; }
.stat-box .num { font-size: 2.6rem; font-weight: 800; color: var(--yellow); }
.stat-box .label { color: #cfcfd6; font-size: .9rem; }

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid #eee;
  height: 100%;
}
.testimonial-card .stars { color: var(--yellow); margin-bottom: 12px; }
.testimonial-card .name { font-weight: 700; color: var(--black); }

/* ===== FAQ ===== */
.accordion-item { border: 1px solid #eee; border-radius: var(--radius-md) !important; margin-bottom: 12px; overflow: hidden; }
.accordion-button { font-weight: 600; }
.accordion-button:not(.collapsed) { background: rgba(255,201,60,.12); color: var(--black); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }

/* ===== CTA ===== */
.cta-band {
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  padding: 50px;
  color: var(--black);
}

/* ===== Footer ===== */
.site-footer { background: var(--black); color: #c9c9d1; }
.footer-brand { color: var(--white); font-weight: 700; }
.footer-heading { color: var(--yellow); font-weight: 600; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #c9c9d1; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { margin-bottom: 10px; display: flex; gap: 8px; }
.footer-contact i { color: var(--yellow); margin-top: 3px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,201,60,.3); color: var(--yellow); margin-right: 8px;
  transition: background .2s;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }
.footer-bottom { background: #050505; border-top: 1px solid rgba(255,201,60,.1); color: #9a9aa2; }

/* ===== Floating Buttons ===== */
.whatsapp-float {
  position: fixed; bottom: 26px; left: 26px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 8px 20px rgba(0,0,0,.3);
  animation: pulse 2s infinite;
}
.call-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gradient-gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
#scrollTopBtn {
  position: fixed; bottom: 96px; right: 26px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--black); color: var(--yellow); border: 1px solid rgba(255,201,60,.4);
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 991px) {
  .hero-slide { height: auto; padding: 80px 0 60px; }
  .hero-content h1 { font-size: 2.2rem; }
}
