/* 1. GLOBAL STYLES & LIGHT MODE VARIABLES
-------------------------------------------------- */
/* =========================================
   FIXED: 1. GLOBAL OVERFLOW (Add this at the very top)
   ========================================= */
html, body {
    overflow-x: hidden; /* Ye horizontal scroll aur "pull" issue ko rokega */
    width: 100%;
    position: relative;
}
:root {
    /* Main Colors */
    --yale-blue: #1B4079;
    --air-force-blue: #0d6e8b;
    --mindaro-accent: #d2fa5c;
    --text-light: #FFFFFF;
    
    /* Theme Variables (Light Mode) - UPDATED */
    
    /* 1. Background ko thoda "Cool Grey" kiya taaki aankhon ko thandak mile */
    --bg-main: #F0F2F5;  
    
    /* 2. Content/Cards ko White rakha taaki wo background se alag dikhein */
    --bg-content: #FFFFFF; 
    
    /* 3. Header/Footer ko bhi White rakha clean look ke liye */
    --bg-header-footer: #FFFFFF;
    
    /* 4. Text ko 'Jet Black' se hata kar 'Soft Black' kiya (kam contrast) */
    --text-primary: #2C3E50; 
    --text-secondary: #606060;
    
    /* Borders ko thoda visible kiya */
    --border-color: #dce0e5;
    
    --logo-color: var(--yale-blue);
    --heading-color: var(--yale-blue);
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    background-color: var(--bg-main);
    color: var(--text-primary);
    transition: background-color 0.3s, color 0.3s;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

main { 
    padding-top: 80px;
   
}

h1, h2, h3, h4 { 
    color: var(--heading-color); 
}

p { 
    color: var(--text-secondary); 
}


/* 2. DARK MODE THEME
-------------------------------------------------- */
body.dark-mode {
    --bg-main: #0A192F;
    --bg-content: #1a2a44;
    --bg-header-footer: #0A192F;
    --text-primary: #E5E5E5;
    --text-secondary: #bbbbbb;
    --border-color: #333;
    --logo-color: var(--mindaro-accent);
    --heading-color: var(--mindaro-accent);
}


/* 3. HEADER & NAVIGATION (TRANSPARENT UPDATE)
-------------------------------------------------- */
.main-header {
    background-color: transparent; /* Default Transparent */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Shuruaat mein halki border */
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Scroll karne par yeh class JS se add hogi */
.main-header.scrolled {
    background-color: var(--bg-header-footer);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
body.dark-mode .main-header.scrolled {
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* New Flexbox Layout */
.header-container { 
    display: flex; 
    justify-content: space-between; /* Left aur Right ko alag karega */
    align-items: center; 
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px; /* Logo aur Menu ke beech space */
}

/* Logo (Light/Dark Mode toggle) */
/* Transparent header par hamesha 'Light' logo dikhega */
.main-header.transparent-header .logo-dark { display: none !important; }
.main-header.transparent-header .logo-light { display: block !important; }

/* Scroll karne par normal logic laagoo hoga */
.main-header.scrolled .logo-dark { display: none; }
.main-header.scrolled .logo-light { display: block; }
body.dark-mode .main-header.scrolled .logo-light { display: none; }
body.dark-mode .main-header.scrolled .logo-dark { display: block; }


/* Main Navigation */
.main-nav {
    /* Center-align (flex-grow) yahaan se hata diya gaya hai */
}
.main-nav ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: inline-flex; 
    gap: 30px; 
}
.main-nav a { 
    text-decoration: none; 
    font-weight: bold; 
    transition: color 0.3s ease;
}
.main-nav a:hover {
    color: var(--mindaro-accent) !important; /* Green hover */
}

/* Nav Links Color Logic */
.main-header.transparent-header .main-nav a {
    color: #ffffff; /* Transparent par White text */
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.main-header.scrolled .main-nav a {
    color: var(--air-force-blue); /* Scrolled par Normal color */
    text-shadow: none;
}
body.dark-mode .main-header.scrolled .main-nav a {
     color: var(--air-force-blue);
}


/* Burger Menu Color Logic */
.main-header.transparent-header .burger-menu {
    color: #ffffff;
}
.main-header.scrolled .burger-menu {
    color: var(--text-primary);
}


/* Pipe Separator */
.header-pipe {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0 -5px 0 5px; /* Spacing adjust karein */
    transition: color 0.3s ease;
}
.main-header.transparent-header .header-pipe {
    color: rgba(255, 255, 255, 0.3); /* Transparent par */
}
.main-header.scrolled .header-pipe {
    color: var(--border-color); /* Scrolled par */
}

/* 4. THEME TOGGLE (NEW SLIDER) - FIXED
-------------------------------------------------- */
.theme-slider-toggle {
    position: relative;
    width: 54px;          /* Fixed width */
    height: 26px;         /* Fixed height */
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 50px;  /* Pill shape */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;       /* Padding for icons */
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Header Scroll styles */
.main-header.transparent-header .theme-slider-toggle {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}
.main-header.scrolled .theme-slider-toggle {
    background-color: var(--bg-main);
    border-color: var(--border-color);
}

/* Icons (Background Layer) */
.theme-slider-toggle i {
    font-size: 0.85rem;
    z-index: 1;           /* Sit BEHIND the ball */
    transition: opacity 0.3s ease;
}
.theme-slider-toggle .fa-moon { color: #f1c40f; } /* Yellow Moon */
.theme-slider-toggle .fa-sun { color: #f39c12; }  /* Orange Sun */

/* The Ball (Top Layer) */
.slider-ball {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;          /* Slightly smaller than container height */
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 2;           /* Sit ON TOP of icons */
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* --- LOGIC: LIGHT MODE (Ball Left) --- */
/* Hide Sun (under ball), Show Moon (option to switch) */
body:not(.dark-mode) .slider-ball {
    transform: translateX(0);
}
body:not(.dark-mode) .theme-slider-toggle .fa-sun {
    opacity: 0; 
}
body:not(.dark-mode) .theme-slider-toggle .fa-moon {
    opacity: 1;
}

/* --- LOGIC: DARK MODE (Ball Right) --- */
/* Hide Moon (under ball), Show Sun (option to switch) */
body.dark-mode .slider-ball {
    transform: translateX(28px); /* Moves ball to the right */
}
body.dark-mode .theme-slider-toggle .fa-sun {
    opacity: 1;
}
body.dark-mode .theme-slider-toggle .fa-moon {
    opacity: 0;
}
/* 4. THEME TOGGLE ICON
-------------------------------------------------- */
.theme-toggle {
    background: none; 
    border: none; 
    font-size: 1.2rem; 
    cursor: pointer; 
    position: relative; 
    width: 24px; 
    height: 24px;
}
.theme-toggle .fa-sun { color: #f39c12; }
.theme-toggle .fa-moon { color: #f1c40f; }
.theme-toggle i { 
    position: absolute; 
    top: 0; 
    left: 0; 
    transition: transform 0.3s, opacity 0.3s; 
}
.dark-mode .theme-toggle .fa-sun { transform: scale(0); opacity: 0; }
.dark-mode .theme-toggle .fa-moon { transform: scale(1); opacity: 1; }
.dark-mode .theme-toggle .fa-moon:hover { text-shadow: 0 0 10px var(--mindaro-accent); }
body:not(.dark-mode) .theme-toggle .fa-sun { transform: scale(1); opacity: 1; }
body:not(.dark-mode) .theme-toggle .fa-sun:hover { text-shadow: 0 0 10px var(--yale-blue); }
body:not(.dark-mode) .theme-toggle .fa-moon { transform: scale(0); opacity: 0; }


/* 5. FOOTER
-------------------------------------------------- */
.main-footer {
    padding: 20px 0;
    background-color: var(--bg-header-footer);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    /* This creates the horizontal layout */
    display: flex;
    justify-content: space-between; /* Pushes items to the ends and center */
    align-items: center;          /* Vertically aligns items in the middle */
    
    /* To keep it centered and with some padding on the sides */
    max-width: 1200px; /* Or your site's max-width */
    margin: 0 auto;
    padding: 0 20px;
}

.footer-socials {
    display: flex;
    gap: 15px; /* Space between social icons */
}

.footer-socials a {
    color: var(--air-force-blue);
    font-size: 1.5rem;
    text-decoration: none;
}

.footer-center {
    text-align: center;
}

/* 6. LANDING PAGE SECTIONS
-------------------------------------------------- */
.hero { 
    position: relative; 
    height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    color: var(--text-light); 
    
    /* --- YAHAN CHANGE KAREIN --- */
    
    /* 1. Nayi Image ka naam */
    background-image: url('../images/hero-new.webp'); 
    
    background-size: cover; 
    
    /* 2. Position Change: 'center top' karein taaki uska sar na kate,
       aur woh thoda neeche dikhe. */
    background-position: center top; 
    
    margin-top: -80px; 
}
.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    
    /* Gradient ko thoda dark kiya taaki white text chamke */
    background: linear-gradient(
        180deg,  
        rgba(10, 25, 47, 0.7) 0%,   /* Upar Dark Blue */
        rgba(10, 25, 47, 0.5) 50%,  /* Beech mein thoda transparent (Photo dikhe) */
        var(--bg-main) 100%         /* Neeche page ke saath blend ho */
    );
}

/* DARK MODE SPECIFIC OVERLAY (HALKA KIYA GAYA) */
body.dark-mode .hero-overlay {
    background: linear-gradient(
        180deg,  
        rgba(10, 25, 47, 0.4) 60%, /* 0.7 se 0.4 kiya (Kaafi Halka) */
        var(--bg-main) 100%        
    );
}
.hero-content { 
    position: relative; 
    z-index: 1; 
}
.hero h1, .hero p { color: var(--text-light); }
.cta-button { 
    display: inline-block; 
    padding: 15px 35px; 
    background-color: var(--air-force-blue); 
    color: var(--text-light); 
    text-decoration: none; 
    font-size: 1.2rem; 
    font-weight: bold; 
    border-radius: 8px; 
    border: 2px solid var(--air-force-blue);
    transition: all 0.3s ease; 
}
.cta-button:hover { 
    background-color: transparent;
    color: var(--air-force-blue);
}
body.dark-mode .cta-button:hover {
    color: var(--mindaro-accent);
    border-color: var(--mindaro-accent);
}
.how-it-works, .features { background-color: transparent; }
body.dark-mode .how-it-works, body.dark-mode .features { background-color: transparent; }
.steps-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.step { max-width: 300px; text-align: center; }
.step-icon { width: 60px; height: 60px; margin: 0 auto 20px; background-color: var(--yale-blue); color: var(--text-light); font-size: 1.8rem; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 3px solid var(--air-force-blue); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background-color: var(--bg-content); border: 1px solid var(--border-color); padding: 30px; border-radius: 8px; text-align: center; }
/* === FINAL CTA SECTION (ATTRACTIVE) === */
.final-cta {
    text-align: center;
    position: relative; /* Overlay ke liye zaroori */
    padding: 100px 0; /* Zyada padding */
    background-image: url('../images/cta-background.webp'); /* Apni image ka path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Isse Parallax Effect aayega */
    color: #ffffff; /* Text ko white karega */
}

/* Image ke upar dark overlay daalne ke liye */
.final-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Aapke dark mode background se milta-julta overlay */
    background-color: rgba(10, 25, 47, 0.7); 
    z-index: 1;
}

/* Content (text aur button) ko overlay ke upar laane ke liye */
.final-cta .container {
    position: relative;
    z-index: 2;
}

/* Heading aur Paragraph ko white karne ke liye */
.final-cta h2,
.final-cta p {
    color: #ffffff;
}

/* Button ko aur attractive banane ke liye */
.final-cta .cta-button {
    background-color: var(--mindaro-accent); /* Aapka green/yellow accent color */
    color: #0A192F; /* Dark text on bright button */
    border-color: var(--mindaro-accent);
    font-size: 1.2rem;
    padding: 15px 40px;
    box-shadow: 0 5px 20px rgba(210, 250, 92, 0.3); /* Button glow effect */
}

.final-cta .cta-button:hover {
    background-color: #ffffff; /* Hover par white */
    color: var(--yale-blue);
    border-color: #ffffff;
    transform: translateY(-3px); /* Button upar uthega */
}



/* 7. PUBLIC ITINERARIES PAGE (GALLERY)
-------------------------------------------------- */
.itineraries-page-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}
.itineraries-page-container h1 { font-size: 2.8rem; text-align: center; margin-bottom: 10px; }
.itineraries-page-container > p { text-align: center; font-size: 1.1rem; margin-bottom: 40px; }
.controls-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}
#search-input, #sort-select {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--air-force-blue);
    background-color: var(--bg-content);
    color: var(--text-primary);
    font-size: 1rem;
}
#search-input { 
    flex-grow: 1; 
}
.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.itinerary-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--bg-content);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.itinerary-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
body.dark-mode .itinerary-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.card-image-container { width: 100%; height: 200px; overflow: hidden; }
.card-image-container img { width: 100%; height: 100%; object-fit: cover; }
.card-content { padding: 20px; }
.card-title { font-size: 1.3rem; margin-top: 0; }
.card-actions { display: flex; border-top: 1px solid var(--border-color); }
.card-actions .action-btn { flex: 1; text-align: center; padding: 12px; text-decoration: none; font-weight: bold; color: var(--air-force-blue); background: none; border: none; border-radius: 0; cursor: pointer; font-size: 1rem; transition: background-color 0.3s; }
.card-actions .action-btn.view-btn { border-right: 1px solid var(--border-color); }
.card-actions .action-btn:hover { background-color: var(--bg-main); }
.load-more-container { text-align: center; margin-top: 40px; }
#load-more-btn { padding: 12px 30px; font-size: 1rem; font-weight: bold; cursor: pointer; background-color: var(--air-force-blue); color: #fff; border: none; border-radius: 6px; display: inline-flex; align-items: center; gap: 10px; }


/* 8. ITINERARY VIEW PAGE
-------------------------------------------------- */
.itinerary-page-container {
    max-width: 900px;
}
.trip-summary-card, .destination-overview-card, .itinerary-display-card {
    background-color: var(--bg-content);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px 40px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}
.summary-item strong, .summary-interests strong { color: var(--text-secondary); }
.summary-item span { color: var(--text-primary); }
.itinerary-day { font-size: 1.6rem; border-bottom: 2px solid var(--air-force-blue); padding-bottom: 8px; margin-top: 25px; }
.map-link { color: var(--air-force-blue); display: inline-block; margin: 5px 0 15px 5px; font-size: 0.9rem; text-decoration: none; font-weight: bold; }
.map-link:hover { text-decoration: underline; }
.map-link i { margin-right: 5px; }
.itinerary-period { font-size: 0.9rem; text-transform: uppercase; font-weight: 600; margin-top: 20px; color: var(--text-secondary); }
.itinerary-display-card ul, .itinerary-page-container ul { list-style: none; padding-left: 5px; margin: 0; }
.itinerary-activity { padding: 10px 5px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border-color); }
.itinerary-activity:last-child { border-bottom: none; }
.itinerary-activity i { color: var(--air-force-blue); }
/* Container for the buttons */
.itinerary-actions { 
    display: flex; 
    justify-content: flex-start; 
    gap: 15px; 
    margin-top: 30px; 
}

/* Base style for all action buttons */
.action-btn { 
    flex-grow: 1;
    padding: 12px 25px; 
    border-radius: 8px; 
    border: 2px solid var(--air-force-blue); 
    cursor: pointer; 
    font-weight: bold; 
    font-size: 1rem;
    transition: all 0.3s ease; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 8px; 
    text-decoration: none; /* <-- YEH LINE ADD KAREIN */
}

/* Secondary Button Style (Share with Friend) */
.action-btn:not(.book-btn) {
    background: transparent;
    color: var(--air-force-blue);
}
.action-btn:not(.book-btn):hover {
    background: var(--air-force-blue);
    color: #fff;
}

/* Primary Button Style (Book This Trip) */
.action-btn.book-btn { 
    background: var(--air-force-blue); 
    color: #fff; 
}
.action-btn.book-btn:hover {
    background: #3b6672; /* Darker shade */
    border-color: #3b6672;
}
body:not(.dark-mode) .action-btn:not(.book-btn):hover { background-color: var(--air-force-blue); color: #fff; }


/* 9. SHARE MODAL
-------------------------------------------------- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(10, 25, 47, 0.7);
    display: none; justify-content: center; align-items: center;
    z-index: 2000; opacity: 0; transition: opacity 0.3s ease; backdrop-filter: blur(5px);
}
.modal-content {
    position: relative; background-color: var(--bg-main); color: var(--text-primary);
    padding: 30px; border-radius: 12px; width: 90%; max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); transform: scale(0.9); transition: transform 0.3s ease;
    border-top: 5px solid var(--air-force-blue);
}
.close-modal-btn {
    position: absolute; top: 10px; right: 10px; background: var(--bg-content);
    border: 1px solid var(--border-color); width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    color: var(--text-secondary); cursor: pointer; transition: all 0.3s;
}
.close-modal-btn:hover { transform: rotate(90deg) scale(1.1); }
.modal-overlay.visible { display: flex; opacity: 1; }
.modal-overlay.visible .modal-content { transform: scale(1); }
#user-details-view form { margin-top: 20px; display: flex; flex-direction: column; }
#user-details-view label { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-weight: bold; }
#user-details-view input { width: 100%; padding: 12px; border: 1px solid var(--border-color); background-color: var(--bg-content); color: var(--text-primary); border-radius: 6px; box-sizing: border-box; margin-bottom: 15px; font-family: inherit; font-size: 1rem; }
.share-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.share-option-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 20px; font-size: 1rem; font-weight: bold; color: var(--text-primary); background-color: var(--bg-main); border: 1px solid var(--border-color); border-radius: 8px; cursor: pointer; transition: all 0.3s ease; }
.share-option-btn:hover { border-color: var(--air-force-blue); color: var(--air-force-blue); transform: translateY(-3px); }
.share-option-btn i { font-size: 2rem; color: var(--air-force-blue); }
.generate-button { width: 100%; padding: 12px; background-color: var(--air-force-blue); color: #FFFFFF; border: none; border-radius: 6px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: background-color 0.3s ease; }
.generate-button:hover { background-color: #5a9aaa; }



/* 10. MOBILE RESPONSIVENESS
-------------------------------------------------- */
@media (max-width: 768px) {
    /* Header Layout */
    .header-container {
        flex-direction: row;
        justify-content: space-between; /* Logo Left, Burger Right */
        align-items: center;
    }

    /* Desktop ki cheezen chupana */
    .main-nav,
    .desktop-only {
        display: none !important;
    }
    
    /* Mobile Menu Button dikhana */
    .mobile-only {
        display: block !important;
    }
    
    main {
        padding-top: 80px;
    }
}@media (max-width: 768px) {
    /* Header Layout */
    .header-container {
        flex-direction: row;
        justify-content: space-between; /* Logo Left, Burger Right */
        align-items: center;
    }

    /* Desktop ki cheezen chupana */
    .main-nav,
    .desktop-only {
        display: none !important;
    }
    
    /* Mobile Menu Button dikhana */
    .mobile-only {
        display: block !important;
    }
    
    main {
        padding-top: 80px;
    }
}

/* General container for the entire page */
.contact-page-wrapper {
    background-color: var(--bg-main); /* Assuming a light background for the whole page */
    color: var(--text-primary);
    font-family: Arial, sans-serif; /* Or your preferred font */
}

/* --- Contact Form Section --- */
.contact-form-section {
    background-color: var(--bg-content); /* White-ish background for form area */
    padding: 60px 0;
    text-align: center;
}

.contact-form-section h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-form-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.modern-contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.modern-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.modern-contact-form .form-group {
    flex: 1;
    text-align: left;
}

.modern-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--text-secondary); /* Lighter text for labels */
}

.modern-contact-form input[type="email"],
.modern-contact-form input[type="text"],
.modern-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color); /* Light border */
    border-radius: 5px;
    background-color: var(--bg-main); /* Slightly off-white input fields */
    color: var(--text-primary);
    font-size: 1rem;
    box-sizing: border-box;
}

