:root {
    --primary-blue: #4f58ff;
    --dark-bg: #0b0e28;
    --orange-accent: #ff9d2d;
    --text-light: #cccccc;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}

img{max-width:100%;}


.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Bar Styling --- */
.mobile-menu-btn{ display: none;}
.top-header {
    background-color: var(--primary-blue);
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 5%;
    position: relative;
    color: var(--white);
    font-size: 14px;
    padding-top: 5px;
}

.top-info-box {
    background-color: var(--dark-bg);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 60px 0 40px;
    /* Design key: The semi-circle curve at the end */
    border-top-right-radius: 50px;
    /* border-bottom-right-radius: 50px; */
    z-index: 10;
    border-top-left-radius: 50px;
    outline: 2px solid;
}
.header-wrapper{background-color: var(--primary-blue);}
.info-item i { color: var(--orange-accent); margin-right: 8px; }

.top-social-box {
    display: flex;
    gap: 40px;
    align-items: center;
}

.auth-lang a, .social-links a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

.social-links span { color: #fff;
    font-weight: 600;
    margin-top: 10px; }

/* --- Navigation Styling --- */
.main-nav {
    background: white;
    padding: 15px 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 180px; }
.logo-text { font-size: 30px; font-weight: 800; color: #111; }
.logo-text span { color: var(--primary-blue); }

nav ul { display: flex; list-style: none; gap: 25px; }
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

nav ul li a.active, nav ul li a:hover { color: var(--primary-blue); }
nav ul li:last-child a{ background-color: var(--orange-accent);  color: #fff !important;
    padding: 5px 10px;  display: none;}
.header-right { display: flex; align-items: center; gap: 20px; }
.search-trigger { font-size: 18px; cursor: pointer; color: var(--primary-blue); }

.book-btn {
    background: var(--primary-blue);
    color: white;
    padding: 12px 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}




:root {
    --primary: #4f58ff;
    --navy: #0b0e28;
}

/* Sidebar Container */
.right-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh; /* Full viewport height */
    background: #fff;
    /* Itna bada z-index zaroorat nahi, bas clean stacking context chahiye */
    z-index: 999999; 
    padding: 50px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    transition: all 0.5s ease-in-out;
    overflow-y: auto;
    
    /* Force Hardware Acceleration (Isse upar aa jayega) */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Jab sidebar active ho */
.right-sidebar.active {
    right: 0;
    /* Agar transforms issues kar rahe hon to ye try karein */
    transform: translateX(0) translateZ(100px); 
}

/* Close Icon */
.sidebar-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.sidebar-logo {
    margin-bottom: 30px;
}

.sidebar-logo img {
    height: 45px;
}

.sidebar-desc {
    color: #757999;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 40px;
}

/* Contact Info Section */
.sidebar-contact h4, 
.sidebar-social h4 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.text span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.text p {
    margin: 0;
    color: #757999;
    font-size: 14px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--navy);
}

/* Overlay Background */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}




/* Mobile Sidebar Base */
.burger-icon{display:none;}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px; /* Initially hidden on the left */
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1000000; /* Sidebar stacking fix */
    transition: all 0.4s ease-in-out;
    padding: 30px 20px;
    overflow-y: auto;
}

/* Jab menu open ho */
.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-logo img {
    height: 40px;
}

/* Close Button Style */
.mobile-close {
    width: 35px;
    height: 35px;
    background: #ff5e5e; /* Reddish-pink jaisa image mein hai */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.mobile-nav{display: inline-block !important;}
/* Navigation List */
.mobile-nav ul {
    list-style: none;
    padding: 0;
    display: inline-block;
}

.mobile-nav ul li {
    border-bottom: 1px solid #f1f4f9;
}

.mobile-nav ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #0b0e28;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.mobile-nav ul li a i {
    font-size: 12px;
    color: #4f58ff;
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999999;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Media Query: Sirf phone par dikhane ke liye */
@media screen and (max-width: 992px) {
    .mobile-sidebar, .mobile-menu-overlay {
        
    }
    .burger-icon {
        display: block !important;
    }

    /* Right Sidebar wala icon hide ho jayega */
    .menu-icon {
        display: none !important;
    }
}

/* --- Hero Section Styling --- */


.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
}

