/* Color Palette from the Shivani Bus Photo */
:root {
    --bus-orange: #F3931F; /* The vibrant Saffron/Orange from the bus */
    --bus-blue: #0A3161;   /* The Deep Blue from the SHIVANI text */
    --white: #ffffff;
    --light-bg: #f9f9f9;
}

/* General Styles */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Poppins', sans-serif; /* Modern, clean font for body text */
    color: #333; 
    line-height: 1.6; 
}

.section { 
    padding: 60px 20px; 
    max-width: 1100px; 
    margin: auto; 
}

/* Headings use the elegant Serif font like the bus logo */
.section-title { 
    text-align: center; 
    margin-bottom: 40px; 
    color: var(--bus-blue); 
    font-size: 2.8rem; 
    font-family: 'Playfair Display', serif; 
    font-weight: bold;
    text-transform: uppercase;
}

.gray-bg { background: var(--light-bg); }

/* Navigation */
header { 
    background: var(--bus-blue); 
    color: white; 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    border-bottom: 4px solid var(--bus-orange);
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1100px; 
    margin: auto; 
    padding: 0 20px; 
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul { display: flex; list-style: none; }
nav ul li a { 
    color: white; 
    text-decoration: none; 
    margin-left: 20px; 
    font-weight: 600; 
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Hero Section */
.hero { 
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), var(--bus-orange); 
    /* If you want the bus image as background, use the line below: */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('busside.png');
    height: 70vh; 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
}

.hero-text h1 { 
    font-family: 'Playfair Display', serif;
    font-size: 4rem; 
    margin-bottom: 10px; 
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.cta-btn { 
    display: inline-block; 
    background: var(--bus-blue); 
    color: white; 
    padding: 15px 35px; 
    text-decoration: none; 
    border-radius: 5px; 
    margin-top: 20px; 
    font-weight: bold; 
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Grid & Cards */
.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
    margin-top: 20px; 
}

.card { 
    background: white; 
    padding: 30px; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    text-align: center; 
    border-top: 8px solid var(--bus-orange); 
}

.card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--bus-blue);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

/* Vehicle Section */
.vehicle-display {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.vehicle-card {
    max-width: 700px;
    background: #fff;
    border: 2px solid var(--bus-orange);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.bus-photo {
    width: 100%;
    height: auto;
    display: block;
}

.vehicle-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--bus-blue);
    font-size: 1.8rem;
    padding: 20px;
    text-align: center;
}

/* WhatsApp Floating Button */
.whatsapp-float { 
    position: fixed; 
    bottom: 40px; 
    right: 40px; 
    background: #25d366; 
    color: white; 
    width: 65px; 
    height: 65px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 35px; 
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3); 
    z-index: 1000; 
    text-decoration: none;
}

footer { 
    background: var(--bus-blue); 
    color: white; 
    text-align: center; 
    padding: 40px 20px; 
    border-top: 5px solid var(--bus-orange);
}
/* Package Section Styling */
.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-badge {
    display: inline-block;
    background: var(--bus-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.package-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* This allows it to wrap if the screen is small */
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%; /* Ensure it takes full width */
    overflow: hidden; /* Prevents text from leaking out */
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    text-align: left; /* Ensures text stays left-aligned for readability */
}
.info-card i {
    font-size: 1.5rem;
    color: var(--bus-orange);
    margin-right: 15px;
    margin-top: 5px;
}

.info-card h4 {
    color: var(--bus-blue);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.itinerary h3 {
    color: var(--bus-blue);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid var(--bus-orange);
    display: inline-block;
}

.itinerary-list {
    text-align: left; /* Keeps the list looking neat */
}
.itinerary-list li {
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid var(--bus-orange);
}

.day-tag {
    background: var(--bus-blue);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 10px;
}

.package-footer {
    text-align: center;
    margin-top: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .package-container {
        grid-template-columns: 1fr;
    }
}
/* Highlight Bar Styling */
.highlight-bar {
    background-color: var(--bus-blue);
    color: var(--white);
    text-align: center;
    padding: 15px 10px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 4px solid var(--bus-orange); /* Matching the bus colors */
    font-family: 'Poppins', sans-serif;
}

/* Optional: Add a small bounce animation to catch the eye */
.highlight-bar {
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.cta-btn.small {
    padding: 10px 20px;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Ensure the package containers have enough space between them */
.package-container {
    margin-bottom: 20px;
}

/* Make sure list items don't look cramped */
.itinerary-list li {
    font-size: 0.95rem;
    line-height: 1.4;
}
/* Divine Symbols Styling */
.divine-icon {
    color: var(--bus-orange); /* Saffron/Orange color for spirituality */
    margin-right: 15px;
    font-size: 2.2rem;
    vertical-align: middle;
}

/* Optional: Add a subtle glow to the icons */
.divine-icon {
    text-shadow: 0 0 10px rgba(243, 147, 31, 0.3);
}

/* Adjust title for mobile so icons don't wrap weirdly */
@media (max-width: 600px) {
    .section-title {
        font-size: 1.8rem;
    }
    .divine-icon {
        font-size: 1.5rem;
        margin-right: 8px;
    }
}
/* --- MOBILE FIXES (For screens smaller than 768px) --- */
@media (max-width: 768px) {
    
    /* 1. Fix the Header and Logo */
    nav {
        flex-direction: column; /* Stacks logo above the menu */
        padding: 10px;
    }

    .logo {
        font-size: 1.4rem; /* Smaller font for mobile */
        text-align: center;
        margin-bottom: 10px;
    }

    /* 2. Fix the Navigation Menu */
    nav ul {
        justify-content: center;
        flex-wrap: wrap; /* Allows links to go to the next line if needed */
        margin-left: 0;
    }

    nav ul li a {
        margin: 5px 10px; /* Gives links space so they don't touch */
        font-size: 0.8rem;
    }

    /* 3. Fix the Hero (Main) Text */
    .hero {
        height: 60vh; /* Reduces height on mobile */
    }

    .hero-text h1 {
        font-size: 2.2rem; /* Shrinks the 'Divine Journeys' text so it fits */
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* 4. Fix the Package Sections */
    .package-container {
        grid-template-columns: 1fr; /* Forces single column on mobile */
        padding: 20px;
    }

    .section-title {
        font-size: 1.8rem; /* Smaller section titles */
    }

    /* 5. Fix the Highlight Bar */
    .highlight-bar {
        font-size: 0.9rem;
        padding: 10px;
    }
}
/* --- TOP TRUST BAR --- */
.top-bar {
    background-color: var(--bus-blue);
    color: white;
    padding: 10px 20px;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--bus-orange);
}

.top-bar-content {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-content strong {
    color: var(--bus-orange);
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-phone a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap; /* Prevents a single phone number from breaking in half */
}

.separator {
    color: var(--bus-orange);
    font-weight: bold;
}

/* --- MOBILE FIX FOR TWO NUMBERS --- */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .top-bar-phone {
        flex-wrap: wrap; /* Allows numbers to move to next line if screen is very narrow */
        justify-content: center;
        gap: 5px 15px;
    }

    .separator {
        display: none; /* Hides the vertical line on mobile to save space */
    }
}