.modern-contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
    margin-bottom: 20px;
}

.modern-contact-form input::placeholder,
.modern-contact-form textarea::placeholder {
    color: var(--text-secondary); /* Lighter placeholder text */
    opacity: 0.7;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: var(--air-force-blue);
    box-shadow: 0 0 5px rgba(77, 124, 138, 0.3);
}

.modern-contact-form .submit-button {
    background-color: var(--air-force-blue); /* Teal color */
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; /* Full width as in design */
    max-width: 300px; /* Adjust as needed */
    margin-top: 10px;
}

.modern-contact-form .submit-button:hover {
    background-color: #38a7bd; /* Slightly darker teal on hover */
}

.modern-contact-form .submit-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.modern-form-status {
    margin-top: 20px;
    font-size: 1.1rem;
    min-height: 25px; /* Prevent layout shift */
}

/* --- Contact Info Section --- */
.contact-info-section {
    background-color: #F0F2F5; /* Light grey background for the info section */
    background-color: var(--bg-secondary); /* Use your secondary background variable */
    padding: 60px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.info-card {
    background-color: transparent; /* No specific card background */
    padding: 20px;
}

.info-card .icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--air-force-blue); /* Teal circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.info-card .icon-circle i {
    font-size: 2.5rem;
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modern-contact-form .form-row {
        flex-direction: column;
        gap: 0; /* Remove gap for single column */
    }

    .modern-contact-form .form-group {
        margin-bottom: 20px; /* Add margin back for vertical stacking */
    }

    .modern-contact-form .submit-button {
        max-width: 100%; /* Full width on smaller screens */
    }

    .contact-info-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
    }
}
/* 11. BURGER MENU & MOBILE NAVIGATION
-------------------------------------------------- */

