: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;
}



.month{width:280px; float:left; margin:00px 0px; border:1px solid #000; position:absolute; margin-top:35px; background-color:#fff; margin-top:0px;  }
.month span{width:39.5px !important; text-align:center; float:left; color: #fff;margin-bottom: 0px !important;font-size: 12px !important; padding:5px 0px;background-color: cornflowerblue;outline: 1px solid #ffea7f;}
.month label{width:100% !important; text-align:center; float:left !important; color: #000; padding: 0px 5px; box-shadow:0px 0px 1px #000; height:30px !important;    margin-bottom: 0px !important;}
.month button{ text-align:center !important; margin:0px 0px 0px; width:25%; float:left; border:none; background-color:#fff;  }
.month h3{ text-align:center !important; width:50%; float:left; margin:0px !important;  }
#cat{position: absolute;z-index: 1000;top: 54px;display: none;}
.month span.date{ border: 2px solid;}
i b{color: red;}
.pac-item span{font-weight:700;
    /*color:#0d7fa7;*/
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}
/* fixed width */
.pac-container {
  width: 500px !important;
  min-width: 300px; /* optional */
  box-sizing: border-box;

}

/* --- 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; }
.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: #000;
    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: #000;
    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-section {
    background: linear-gradient(rgba(11, 14, 40, 0.35), rgba(11, 14, 40, 0.35)), 
                url('/static/images/photo-1492144534655-ae79c964c9d7.jpg') center/cover;
    height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.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: #4f58ff;
    --navy: #0b0e28;
    --text: #000;
    --bg-light: #f8faff;
}

.faq-area {
    padding: 20px 0;
    background: #fff;
}

.faq-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

/* Left Side Styling */
.faq-left { flex: 0 0 45%; }

.faq-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.faq-left h2 span { color: var(--primary); }
.faq-left p { color: var(--text); line-height: 1.7; margin-bottom: 30px; }

.faq-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Accordion Right Side */
.faq-right { flex: 0 0 50%; }
ul.bread {
    margin-bottom: 10px;
}
ul.bread li {
    display: inline-block;}
    ul.bread li a{text-decoration: none;}
.accordion-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(79, 88, 255, 0.05); /* Soft blue shadow */
    overflow: hidden;
    border: 1px solid #f1f4f9;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.accordion-header .icon {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.accordion-header h3 {
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
    flex: 1;
    margin: 0;
}

.accordion-header i {
    color: var(--primary);
    font-size: 14px;
}

.accordion-body {
    padding: 0 25px 25px 75px; /* Aligned with text, not icon */
    display: none;
    border-top: 1px dashed #eee; /* Dotted line as per screenshot */
    padding-top: 20px;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active {
    box-shadow: 0 10px 30px rgba(79, 88, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .faq-wrapper { flex-direction: column; }
    .faq-left, .faq-right { flex: 0 0 100%; width: 100%; }
    .faq-img { margin-bottom: 10px; }
}

@media (max-width: 576px) {
    .faq-left h2 { font-size: 30px; }
    .accordion-header h3 { font-size: 16px; }
}






:root {
    --primary: #4f58ff;
    --navy: #0b0e28;
    --orange: #ff9d2d;
    --bg-soft: #f4f7ff;
}

.testimonial-area {
    padding: 40px 0;
    background-color: var(--bg-soft); /* Light blue background */
    background-image: radial-gradient(circle at top right, rgba(79, 88, 255, 0.05), transparent);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards in desktop view */
    gap: 20px;
    margin-top: 50px;
}

.testi-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(79, 88, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.testi-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars i {
    color: var(--orange); /* Orange stars */
    font-size: 14px;
}

.quote-icon i {
    color: var(--primary); /* Blue quote icon */
    font-size: 40px;
    opacity: 0.6;
}

.testi-text {
    font-size: 15px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}

/* User Profile Section */
.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f4f9;
    padding-top: 20px;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 16px;
    color: var(--navy);
    margin: 0;
    font-weight: 700;
}

.user-info span {
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.slider-dots span.active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial-area { padding: 60px 0; }
}










:root {
    --primary-blue: #4f58ff;
    --navy-blue: #0b0e28;
    --text-gray: #000;
}

.blog-section {
    padding: 40px 0;
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards layout */
    gap: 30px;
    margin-top: 50px;
}

/* Card Styling */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f4f9;
}
.blog-card a{text-decoration: none;}
.blog-card:hover {
    transform: translateY(-10px);
}

/* Image & Date Badge */
.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Content Styling */
.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 500;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-title {
    font-size: 20px;
    color: var(--navy-blue);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--primary-blue);
}

.blog-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Button Styling */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: var(--navy-blue);
}

/* Responsive Logic */
@media (max-width: 991px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-section { padding: 20px 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;
}
.main-footer a {
    text-decoration: none;
}
.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: #dc6a0f;
    --bg-light: #f8faff;
}

/* Inner Hero Section */
.inner-hero {
    
    background-size: cover;
    background-position: center;
    padding: 0px 0;
    text-align: center;
    color: #fff;
}
.toggleform{display: grid !important;}
.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: 20px 0; background: var(--bg-light); }

.booking-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr; /* Left content wide, right form narrow */
    gap: 20px;
}
.booking-grid > :first-child {
    grid-column: 1 / -1;
    order: -2;
}

