/* ================================== */
/*         General & Root Styles      */
/* ================================== */
:root {
    --primary-gradient: linear-gradient(90deg, #FF8C00, #FF4500);
    --primary-color-dark: #FF4500;
    --primary-glow: 0 8px 25px rgba(255, 107, 5, 0.3);
    --dark-bg: #1a1a1a;
    --light-bg: #fdfdff;
    --light-gray-bg: #f8f9fa;
    --text-color-light: #f0f0f0;
    --text-color-dark: #333333;
    --text-muted: #6c757d;
    --font-main: 'Poppins', sans-serif;
    --border-radius: 12px;
    /* Seat Colors */
    --seat-available-bg: #e0f2f1;
    --seat-available-border: #4db6ac;
    --seat-available-text: #00796b;
    --seat-booked-bg: #ffcdd2;
    --seat-booked-border: #f44336;
    --seat-booked-text: #c62828;
    --seat-selected-bg: #fff9c4;
    --seat-selected-border: #ffeb3b;
    --seat-selected-text: #f57f17;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-color-dark);
    overflow-x: hidden;
}

.navbar-container, .section-container, .footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ================================== */
/*           Header & Navbar          */
/* ================================== */
.top-navbar { background-color: var(--dark-bg); color: var(--text-muted); padding: 8px 0; font-size: 13px; border-bottom: 1px solid #333; }
.top-navbar .navbar-container { display: flex; align-items: center; }
.contact-info { display: flex; align-items: center; gap: 10px; }
.news-ticker { display: flex; align-items: center; overflow: hidden; flex-grow: 1; margin: 0 30px; gap: 10px;}
.ticker-wrap { width: 100%; overflow: hidden; height: 20px; position: relative; }
.ticker-move { display: inline-block; position: absolute; white-space: nowrap; animation: ticker 20s linear infinite; color: #FF8C00; }
.ticker-item { display: inline-block; padding-right: 50px; }
@keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-150%); } }

/* === NEW/UPDATED CSS FOR TOP SOCIAL ICONS === */
.top-social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.top-social-icons a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.top-social-icons a:hover {
    color: #ffffff;
    transform: scale(1.2) rotate(5deg);
}

.main-navbar { position: sticky; top: 0; z-index: 1000; background-color: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); }
.main-navbar .navbar-container { display: flex; align-items: center; justify-content: space-between; height: 85px; transition: height 0.3s ease; }
.nav-left-section { display: flex; align-items: center; gap: 60px; }
.logo img { height: 55px; transition: height 0.3s ease; }
.nav-links-wrapper { display: flex; align-items: center; gap: 40px; }
.nav-item { color: var(--text-color-dark); text-decoration: none; font-weight: 500; font-size: 16px; position: relative; padding: 5px 0; transition: color 0.3s ease; }
.nav-item::after { content: ''; position: absolute; width: 100%; height: 3px; bottom: -5px; left: 0; background: var(--primary-gradient); border-radius: 2px; transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); }
.nav-item:hover { color: var(--text-color-dark); }
.nav-item:hover::after { transform: scaleX(1); }
.call-now-button, .cta-button { color: var(--text-color-light); background: var(--primary-gradient); border: none; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 16px; transition: all 0.3s ease; box-shadow: var(--primary-glow); background-size: 200% 100%; }
.call-now-button:hover, .cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255, 107, 5, 0.4); background-position: right center; }
.call-now-button { display: flex; align-items: center; gap: 10px; padding: 10px 22px; color: var(--primary-color-dark); background: transparent; border: 2px solid var(--primary-color-dark); }
.call-now-button:hover { color: var(--text-color-light); background: var(--primary-color-dark); }
.cta-button { padding: 12px 30px; }
.cta-button::after { display: none !important; }