/* पहले, मोबाइल और डेस्कटॉप पर दिखने वाले एलिमेंट्स को कंट्रोल करें */
.mobile-only {
    display: none; /* डिफ़ॉल्ट रूप से छिपा हुआ */
}

/* बर्गर मेनू आइकन की स्टाइल */
.burger-menu {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
}

/* मोबाइल नेविगेशन पैनल जो साइड से आएगा */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%; /* स्क्रीन के दाईं ओर छिपा हुआ */
    width: 280px;
    height: 100%;
    background-color: var(--bg-content);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* जब मेनू खुलेगा, तो यह क्लास body में जुड़ेगी */
body.mobile-nav-open .mobile-nav-panel {
    right: 0; /* पैनल को स्क्रीन पर लाएं */
}

/* मेनू बंद करने का बटन */
.close-menu-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-secondary);
    cursor: pointer;
}

/* मोबाइल मेनू के लिंक्स */
.mobile-nav-panel ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.mobile-nav-panel li a {
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: bold;
    border-bottom: 1px solid var(--border-color);
}

/* मोबाइल मेनू के अंदर थीम टॉगल */
.mobile-theme-toggle-container {
    margin-top: auto; /* इसे नीचे धकेलें */
    padding: 20px 10px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}


/* RESPONSIVE MEDIA QUERY (यह सब कुछ कंट्रोल करेगा) */
@media (max-width: 768px) {
    /* डेस्कटॉप नेविगेशन और थीम टॉगल को छिपाएं */
    .main-nav,
    .desktop-only {
        display: none;
    }
    
    /* बर्गर मेनू आइकन दिखाएं */
    .mobile-only {
        display: block;
    }

    /* हेडर में आइटम्स को ठीक से अलाइन करें */
    .header-container {
        justify-content: space-between;
    }

    main {
        padding-top: 80px; /* हेडर की हाइट कम होने पर एडजस्ट करें */
    }
}
/* Sunishchit karein ki yeh CSS aapki file mein hai */
.overview-image-container {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
    border-radius: 8px; /* Sets rounded corners for the container */
    overflow: hidden;   /* This hides the sharp corners of the image inside */
}

.overview-image-container img {
    width: 100%;
    display: block;
    
    /* 1. Fixes the image size */
    height: 220px; /* You can change this value (e.g., 200px, 250px) */
    object-fit: cover; /* This prevents the image from stretching */
    
    /* 2. Ensures rounded corners on the image itself */
    border-radius: 8px;
}

/* [File: public/css/style.css] */

/* Style for the container holding auth buttons and theme toggle */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between items */
}

/* Style for Login/Register/Logout buttons in header */
.header-button {
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s, color 0.3s;
}

.login-button {
    border: 1px solid var(--air-force-blue);
    color: var(--air-force-blue);
}
.login-button:hover {
    background-color: var(--air-force-blue);
    color: white;
}

.register-button {
    background-color: var(--air-force-blue);
    color: white;
    border: 1px solid var(--air-force-blue);
}
 .register-button:hover {
     background-color: #3b6672; /* Darker shade */
     border-color: #3b6672;
 }

/* Style for logged-in user display */
#user-greeting {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-right: 10px; /* Space before logout button */
}
#logout-button-desktop {
     /* Uses .header-button styles */
     border: 1px solid #aaa;
     color: var(--text-secondary);
     cursor: pointer; /* Make it look clickable */
}
 #logout-button-desktop:hover {
     background-color: #eee;
     border-color: #999;
 }
 body.dark-mode #logout-button-desktop {
    border-color: #555;
    color: var(--text-secondary);
 }
 body.dark-mode #logout-button-desktop:hover {
    background-color: #333;
    border-color: #777;
 }