.booking-grid > :first-child h1{ font-size: 30px;    line-height: 1.2;
    
}
/* Left Content */
.details-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.details-card a{color: #2196F3;}
.details-card a:hover{color: #1010ff;}
.details-card ul{list-style-position: inside;}
.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: #000; line-height: 1.8; margin-bottom: 25px; }
.details-card li { color: #000;  }
.details-card ol { color: #000;  }

.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: #f5f5f5;
    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 */
    border: 3px solid #ff9d2d;
}
#showchild{color: #fff;}
#showpet{color: #fff;}
.form-header {
    background: #f5f5f5; 
    padding: 10px 8px 0px 8px;
    color: #fff;
    text-align: center;
    
}
.form-header h3{color: #000;}
.form-header p{color: #000;}
.form-header p.green{color: green; font-weight: 600;}
.sidebar-booking-form { padding: 10px; }

.form-group { margin-bottom: 20px;  position: relative;}
.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 #fff;
    border-radius: 10px;
    outline: none;
    background: #fcfdfe;
    font-size: 14px;
    font-weight: 500;
}

.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: 20px;
    }
    
    .inner-hero h1 { font-size: 22px; }
    .booking-grid{gap:0px}
}



:root {
    --primary-blue: #4f58ff;
    --navy-blue: #0b0e28;
    --light-bg: #f8faff;
}

.destination-section {
    padding: 20px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
.section-title { margin-bottom: 10px; }
.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; }
    .details-card{padding: 10px;}
    .details-card h1{font-size: 22px; line-height: 1.2;}
    .details-card h1{font-size: 20px; line-height: 1.2;}
    .details-card h1{font-size: 18px; line-height: 1.2;}
    .booking-grid > :first-child h1{ font-size: 22px;    line-height: 1.2;}
    .inner-hero img{ height: auto !important;}
}



.car-type-section {
    padding: 0px 0 20px 0;
    background-color: #f8faff; /* Light background from screenshot */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.badge-pill {
    background: #fff;
    color: var(--primary-blue);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 30px;
    color: var(--navy-blue);
    font-weight: 600;
}

.section-header h2 span {
    color: var(--primary-blue);
}

.btn-all-types {
    background: var(--primary-blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

/* Grid Logic - No Absolute Positions */
.car-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns for desktop */
    gap: 25px;
}

.car-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f4f9;
    position: relative;
    cursor: pointer;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 88, 255, 0.1);
}

.car-img {
   
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.car-img img {
    max-width: 100%;
    transition: 0.3s;
}

.car-card h3 {
    font-size: 18px;
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.car-card p {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
}

/* Hover Accent Line */
.hover-line {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #d1d5db;
    transition: 0.3s;
}

.car-card:hover .hover-line {
    background: var(--primary-blue);
    width: 50px;
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1100px) {
    .car-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns for tablets */
        gap: 10px;
    }
    .inner-hero{
        padding: 0px 0px;
    }
}

@media (max-width: 768px) {
    .car-grid {
        grid-template-columns: repeat(3, 1fr); /* 2 columns for mobile */
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .section-header h2 { font-size: 32px; }
}

@media (max-width: 480px) {
    
}




.loader {
  width: 28px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #E3AAD6;
  transform-origin: top;
  display: grid;
  animation: l3-0 1s infinite linear;
}
.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  background:#F4DD51;
  border-radius: 50%;
  transform-origin: top;
  animation: inherit;
  animation-name: l3-1;
}
.loader::after {
  background: #F10C49;
  --s:180deg;
}
@keyframes l3-0 {
  0%,20% {transform: rotate(0)}
  100%   {transform: rotate(360deg)}
}
@keyframes l3-1 {
  50% {transform: rotate(var(--s,90deg))}
  100% {transform: rotate(0)}
}

.loader-wrapper{position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000ed;
    z-index: 10000;
    text-align: center;
    padding: 20% 48%; display: none;}





