/* ===================================================
   Template: Luxmi Holidays
   Theme: Header + Light/Dark Switch
   Author: UMID Infotech
   Project: Luxmi Holiday
   =================================================== */

/* Light Theme Variables */
:root { --bg-color:#ffffff; --text-color:#0f1724; --text-muted:#6b7280; --brand-color:#0ea5e9; --accent-color:#7c3aed; --header-bg:rgba(255,255,255,0.9); }

/* Dark Theme Variables */
.dark-theme { --bg-color:#0b1220; --text-color:#e6eef8; --text-muted:#9aa8bf; --brand-color:#38bdf8; --accent-color:#9f7aea; --header-bg:rgba(10,14,22,0.9); }

/* Base */
body { font-family:"Inter",sans-serif; background:var(--bg-color); color:var(--text-color); transition:background 0.3s,color 0.3s; }
.header-spacer { height:72px; }
.glassy-effect{background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);border-radius: 16px;border: 1px solid rgba(255, 255, 255, 0.3);padding: 2rem;}
/* Header */
.top-header { position:fixed; top:0; left:0; right:0; z-index:1050; background:var(--header-bg); backdrop-filter:blur(8px); }

/* Brand */
.brand-logo { width:50px; height:50px; border-radius:8px; overflow:hidden; display:flex; align-items:center; justify-content:center; background:linear-gradient(120deg,var(--brand-color),#0b84d6); }
.brand-logo img { max-width:100%; max-height:100%; object-fit:contain; }
.brand-name { font-weight:700; color:var(--text-color); }
.brand-tagline { font-size:12px; color:var(--text-muted); }

/* Links */
.nav-link { color:var(--text-color); text-decoration:none; }
.nav-link:hover { color:var(--accent-color); }
.fa-brands { color:var(--text-color); transition:color 0.2s; }
.fa-brands:hover { color:var(--brand-color); }

/* Theme toggle switch */
.theme-toggle { position:relative; display:inline-block; width:40px; height:20px; }
.theme-toggle input { display:none; }
.theme-toggle .slider { position:absolute; top:0; left:0; right:0; bottom:0; background:#ccc; border-radius:999px; transition:0.3s; }
.theme-toggle .slider::after { content:""; position:absolute; width:16px; height:16px; left:2px; top:2px; background:#fff; border-radius:50%; transition:0.3s; }
.theme-toggle input:checked + .slider { background:var(--brand-color); }
.theme-toggle input:checked + .slider::after { transform:translateX(20px); }

/* =============================
   Social Media Icon Classes
   ============================= */
.icon-facebook { color:#1877F2; transition:color 0.2s ease; line-height:1em!important; font-size:30px!important; }
.icon-facebook:hover { color:#0e5ad4; }
.icon-instagram { line-height:1em!important; font-size:30px!important; background:radial-gradient(circle at 30% 107%,#feda75 0%,#fa7e1e 25%,#d62976 50%,#962fbf 75%,#4f5bd5 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; transition:opacity 0.2s ease; }
.icon-instagram:hover { opacity:0.8; }
.icon-threads { color:#000000; transition:color 0.2s ease; }
.icon-threads:hover { color:#444444; }

/* =============================
   Logo Box (Glassy Effect)
   ============================= */
.logo-box { background:rgba(255,255,255,0.8); backdrop-filter:blur(8px) saturate(180%); -webkit-backdrop-filter:blur(8px) saturate(180%); padding:4px 6px; border-radius:8px; display:inline-flex; align-items:center; justify-content:center; width:100%; height:70px; box-shadow:0 4px 12px rgba(0,0,0,0.1); }
.logo-box img { max-width:100%; max-height:100%; object-fit:contain; display:block; }

/* =============================
   Hero Section
   ============================= */
.hero-section { position:relative; min-height:100vh; display:flex; align-items:flex-start; justify-content:center; background:url('../images/hero-banner.png') center center/cover no-repeat fixed; color:#fff; padding:120px 0 60px; }
.hero-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.4); z-index:1; }
.hero-section .container { position:relative; z-index:2; }

.hero-text .hero-subtitle { font-size:14px; letter-spacing:2px; text-transform:uppercase; margin-bottom:10px; color:#f1f5f9; }
.hero-text .hero-title { font-size:42px; font-weight:700; line-height:1.3; margin-bottom:30px; }

.hero-cards { display:flex; gap:16px; }
.hero-cards .card { width:200px; border-radius:12px; overflow:hidden; border:none; box-shadow:0 4px 10px rgba(0,0,0,0.2); }
.hero-cards .card img { border-radius:12px 12px 0 0; height:120px; object-fit:cover; }
.hero-cards .card-body { padding:10px; background:#fff; color:#0f1724; text-align:center; }

/* =============================
   Hero Form Glassy Effect
   ============================= */
.hero-form { background:rgba(255,255,255,0.75); backdrop-filter:blur(10px) saturate(180%); -webkit-backdrop-filter:blur(10px) saturate(180%); border-radius:12px; border:1px solid rgba(255,255,255,0.25); transition:all 0.3s ease; }
.dark-theme .hero-form { background:rgba(11,18,32,0.8); border:1px solid rgba(255,255,255,0.15); }

.hero-form input, .hero-form select { border:2px solid rgba(255,255,255,0.5); border-radius:8px; font-size:15px; padding:12px 14px; transition:all 0.3s ease; }
.dark-theme .hero-form input, .dark-theme .hero-form select { background:rgba(255,255,255,0.05); border-color:rgba(255,255,255,0.2); color:var(--text-color); }

.hero-form input:hover, .hero-form select:hover { border-color:var(--brand-color); box-shadow:0 0 6px rgba(14,165,233,0.4); }
.hero-form input:focus, .hero-form select:focus { border-color:var(--accent-color); box-shadow:0 0 8px rgba(124,58,237,0.5); outline:none; }
.dark-theme .hero-form input::placeholder, .dark-theme .hero-form select::placeholder { background:rgba(255,255,255,0.05); border-color:rgba(255,255,255,0.2); color:var(--text-color); }

/* =============================
   🔴 Marquee Bar
   ============================= */
.marquee-bar { width:100%; overflow:hidden; background:linear-gradient(90deg,#b91c1c,#dc2626,#ef4444); color:#fff; font-weight:600; white-space:nowrap; padding:10px 0; }
.marquee-track { display:inline-block; animation:marquee 15s linear infinite; }
.marquee-track span { margin:0 40px; font-size:15px; }
.marquee-track i { color:#facc15; margin-right:6px; }

@keyframes marquee {
  0% { transform:translateX(100%); }
  100% { transform:translateX(-100%); }
}
/* =============================
   🟦 About Us Section
   ============================= */
.about-section { position:relative; color:var(--text-color); }
.about-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); color:var(--text-color); backdrop-filter:blur(6px); }
.dark-theme .about-card { background:rgba(11,18,32,0.85); }
.about-card .stat-number { font-size:24px; font-weight:700; background:linear-gradient(90deg,#0ea5e9,#7c3aed); -webkit-background-clip:text; -webkit-text-fill-color:transparent; margin-right:6px; }

.stat-number { font-size:26px; font-weight:700; background:linear-gradient(90deg,#0ea5e9,#7c3aed); -webkit-background-clip:text; -webkit-text-fill-color:transparent; display:inline-block; min-width:60px; }

/* Slider */
.about-slider { position:relative; overflow:hidden; padding:20px 50px; }
.slider-viewport { overflow:hidden; }
.slider-track { display:flex; gap:16px; transition:transform 0.4s ease; padding:15px; }
.slider-card { flex:0 0 40%; background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 6px 8px rgba(0,0,0,0.2); text-align:center; }
.dark-theme .slider-card { background:rgba(11,18,32,0.85); color:#fff; }
.slider-card img { width:100%; height:200px; object-fit:cover; }
.slider-card h5 { padding:12px; font-weight:600; color:#ff3131; }

/* Buttons */
.slider-btn { position:absolute; top:50%; transform:translateY(-50%); background:rgba(0,0,0,0.55); color:#fff; border:none; width:40px; height:40px; border-radius:50%; cursor:pointer; z-index:5; }
.slider-btn i { font-size:18px; }
.slider-btn.prev { left:5px; }
.slider-btn.next { right:5px; }

/* Popular Section */
.popular-section .section-title { font-size:32px; font-weight:700; color:#ff3131; margin-bottom:8px; text-align:left; }
.popular-section .underline { width:120px; height:6px; border-radius:4px; background:linear-gradient(90deg,#0ea5e9,#facc15,#22c55e,#ef4444); margin-bottom:20px; }
.popular-section .section-subtitle { font-size:16px; color:var(--text-muted); text-align:left; margin-bottom:30px; }

/* Adventure Section */
.adventure-section .section-title { font-size:32px; font-weight:700; color:#ff3131; margin-bottom:8px; text-align:left; }
.adventure-section .underline { width:120px; height:6px; border-radius:4px; background:linear-gradient(90deg,#0ea5e9,#facc15,#22c55e,#ef4444); margin-bottom:30px; }
.adventure-card { position:relative; overflow:hidden; border-radius:12px; box-shadow:0 6px 16px rgba(0,0,0,0.2); cursor:pointer; }
.adventure-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s ease; }
.adventure-card:hover img { transform:scale(1.1); }
.adventure-card .overlay { position:absolute; inset:0; background:rgba(0,0,0,0.5); display:flex; align-items:center; justify-content:center; color:#fff; font-size:20px; font-weight:600; opacity:0; transition:opacity 0.5s ease; }
.adventure-card:hover .overlay { opacity:1; }

/* Journey Section */
.journey-section .section-title { font-size:32px; font-weight:700; color:#ff3131; margin-bottom:8px; text-align:left; }
.journey-section .underline { width:120px; height:6px; border-radius:4px; background:linear-gradient(90deg,#0ea5e9,#facc15,#22c55e,#ef4444); margin-bottom:30px; }
.journey-card { border-radius:12px; overflow:hidden; box-shadow:0 4px 10px rgba(0,0,0,0.1); background:transparent; transition:all 0.3s ease; }
.journey-card:hover { transform:translateY(-8px); box-shadow:0 8px 20px rgba(0,0,0,0.25); }
.journey-card img { width:100%; height:auto; object-fit:cover; }
.journey-card .card-body p { margin:6px 0; font-size:15px; color:var(--text-color); }
.journey-card .card-body i { margin-right:6px; color:var(--brand-color); }
.journey-card .card-footer { background:#f8f9fa; font-size:16px; color:#0f1724; }

/* ===================================================
   Contact Us Section - Luxmi Holidays
   =================================================== */
.contact-section { padding:80px 20px; background:var(--bg-color); color:var(--text-color); transition:all 0.3s ease; }

.contact-header { text-align:center; margin-bottom:40px; }
.contact-header h2 { font-size:32px; font-weight:700; color:#ff3131; margin-bottom:10px; }
.contact-header .underline { height:4px; width:120px; margin:0 auto 20px; border-radius:4px; background:linear-gradient(90deg,#0ea5e9,#facc15,#22c55e,#ef4444); }
.contact-header .section-subtext { font-size:16px; color:var(--text-muted); }

.contact-container { display:flex; justify-content:center; gap:40px; flex-wrap:wrap; max-width:1100px; margin:0 auto; }

.contact-form-wrapper { flex:1; min-width:320px; max-width:500px; }
.contact-form { background:rgba(255,255,255,0.92); backdrop-filter:blur(8px); border-radius:12px; border:1px solid rgba(0,0,0,0.1); padding:28px; box-shadow:0 10px 24px rgba(8,12,20,0.06); transition:background 0.3s ease,border 0.3s ease; }
.dark-theme .contact-form { background:rgba(11,18,32,0.88); border:1px solid rgba(255,255,255,0.08); }

.contact-form label { font-size:14px; font-weight:600; color:var(--text-color); margin-bottom:6px; display:block; }
.contact-form input, .contact-form select, .contact-form textarea { width:100%; padding:12px; margin-bottom:16px; border-radius:8px; border:1px solid rgba(15,23,36,0.08); background:var(--bg-color); color:var(--text-color); transition:all 0.3s ease; }
.dark-theme .contact-form input, .dark-theme .contact-form select, .dark-theme .contact-form textarea { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.15); }

.contact-form input::placeholder, .contact-form textarea::placeholder { color:var(--text-muted); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline:none; border-color:var(--brand-color); box-shadow:0 0 0 3px rgba(14,165,233,0.25); }

.whatsapp-btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:14px; font-size:16px; font-weight:700; border:none; border-radius:8px; background:#25D366; color:#fff!important; text-decoration:none; cursor:pointer; transition:background 0.3s ease,transform 0.2s ease; }
.whatsapp-btn:hover { background:#1ebe5d; transform:translateY(-2px); }
.whatsapp-btn i { font-size:20px; }

.contact-info { flex:1; min-width:280px; max-width:400px; background:rgba(255,255,255,0.92); backdrop-filter:blur(8px); border-radius:12px; border:1px solid rgba(0,0,0,0.1); padding:28px; box-shadow:0 10px 24px rgba(8,12,20,0.06); transition:background 0.3s ease,border 0.3s ease; }
.dark-theme .contact-info { background:rgba(11,18,32,0.88); border:1px solid rgba(255,255,255,0.08); }
.contact-info h3 { margin-bottom:15px; color:var(--text-color); }
.contact-info p { margin-bottom:12px; font-size:15px; color:var(--text-muted); }
.contact-info strong { color:var(--text-color); }

.contact-info .social-links { margin-top:15px; }
.contact-info .social-links a { margin:0 6px; font-size:22px; color:var(--brand-color); transition:color 0.3s ease,transform 0.2s ease; }
.contact-info .social-links a:hover { color:var(--accent-color); transform:scale(1.1); }

.dev-credit { display:inline-block; margin-top:5px; color:var(--text-muted); font-size:12px; }
.dev-credit a { color:var(--brand-color); text-decoration:none; font-weight:600; }
.dev-credit a:hover { color:var(--accent-color); text-decoration:underline; }
/* ===================================================
   Footer
   =================================================== */
/*.footer-section { background: var(--bg-color); color: var(--text-color); }*/
/*.footer-heading { font-weight:700; margin-bottom:12px; color: var(--text-color); }*/
/*.footer-brand { font-weight:800; color:#ff3131; }*/
/*.footer-text { color: var(--text-muted); font-size:14px; }*/
/*.footer-list { list-style:none; padding:0; margin:0; }*/
/*.footer-list li { margin-bottom:8px; }*/
/*.footer-list a { text-decoration:none; color:var(--text-muted); transition:0.3s; }*/
/*.footer-list a:hover { color:var(--accent-color); }*/

/*.footer-social a { */
/*  display:inline-flex; align-items:center; justify-content:center;*/
/*  width:34px; height:34px; margin-right:8px;*/
/*  border-radius:50%; background:rgba(0,0,0,0.08);*/
/*  color:var(--text-color); transition:0.3s; */
/*}*/
/*.footer-social a:hover { background:var(--brand-color); color:#fff; }*/

/*.footer-newsletter { position:relative; margin-top:10px; }*/
/*.footer-newsletter input { */
/*  padding:10px 12px; */
/*  border-radius:8px; */
/*  border:1px solid rgba(0,0,0,0.15); */
/*  background: var(--bg-color);*/
/*  color: var(--text-color);*/
/*}*/
/*.footer-newsletter button { */
/*  position:absolute; right:6px; top:50%; transform:translateY(-50%);*/
/*  background:#ff3131; color:#fff;*/
/*  border:none; padding:6px 10px; border-radius:6px; */
/*  cursor:pointer; transition:0.3s;*/
/*}*/
/*.footer-newsletter button:hover { background:#e11d1d; }*/

/*.footer-divider { margin:25px 0; border-color:rgba(0,0,0,0.1); }*/
/*.footer-bottom { font-size:14px; color:var(--text-muted); }*/
/*.footer-bottom a { color:var(--brand-color); font-weight:600; }*/
/*.footer-bottom a:hover { color:var(--accent-color); }*/

.footer-section { background: var(--bg-color); color: var(--text-color); padding-bottom: 0; transition: 0.3s ease; }
.footer-brand { font-size: 26px; font-weight: 700; }
.text-gradient { background: linear-gradient(90deg, #0ea5e9, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-text { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.footer-heading { font-weight: 700; margin-bottom: 12px; color: var(--text-color); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { text-decoration: none; color: var(--text-muted); transition: 0.25s; }
.footer-list a:hover { color: var(--brand-color); padding-left: 4px; }
.footer-social a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; margin-right: 8px; border-radius: 50%; color: #fff; background: var(--brand-color); transition: 0.3s ease; }
.footer-social a:hover { background: var(--accent-color); transform: translateY(-3px); }
.footer-newsletter { display: flex; gap: 8px; margin-top: 10px; }
.footer-newsletter input { flex: 1; border-radius: 8px; }
.footer-newsletter button { width: 48px; border-radius: 8px; background: var(--brand-color); border: none; color: #fff; transition: 0.3s ease; }
.footer-newsletter button:hover { background: var(--accent-color); }
.footer-divider { margin: 25px 0; border-color: rgba(0,0,0,0.1); }
.footer-bottom p { font-size: 14px; color: var(--text-muted); }
.dev-credit a { color: var(--brand-color); font-weight: 600; text-decoration: none; }
.dev-credit a:hover { color: var(--accent-color); text-decoration: underline; }

/* ===================================================
   Bus Booking Hero Section (Centered + Glassy)
   =================================================== */
/* ===========================================================
   🌟 COMBO EFFECT = Soft Glow + Overlay Fade + Eye Icon
   ===========================================================*/

/* IMAGE WRAPPER */
.package-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

/* BASE IMAGE */
.package-image-wrapper img {
  width: 100%;
  border-radius: 14px;
  transition: box-shadow 0.4s ease-in-out, transform 0.4s ease-in-out;
  display: block;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* SOFT GLOW ON HOVER */
.package-image-wrapper:hover img {
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transform: translateY(-4px);
}

/* OVERLAY */
.package-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

/* ICON */
.package-image-wrapper i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  color: #fff;
  font-size: 45px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

/* HOVER ANIMATION */
.package-image-wrapper:hover::after {
  opacity: 1;
}

.package-image-wrapper:hover i {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}


/* ===========================================================
   ✨ ICON LIST HOVER EFFECT
   ===========================================================*/

.enhanced-icons li {
  list-style: none;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: 0.3s ease;
  background: #ffffff;
  border-left: 4px solid transparent;
}

.enhanced-icons li i {
  font-size: 22px;
  transition: 0.3s ease-in-out;
  color: #0d6efd;
}

.enhanced-icons li:hover {
  background: #f3f8ff;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #ff4500;
}

.enhanced-icons li:hover i {
  color: #ff4500;
  transform: scale(1.3) rotate(10deg);
}


/* ===========================================================
   🌟 PACKAGE CARD HOVER
   ===========================================================*/

.package-card {
  transition: 0.4s ease;
  border-radius: 14px;
}

.package-card:hover {
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}


/* ===========================================================
   🔥 BOOK NOW BUTTON
   ===========================================================*/

.bookmytrip-btn {
  background: linear-gradient(45deg, #ff4500, #ff7b00);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.bookmytrip-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(45deg, #ff7b00, #ff4500);
  box-shadow: 0 6px 22px rgba(255, 69, 0, 0.35);
}

/* Hero Section */
.busbooking-hero { position:relative; min-height:100vh; background:url('../images/busbooking-hero.png') center center / cover fixed no-repeat; display:flex; align-items:center; color:var(--text-color); overflow:hidden; }
.busbooking-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.45); z-index:-1; }
.dark-theme .busbooking-overlay { background:rgba(0,0,0,0.55); }
.busbooking-hero .container { position:relative; z-index:1; }
/* Glass Effect Box */
.glass-box { background:rgba(255,255,255,0.85); backdrop-filter:blur(14px) saturate(180%); -webkit-backdrop-filter:blur(14px) saturate(180%); border-radius:16px; border:1px solid rgba(0,0,0,0.08); padding:28px; box-shadow:0 6px 16px rgba(0,0,0,0.12); transition:background 0.3s ease,border 0.3s ease; }
.dark-theme .glass-box { background:rgba(11,18,32,0.75); border:1px solid rgba(255,255,255,0.15); box-shadow:0 8px 24px rgba(0,0,0,0.6); }
/* Form */
.busbooking-form { width:100%; max-width:420px; }
.busbooking-form-title { font-size:22px; font-weight:700; margin-bottom:20px; color:var(--text-color); }
.busbooking-form .form-label { font-size:14px; font-weight:600; color:var(--text-color); }
.busbooking-form .form-control { border-radius:10px; padding:12px; border:1px solid rgba(15,23,36,0.15); background:var(--bg-color); color:var(--text-color); margin-bottom:14px; transition:all 0.3s ease; }
.dark-theme .busbooking-form .form-control { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); color:var(--text-color); }
.busbooking-form .form-control::placeholder { color:var(--text-muted); }
.dark-theme .busbooking-form .form-control::placeholder { color:#9aa8bf; }
.busbooking-form .form-control:focus { border-color:var(--brand-color); box-shadow:0 0 0 3px rgba(14,165,233,0.25); outline:none; }

/* Button */
.busbooking-submit { background:#ff3131; color:#fff; font-weight:600; padding:14px; border-radius:10px; transition:background 0.3s ease,transform 0.2s ease; }
.busbooking-submit:hover { background:#e11d1d; transform:translateY(-2px); }

/* Content */
.busbooking-content { max-width:500px; width:100%; }
.busbooking-content h1 { font-size:42px; font-weight:800; margin-bottom:20px; line-height:1.3; color:var(--text-color); text-shadow:0 2px 6px rgba(0,0,0,0.4); }
.busbooking-content p { font-size:16px; margin-bottom:20px; line-height:1.6; color:var(--text-muted); }
.busbooking-content ul li { margin-bottom:10px; font-size:15px; color:var(--text-color); }

/* ===================================================
   MakeMyTrip Hero Section with Parallax
   =================================================== */

/* Hero Wrapper */
.bookmytrip-hero { position:relative; min-height:100vh; background:url('../images/bookmytrip-hero.png') center center / cover no-repeat fixed; display:flex; align-items:center; padding:80px 0; color:var(--text-color); overflow:hidden; 
.bookmytrip-hero::before { content:""; position:absolute; inset:0; background:rgba(0,0,0,0.45); z-index:1; }
.bookmytrip-hero .container { position:relative; z-index:2; }
/* Hero Text */
.bookmytrip-hero .hero-text .hero-subtitle { font-size:14px; letter-spacing:2px; text-transform:uppercase; margin-bottom:10px; color:#f1f5f9; }
.bookmytrip-hero .hero-text .hero-title { font-size:42px; font-weight:700; line-height:1.3; margin-bottom:30px; color:#fff; text-shadow:0 2px 8px rgba(0,0,0,0.6); }

/* ============================
   BEAUTIFUL PACKAGE CARD STYLE
============================ */
.package-card { background:#ffffff; border-radius:18px; padding:35px 30px; margin-bottom:55px; box-shadow:0 8px 28px rgba(0,0,0,0.12); transition:all 0.35s ease; }
.package-card:hover { transform:translateY(-6px); box-shadow:0 12px 32px rgba(0,0,0,0.18); }
.dark-theme .package-card { background:rgba(20,28,45,0.95); box-shadow:0 8px 22px rgba(0,0,0,0.45); }

/* ============================
   TEXT STYLING
============================ */
.package-title { font-size:1.8rem; font-weight:700; margin-bottom:10px; color:#ff3131; }
.package-desc { font-size:1rem; color:#555; margin-bottom:18px; line-height:1.5; }
.dark-theme .package-desc { color:#ddd; }
.package-subheading { font-size:1.3rem; font-weight:700; margin-bottom:12px; color:#0077ff; }

/* ============================
   LIST STYLING
============================ */
.package-list { padding:0; margin:0 0 20px 0; list-style:none; }
.package-list li { margin-bottom:12px; font-size:1rem; line-height:1.45; display:flex; align-items:flex-start; gap:10px; }
.package-list i { font-size:22px; color:#ff3131; width:28px; }

/* ============================
   IMAGE STYLE
============================ */
.package-img { max-width:100%; border-radius:14px; height:360px; object-fit:cover; box-shadow:0 6px 18px rgba(0,0,0,0.25); transition:transform 0.3s ease; }
.package-img:hover { transform:scale(1.03); }

/* ============================
   BOOK BUTTON
============================ */
.bookmytrip-btn { background:#ff3131; color:#fff; padding:12px 28px; border-radius:8px; font-size:1.1rem; font-weight:600; text-decoration:none; display:inline-block; transition:all 0.25s ease; }
.bookmytrip-btn:hover { background:#cc2626; color:#fff; }

/* ============================
   RESPONSIVE
============================ */
@media (max-width:991px) {
  .package-card { text-align:center; padding:20px; }
  .package-title { margin-top:15px; }
}

@media (max-width:991px) {
  .bookmytrip-hero { background-attachment:scroll; padding:60px 0; }
  .bookmytrip-hero .hero-text .hero-title { font-size:32px; }
  .bookmytrip-hero .hero-cards { justify-content:center; }
  .bookmytrip-form-wrapper { margin-top:30px; }
}

@media (max-width:991px) {
  .busbooking-content { text-align:center; margin-top:30px; }
  .busbooking-content h1 { font-size:32px; }
}

@media (min-width:992px) {
  .slider-card { flex:0 0 calc(100%/3.5); }
}

@media (max-width:991px) {
  .slider-card { flex:0 0 calc(100%/1.25); }
}

@media (max-width:768px) {
  .top-header .d-none.d-md-flex { display:none !important; }
  .top-header { padding:8px 16px; }
  .logo-box { width:40px; height:40px; }

  #mobileMenu { background:var(--bg-color) !important; z-index:2000 !important; height:100vh; }
  #mobileMenu .offcanvas-header { background:var(--bg-color); border-bottom:1px solid rgba(0,0,0,0.1); }

  #mobileMenu > .offcanvas-body { background:var(--bg-color) !important; flex:1 !important; overflow:hidden !important; height:calc(100vh - 56px) !important; display:flex !important; flex-direction:column !important; justify-content:space-between !important; position:relative !important; z-index:2001 !important; }

  #mobileMenu nav a.nav-link { font-size:16px; font-weight:500; padding:8px 0; color:var(--text-color); }
  #mobileMenu nav a.nav-link:hover { color:var(--accent-color); }

  #mobileMenu .d-flex.justify-content-center { display:flex; justify-content:center; gap:20px; margin-top:20px; }
  #mobileMenu .d-flex.justify-content-center i { font-size:24px; }

  #mobileMenu .offcanvas-title { color:var(--text-color) !important; font-weight:600; }
  #mobileMenu .text-sm { color:var(--text-color) !important; font-size:14px; font-weight:500; }
}

@media (min-width:992px) {
  .hero-form-wrapper { position:sticky; top:72px; z-index:999; }
}