/* Hide mobile auth links initially */
 #user-status-mobile-account,
 #user-status-mobile-logout {
     display: none;
 }
 
 /* --- Mobile Nav Panel Icon Alignment --- */
#mobile-nav-panel ul a {
    display: flex;        /* Icons aur text ko ek line mein rakhein */
    align-items: center;  /* Vertically center karein */
    gap: 15px;            /* Icon aur text ke beech space */
}

#mobile-nav-panel ul a i {
    width: 25px;          /* Sabhi icons ko ek fixed width dein */
    text-align: center;   /* Icon ko uske space mein center karein */
    font-size: 1.1rem;    /* Icon ka size thoda adjust karein */
}

/* 12. STATIC CONTENT PAGES (About Us, FAQ, Privacy)
-------------------------------------------------- */
.static-page-container {
    padding: 60px 0;
    background-color: var(--bg-content);
    min-height: 70vh;
}

/* Dark mode mein alag se background nahi chahiye */
body.dark-mode .static-page-container {
    background-color: transparent;
}

.static-page-container h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 10px;
}

.static-page-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.static-page-content {
    max-width: 800px;
    margin: 0 auto;
}

.static-page-content h2 {
    font-size: 1.8rem;
    color: var(--air-force-blue);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.static-page-content p,
.static-page-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.static-page-content strong {
    color: var(--text-primary);
}

.static-page-content ul,
.static-page-content ol {
    padding-left: 25px;
}

.static-page-content .final-cta-text {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    color: var(--text-primary);
    margin-top: 40px;
}

/* 13. FAQ ACCORDION STYLES
-------------------------------------------------- */
.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    flex-grow: 1;
    margin-right: 15px;
}

.faq-question i {
    color: var(--air-force-blue);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p, 
.faq-answer ul {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    padding-bottom: 20px;
}
.faq-answer a {
    color: var(--air-force-blue);
    font-weight: bold;
}

/* 5. FOOTER (NEW ATTRACTIVE VERSION)
-------------------------------------------------- */
.main-footer {
    padding-top: 50px; /* Sirf upar padding */
    background-color: var(--bg-header-footer);
    border-top: 1px solid var(--border-color);
}

.footer-main-content {
    display: grid;
    /* 4 column layout */
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px; /* Columns ke beech me gap */
    padding-bottom: 40px;
}

/* --- Column 1: About --- */
.footer-about .footer-logo img {
    height: 35px; /* Footer ke liye chhota logo */
    width: auto;
    margin-bottom: 15px;
}

.footer-about-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* --- Columns 2 & 3: Links --- */
.footer-links-group h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-group li {
    margin-bottom: 10px;
}

.footer-links-group a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links-group a:hover {
    color: var(--air-force-blue);
    text-decoration: underline;
}

/* --- Column 4: Social --- */
.footer-social h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    color: var(--air-force-blue);
    font-size: 1.6rem;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
}

.footer-social-icons a:hover {
    transform: scale(1.1);
    color: var(--heading-color); /* Dark/light mode variable ka istemal */
}

/* --- Bottom Copyright Bar --- */
.footer-bottom-bar {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-main); /* Page background se match karega */
}

.footer-bottom-bar p {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Footer Responsive Adjustments --- */
@media (max-width: 992px) {
    .footer-main-content {
        /* Tablet par 2 column */
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        /* 'About' section dono column lega */
        grid-column: 1 / -1; 
    }
}

@media (max-width: 576px) {
    .footer-main-content {
        /* Mobile par 1 column */
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 16. ABOUT US (NEW UPGRADED LAYOUT)
-------------------------------------------------- */

/* --- 1. Hero Image Header --- */
.static-hero-header {
    position: relative;
    height: 40vh; /* 40% of the viewport height */
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    margin-top: -80px; /* Pulls it up behind the fixed header */
}

.static-hero-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 64, 121, 0.6); /* Dark blue tint */
}

.static-hero-header .hero-content {
    position: relative;
    z-index: 1;
}

.static-hero-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.static-hero-header p {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.9;
}

/* --- 2. Adjust Main Content Padding --- */
.static-page-container {
    /* Top padding pehle 60px tha, hero image ke baad zyada chahiye */
    padding-top: 80px; 
}

/* --- 3. New Icon Section --- */
.feature-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-icon-card {
    background-color: var(--bg-main);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.icon-circle-small {
    width: 60px;
    height: 60px;
    background-color: var(--air-force-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.icon-circle-small i {
    font-size: 1.8rem;
    color: white;
}

.feature-icon-card h3 {
    font-size: 1.25rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.feature-icon-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- Responsive for Hero --- */
@media (max-width: 768px) {
    .static-hero-header h1 {
        font-size: 2.5rem;
    }
    .static-hero-header p {
        font-size: 1.1rem;
    }
}
/* 15. CONTACT PAGE (NEW LAYOUT)
-------------------------------------------------- */
/* NOTE: Yeh section neeche / 19. HERO + BALANCED LEFT se replace ho gaya hai */
.contact-page-wrapper {
    background-color: var(--bg-content);
    padding: 60px 0;
}
body.dark-mode .contact-page-wrapper {
    background-color: transparent;
}

.contact-header-section {
    text-align: center;
    margin-bottom: 50px;
}
.contact-header-section h1 {
    font-size: 2.8rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}
.contact-header-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.contact-grid-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.modern-contact-form {
    max-width: 100%; 
}
.modern-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.modern-contact-form .form-group {
    flex: 1;
    text-align: left;
}
.modern-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 15px;
}
.modern-contact-form input[type="email"],
.modern-contact-form input[type="text"],
.modern-contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.modern-contact-form textarea {
    border-radius: 20px;
    resize: vertical;
    margin-bottom: 20px;
}
.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: var(--air-force-blue);
    box-shadow: 0 0 10px 2px rgba(77, 124, 138, 0.6);
}
.modern-contact-form .submit-button {
    background-color: var(--air-force-blue);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin-top: 10px;
}
.modern-contact-form .submit-button:hover {
    background-color: #3b6672;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(77, 124, 138, 0.7);
}
.modern-contact-form .submit-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
.modern-form-status {
    margin-top: 20px;
    font-size: 1.1rem;
    min-height: 25px;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-card {
    background-color: var(--bg-main);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}
.info-card .icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--air-force-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.info-card .icon-circle i {
    font-size: 2.2rem;
    color: white;
}
.info-card h3 {
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.info-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    line-height: 1.4;
}
.info-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}
.info-card a:hover {
    color: var(--air-force-blue);
}

@media (max-width: 992px) {
    .contact-grid-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}
@media (max-width: 768px) {
    .modern-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .modern-contact-form .form-group {
        margin-bottom: 20px;
    }
    .contact-header-section h1 {
        font-size: 2.5rem;
    }
}
/* 19. CONTACT PAGE (HERO + BALANCED LEFT)
-------------------------------------------------- */

.static-hero-header {
    position: relative;
    height: 40vh;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    margin-top: -80px;
}

.static-hero-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 64, 121, 0.6);
}

.static-hero-header .hero-content {
    position: relative;
    z-index: 1;
}

.static-hero-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.static-hero-header p {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.9;
}

.contact-page-wrapper {
    background-color: var(--bg-content);
    padding: 80px 0 60px 0;
}
body.dark-mode .contact-page-wrapper {
    background-color: transparent;
}

.contact-grid-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.modern-contact-form {
    max-width: 100%; 
}
.modern-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* === YAHAN GADBAD THI === */
/* Button code yahan se hata diya gaya hai */
/* === YAHAN GADBAD THI === */

.contact-info-textblock {
    background-color: var(--bg-main);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.contact-info-textblock h3 {
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 10px;
}
.contact-info-textblock p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.contact-info-textblock.faq-prompt-box {
    border-style: dashed;
}
.contact-info-textblock.faq-prompt-box a {
    color: var(--air-force-blue);
    font-weight: bold;
    text-decoration: underline;
}

.info-card {
    background-color: var(--bg-main);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}
.info-card .icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--air-force-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.info-card .icon-circle i {
    font-size: 2.2rem;
    color: white;
}
.info-card h3 {
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.info-card p, .info-card a {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    line-height: 1.4;
    text-decoration: none;
}
.info-card a:hover {
    color: var(--air-force-blue);
}

@media (max-width: 992px) {
    .contact-grid-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}
@media (max-width: 768px) {
    .modern-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .modern-contact-form .form-group {
        margin-bottom: 20px;
    }
}


/* 22. ITINERARY VIEW (MOBILE BUTTON FIX - !IMPORTANT)
-------------------------------------------------- */
@media (max-width: 768px) {
    
    .itinerary-display-card .itinerary-actions {
        /* Hum container ko wrap karne ke liye bol rahe hain */
        flex-wrap: wrap !important; 
        gap: 15px !important;
    }

    /* Hum har button ko 100% chauda bana rahe hain */
    .itinerary-display-card .itinerary-actions .action-btn {
        width: 100% !important;
        flex-grow: 1 !important; /* Yeh ensure karega ki woh poora space lein */
        margin: 0 !important; /* Koi extra margin ho toh hata dega */
    }
}

/* 27. FOOTER COPYRIGHT LINK STYLE
-------------------------------------------------- */
.footer-bottom-bar p a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom-bar p a:hover {
    color: var(--air-force-blue);
    text-decoration: underline;
}
/* 28. ITINERARY VIEW (Special Request Style)
-------------------------------------------------- */
/* =========================================
   SPECIAL REQUEST - ONE LINE FIX
   ========================================= */

.summary-special-request {
    margin-top: 25px;
    padding-top: 15px;
    
    /* Dashed Line */
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    
    /* [FIX] Force One Line Layout */
    display: flex !important;
    align-items: center !important; /* Vertical Center */
    justify-content: flex-start;
    flex-wrap: nowrap; /* Wrap hone se rokega */
    gap: 10px;
    
    color: #e6f1ff;
    width: 100%;
}

/* Label (Icon + Text) */
.summary-special-request strong {
    color: #f1c40f; /* Yellow */
    font-weight: 700;
    font-size: 0.95rem;
    
    /* [FIX] Label ko shrink/break hone se rokein */
    white-space: nowrap; 
    flex-shrink: 0; 
    
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-special-request strong i {
    color: #f1c40f; /* Yellow Icon matching text */
    font-size: 1rem;
}

/* Value Text (Add some adventure...) */
.summary-special-request span {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    padding-top: 2px; /* Text alignment micro-fix */
}

/* Mobile Responsiveness: Agar text bahut lamba ho to wrap kare */
@media (max-width: 768px) {
    .summary-special-request {
        align-items: flex-start !important; /* Mobile par top align behtar hai */
    }
    .summary-special-request span {
        margin-top: 2px;
    }
}

/* 30. HEADER AUTH BUTTONS (UNIFIED STYLE FIX)
-------------------------------------------------- */

/* Yeh "Dashboard" link (<a>) ko "Sign Up" jaisa solid button banayega */
.header-right a.header-button[href="/dashboard"] {
    background-color: var(--air-force-blue);
    color: white;
    border: 1px solid var(--air-force-blue);
}
.header-right a.header-button[href="/dashboard"]:hover {
    background-color: #3b6672; /* Darker shade */
    border-color: #3b6672;
    text-decoration: none; /* Link ka underline hatayein */
}

/* Yeh "Logout" button ko "Login" jaisa outline button banata hai (Yeh code pehle se hai, line 809-825) */
#logout-button-desktop {
    border: 1px solid #aaa;
    color: var(--text-secondary);
    background-color: var(--bg-content);
}
#logout-button-desktop:hover {
    background-color: #eee;
    border-color: #999;
}

/* Dark Mode styles */
body.dark-mode .header-right a.header-button[href="/dashboard"]:hover {
   background-color: #3b6672;
   border-color: #3b6672;
}
body.dark-mode #logout-button-desktop {
    border-color: #555;
    color: var(--text-secondary);
    background-color: var(--bg-content);
}
body.dark-mode #logout-button-desktop:hover {
    background-color: #333;
    border-color: #777;
}
/* 31. HEADER AUTH BUTTONS (SINGLE BUTTON STYLE)
-------------------------------------------------- */