/* ================================== */
/*          Slider Section            */
/* ================================== */
.slider-container { position: relative; height: 60vh; overflow: hidden; }
.slider { display: flex; height: 100%; transition: transform 0.5s ease-in-out; }
.slide { min-width: 100%; height: 100%; position: relative; }
.slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.2); }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-btn { position: absolute; top: 50%; z-index: 10; transform: translateY(-50%); background: rgba(255,255,255,0.2); color: white; border: none; border-radius: 50%; width: 50px; height: 50px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.3s; }
.slider-btn:hover { background: rgba(255,255,255,0.9); color: var(--primary-color-dark); }
.prev-btn { left: 20px; } .next-btn { right: 20px; }
.dots-container { position: absolute; bottom: 20px; left: 50%; z-index: 10; transform: translateX(-50%); display: flex; gap: 10px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.dot.active { background: white; transform: scale(1.2); }

/* ================================== */
/*        Generic Section Styles      */
/* ================================== */
.services-section, .booking-section, .journey-section, .pricing-section, .pickup-points-section, .seat-booking-section, .vehicle-showcase-section, .road-route-section, .visit-us-section { padding: 100px 0; }
.section-container { text-align: center; }
.section-title { font-size: 38px; font-weight: 700; margin-bottom: 20px; color: var(--text-color-dark); letter-spacing: -1px; }
.section-subtitle { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 60px; line-height: 1.7; }

/* ================================== */
/*    Services, Journey, & Pickup     */
/* ================================== */
.services-section, .journey-section, .pickup-points-section, .pricing-section { background-color: var(--light-gray-bg); }
.services-container, .journey-cards-container, .pickup-points-container { display: grid; gap: 30px; text-align: left; }
.services-container { grid-template-columns: repeat(4, 1fr); }
.journey-cards-container, .pickup-points-container { grid-template-columns: repeat(3, 1fr); }
.service-box, .journey-card, .pickup-point-box { background-color: #ffffff; border: 1px solid #eee; border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden; transition: all 0.4s ease; }
.service-box:hover, .journey-card:hover, .pickup-point-box:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--primary-color-dark); }
.service-box, .pickup-point-box { padding: 35px; }
.journey-card { display: flex; flex-direction: column; }
.service-icon-wrapper, .pickup-point-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: #ffffff; font-size: 24px; }
.service-title, .journey-title, .pickup-point-title { font-size: 22px; font-weight: 600; color: var(--text-color-dark); margin-bottom: 10px; }
.service-description, .journey-description, .pickup-point-address { color: var(--text-muted); line-height: 1.7; }
.service-description, .journey-description { flex-grow: 1; margin-bottom: 25px; }
.services-container .service-box:nth-child(1) { background-color: #f0f9ff; }
.services-container .service-box:nth-child(1) .service-icon-wrapper { background: #38bdf8; }
.services-container .service-box:nth-child(2) { background-color: #f0fff4; }
.services-container .service-box:nth-child(2) .service-icon-wrapper { background: #34d399; }
.services-container .service-box:nth-child(3) { background-color: #fffbeb; }
.services-container .service-box:nth-child(3) .service-icon-wrapper { background: #facc15; }
.services-container .service-box:nth-child(4) { background-color: #f5f3ff; }
.services-container .service-box:nth-child(4) .service-icon-wrapper { background: #a78bfa; }
.journey-card-image { width: 100%; height: 220px; object-fit: cover; }
.journey-card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.journey-features { list-style: none; padding: 0; margin: 0 0 25px; }
.journey-features li { margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.journey-features i { color: var(--primary-color-dark); }
.journey-book-btn { display: block; width: 100%; text-align: center; padding: 14px; font-weight: 600; color: #ffffff; background: var(--primary-gradient); border-radius: 8px; text-decoration: none; transition: all 0.3s ease; box-shadow: var(--primary-glow); }
.journey-book-btn:hover { transform: scale(1.05); box-shadow: 0 12px 28px rgba(255, 107, 5, 0.4); }

/* ================================== */
/*          Booking Form              */
/* ================================== */
.booking-section { background-image: linear-gradient(to top, #f3f4f6, #ffffff); }
.booking-section .section-container { max-width: 800px; }
.booking-form { padding: 40px; border-radius: var(--border-radius); background: #ffffff; box-shadow: 0 20px 50px rgba(0,0,0,0.1); display: grid; grid-template-columns: 1fr 1fr; gap: 22px 25px; }
.form-group { display: flex; flex-direction: column; text-align: left; }
.form-group label { font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.input-wrapper { position: relative; }
.input-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #adb5bd; transition: color 0.3s ease; }

/* Date icon specific styling */
#date-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
}

#date-icon:hover {
    color: var(--primary-color-dark);
}

.form-group input:focus ~ #date-icon {
    color: var(--primary-color-dark);
}

.form-group input, .form-group select { width: 100%; padding: 12px 15px 12px 42px; font-size: 15px; font-family: var(--font-main); border: 1px solid #ced4da; border-radius: 8px; transition: all 0.3s ease; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary-color-dark); box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.15); }
.form-group input:focus ~ .input-icon, .form-group select:focus ~ .input-icon { color: var(--primary-color-dark); }
.form-submit { grid-column: 1 / -1; padding-top: 10px; }
.submit-btn { width: 100%; padding: 14px; font-size: 16px; font-weight: 600; color: #ffffff; background: var(--primary-gradient); border: none; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; box-shadow: var(--primary-glow); }
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255, 107, 5, 0.4); }
.booking-section .form-group#price-display-wrapper { display: none; flex-direction: column; align-items: center; margin-top: 10px; padding: 15px; background: var(--light-gray-bg); border-radius: 8px; border: 1px solid #e9ecef; }
.ticket-price-display { font-size: 24px; font-weight: 700; color: var(--primary-color-dark); }
.ticket-price-display span { font-size: 16px; font-weight: 500; color: var(--text-muted); }

/* ================================== */
/*     Pricing, Vehicle & Pickup      */
/* ================================== */
.vehicle-showcase-section { background-color: var(--light-bg); }
.pricing-table-container { max-width: 800px; margin: 60px auto 0; }
.pricing-table { width: 100%; border-collapse: collapse; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.07); border-radius: var(--border-radius); overflow: hidden; }
.pricing-table th, .pricing-table td { padding: 18px 25px; font-size: 16px; }
.pricing-table th { background: var(--dark-bg); color: #ffffff; font-weight: 600; }
.pricing-table tbody tr { border-bottom: 1px solid #dee2e6; transition: background-color 0.3s ease; }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background-color: #fff8f2; }
.pricing-table td:last-child { font-weight: 600; color: var(--primary-color-dark); }
.pickup-point-title { margin-top: 0; }
.pickup-point-address { font-size: 15px; }
.pickup-points-container .pickup-point-box:nth-child(1) { background-color: #f0f9ff; }
.pickup-points-container .pickup-point-box:nth-child(1) .pickup-point-icon { background: #38bdf8; }
.pickup-points-container .pickup-point-box:nth-child(2) { background-color: #f0fff4; }
.pickup-points-container .pickup-point-box:nth-child(2) .pickup-point-icon { background: #34d399; }
.pickup-points-container .pickup-point-box:nth-child(3) { background-color: #fffbeb; }
.pickup-points-container .pickup-point-box:nth-child(3) .pickup-point-icon { background: #facc15; }
.vehicle-showcase-layout { display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: center; gap: 30px; margin-top: 60px; }
.vehicle-image { max-width: 100%; border-radius: var(--border-radius); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.vehicle-details { padding: 0 20px; }
.vehicle-details h3 { font-size: 28px; font-weight: 700; }
.vehicle-features-list { list-style: none; padding: 0; margin: 20px 0 0 0; text-align: left; display: inline-flex; flex-direction: column; gap: 15px; }
.vehicle-features-list li { font-size: 16px; font-weight: 500; display: flex; align-items: center; gap: 12px; }
.vehicle-features-list i { color: var(--primary-color-dark); font-size: 20px; }

/* ================================== */
/*          Seat Booking Section      */
/* ================================== */
.seat-booking-section { background-color: #ffffff; }
.seat-booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; align-items: center; }
.seat-map-container { padding: 30px; background: var(--light-gray-bg); border-radius: var(--border-radius); border: 1px solid #e5e7eb; }
.seat-map-legend { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; font-size: 14px; }
.legend-box { width: 16px; height: 16px; display: inline-block; vertical-align: middle; margin-right: 8px; border-radius: 4px; }
.legend-box.available { background-color: var(--seat-available-border); }
.legend-box.selected { background-color: var(--seat-selected-border); }
.legend-box.booked { background-color: var(--seat-booked-border); }
.seat-map { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; max-width: 300px; margin: 0 auto; }
.seat { padding: 20px; text-align: center; border-radius: 8px; font-weight: 600; border: 2px solid transparent; transition: all 0.3s ease; }
.seat.available { background-color: var(--seat-available-bg); border-color: var(--seat-available-border); color: var(--seat-available-text); cursor: pointer; }
.seat.available:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(77, 182, 172, 0.3); }
.seat.selected { background-color: var(--seat-selected-bg); border-color: var(--seat-selected-border); color: var(--seat-selected-text); transform: scale(1.05); box-shadow: 0 5px 15px rgba(255, 235, 59, 0.5); cursor: pointer; }
.seat.booked { background-color: var(--seat-booked-bg); border-color: var(--seat-booked-border); color: var(--seat-booked-text); cursor: not-allowed; text-decoration: line-through; }
.seat.driver { background-color: #e5e7eb; color: #4b5563; grid-column: 1 / 2; grid-row: 1 / 2; cursor: default; }
.seat-inquiry-container { text-align: left; padding: 30px; }
.seat-inquiry-container h3 { font-size: 24px; margin-top: 0; margin-bottom: 15px; }
.inquiry-btn { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; padding: 12px 30px; font-size: 16px; font-weight: 600; color: var(--primary-color-dark); background-color: transparent; border: 2px solid var(--primary-color-dark); border-radius: 50px; cursor: pointer; transition: all 0.3s ease; }
.inquiry-btn:hover { background-color: var(--primary-color-dark); color: #ffffff; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255, 69, 0, 0.2); }
.inquiry-list { list-style: none; padding: 0; margin: 0; text-align: left; }
.inquiry-list li { padding: 15px; border-bottom: 1px solid #e5e7eb; display: flex; justify-content: space-between; align-items: center; }
.inquiry-list li:last-child { border-bottom: none; }
.inquiry-list .status { font-weight: 600; }
.inquiry-list .status.available { color: var(--seat-available-text); }
.inquiry-list .status.booked { color: var(--seat-booked-text); }
.inquiry-list .booked-by { font-size: 14px; color: var(--text-muted); }

/* ================================== */
/*         Road Route Section         */
/* ================================== */
.road-route-section { background-color: var(--dark-bg); color: var(--text-color-light); overflow-x: hidden; }
.road-route-section .section-title { color: #ffffff; }
.road-route-section .section-subtitle { color: rgba(255, 255, 255, 0.7); }
.route-timeline { position: relative; max-width: 800px; margin: 60px auto 0; padding: 20px 0; }
.route-timeline::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 4px; height: 100%; background: var(--primary-gradient); border-radius: 2px; box-shadow: var(--primary-glow); }
.timeline-item { padding: 10px 40px; position: relative; width: 50%; opacity: 0; transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.timeline-item:nth-child(odd) { left: 0; transform: translateX(-100px); }
.timeline-item:nth-child(even) { left: 50%; transform: translateX(100px); }
.timeline-item.is-visible { opacity: 1; transform: translateX(0); }
.timeline-icon { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: var(--dark-bg); border: 3px solid var(--primary-color-dark); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--primary-color-dark); z-index: 1; }
.timeline-item:nth-child(odd) .timeline-icon { right: -20px; }
.timeline-item:nth-child(even) .timeline-icon { left: -20px; }
.timeline-icon.start, .timeline-icon.end { width: 50px; height: 50px; font-size: 20px; background: var(--primary-gradient); border: none; color: #ffffff; }
.timeline-item:nth-child(odd) .timeline-icon.start, .timeline-item:nth-child(odd) .timeline-icon.end { right: -25px; }
.timeline-item:nth-child(even) .timeline-icon.start, .timeline-item:nth-child(even) .timeline-icon.end { left: -25px; }
.timeline-content { padding: 20px 25px; background: #2a2a2a; border-radius: var(--border-radius); position: relative; border: 1px solid #444; }
.timeline-item:nth-child(odd) { text-align: right; }
.timeline-content h4 { margin: 0 0 5px 0; font-size: 18px; color: #ffffff; }
.timeline-content p { margin: 0; font-size: 14px; color: rgba(255, 255, 255, 0.7); }

/* ================================== */
/*           Visit Us Section         */
/* ================================== */
.visit-us-section { background-color: var(--light-bg); padding-bottom: 0;}
.visit-us-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: center; margin-top: 60px; text-align: left; }
.visit-us-details h3 { font-size: 28px; font-weight: 700; margin-top: 0; margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
.visit-us-details h3 i { color: var(--primary-color-dark); }
.address-line { font-size: 16px; line-height: 1.8; color: var(--text-muted); }
.contact-line { font-size: 16px; margin: 20px 0; color: var(--text-muted); }
.contact-line i { color: var(--primary-color-dark); margin-right: 10px; }
.contact-line a { color: var(--text-color-dark); text-decoration: none; font-weight: 500; }
.contact-line a:hover { color: var(--primary-color-dark); }
.social-links { margin-top: 20px; display: flex; align-items: center; gap: 15px; }
.social-links strong { font-size: 16px; color: var(--text-muted); }
.social-links strong i { color: var(--primary-color-dark); margin-right: 10px; }
.social-links a { color: var(--text-color-dark); font-size: 24px; transition: color 0.3s ease, transform 0.3s ease; }
.social-links a:hover { color: var(--primary-color-dark); transform: scale(1.1); }
.directions-btn { display: inline-block; margin-top: 30px; background: var(--primary-gradient); color: #ffffff; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; box-shadow: var(--primary-glow); transition: all 0.3s ease; }
.directions-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255, 107, 5, 0.4); }
.visit-us-map iframe { width: 100%; height: 400px; border-radius: var(--border-radius); box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 1px solid #ddd; }

/* ================================== */
/*           Footer Section           */
/* ================================== */
.site-footer { background-color: var(--dark-bg); color: rgba(255, 255, 255, 0.7); padding: 80px 0 0; font-size: 15px; }
.footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-bottom: 50px; }
.footer-column h4 { font-size: 18px; font-weight: 600; color: #ffffff; margin-bottom: 25px; position: relative; }
.footer-column h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 3px; background: var(--primary-gradient); border-radius: 2px; }
.footer-column.about p { line-height: 1.8; margin-bottom: 20px; }
.footer-logo { max-width: 150px; margin-bottom: 20px; }
.footer-social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background-color: #333; color: #ffffff; text-decoration: none; margin-right: 10px; transition: all 0.3s ease; }
.footer-social-links a:hover { background: var(--primary-gradient); transform: translateY(-3px); }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: all 0.3s ease; }
.footer-column ul a:hover { color: #ffffff; padding-left: 5px; }
.footer-column.contact ul li { display: flex; align-items: flex-start; }
.footer-column.contact ul li i { color: var(--primary-color-dark); margin-right: 15px; margin-top: 5px; }
.footer-bottom { text-align: center; padding: 20px 0; border-top: 1px solid #333; }
.footer-bottom p { margin: 5px 0; font-size: 14px; }

/* ================================== */
/*        Back to Top Button          */
/* ================================== */
#back-to-top-btn { position: fixed; bottom: 25px; right: 25px; display: none; width: 45px; height: 45px; border-radius: 50%; background: var(--primary-gradient); color: #ffffff; border: none; outline: none; cursor: pointer; font-size: 18px; z-index: 1001; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: all 0.3s ease; }
#back-to-top-btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 107, 5, 0.4); }

/* ================================== */
/*        Confirmation Popup          */
/* ================================== */
.popup-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0s linear 0.4s; }
.popup-container.is-visible { opacity: 1; visibility: visible; transition: opacity 0.4s ease; }
.popup-overlay { position: absolute; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(5px); }
.popup-content { position: relative; background-color: #ffffff; padding: 40px; border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.2); text-align: center; max-width: 450px; width: 90%; transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.popup-container.is-visible .popup-content { transform: scale(1); }
.popup-close-btn { position: absolute; top: 10px; right: 15px; background: transparent; border: none; font-size: 28px; color: #aaaaaa; cursor: pointer; transition: color 0.3s ease; }
.popup-close-btn:hover { color: #333333; }
.popup-icon { font-size: 60px; margin-bottom: 20px; color: #28a745; }
.popup-title { font-size: 28px; font-weight: 600; margin-bottom: 15px; color: var(--dark-bg); }
.popup-message { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 0; }

/* ================================== */
/*          Responsive Design         */
/* ================================== */
@media (max-width: 992px) {
    .nav-links-wrapper { display: none; }
    .services-container, .journey-cards-container, .pickup-points-container { grid-template-columns: 1fr 1fr; }
    .vehicle-showcase-layout, .visit-us-layout { grid-template-columns: 1fr; text-align: center; }
    .vehicle-features-list { display: inline-flex; }
    .vehicle-image-container.left { display: none; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .navbar-container, .section-container, .footer-container { padding: 0 20px; }
    .services-section, .booking-section, .journey-section, .pricing-section, .pickup-points-section, .seat-booking-section, .vehicle-showcase-section, .road-route-section, .visit-us-section { padding: 80px 0; }
    .services-container, .journey-cards-container, .booking-form, .pickup-points-container, .seat-booking-layout { grid-template-columns: 1fr; }
    .section-title { font-size: 32px; }
    .top-navbar .navbar-container { flex-direction: column; gap: 10px; }
    .vehicle-image-container.right { display: none; }
    .vehicle-image-container.left { display: block; margin-bottom: 30px; }
    .road-route-section { padding: 80px 0; }
    .route-timeline::before { left: 20px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 0; }
    .timeline-item:nth-child(even), .timeline-item:nth-child(odd) { left: 0; text-align: left; }
    .timeline-item:nth-child(even) { transform: translateX(100px); }
    .timeline-item:nth-child(odd) .timeline-icon, .timeline-item:nth-child(even) .timeline-icon { left: 0; }
    .timeline-item:nth-child(odd) .timeline-icon.start, .timeline-item:nth-child(odd) .timeline-icon.end, .timeline-item:nth-child(even) .timeline-icon.start, .timeline-item:nth-child(even) .timeline-icon.end { left: -5px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-column h4::after { left: 50%; transform: translateX(-50%); }
    .footer-column.contact ul li { justify-content: center; text-align: left; }
}
/* ================================== */
/*         General & Root Styles      */
/* ================================== */
:root {
    --primary-gradient: linear-gradient(90deg, #FF8C00, #FF4500);
    --primary-color-dark: #FF4500;
    --primary-glow: 0 8px 25px rgba(255, 107, 5, 0.3);
    --dark-bg: #1a1a1a;
    --light-bg: #fdfdff;
    --light-gray-bg: #f8f9fa;
    --text-color-light: #f0f0f0;
    --text-color-dark: #333333;
    --text-muted: #6c757d;
    --font-main: 'Poppins', sans-serif;
    --border-radius: 12px;
    --seat-available-bg: #e0f2f1;
    --seat-available-border: #4db6ac;
    --seat-available-text: #00796b;
    --seat-booked-bg: #ffcdd2;
    --seat-booked-border: #f44336;
    --seat-booked-text: #c62828;
    --seat-selected-bg: #fff9c4;
    --seat-selected-border: #ffeb3b;
    --seat-selected-text: #f57f17;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-color-dark);
    overflow-x: hidden;
}

.navbar-container, .section-container, .footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ================================== */
/*           Header & Navbar          */
/* ================================== */
.top-navbar { background-color: var(--dark-bg); color: var(--text-muted); padding: 8px 0; font-size: 13px; border-bottom: 1px solid #333; }
.top-navbar .navbar-container { display: flex; align-items: center; justify-content: space-between; }
.contact-info { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.news-ticker { display: flex; align-items: center; overflow: hidden; flex-grow: 1; margin: 0 30px; gap: 10px;}
.ticker-wrap { width: 100%; overflow: hidden; height: 20px; position: relative; }
.ticker-move { display: inline-block; position: absolute; white-space: nowrap; animation: ticker 20s linear infinite; color: #FF8C00; }
.ticker-item { display: inline-block; padding-right: 50px; }
@keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-150%); } }
.top-social-icons { display: flex; align-items: center; gap: 18px; }
.top-social-icons a { color: var(--text-muted); text-decoration: none; font-size: 16px; transition: color 0.3s ease, transform 0.3s ease; }
.top-social-icons a:hover { color: #ffffff; transform: scale(1.2) rotate(5deg); }

.main-navbar { position: sticky; top: 0; z-index: 1000; background-color: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); }
.main-navbar .navbar-container { display: flex; align-items: center; justify-content: space-between; height: 85px; transition: height 0.3s ease; }
.logo img { height: 55px; transition: height 0.3s ease; }
.nav-links-wrapper { display: flex; align-items: center; gap: 40px; }
.nav-item { color: var(--text-color-dark); text-decoration: none; font-weight: 500; font-size: 16px; position: relative; padding: 5px 0; transition: color 0.3s ease; }
.nav-item::after { content: ''; position: absolute; width: 100%; height: 3px; bottom: -5px; left: 0; background: var(--primary-gradient); border-radius: 2px; transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); }
.nav-item:hover { color: var(--text-color-dark); }
.nav-item:hover::after { transform: scaleX(1); }
.nav-right-section { display: flex; align-items: center; gap: 15px; }
.call-now-button, .cta-button { color: var(--text-color-light); background: var(--primary-gradient); border: none; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 16px; transition: all 0.3s ease; box-shadow: var(--primary-glow); background-size: 200% 100%; }
.call-now-button:hover, .cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255, 107, 5, 0.4); background-position: right center; }
.call-now-button { display: flex; align-items: center; gap: 10px; padding: 10px 22px; color: var(--primary-color-dark); background: transparent; border: 2px solid var(--primary-color-dark); }
.call-now-button:hover { color: var(--text-color-light); background: var(--primary-color-dark); }
.cta-button { padding: 12px 30px; }
.cta-button::after { display: none !important; }

/* Mobile Navigation Styles */
.hamburger-menu { display: none; background: none; border: none; font-size: 24px; color: var(--text-color-dark); cursor: pointer; }
.nav-close-btn { display: none; }


/* ================================== */
/*          Slider Section            */
/* ================================== */
.slider-container { position: relative; height: 80vh; overflow: hidden; }
.slider { display: flex; height: 100%; transition: transform 0.5s ease-in-out; }
.slide { min-width: 100%; height: 100%; position: relative; }
.slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.2); }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-btn { position: absolute; top: 50%; z-index: 10; transform: translateY(-50%); background: rgba(255,255,255,0.2); color: white; border: none; border-radius: 50%; width: 50px; height: 50px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.3s; }
.slider-btn:hover { background: rgba(255,255,255,0.9); color: var(--primary-color-dark); }
.prev-btn { left: 20px; } .next-btn { right: 20px; }
.dots-container { position: absolute; bottom: 20px; left: 50%; z-index: 10; transform: translateX(-50%); display: flex; gap: 10px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.dot.active { background: white; transform: scale(1.2); }

/* ================================== */
/*        Generic Section Styles      */
/* ================================== */
.services-section, .booking-section, .journey-section, .pricing-section, .pickup-points-section, .seat-booking-section, .vehicle-showcase-section, .road-route-section, .visit-us-section { padding: 100px 0; }
.section-container { text-align: center; }
.section-title { font-size: 38px; font-weight: 700; margin-bottom: 20px; color: var(--text-color-dark); letter-spacing: -1px; }
.section-subtitle { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto 60px; line-height: 1.7; }

/* (Other sections remain unchanged) */
.services-section, .journey-section, .pickup-points-section, .pricing-section, .booking-section, .vehicle-showcase-section, .seat-booking-section, .road-route-section, .visit-us-section, .site-footer, .popup-container, #back-to-top-btn { /* All previous styles are retained */ }
.services-container { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.journey-cards-container, .pickup-points-container { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.service-box, .journey-card, .pickup-point-box { background-color: #ffffff; border: 1px solid #eee; border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden; transition: all 0.4s ease; }
.service-box:hover, .journey-card:hover, .pickup-point-box:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--primary-color-dark); }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; }
.seat-booking-layout, .visit-us-layout { display: grid; grid-template-columns: 1fr 1fr; }
.footer-content { display: grid; grid-template-columns: repeat(4, 1fr); }
/* Add all other existing styles from the previous response here... */
.services-container, .journey-cards-container, .pickup-points-container { display: grid; gap: 30px; text-align: left; }
.service-box, .pickup-point-box { padding: 35px; }
.journey-card { display: flex; flex-direction: column; }
.service-icon-wrapper, .pickup-point-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: #ffffff; font-size: 24px; }
.service-title, .journey-title, .pickup-point-title { font-size: 22px; font-weight: 600; color: var(--text-color-dark); margin-bottom: 10px; }
.service-description, .journey-description, .pickup-point-address { color: var(--text-muted); line-height: 1.7; }
.journey-card-image { width: 100%; height: 220px; object-fit: cover; }
.journey-card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.journey-features { list-style: none; padding: 0; margin: 0 0 25px; }
.journey-features li { margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.journey-features i { color: var(--primary-color-dark); }
.journey-book-btn { display: block; width: 100%; text-align: center; padding: 14px; font-weight: 600; color: #ffffff; background: var(--primary-gradient); border-radius: 8px; text-decoration: none; }
.booking-section .section-container { max-width: 800px; }
.booking-form { padding: 40px; border-radius: var(--border-radius); background: #ffffff; box-shadow: 0 20px 50px rgba(0,0,0,0.1); gap: 22px 25px; }
.form-group { display: flex; flex-direction: column; text-align: left; }
.form-group.full-width { grid-column: 1 / -1; }
.input-wrapper { position: relative; }
.input-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #adb5bd; }
.form-group input, .form-group select { width: 100%; padding: 12px 15px 12px 42px; font-size: 15px; border: 1px solid #ced4da; border-radius: 8px; }
.form-submit { grid-column: 1 / -1; }
.submit-btn { width: 100%; padding: 14px; font-size: 16px; font-weight: 600; color: #ffffff; background: var(--primary-gradient); border: none; border-radius: 8px; cursor: pointer; }
.pricing-table-container { max-width: 800px; margin: 60px auto 0; }
.pricing-table { width: 100%; border-collapse: collapse; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.07); border-radius: var(--border-radius); overflow: hidden; }
.pricing-table th, .pricing-table td { padding: 18px 25px; font-size: 16px; }
.pricing-table th { background: var(--dark-bg); color: #ffffff; }
.vehicle-showcase-layout { display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: center; gap: 30px; margin-top: 60px; }
.vehicle-features-list { list-style: none; padding: 0; }
.seat-booking-layout { gap: 40px; margin-top: 60px; align-items: center; }
.seat-map-container { padding: 30px; background: var(--light-gray-bg); border-radius: var(--border-radius); }
.seat-map-legend { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.seat-map { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; max-width: 300px; margin: 0 auto; }
.seat { padding: 20px; text-align: center; border-radius: 8px; font-weight: 600; border: 2px solid transparent; }
.seat.available { background-color: var(--seat-available-bg); border-color: var(--seat-available-border); color: var(--seat-available-text); cursor: pointer; }
.seat.selected { background-color: var(--seat-selected-bg); border-color: var(--seat-selected-border); color: var(--seat-selected-text); }
.seat.booked { background-color: var(--seat-booked-bg); border-color: var(--seat-booked-border); color: var(--seat-booked-text); cursor: not-allowed; }
.seat.driver { background-color: #e5e7eb; color: #4b5563; }
.seat-inquiry-container { text-align: left; }
.inquiry-btn { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; padding: 12px 30px; border: 2px solid var(--primary-color-dark); border-radius: 50px; }
.road-route-section { background-color: var(--dark-bg); color: var(--text-color-light); }
.route-timeline { position: relative; max-width: 800px; margin: 60px auto 0; }
.timeline-item { position: relative; }
.site-footer { background-color: var(--dark-bg); color: rgba(255, 255, 255, 0.7); padding: 80px 0 0; }
.footer-column h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 3px; background: var(--primary-gradient); }
.footer-column ul { list-style: none; padding: 0; }
.footer-bottom { text-align: center; padding: 20px 0; border-top: 1px solid #333; }
#back-to-top-btn { position: fixed; bottom: 25px; right: 25px; display: none; width: 45px; height: 45px; border-radius: 50%; background: var(--primary-gradient); color: #ffffff; border: none; cursor: pointer; z-index: 1001; }
.popup-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; }
.popup-container.is-visible { opacity: 1; visibility: visible; }
.popup-content { position: relative; background-color: #ffffff; padding: 40px; border-radius: var(--border-radius); text-align: center; }

/* ================================== */
/*          Responsive Design         */
/* ================================== */

/* Medium Devices (Tablets, Laptops) */
@media (max-width: 1200px) {
    .services-container, .journey-cards-container, .pickup-points-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Small Devices (Tablets) */
@media (max-width: 992px) {
    .main-navbar .navbar-container {
        justify-content: space-between;
    }
    .hamburger-menu {
        display: block;
    }
    .nav-links-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
    }
    .nav-links-wrapper.active {
        left: 0;
    }
    .nav-item {
        font-size: 24px;
        font-weight: 600;
    }
    .nav-close-btn {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        background: none;
        border: none;
        font-size: 30px;
        color: var(--text-color-dark);
        cursor: pointer;
    }
    .vehicle-showcase-layout { grid-template-columns: 1fr; text-align: center; }
    .vehicle-features-list { display: inline-flex; }
    .vehicle-image-container.left, .vehicle-image-container.right { display: none; }
    .visit-us-layout, .seat-booking-layout { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

/* Extra Small Devices (Mobiles) */
@media (max-width: 768px) {
    .navbar-container, .section-container, .footer-container { padding: 0 20px; }
    .services-section, .booking-section, .journey-section, .pricing-section, .pickup-points-section, .seat-booking-section, .vehicle-showcase-section, .road-route-section, .visit-us-section { padding: 80px 0; }
    .section-title { font-size: 32px; }
    .section-subtitle { font-size: 16px; margin-bottom: 40px; }
    
    .top-navbar .navbar-container { flex-direction: column; gap: 10px; text-align: center; }
    
    /* === NEWS TICKER FIX FOR MOBILE === */
    .news-ticker {
        width: 100%;
        justify-content: center;
        margin: 5px 0;
        overflow: visible;
    }
    .ticker-wrap {
        height: auto;
        text-align: center;
        overflow: visible;
    }
    .ticker-move {
        animation: none;
        position: static;
        white-space: normal;
        color: #FF8C00;
    }
    .ticker-item {
        display: none; /* Hide all items by default */
        padding: 0;
    }
    .ticker-item:first-child {
        display: inline; /* Only show the first item */
    }
    
    .main-navbar .navbar-container { height: 70px; }
    .logo img { height: 45px; }

    .slider-container { height: 60vh; }
    .slider-btn { width: 40px; height: 40px; font-size: 16px; }
    
    .booking-form { grid-template-columns: 1fr; padding: 25px; }
    
    .pricing-table th, .pricing-table td { padding: 12px 15px; font-size: 14px; }
    .pricing-table-container { overflow-x: auto; }

    .road-route-section { padding: 80px 0; }
    .route-timeline::before { left: 20px; }
    .timeline-item { width: 100%; padding-left: 60px; padding-right: 0; }
    .timeline-item:nth-child(even), .timeline-item:nth-child(odd) { left: 0; text-align: left; transform: translateX(50px); }
    .timeline-item.is-visible { transform: translateX(0); }
    .timeline-item:nth-child(odd) .timeline-icon, .timeline-item:nth-child(even) .timeline-icon { left: 0; }
    .timeline-item:nth-child(odd) .timeline-icon.start, .timeline-item:nth-child(odd) .timeline-icon.end, .timeline-item:nth-child(even) .timeline-icon.start, .timeline-item:nth-child(even) .timeline-icon.end { left: -5px; }

    .visit-us-map iframe { height: 300px; }

    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-column h4::after { left: 50%; transform: translateX(-50%); }
    .footer-column.contact ul li { justify-content: center; text-align: left; }
}

/* Very Small Mobiles */
@media (max-width: 576px) {
    .contact-info, .top-social-icons {
        font-size: 11px;
    }
    .call-now-button span {
        display: none;
    }
    .call-now-button {
        padding: 8px 10px;
    }
}

/* ============================= */
/*        Loading Screen         */
/* ============================= */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #FF8C00;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    animation: spin 1s linear infinite;
    margin-bottom: 18px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loading-text {
    font-size: 1.3rem;
    color: #FF4500;
    font-weight: 600;
    letter-spacing: 2px;
}
.loading-logo {
    width: 170px;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.10));
    animation: logo-pop 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes logo-pop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }

}
#whatsapp-chat-btn {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 26px;
    z-index: 1002;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#whatsapp-chat-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* ================================== */
/*        Advanced Booking Calendar   */
/* ================================== */
.calendar-section {
    background-color: var(--light-gray-bg);
    padding: 100px 0;
}

.calendar-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Calendar Dropdown Styles */
.calendar-container {
    position: absolute;
    z-index: 1000;
    display: none;
    width: 350px;
    max-width: 90vw;
    margin-top: 5px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.calendar-container.visible {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure calendar fits within viewport on mobile */
@media (max-width: 768px) {
    .calendar-container {
        width: 95vw;
        left: 2.5vw !important;
        right: 2.5vw;
        transform: none !important;
    }
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: var(--primary-gradient);
    color: #ffffff;
}

.calendar-nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.calendar-month-year {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.calendar-grid {
    padding: 20px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
}

.calendar-weekdays div {
    padding: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.calendar-day:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.calendar-day.available {
    background-color: var(--seat-available-bg);
    border-color: var(--seat-available-border);
    color: var(--seat-available-text);
}

.calendar-day.limited {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.calendar-day.booked {
    background-color: var(--seat-booked-bg);
    border-color: var(--seat-booked-border);
    color: var(--seat-booked-text);
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.selected {
    background-color: var(--seat-selected-bg);
    border-color: var(--seat-selected-border);
    color: var(--seat-selected-text);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.3);
}

.calendar-day.other-month {
    opacity: 0.3;
    cursor: default;
}

.calendar-day.other-month:hover {
    transform: none;
    box-shadow: none;
}

.calendar-day.today {
    border: 2px solid var(--primary-color-dark);
    font-weight: 600;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray-bg);
    border-top: 1px solid #e5e7eb;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
}

.legend-color.available {
    background-color: var(--seat-available-border);
}

.legend-color.limited {
    background-color: #ffc107;
}

.legend-color.booked {
    background-color: var(--seat-booked-border);
}

.legend-color.selected {
    background-color: var(--seat-selected-border);
}

.calendar-info {
    padding: 25px;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.selected-date-info {
    text-align: center;
}

.selected-date-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color-dark);
    margin-bottom: 15px;
}

.selected-date-info p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 8px 0;
}

#selected-date-display {
    color: var(--primary-color-dark);
    font-weight: 600;
}

#available-seats {
    color: var(--seat-available-text);
    font-weight: 600;
}

#dynamic-price {
    color: var(--primary-color-dark);
    font-weight: 600;
    font-size: 18px;
}

/* Responsive Design for Calendar */
@media (max-width: 768px) {
    .calendar-header {
        padding: 20px;
    }
    
    .calendar-month-year {
        font-size: 20px;
    }
    
    .calendar-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .calendar-grid {
        padding: 15px;
    }
    
    .calendar-weekdays div {
        padding: 8px;
        font-size: 14px;
    }
    
    .calendar-day {
        padding: 10px;
        font-size: 14px;
    }
    
    .calendar-legend {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
    }
    
    .calendar-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .calendar-weekdays div {
        padding: 6px;
        font-size: 12px;
    }
    
    .calendar-day {
        padding: 8px;
        font-size: 12px;
    }
    
    .legend-item {
        font-size: 12px;
    }
}

/* ================================== */
/*        Payment Information         */
/* ================================== */
.payment-section {
    background-color: var(--light-gray-bg);
    padding: 100px 0;
}

.payment-methods-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px auto 0;
    max-width: 1000px;
}

.payment-method-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color-dark);
}

.payment-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 28px;
}

.payment-method-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color-dark);
    text-align: center;
    margin-bottom: 25px;
}

.bank-details, .mobile-payment-details {
    text-align: left;
}

.bank-detail-row, .payment-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
}

.bank-detail-row:last-child, .payment-detail-row:last-child {
    border-bottom: none;
}

.bank-label, .payment-label {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 14px;
}

.bank-value, .payment-value {
    font-weight: 600;
    color: var(--text-color-dark);
    font-size: 15px;
}

.payment-instructions {
    margin: 50px auto 0;
    max-width: 800px;
    text-align: left;
    background: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
}

.payment-instructions h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color-dark);
    margin-bottom: 20px;
    text-align: center;
}

.instructions-list {
    padding-left: 20px;
    margin: 0;
}

.instructions-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-muted);
}

.instructions-list li:last-child {
    margin-bottom: 0;
}

.instructions-list a {
    color: var(--primary-color-dark);
    text-decoration: none;
    font-weight: 500;
}

.instructions-list a:hover {
    text-decoration: underline;
}

.payment-confirmation {
    margin: 40px auto 0;
    max-width: 500px;
}

.confirmation-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--primary-color-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
}

.confirmation-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 15px;
}

.confirmation-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color-dark);
    margin-bottom: 10px;
}

.confirmation-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.whatsapp-confirm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Responsive Design for Payment Section */
@media (max-width: 768px) {
    .payment-methods-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-method-card {
        padding: 20px;
    }
    
    .payment-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .bank-detail-row, .payment-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .payment-instructions {
        padding: 20px;
        margin: 30px auto 0;
    }
    
    .confirmation-box {
        padding: 20px;
    }
    
    .whatsapp-confirm-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ================================== */
/*          Dark Mode Styles          */
/* ================================== */
body.dark-mode {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

body.dark-mode .main-navbar {
    background-color: rgba(26, 26, 26, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .nav-item {
    color: #f0f0f0;
}

body.dark-mode .nav-item:hover {
    color: #ffffff;
}

body.dark-mode .section-title {
    color: #ffffff;
}

body.dark-mode .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .service-box,
body.dark-mode .journey-card,
body.dark-mode .pickup-point-box,
body.dark-mode .booking-form,
body.dark-mode .payment-method-card,
body.dark-mode .payment-instructions,
body.dark-mode .confirmation-box,
body.dark-mode .popup-content {
    background-color: #2a2a2a;
    border-color: #444;
    color: #f0f0f0;
}

body.dark-mode .service-title,
body.dark-mode .journey-title,
body.dark-mode .pickup-point-title,
body.dark-mode .form-group label,
body.dark-mode .payment-method-title,
body.dark-mode .payment-instructions h4,
body.dark-mode .confirmation-box h4,
body.dark-mode .popup-title {
    color: #ffffff;
}

body.dark-mode .service-description,
body.dark-mode .journey-description,
body.dark-mode .pickup-point-address,
body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .bank-label,
body.dark-mode .payment-label,
body.dark-mode .instructions-list li,
body.dark-mode .confirmation-box p,
body.dark-mode .popup-message {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .form-group input,
body.dark-mode .form-group select {
    background-color: #333;
    border-color: #555;
    color: #f0f0f0;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus {
    border-color: var(--primary-color-dark);
    box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.3);
}

body.dark-mode .input-icon {
    color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .services-section,
body.dark-mode .journey-section,
body.dark-mode .pickup-points-section,
body.dark-mode .pricing-section {
    background-color: #222;
}

body.dark-mode .booking-section {
    background-image: linear-gradient(to top, #222, #2a2a2a);
}

body.dark-mode .pricing-table th {
    background-color: #333;
}

body.dark-mode .pricing-table tbody tr:hover {
    background-color: #333;
}

body.dark-mode .seat-map-container {
    background-color: #222;
    border-color: #444;
}

body.dark-mode .seat-inquiry-container {
    color: #f0f0f0;
}

body.dark-mode .inquiry-list li {
    border-color: #444;
}

body.dark-mode .visit-us-section {
    background-color: #1a1a1a;
}

body.dark-mode .address-line,
body.dark-mode .contact-line {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .contact-line a {
    color: #ffffff;
}

body.dark-mode .social-links strong {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .social-links a {
    color: #ffffff;
}

/* ================================== */
/*        Sticky Navigation           */
/* ================================== */
.main-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.main-navbar.sticky .navbar-container {
    height: 70px;
}

.main-navbar.sticky .logo img {
    height: 45px;
}

/* ================================== */
/*        Dark Mode Toggle Button     */
/* ================================== */
#dark-mode-toggle {
    background: none;
    border: 2px solid var(--primary-color-dark);
    color: var(--primary-color-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

#dark-mode-toggle:hover {
    background-color: var(--primary-color-dark);
    color: #ffffff;
    transform: scale(1.1);
}

body.dark-mode #dark-mode-toggle {
    border-color: #ffffff;
    color: #ffffff;
}

body.dark-mode #dark-mode-toggle:hover {
    background-color: #ffffff;
    color: var(--primary-color-dark);
}

/* Responsive adjustments for dark mode toggle */
@media (max-width: 768px) {
    #dark-mode-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 5px;
    }
}












