/* ============================================
   BAJPAI TRAVELS - Custom Design System
   Bootstrap 5 + Custom Overrides
   ============================================ */

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

:root {
  --primary: #6D3225;
  --primary-dark: #4A1E15;
  --primary-light: #8B4533;
  --accent: #B86B4A;
  --accent-hover: #9C5A3D;
  --accent-light: #D4896A;
  --success: #10b981;
  --danger: #ef4444;
  --dark: #1C0F0A;
  --dark-2: #2A1810;
  --gray-100: #f4f7fa;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --white: #ffffff;
  --glass-bg: rgba(255,255,255,0.1);
  --glass-border: rgba(255,255,255,0.18);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

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

/* === UTILITY === */
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-dark-gradient { background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%); }
.bg-light { background: var(--gray-100) !important; }
.bg-primary-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.text-accent { color: var(--primary) !important; }
.text-gray { color: var(--gray-500) !important; }
.fw-800 { font-weight: 800 !important; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header .badge-label {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  background: rgba(109,50,37,0.1); color: var(--primary);
  font-size: 0.85rem; font-weight: 600; margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.section-header h2 { font-size: 2.4rem; margin-bottom: 12px; }
.section-header p { color: var(--gray-500); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* === NAVBAR === */
.navbar-main {
  padding: 14px 0; transition: var(--transition);
  background: transparent; position: fixed; top: 0; left: 0; right: 0; z-index: 1050;
}
.navbar-main.scrolled {
  background: rgba(15,23,42,0.95); backdrop-filter: blur(12px);
  padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.navbar-main .navbar-brand { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--white) !important; }
.navbar-main .navbar-brand span { color: var(--primary); }
.navbar-main .nav-link {
  color: rgba(255,255,255,0.85) !important; font-weight: 500; font-size: 0.95rem;
  padding: 8px 18px !important; border-radius: var(--radius-sm); transition: var(--transition);
}
.navbar-main .nav-link:hover, .navbar-main .nav-link.active {
  color: var(--white) !important; background: rgba(255,255,255,0.1);
}
.navbar-main .btn-book {
  background: var(--accent); color: var(--white) !important; font-weight: 700;
  padding: 8px 24px !important; border-radius: var(--radius-sm);
}
.navbar-main .btn-book:hover { background: var(--accent-hover); color: var(--white) !important; transform: translateY(-1px); }
.navbar-toggler { border: none; color: var(--white); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { filter: invert(1); }

/* === HERO === */
.hero-section {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  background: linear-gradient(135deg, #2A1810 0%, #3D241B 50%, #4A2E22 100%);
  overflow: hidden; padding-top: 80px;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/banner.jpg') center/cover no-repeat; opacity: 0.2;
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-particles span {
  position: absolute; width: 4px; height: 4px; background: var(--primary);
  border-radius: 50%; opacity: 0.3; animation: float 6s infinite ease-in-out;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-80px) scale(1.5); opacity: 0.6; }
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
  font-size: 3.5rem; font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
}
.hero-content h1 .highlight { color: var(--primary-light); }
.hero-content p { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 540px; margin-bottom: 30px; }

/* === SEARCH FORM === */
.search-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 30px; margin-top: 20px;
}
.search-card .form-control, .search-card .form-select {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.search-card .form-control::placeholder { color: rgba(255,255,255,0.45); }
.search-card .form-control:focus, .search-card .form-select:focus {
  background: rgba(255,255,255,0.12); border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15); color: var(--white);
}
.search-card .form-label { color: rgba(255,255,255,0.7); font-weight: 500; font-size: 0.85rem; margin-bottom: 6px; }
.search-card option { background: var(--dark); color: var(--white); }
.btn-search {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white); font-weight: 700; padding: 14px 40px;
  border: none; border-radius: var(--radius-sm); font-size: 1rem;
  transition: var(--transition); width: 100%;
}
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,107,74,0.35); color: var(--white); }
.btn-search i { margin-right: 8px; }