/* Yeh "Login" aur "Dashboard" dono buttons ko solid banayega */
.header-right .login-button,
.header-right .dashboard-btn {
    background-color: var(--air-force-blue);
    color: white;
    border: 1px solid var(--air-force-blue);
}

/* Hover effect */
.header-right .login-button:hover,
.header-right .dashboard-btn:hover {
    background-color: #3b6672; /* Darker shade */
    border-color: #3b6672;
    text-decoration: none; /* Link ka underline hatayein */
    color: white;
}

/* Dark Mode styles */
body.dark-mode .header-right .login-button:hover,
body.dark-mode .header-right .dashboard-btn:hover {
   background-color: #3b6672;
   border-color: #3b6672;
}

/* === HOME PAGE SEARCH BOX STYLES === */

.home-search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px; /* Space between input and the button below */
    width: 100%;
}

.home-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 850px; /* Controls the width of the bar */
    background: rgba(10, 25, 47, 0.6); /* Dark semi-transparent background */
    backdrop-filter: blur(12px); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px; /* Pill shape */
    padding: 8px 10px 8px 25px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.home-search-wrapper:hover,
.home-search-wrapper:focus-within {
    background: rgba(10, 25, 47, 0.8);
    border-color: rgba(77, 124, 138, 0.8); /* Air Force Blue tint */
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

.search-icon-left {
    color: #CBDF90; /* Accent color for the sparkle icon */
    font-size: 1.2rem;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

#home-trip-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    outline: none;
    font-family: inherit;
}

#home-trip-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.home-search-btn {
    background: var(--air-force-blue);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.home-search-btn:hover {
    background: #fff;
    color: var(--air-force-blue);
    transform: rotate(45deg); /* Cool effect on hover */
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.6; transform: scale(1); }
}

/* === 2. NEW ROW CONTAINER (Chips + Pipe + Link) === */
.suggestion-row-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.suggestion-chips {
    display: flex;
    align-items: center;
    gap: 10px; /* Chips ke beech ka gap */
    flex-wrap: wrap; /* Agar screen chhoti ho to wrap ho jaayen */
}

.trend-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.chip {
    /* Image 2 style: solid background, no border, more rounded */
    background: rgba(255, 255, 255, 0.2); /* Thoda solid, par translucent effect ke liye opacity */
    border: none; /* No border */
    color: #fff;
    padding: 8px 16px; /* Padding badhaya */
    border-radius: 25px; /* Puri tarah gol corners */
    font-size: 0.9rem; /* Font size thoda bada */
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px); /* Still keep a slight glass effect */
    display: flex;
    align-items: center;
    gap: 8px; /* Icon aur text ke beech ka gap */
    font-weight: 500;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.35); /* Hover par thoda zyada bright */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* Halki shadow */
}

/* Icons within chips */
.chip i {
    font-size: 1rem; /* Icon size */
    color: #fff; /* Icon ka color white */
}

/* Mobile Adjustment - if you want to keep them on mobile */
@media (max-width: 768px) {
    .suggestion-chips {
        justify-content: center; /* Mobile par chips center align ho jaayen */
    }
    .chip {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    .chip i {
        font-size: 0.9rem;
    }
}

/* === 3. PIPE SEPARATOR === */
.hero-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0 5px; /* Thoda space */
}

/* === 4. HOW IT WORKS LINK === */
.how-it-works-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.how-it-works-link:hover {
    color: var(--mindaro-accent); /* Greenish accent color */
    border-bottom-color: var(--mindaro-accent);
}

.how-it-works-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.how-it-works-link:hover i {
    transform: translateY(3px); /* Arrow niche move karega hover par */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .suggestion-row-container {
        flex-direction: column;
        gap: 10px;
    }
    .hero-separator {
        display: none; /* Mobile par pipe hata dein, clean lagega */
    }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .home-search-wrapper {
        width: 90%;
    }
    #home-trip-input {
        font-size: 1rem;
    }
}
/* =========================================
   ZIG-ZAG LAYOUT STYLES (NEW)
   ========================================= */

.zig-zag-container { 
    display: flex; 
    flex-direction: column; 
    gap: 100px; /* Steps ke beech mein gap */
}

.zig-zag-row { 
    display: flex; 
    align-items: center; 
    gap: 80px; /* Image aur text ke beech mein gap */
}

/* Har doosri row ko ulta (reverse) kar dega */
.zig-zag-row:nth-child(even) { 
    flex-direction: row-reverse; 
}

.zig-zag-text { 
    flex: 1; /* Text ke liye 50% jagah */
}

.zig-zag-media { 
    flex: 1; /* Image ke liye 50% jagah */
}

/* Bada '01' '02' number */
.zig-zag-number { 
    font-size: 6rem; 
    font-weight: 900; 
    color: var(--border-color); /* Halka color */
    opacity: 0.3; 
    line-height: 0.8; 
    margin-bottom: -20px; 
}

.zig-zag-text h3 { 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
    color: var(--heading-color); 
}