.welcome-tag {
    color: var(--orange-accent);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-content h1 {
    font-size: 75px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span { color: var(--white); border-bottom: 4px solid var(--orange-accent); }

.hero-content p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 20px; }

.btn-blue, .btn-orange {
    padding: 18px 35px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-blue { background: var(--primary-blue); }
.btn-orange { background: var(--orange-accent); }

/* --- Decorative Shapes (Yellow Lines in screenshot) --- */
.shape-line-1 {
    position: absolute;
    width: 300px;
    height: 4px;
    background: var(--orange-accent);
    transform: rotate(-45deg);
    top: 20%;
    right: 10%;
    opacity: 0.6;
}

.shape-line-2 {
    position: absolute;
    width: 400px;
    height: 4px;
    background: var(--orange-accent);
    transform: rotate(-45deg);
    bottom: 10%;
    right: 5%;
    opacity: 0.6;
}

/* --- Hero Car Image --- */
.hero-image-container { position: relative; }
.main-car-img {
    width: 100%; /* Overflow effect as seen in screenshot */
    transform: perspective(1000px) rotateY(-10deg);
}

/* --- Slider Navigation --- */
.slider-nav {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arrow-btn {
    width: 55px;
    height: 55px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.arrow-btn.active {
    background: white;
    color: var(--primary-blue);
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .top-header, nav { display: none; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 50px; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-actions { justify-content: center; }
    .main-car-img { width: 100%; margin: 40px 0 0; }
    .hero-section { height: auto; padding: 80px 0; }
}









:root {
    --primary-blue: #4f58ff;
    --navy-dark: #07091b;
    --orange-grad: linear-gradient(90deg, #ff8c31, #ffac31);
}

.footer-section {
    position: relative;
     /* Space for newsletter overlap */
}

/* Newsletter Bar */
.newsletter-wrapper {
    background: var(--orange-grad);
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    transform: translateY(50%); /* Half inside footer, half outside */
}

.newsletter-content h3 {
    color: #fff;
    font-size: 24px;
    max-width: 450px;
    margin: 0;
}

.newsletter-form .input-group {
    background: #fff;
    padding: 8px 8px 8px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    width: 450px;
}

.newsletter-form input {
    border: none;
    outline: none;
    flex: 1;
    padding-left: 15px;
}

.newsletter-form button {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}

/* Main Footer */
.main-footer {
    background-color: var(--navy-dark);
    padding: 30px 0 30px;
    color: #adb2d1;
        
    background-size: cover;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.85), 
        rgba(0, 0, 0, 0.85)
    ), 
    url('/static/images/footer.png');
    background-repeat: no-repeat;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--orange-grad);
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #fff; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: #fff; padding-left: 5px; }

/* Contact Icons */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8c31;
}

.contact-item span { color: #fff; font-weight: 600; }

/* Bottom Area */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom span { color: #ff8c31; }

.social-links { display: flex; gap: 10px; margin-bottom:5px; }
.social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover { background: var(--primary-blue); color: #fff; }

/* Responsive */

@media (max-width: 767px) {
.footer-col ul li {
    margin-bottom: 12px;
    width: 49%;
    display: inline-block;
}
.footer-grid :nth-child(3) ul li{width: 100%;}
}

@media (max-width: 991px) {
    .newsletter-wrapper { flex-direction: column; text-align: center; gap: 30px; padding: 30px; }
    .newsletter-form .input-group { width: 100%; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}








       :root {
    --primary-blue: #4f58ff;
    --navy-dark: #0b0e28;
    --orange-main: #ff9d2d;
    --bg-light: #f8faff;
}

/* Inner Hero Section */


.inner-hero h1 { font-size: 42px; margin-bottom: 10px; font-weight: 800; }
.breadcrumb span { color: var(--orange-main); margin: 0 5px; }
.breadcrumb a { color: #fff; text-decoration: none; }

/* Grid Layout */
.booking-details-area { padding: 80px 0; background: var(--bg-light); }

.booking-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr; /* Left content wide, right form narrow */
    gap: 40px;
}

/* Left Content */
.details-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.main-feat-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 25px;
}

.details-card h2 { color: var(--navy-dark); margin-bottom: 20px; font-size: 28px; }
.details-card p { color: #757999; line-height: 1.8; margin-bottom: 25px; }

.service-features { list-style: none; padding: 0; }
.service-features li { margin-bottom: 15px; color: var(--navy-dark); font-weight: 600; }
.service-features i { color: var(--primary-blue); margin-right: 10px; }

/* Right Form Styling */
.sticky-form {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    position: sticky;
    top: 100px; /* Desktop par scroll ke sath move karega */
}

.form-header {
    background: var(--orange-main); /* Jaisa orange background image mein hai */
    padding: 25px;
    color: #fff;
    text-align: center;
}

.sidebar-booking-form { padding: 30px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; color: var(--navy-dark); font-size: 14px; }
.form-group label i { color: var(--primary-blue); margin-right: 5px; }

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e5ee;
    border-radius: 10px;
    outline: none;
    background: #fcfdfe;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.trip-type { margin-bottom: 25px; display: flex; gap: 20px; }
.trip-type label { font-weight: 600; cursor: pointer; color: var(--navy-dark); }

.submit-booking-btn {
    width: 100%;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.submit-booking-btn:hover { background: var(--navy-dark); }

/* Mobile Responsive Logic */
@media (max-width: 991px) {
    .booking-grid {
        grid-template-columns: 1fr; /* Stack layout */
    }

    /* Mobile par Form upar aayega */
    .booking-form-right {
        order: -1; 
        margin-bottom: 40px;
    }
    
    .inner-hero h1 { font-size: 30px; }
}



:root {
    --primary-blue: #4f58ff;
    --navy-blue: #0b0e28;
    --light-bg: #f8faff;
}

.destination-section {
    padding: 100px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
.section-title { margin-bottom: 60px; }
.sub-badge {
    background: var(--primary-blue);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.section-title h2 { font-size: 42px; color: var(--navy-blue); font-weight: 800; }
.section-title h2 span { color: var(--primary-blue); }

/* Grid Layout */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 25px;
}

/* Card Styling */
.dest-card {
    background: #fff;
    padding: 22px 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(79, 88, 255, 0.08); /* Soft blue shadow */
    border: 1px solid #f1f4f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Background Circle Effect seen in screenshot */
.dest-card::after {
    content: '';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(79, 88, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.dest-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary-blue);
}

.route-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    transition: 0.3s;
}

.route-text i {
    font-size: 14px;
    color: var(--primary-blue);
}

.arrow-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 2;
    transition: 0.3s;
}

/* Hover States */
.dest-card:hover .route-text, 
.dest-card:hover .route-text i { color: #fff; }
.dest-card:hover .arrow-icon { background: #fff; color: var(--primary-blue); }

/* Responsive Design */
@media (max-width: 991px) {
    .destination-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title h2 { font-size: 32px; }
}

@media (max-width: 600px) {
    .destination-grid { grid-template-columns: 1fr; }
    .dest-card { padding: 18px 20px; }
    .route-text { font-size: 16px; }
}





:root {
    --primary-blue: #4f58ff;
    --text-dark: #333;
    --bg-light: #f4f7fa;
}

.booking-selection-page { padding: 60px 0; background: var(--bg-light); }

/* Main Grid Layout */
.selection-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Left side double the width of right */
    gap: 1%;
    align-items: start;
}

/* Left Section Styles */
.selection-title { font-size: 24px; color: var(--text-dark); margin-bottom: 5px; }
.selection-desc { font-size: 14px; color: #777; margin-bottom: 30px; }

.vehicle-list { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1%; }

.v-pricing-card {
    background: #9E9E9E;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eef1f6;
}

.v-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: #e6fffa; color: #319795;
    padding: 4px 10px; border-radius: 4px; font-weight: 700;
}
.v-stats{    margin-top: 10px;}
.v-img { width: 100%; margin: 15px 0; border-radius: 8px; }
.v-stats p { 
    display: flex; justify-content: space-between; 
    font-size: 13px; margin-bottom: 8px; color: #000;
    border-bottom: 1px dashed #eee; padding-bottom: 5px;font-weight: 500;
}
.v-stats span { color: #333; font-weight: 600; }

.v-footer .cash { color: #2c3e50; font-weight: 700; margin-top: 15px; }
.v-footer .card { color: #38a169; font-weight: 700; margin-bottom: 15px; }

.select-v-btn {
    width: 100%; background: #ff9d2d; color: #fff; border: none;
    padding: 10px; border-radius: 6px; font-weight: 600; cursor: pointer;
}

/* Right Section Package */
.pkg-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.pkg-top { padding: 30px 20px; }
.pkg-top h4 { color: #1a202c; font-size: 20px; margin: 10px 0 5px; }
.pkg-top p { color: var(--primary-blue); font-size: 13px; font-weight: 600; }

.pkg-body {
    background: var(--primary-blue); /* Blue background from image */
    padding: 40px 25px 30px;
    color: #fff;
    position: relative;
}

.pkg-icon-circle {
    position: absolute;
    top: -25px; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 50px;
    background: #fff; color: var(--primary-blue);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pkg-body ul { list-style: none; padding: 0; margin-bottom: 25px; text-align: left; }
.pkg-body ul li { 
    font-size: 14px; margin-bottom: 12px; 
    display: flex; justify-content: space-between;
}

.choose-plan-btn {
    width: 100%; background: #ff9d2d; color: #fff; border: none;
    padding: 15px; border-radius: 12px; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* Responsive Mobile Logic */
@media (max-width: 991px) {
    .selection-grid { grid-template-columns: 1fr;; }
    .vehicle-list { grid-template-columns: 1fr 1fr;; }
    .right-packages { order: -1; margin-bottom: 40px; } /* Mobile par Package upar dikhega */
}

/* --- Booking Actions / Total Section --- */
        .booking-actions-card .summary-body {
            padding-top: 0;
        }

        .total-payable-final {
            padding: 1rem 0;
            margin-bottom: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--border-color);
        }
        
        .total-payable-final .detail-label {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-color);
        }

        .total-payable-final .detail-value {
            font-size: 1.5rem;
            color: var(--secondary-color);
            font-weight: 800;
        }
        #map{ height: 200px; width: 100%; margin-top: 20px;}

        .summary-card {
            background: var(--bg-light);
            border-radius: 25px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            margin-top: 1.5rem; /* Reduced gap */
            overflow: hidden;
            border: 1px solid var(--border-color);
        }
        
        .summary-header {
            background-color: var(--primary-blue);
            color: var(--card-bg);
            padding: 1rem 1.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .summary-body {
            padding: 1.5rem;
        }

        .detail-list {
            display: flex;
            flex-direction: column;
            gap: 0.6rem; /* Slightly tighter spacing for pricing breakdown */
            font-size: 0.9375rem;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
        }
        
        .detail-label {
            color: var(--light-text);
            font-weight: 500;
        }
        
        .detail-value {
            font-weight: 600;
            color: var(--text-color);
            text-align: right;
        }

        .detail-value.extra-charge {
            color: #ef4444; /* Red color for extra charge */
        }

        


         /* Popup background overlay */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

/* Popup box */
.popup-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 400px;
  width: 90%;
  animation: slideDown 0.4s ease;
}

.popup-content h2 {
  color: #e74c3c;
  margin-bottom: 10px;
  font-size: 24px;
}

.popup-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.home-btn {
  background: #2596be;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.home-btn:hover {
  background: #0056b3;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; } 
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; } 
  to { transform: translateY(0); opacity: 1; }
}




    /* Container styling to center and style the form */
    .modify-reservation-container {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 500px;
        margin: 40px auto;
        padding: 30px;
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .modify-reservation-container h2 {
        margin-top: 0;
        color: #333;
        font-size: 24px;
        margin-bottom: 20px;
        border-bottom: 2px solid #28a745;
        padding-bottom: 10px;
    }

    .modify-reservation-container p {
        color: #666;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    /* Form group styling */
    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        color: #444;
        margin-bottom: 8px;
    }

    .form-group input[type="text"] {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box; /* Important for padding */
        font-size: 16px;
        transition: border-color 0.3s;
    }

    .form-group input[type="text"]:focus {
        border-color: #28a745;
        outline: none;
        box-shadow: 0 0 5px rgba(40, 167, 69, 0.2);
    }

    /* Error messages styling */
    .messages {
        list-style: none;
        padding: 0;
        margin-bottom: 15px;
    }

    .messages li {
        color: #dc3545;
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
        padding: 10px;
        border-radius: 4px;
        font-size: 14px;
    }

    /* Button styling */
    .btn-container {
        text-align: right;
        margin-top: 25px;
    }

    .btn-submit {
        background-color: #28a745;
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.1s;
        text-decoration: none;
        display: inline-block;
    }

    .btn-submit:hover {
        background-color: #218838;
    }

    .btn-submit:active {
        transform: translateY(1px);
    }


    :root {
        --primary-color: #28a745;
        --danger-color: #dc3545;
        --text-dark: #333;
        --text-light: #777;
        --bg-light: #f8f9fa;
    }

    .booking-container {
        font-family: 'Segoe UI', Arial, sans-serif;
        max-width: 1000px;
        margin: 30px auto;
        padding: 20px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .booking-header {
        margin-bottom: 25px;
        border-bottom: 2px solid var(--bg-light);
        padding-bottom: 15px;
    }

    .booking-header h2 {
        margin: 0;
        color: var(--text-dark);
    }

    .booking-header p {
        color: var(--text-light);
        font-size: 14px;
        margin-top: 5px;
    }

    /* Table Styling */
    .table-responsive {
        overflow-x: auto;
    }

    .booking-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
    }

    .booking-table th {
        background-color: var(--bg-light);
        padding: 15px;
        font-weight: 600;
        color: #555;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .booking-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
        vertical-align: middle;
    }

    .booking-info .title {
        display: block;
        font-weight: 600;
        color: var(--text-dark);
    }

    .booking-info .subtitle {
        font-size: 12px;
        color: var(--text-light);
    }

    /* Status Badges */
    .status {
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .status-confirmed {
        background-color: #d4edda;
        color: #155724;
    }

    .status-pending {
        background-color: #fff3cd;
        color: #856404;
    }

    /* Action Buttons */
    .actions {
        white-space: nowrap;
    }

    .btn-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border-radius: 6px;
        margin-right: 5px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .btn-icon.edit {
        background-color: #e7f3ff;
        color: #007bff;
    }

    .btn-icon.edit:hover {
        background-color: #007bff;
        color: #fff;
    }

    .btn-icon.delete {
        background-color: #ffeef0;
        color: var(--danger-color);
    }

    .btn-icon.delete:hover {
        background-color: var(--danger-color);
        color: #fff;
    }

    /* Hover effect on rows */
    .booking-table tr:hover {
        background-color: #fafafa;
    }