/* === ROUTE CARDS === */
.route-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  height: 280px; cursor: pointer; transition: var(--transition);
}
.route-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.route-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.route-card:hover img { transform: scale(1.08); }
.route-card .route-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.route-card .route-overlay h5 { color: var(--white); font-weight: 700; margin-bottom: 4px; }
.route-card .route-overlay p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.route-card .route-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--dark); padding: 4px 12px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}

/* === FEATURE CARDS === */
.feature-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--gray-200); transition: var(--transition);
  height: 100%; text-align: center;
}
.feature-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.feature-card .icon-wrap {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(109,50,37,0.1), rgba(109,50,37,0.05));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem; color: var(--primary);
  transition: var(--transition);
}
.feature-card:hover .icon-wrap { background: var(--primary); color: var(--white); transform: scale(1.1); }
.feature-card h5 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

/* === ABOUT PREVIEW === */
.about-preview { position: relative; }
.about-img-wrapper { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.about-img-wrapper img { width: 100%; height: 420px; object-fit: cover; }
.about-img-wrapper::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-xl); border: 3px solid var(--accent); opacity: 0;
  transition: var(--transition);
}
.about-img-wrapper:hover::after { opacity: 1; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px; background: var(--primary);
  color: var(--white); padding: 20px 28px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge h3 { font-size: 2rem; margin: 0; font-weight: 900; color: var(--white); }
.about-badge span { font-size: 0.8rem; font-weight: 600; color: var(--white); }

.about-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-content p { color: var(--gray-500); margin-bottom: 15px; }
.about-list { list-style: none; padding: 0; margin: 20px 0; }
.about-list li {
  padding: 8px 0; color: var(--gray-600); font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
}
.about-list li i { color: var(--primary); font-size: 1.1rem; }

/* === TESTIMONIALS === */
.testimonial-section { background: linear-gradient(135deg, #2A1810 0%, #3D241B 100%); }
.testimonial-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 32px; transition: var(--transition); height: 100%;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testimonial-card .stars { color: #fbbf24; margin-bottom: 16px; }
.testimonial-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; font-style: italic; margin-bottom: 20px; min-height: 100px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 1.1rem;
}
.testimonial-card .author-info h6 { color: var(--white); margin: 0; font-size: 0.95rem; }
.testimonial-card .author-info small { color: var(--gray-400); }
.testimonial-card .quote-icon { font-size: 2rem; color: var(--accent); opacity: 0.3; position: absolute; top: 20px; right: 24px; }

/* === AMENITIES === */
.amenity-item {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.amenity-item:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateX(6px); }
.amenity-item .amenity-icon {
  min-width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(109,50,37,0.12), rgba(109,50,37,0.04));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.2rem;
}
.amenity-item:hover .amenity-icon { background: var(--primary); color: var(--white); }
.amenity-item h6 { margin: 0; font-size: 0.95rem; }
.amenity-item p { margin: 0; color: var(--gray-500); font-size: 0.8rem; }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #8B4533 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; width: 400px; height: 400px;
  border-radius: 50%; background: rgba(255,255,255,0.08);
  top: -200px; right: -100px;
}
.cta-section h2 { font-size: 2.5rem; color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 30px; }
.btn-cta {
  background: var(--white); color: var(--primary); font-weight: 700;
  padding: 14px 36px; border-radius: var(--radius-sm); border: none;
  font-size: 1rem; transition: var(--transition);
}
.btn-cta:hover { background: var(--gray-100); color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* === STATS === */
.stat-card { text-align: center; padding: 24px; }
.stat-card h3 { font-size: 2.8rem; font-weight: 900; color: var(--primary-light); margin-bottom: 4px; }
.stat-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; margin: 0; }

/* === FOOTER === */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.7); padding: 70px 0 0;
}
.footer h5 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer p { font-size: 0.9rem; line-height: 1.8; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-contact li i { color: var(--accent); font-size: 1rem; margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  margin-top: 50px; text-align: center; font-size: 0.85rem;
}

/* === PAGE HEADER (inner pages) === */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 140px 0 80px; text-align: center; position: relative;
}
.page-header h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 12px; }
.page-header .breadcrumb { justify-content: center; }
.page-header .breadcrumb-item a { color: var(--accent); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* === CONTACT === */
.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--gray-200); text-align: center; transition: var(--transition); height: 100%;
}
.contact-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--accent); }
.contact-card .icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(109,50,37,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary); font-size: 1.4rem; }
.contact-card h5 { margin-bottom: 8px; }
.contact-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }
.contact-card a { color: var(--primary); font-weight: 500; }