.zig-zag-text p { 
    font-size: 1.1rem; 
    color: var(--text-secondary); 
    margin-bottom: 30px; 
}

/* Image style */
.mockup-img { 
    width: 100%; 
    border-radius: 24px; 
    border: 1px solid var(--border-color); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
    object-fit: cover; 
}

/* "Try it now" button style (aapke paas shayad pehle se ho) */
.btn-primary { 
    background: var(--air-force-blue); /* Primary color */
    color: #fff; 
    padding: 12px 30px; 
    border-radius: 50px; /* Pill shape */
    font-weight: 700; 
    font-size: 1rem; 
    border: none; 
    cursor: pointer; 
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3); 
    transition: 0.3s; 
    text-decoration: none; 
    display: inline-block; 
}
.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.4); 
}

/* Mobile par layout theek karna */
@media (max-width: 992px) {
    .zig-zag-row, 
    .zig-zag-row:nth-child(even) { 
        flex-direction: column; /* Mobile par sab ek ke neeche ek */
        text-align: center; 
        gap: 40px; 
    }
}
/* =========================================
   BENTO CAROUSEL (INSPIRATION) STYLES (NEW)
   ========================================= */

.bento-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.bento-grid-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
}

.bento-grid-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.bento-card {
    min-width: 300px;
    flex: 0 0 auto;
    background: var(--bg-content);
    border: 1px solid var(--border-color);
    border-radius: 12px; /* Matching existing styles */
    padding: 20px;
    transition: 0.4s;
    cursor: pointer;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--air-force-blue);
}

.bento-img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px; /* Slightly smaller radius than card */
    margin-bottom: 20px;
}

.bento-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--heading-color);
}
.bento-content {
    text-align: center;
}

.section-header {
    text-align: center; /* 'span' aur 'h2' dono ko center karega */
}

.section-header span {
    color: var(--heading-color); /* Heading color (Dark mode mein green) se match karega */
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.rating-badge {
    background: var(--bg-main); /* Match body bg */
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rating-badge i {
    color: #fbbf24; /* Yellow star */
	
}
.rating-badge {
    background: transparent; /* Background hata dega */
    border: none;            /* Border bhi hata dega */
}
.carousel-btn {
    background: var(--bg-content);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    z-index: 10;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: var(--air-force-blue);
    color: #fff;
    border-color: var(--air-force-blue);
}

.carousel-prev {
    left: -20px; /* Adjust position */
}

.carousel-next {
    right: -20px; /* Adjust position */
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
}

/* =========================================
   "WHY CHOOSE" SPLIT SECTION (GUMO STYLE)
   ========================================= */

.features-split {
    border: 1px solid var(--border-color);
    border-radius: 24px;
    
    /* HEIGHT CONTROLLER: Top/Bottom padding ko 40px se ghata kar 20px kar diya */
    padding: 20px 40px; 
    
    max-width: 1200px;
    width: 95%;
    margin: 40px auto; /* Section ke bahar ka margin */
    
    background-color: var(--bg-content);
    overflow: hidden;
    position: relative;
}

.feature-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px; /* Columns ke beech ka gap 50px se 30px kiya */
    align-items: center;
}

/* List ke neeche jo extra space tha usko kam kiya */
.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0; /* Pehle 40px tha, ab 25px hai */
    display: flex;
    flex-direction: column;
    gap: 10px; /* List items ke beech ka gap bhi thoda tight kiya */
}

/* Dark Mode Border */
body.dark-mode .features-split {
    border-color: rgba(255, 255, 255, 0.15);
}



.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-checklist li i {
    color: var(--mindaro-accent); /* Aapka bright green/yellow checkmark */
    font-size: 1.2rem;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap; /* Mobile par wrap karne ke liye */
}

/* Button 1: Solid Yellow/Green */
.btn-cta-primary {
    background-color: var(--mindaro-accent);
    color: #0A192F; /* Dark text on light button */
    font-weight: bold;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 250, 92, 0.2); /* Glow effect */
}

.btn-cta-primary:hover {
    background-color: #ffffff;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Button 2: Text Link Style */
.btn-cta-secondary {
    color: var(--mindaro-accent); /* Yellow/green text */
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-cta-secondary i {
    transition: transform 0.3s ease;
}

.btn-cta-secondary:hover {
    color: #ffffff;
}

.btn-cta-secondary:hover i {
    transform: translateX(5px); /* Arrow ko move karega */
}

.feature-split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive: Mobile par columns ko stack karega */
@media (max-width: 992px) {
    .feature-split-layout {
        grid-template-columns: 1fr; /* 1 column layout */
        gap: 40px;
    }
    .feature-split-text {
        order: 2; /* Text image ke neeche aayega */
    }
    .feature-split-image {
        order: 1; /* Image pehle aayegi */
    }
    .section-heading {
        text-align: center !important; /* Mobile par heading center karega */
    }
}


//* =========================================
   11. BURGER MENU & MOBILE NAVIGATION (MERGED & FINAL)
   ========================================= */

/* --- 1. Global Hidden Wrapper (Desktop Default) --- */
.mobile-only {
    display: none;
}

/* --- 2. Burger Menu Button (Icon) --- */
.burger-menu {
    /* Default: Desktop par Hidden */
    display: none; 
    
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100;
    transition: color 0.3s ease;
    padding: 5px;
    
    /* POSITION FIX: Right side se 30px Left khiskayein */
    margin-right: 30px; 
}

/* Color Logic (Scroll/Theme ke hisaab se color change) */
.main-header:not(.scrolled) .burger-menu {
    color: #ffffff !important; /* Hero Image par White */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.main-header.scrolled .burger-menu {
    color: var(--text-primary) !important; /* Scrolled White BG par Dark */
}
body.dark-mode .main-header.scrolled .burger-menu {
    color: var(--mindaro-accent) !important; /* Dark Mode mein Green/Yellow */
}


/* --- 3. Mobile Nav Panel (The Slide Menu) --- */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    
    /* Animation Logic: Hidden by default off-screen */
    transform: translateX(100%); 
    
    width: 280px;
    height: 100vh; /* Full Height */
    background-color: var(--bg-content);
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    z-index: 1101; /* Burger se upar */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Flex Layout: Items ko vertically arrange karne ke liye */
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto; /* Scrollable if list is long */
}

/* Open State (JS adds this class) */
body.mobile-nav-open .mobile-nav-panel {
    transform: translateX(0); /* Slide In */
}


/* --- 4. Close Button (X) --- */
.close-menu-btn {
    /* Position Fix: Relative rakha taaki ye apni jagah le aur list ko neeche dhakele */
    position: relative !important; 
    top: auto !important;
    right: auto !important;
    
    align-self: flex-end; /* Right align */
    margin-bottom: 15px;   /* List aur button ke beech gap */
    
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}
.close-menu-btn:hover {
    color: var(--air-force-blue);
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}


/* --- 5. Menu List Items --- */
.mobile-nav-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.mobile-nav-panel li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}
.mobile-nav-panel li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 10px;
    text-decoration: none;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.mobile-nav-panel li a i {
    width: 25px;
    text-align: center;
    color: var(--air-force-blue);
}
.mobile-nav-panel li a:hover,
.mobile-nav-panel li a:active {
    background-color: var(--bg-main);
    color: var(--air-force-blue);
    padding-left: 20px; /* Slide Hover Effect */
}


/* --- 6. Authentication Links (Simple Style Fix) --- */
#user-status-mobile-login,
#user-status-mobile-account,
#user-status-mobile-logout {
    margin-top: 10px;
}

/* Reset Button Style to Normal Link */
#user-status-mobile-login a,
#user-status-mobile-account a,
#user-status-mobile-logout a {
    background: none !important;
    border: none !important;
    color: var(--text-primary) !important;
    justify-content: flex-start !important;
    padding: 18px 10px !important;
    border-radius: 0 !important;
    font-weight: 600;
}

/* Hover Effects */
#user-status-mobile-login a:hover,
#user-status-mobile-account a:hover,
#user-status-mobile-logout a:hover {
    background-color: var(--bg-main) !important;
    color: var(--air-force-blue) !important;
    padding-left: 20px !important;
}

/* Red Color for Logout */
#user-status-mobile-logout a {
    color: #e74c3c !important;
}


/* --- 7. Theme Toggle (Bottom) --- */
.mobile-theme-toggle-container {
    margin-top: auto; /* Push to bottom */
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--text-primary);
}


/* =========================================
   RESPONSIVE MEDIA QUERY (TABLET & MOBILE)
   ========================================= */
/* Max-width 1100px rakha hai taaki Tablet (Horizontal) par bhi Menu dikhe */
@media (max-width: 1100px) {
    
    /* 1. Desktop Elements Hide Karein */
    .main-nav,
    .header-right, /* Desktop Login/Toggle bhi chupayein */
    .desktop-only {
        display: none !important;
    }
    
    /* 2. Mobile Elements Show Karein */
    .mobile-only {
        display: block !important;
    }

    /* 3. Burger Menu Show Karein */
    .burger-menu {
        display: block !important;
    }

    /* 4. Header Layout Adjustment */
    .header-container {
        justify-content: space-between;
        padding: 0 20px;
        width: 100%;
    }
}
/* =========================================
   32. LEGAL PAGES STYLES (Terms & Privacy)
   ========================================= */

.legal-page-section {
    padding: 60px 0 80px 0;
    background-color: var(--bg-main); /* Auto Light/Dark fix */
    min-height: 80vh;
}

.legal-content-wrapper {
    background-color: var(--bg-content); /* Auto Light/Dark fix */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading-color); /* Yale Blue / Mindaro Accent */
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 20px;
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 30px;
    font-size: 0.95rem;
    display: block;
    margin-top: 10px;
}

.legal-clause {
    margin-bottom: 30px;
}

.legal-clause h2 {
    font-size: 1.4rem;
    color: var(--heading-color); /* Consistent heading color */
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-clause p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.legal-clause ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.legal-clause li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-link {
    color: var(--air-force-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--heading-color);
    text-decoration: underline;
}



/* --- CAPSULE STYLE FOR ROUTE & DISTANCE --- */
.capsule-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Buttons ke beech ka space */
    margin-bottom: 15px;
    align-items: center;
}

.capsule-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px; /* Round Capsule Shape */
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
}

/* Map Button Style (Blue) */
.map-capsule {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
    transition: background 0.2s;
}
.map-capsule:hover {
    background-color: #1565c0;
    color: #fff;
}

/* Distance Badge Style (Grey) */
.distance-capsule {
    background-color: #f5f5f5;
    color: #424242;
    border: 1px solid #e0e0e0;
    cursor: default;
}
.distance-capsule i {
    color: #f39c12; /* Orange Car Icon */
}


/* =========================================
   1. ITINERARY TIMELINE DESIGN (Fixed Colors)
   ========================================= */

/* Main Card Container (Outer Box) */
.itinerary-display-card {
    background: #ffffff; /* Light Mode default */
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 20px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: visible !important; 
    color: #334155; /* Light Mode Text Color */
}

/* --- DARK MODE for Container (Fixed White Text) --- */
body.dark-mode .itinerary-display-card {
    background: #1e293b; /* Dark Navy Background */
    border-color: #334155;
    box-shadow: none;
    color: #e2e8f0; /* [FIX] Yeh line add ki hai: Text ko White karne ke liye */
}

/* Vertical Line (The Timeline) */
.itinerary-display-card ul {
    border-left: 2px dashed #cbd5e1; /* Light Grey Line */
    margin-left: 5px;
    padding-left: 25px;
    list-style: none;
}

/* Dark Mode Line - White/Light */
body.dark-mode .itinerary-display-card ul {
    border-left-color: rgba(255, 255, 255, 0.2); /* Dotted line visible hogi */
}

/* Day Header (Dot & Title) */
.itinerary-day {
    position: relative;
    font-size: 1.4rem;
    color: #1e293b; /* Light Mode: Dark Text */
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 25px;
    font-weight: 800;
}

/* Dark Mode Day Title */
body.dark-mode .itinerary-day {
    color: #f1f5f9 !important; /* [FIX] Force White Text */
}

/* General Text Inside Itinerary (Paragraphs) */
body.dark-mode .itinerary-display-card p {
    color: #e2e8f0; /* Paragraphs bhi white honge */
}
/* The Blue Dot on the Timeline */
.itinerary-day::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: #3b82f6; /* Bright Blue */
    border-radius: 50%;
    box-shadow: 0 0 0 4px #e0f2fe;
}

body.dark-mode .itinerary-day::before {
    background-color: #60a5fa; /* Lighter Blue in Dark Mode */
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
}

/* --- TIME PERIOD (Morning, Afternoon) - LIME GREEN --- */
.itinerary-period {
    color: #64748b; /* Default Grey */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-left: 0; /* Align correctly */
    font-weight: 800;
    display: flex;
    align-items: center;
}

/* !!! MAGIC COLOR CHANGE (IMAGE LOOK) !!! */
body.dark-mode .itinerary-period {
    color: #bef264; /* LIME GREEN (Neon) - Jaise Image mein hai */
    text-shadow: 0 0 10px rgba(190, 242, 100, 0.2); /* Slight Glow */
}

/* Individual Activity Item (The White Box) */
.itinerary-activity {
    margin-bottom: 15px;
    padding: 15px 18px;
    background: #f8fafc; /* Light Grey Box */
    border-radius: 10px;
    transition: transform 0.2s ease, background 0.2s;
    font-size: 0.95rem;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid transparent;
}


/* Dark Mode Activity Item */
body.dark-mode .itinerary-activity {
    background: transparent !important; /* White background removed */
    box-shadow: none !important;        /* Shadow removed */
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Halki line separator ke liye */
    border-radius: 0;
    margin-bottom: 10px;
    padding: 15px 0; /* Side padding hata di taaki clean lage */
}

/* Text Color Fix (Ab background dark hai to text white chahiye) */
body.dark-mode .itinerary-activity .activity-text {
    color: #e2e8f0 !important; /* Light Text */
}

/* Strong Text (Place Names) - Lime Green Highlight */
body.dark-mode .itinerary-activity strong {
    color: #bef264 !important; /* Neon Green Highlight */
    font-weight: 700;
}

/* Icons Fix */
body.dark-mode .itinerary-activity > i {
    color: #60a5fa !important; /* Light Blue Icon */
}

/* =========================================
   2. DESTINATION OVERVIEW & HOTELS
   ========================================= */

.destination-overview-card {
    background: #fff;
    border-left: 5px solid #bef264; /* Lime Green Line */
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

body.dark-mode .destination-overview-card {
    background: #1e293b; /* Dark Background */
    color: #e2e8f0;
    border: 1px solid #334155;
    border-left: 5px solid #bef264; /* Keep Lime Line */
}

.overview-item {
    background: rgba(241, 245, 249, 0.5);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

body.dark-mode .overview-item {
    background: rgba(255, 255, 255, 0.05); /* Transparent White */
    color: #f1f5f9;
}

/* Hotel Cards */
.hotel-option {
    background: linear-gradient(135deg, #ffffff 0%, #f9faff 100%);
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 12px;
    color: #334155;
}

body.dark-mode .hotel-option {
    background: #1e293b;
    border-color: #475569;
    color: #f1f5f9;
}

/* =========================================
   3. CAPSULE BUTTONS FIX
   ========================================= */
.capsule-row {
    padding-left: 25px;
    margin-bottom: 15px;
    margin-top: 5px;
}

/* Map Button */
.map-capsule {
    background-color: #e0f2fe;
    color: #0369a1 !important;
    border: 1px solid #bae6fd;
}

body.dark-mode .map-capsule {
    background-color: #0c4a6e;
    color: #7dd3fc !important;
    border-color: #075985;
}

/* Distance Badge */
.distance-capsule {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

body.dark-mode .distance-capsule {
    background-color: #334155;
    color: #e2e8f0;
    border-color: #475569;
}

.distance-capsule i {
    color: #f59e0b;
}

/* [File: public/css/chat-style.css] */

/* --- SCROLLING CAR ANIMATION & POSITION --- */
#timeline-car {
    position: absolute;
    left: 13px; /* Dotted line ke upar align */
    top: 60px;  /* Initial position */
    width: 34px;
    height: 34px;
    background: #ffffff;
    border: 2px solid #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    font-size: 15px;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    
    /* [IMPORTANT] Transition HATA DI HAI taaki JS smooth drive kar sake */
    /* transition: top 0.15s ease-out; <--- YEH LINE DELETE KAR DEIN */
    will-change: top, transform; /* Performance Booster */
}

/* Dark Mode Car */
body.dark-mode #timeline-car {
    background: #0A192F;
    border-color: #bef264;
    color: #bef264;
    box-shadow: 0 0 15px rgba(190, 242, 100, 0.4);
}

/* ==========================================
   HOTEL BOOKING MODAL STYLING
   ========================================== */
#hotel-booking-modal .modal-content {
    max-width: 450px;
    padding: 25px;
    border-top: 5px solid var(--primary-color);
}

#hotel-booking-modal h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

#modal-hotel-name {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}

/* Form Grid for Dates and Numbers */
.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

#hotel-booking-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

#hotel-booking-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-main);
    color: var(--text-primary);
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

#hotel-booking-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Dark Mode Specifics */
body.dark-mode #hotel-booking-form input {
    background-color: #0f172a; /* Darker input bg */
    border-color: #334155;
}