.contact-form .form-control {
  padding: 14px 18px; border-radius: var(--radius-sm); border: 1px solid var(--gray-200);
  font-size: 0.95rem; transition: var(--transition);
}
.contact-form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(109,50,37,0.1); }

/* === GALLERY === */
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  margin-bottom: 24px; cursor: pointer;
}
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0; background: rgba(15,23,42,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i { color: var(--white); font-size: 2rem; }

/* === FAQ === */
.faq-accordion .accordion-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-md) !important;
  margin-bottom: 12px; overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600; font-family: 'Inter', sans-serif; font-size: 1rem;
  padding: 18px 24px; color: var(--dark);
}
.faq-accordion .accordion-button:not(.collapsed) { background: rgba(245,158,11,0.05); color: var(--primary); }
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: var(--accent); }
.faq-accordion .accordion-body { padding: 16px 24px; color: var(--gray-600); line-height: 1.8; }

/* === MANAGE BOOKINGS === */
.booking-lookup {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
}

/* === AGENT REG === */
.reg-step { text-align: center; padding: 20px; }
.reg-step .step-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent);
  color: var(--dark); font-weight: 800; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 12px; font-size: 1.1rem;
}

/* === BUTTONS === */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white); font-weight: 700; padding: 12px 32px;
  border: none; border-radius: var(--radius-sm); transition: var(--transition);
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,107,74,0.3); color: var(--white); }
.btn-outline-custom {
  border: 2px solid var(--primary); color: var(--primary); font-weight: 600;
  padding: 10px 28px; border-radius: var(--radius-sm); background: transparent; transition: var(--transition);
}
.btn-outline-custom:hover { background: var(--primary); color: var(--white); }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px;
  border-radius: 50%; background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-md); cursor: pointer;
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed; bottom: 30px; left: 30px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem; box-shadow: var(--shadow-md);
  transition: var(--transition); animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.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); }
}

/* === PRELOADER === */
.preloader {
  position: fixed; inset: 0; background: var(--dark); display: flex;
  align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s;
}
.preloader.hide { opacity: 0; pointer-events: none; }
.preloader .spinner { width: 48px; height: 48px; border: 4px solid rgba(245,158,11,0.2); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .hero-content h1 { font-size: 2.5rem; }
  .section-header h2 { font-size: 2rem; }
  .navbar-collapse { background: rgba(15,23,42,0.98); border-radius: var(--radius-md); margin-top: 10px; padding: 16px; }
  .stat-card h3 { font-size: 2rem; }
}
@media (max-width: 767px) {
  .hero-content h1 { font-size: 2rem; }
  .section-padding { padding: 60px 0; }
  .hero-section { min-height: auto; padding: 120px 0 60px; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .cta-section h2 { font-size: 1.8rem; }
  
  /* Mobile Bottom App-like Navigation Bar */
  .mobile-bottom-nav {
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #1C0F0A; /* Match our luxury dark brown tone */
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
    z-index: 2000;
  }
  .mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    flex: 1;
    height: 100%;
  }
  .mobile-bottom-nav .nav-item i {
    font-size: 1.35rem;
    margin-bottom: 2px;
  }
  .mobile-bottom-nav .nav-item.active, .mobile-bottom-nav .nav-item:hover {
    color: var(--accent);
  }
  body {
    padding-bottom: 74px !important;
  }
  .whatsapp-float {
    bottom: 84px !important;
  }
  .back-to-top {
    bottom: 84px !important;
  }
}