#hotel-booking-form .book-btn {
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    border: none;
}
#hotel-booking-form .book-btn:hover {
    background-color: #1ebc57;
}

/* ==========================================
   1. HOTEL BOOKING CAPSULE (Small Button)
   ========================================== */
.book-capsule {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    padding: 4px 12px;
    font-size: 0.8rem;
    background-color: #e8f5e9; /* Light Green */
    color: #25d366 !important; /* WhatsApp Green */
    border: 1px solid #25d366;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 700;
}

.book-capsule:hover {
    background-color: #25d366;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.3);
}

/* Dark Mode Hotel Button */
body.dark-mode .book-capsule {
    background-color: rgba(37, 211, 102, 0.1);
}

/* ==========================================
   2. FOOD SUGGESTION CARDS (Lunch/Dinner Group)
   ========================================== */
.food-box {
    background: #fff8e1; /* Light Yellow/Cream for Food */
    border-left: 4px solid #ffc107; /* Amber Line */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    margin-left: 5px; /* Align with timeline */
}

body.dark-mode .food-box {
    background: rgba(255, 193, 7, 0.1);
    color: #e2e8f0;
}

.food-title {
    font-weight: 800;
    color: #d35400; /* Orange Text */
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

body.dark-mode .food-title {
    color: #ffca28; /* Lighter Yellow for Dark Mode */
}

.food-item {
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.food-item::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #ffc107;
    font-weight: bold;
}


/* --- public/css/chat-style.css --- */

/* Ensure Timeline Container is Relative for the Car */
.itinerary-timeline-container {
    position: relative; /* CRITICAL FIX FOR CAR */
    overflow: hidden; /* Keeps car inside */
}

/* FIX: Inline Hotel Booking Capsule */
.hotel-item .book-capsule {
    display: inline-flex; /* Makes it sit next to text */
    vertical-align: middle; /* Aligns vertically with text */
    margin-left: 10px;
    margin-top: 0; /* Remove top margin so it doesn't drop down */
    padding: 4px 12px;
    font-size: 0.75rem;
    background-color: #e8f5e9;
    color: #25d366 !important;
    border: 1px solid #25d366;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 700;
}

.hotel-item .book-capsule:hover {
    background-color: #25d366;
    color: white !important;
}

/* Food Card Styling (Organized look) */
.food-box.chronological {
    margin: 15px 0 15px 25px; /* Indent slightly to align with timeline activities */
    border-left: 3px solid #ffc107;
    background: #fffcf2;
    padding: 10px 15px;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.food-box.chronological::before {
    /* Small connector dot on timeline */
    content: '';
    position: absolute;
    left: -29px; /* Adjust based on your timeline line position */
    top: 15px;
    width: 10px;
    height: 10px;
    background: #ffc107;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
}

/* [FIX: FOOD CARD ALIGNMENT] */
.food-box {
    background: #fff8e1; 
    border-left: 4px solid #ffc107; 
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    
    /* [CHANGE] Margin badhaya taaki car ke raste se hate */
    margin-left: 35px; /* 5px se 35px kiya */
    
    position: relative; /* For z-index */
    z-index: 1; /* Car ke peeche rahe */
}

/* Dark Mode Food Box */
body.dark-mode .food-box {
    background: rgba(255, 193, 7, 0.1);
    color: #e2e8f0;
    border-left: 4px solid #ffc107;
}

/* ============================================================
   STYLISH TRIP SUMMARY CARD (Light & Dark Mode)
   ============================================================ */

/* 1. Card Container (Base - Light Mode) */
.trip-summary-card {
    background-color: #ffffff; /* White for Light Mode */
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    
    /* Positioning (Fixed Header Overlap) */
    margin-top: 100px !important; 
    margin-bottom: 40px;
    
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.1);
    position: relative;
    color: #333333; /* Dark text for Light Mode */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    transition: background-color 0.3s, border-color 0.3s;
}

/* DARK MODE OVERRIDE (Journey Junction Theme) */
body.dark-mode .trip-summary-card {
    background-color: #112240 !important; /* Deep Navy */
    border-color: #233554;
    color: #e6f1ff; /* Light Blue-White text */
    box-shadow: 0 10px 30px -15px rgba(2,12,27,0.7);
}

/* 2. Heading (Title) */
.trip-summary-card h1, 
.trip-summary-card h3 {
    color: #1B4079; /* Yale Blue for Light Mode */
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    border: none !important;
    text-align: left;
}

/* Heading in Dark Mode */
body.dark-mode .trip-summary-card h1,
body.dark-mode .trip-summary-card h3 {
    color: #d2fa5c !important; /* Mindaro Green (Neon) */
}

/* 3. Grid Layout */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Labels (QUERY, DAYS...) */
.summary-item strong {
    color: #555555; /* Dark Grey for Light Mode */
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}
body.dark-mode .summary-item strong {
    color: #8892b0 !important; /* Muted Blue for Dark Mode */
}

/* Values */
.summary-item span {
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
}
body.dark-mode .summary-item span {
    color: #ffffff !important;
}

/* 4. Interests Section */
.summary-interests {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
    color: #333;
}
body.dark-mode .summary-interests {
    border-top-color: rgba(255, 255, 255, 0.15);
    color: #ccd6f6;
}

.summary-interests strong {
    color: #555;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
body.dark-mode .summary-interests strong {
    color: #8892b0;
}

/* 5. Special Request Section (One Line Fix) */
.summary-special-request {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
    
    /* Flexbox to keep everything in one line */
    display: flex;
    align-items: center; /* Center vertically */
    flex-wrap: nowrap;   /* Prevent wrapping if possible */
    gap: 10px;
    
    color: #333;
    font-size: 0.95rem;
}

body.dark-mode .summary-special-request {
    border-top-color: rgba(255, 255, 255, 0.15);
    color: #e6f1ff;
}

.summary-special-request strong {
    color: #d35400; /* Orange for Light Mode */
    font-weight: 700;
    white-space: nowrap; /* Label never wraps */
    display: flex;
    align-items: center;
    gap: 6px;
}

body.dark-mode .summary-special-request strong {
    color: #f1c40f !important; /* Yellow for Dark Mode */
}

.summary-special-request span {
    /* Agar text bohot lamba hai to handle karega */
    white-space: normal; 
}

/* Responsive Fix */
@media (max-width: 768px) {
    .trip-summary-card {
        margin-top: 80px !important;
        padding: 20px;
    }
    .summary-grid {
        grid-template-columns: 1fr 1fr;
    }
    /* Mobile par Special Request wrap ho sakti hai agar zarurat ho */
    .summary-special-request {
        flex-wrap: wrap; 
    }
}

/* =========================================
   UNIFIED DARK THEME FOR ALL CARDS
   ========================================= */

/* 1. Apply Dark Navy Background to ALL Cards in Dark Mode */
body.dark-mode .trip-summary-card,
body.dark-mode .destination-overview-card,
body.dark-mode .itinerary-display-card {
    background-color: #112240 !important; /* Exact same Dark Blue */
    border: 1px solid #233554 !important; /* Same Border */
    border-radius: 12px;
    box-shadow: 0 10px 30px -15px rgba(2,12,27,0.7);
    color: #e6f1ff; /* Light Text Color */
    margin-bottom: 30px; /* Spacing between cards */
}

/* 2. Headings inside these cards (e.g., "Destination Overview", "Day 1") */
body.dark-mode .destination-overview-card h3,
body.dark-mode .itinerary-display-card h3,
body.dark-mode .itinerary-day {
    color: #d2fa5c !important; /* Neon Green Title */
    font-weight: 700;
}

/* 3. Inner Boxes (Weather, Food, Hotels) - Thoda sa alag shade taaki visible rahein */
body.dark-mode .overview-item, 
body.dark-mode .hotel-option {
    background-color: #172a45 !important; /* Card se thoda sa light */
    border: 1px solid #303C55 !important;
    color: #8892b0 !important; /* Muted Text */
}

/* 4. Strong Text inside Inner Boxes */
body.dark-mode .overview-item strong,
body.dark-mode .hotel-option strong {
    color: #e6f1ff !important; /* Bright White for emphasis */
}

/* 5. Remove White Backgrounds if any remain */
body.dark-mode .itinerary-activity {
    background-color: transparent !important;
    border: none !important;
}