/* Color Palette */
:root {
    --primary-dark: #2d3a40;
    --primary-accent: #f5b567; /* Orange-Yellow Accent */
    --brand-skyblue: #34b1eb;   /* New Sky Blue */
    --light-bg: #ffffff;
    --text-muted: #6c757d;
}

/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Navbar */
.navbar {
    background-color: var(--light-bg); 
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-logo {
    height: 65px; 
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-accent);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 8px 18px;
        border: 1px solid #e0e0e0;
        margin: 0 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    .navbar-light .navbar-nav .nav-link:hover {
        background-color: #f5f5f5;
        border-color: var(--primary-dark);
        color: var(--primary-dark);
    }
    .navbar-light .navbar-nav .nav-link.active {
        background-color: var(--primary-dark);
        color: white;
        border-color: var(--primary-dark);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('images/dzire 1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 58, 64, 0.6);
}
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* About Us Section */
#about {
    background-color: #f8f9fa;
}
.about-overlap-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 700px;
}
.about-overlap-image {
  width: 60%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.about-overlap-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
.about-content-box {
  width: 55%;
  position: absolute;
  right: 0;
  z-index: 10;
  padding: 40px;
}
.about-content-box .row .col-6 img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Why Choose Us & Feature Cards Icons (Blue Theme) */
.feature-icon-box, .why-choose-icon {
    width: 64px;
    height: 64px;
    background-color: var(--brand-skyblue);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-choose-icon {
    border-radius: 50%;
}

/* Our Services Section (Accent Theme) */
.service-card h5 {
    color: var(--primary-accent);
}
.service-icon {
    width: 70px;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--primary-accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* General Card Styles */
.card, .service-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover, .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(45, 58, 64, 0.15) !important;
}
.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Package Card Specific Styles (Accent Theme) */
.package-price-highlight {
    color: var(--primary-accent);
    font-size: 1.25rem;
}

/* Button Styles */
/* General Blue Buttons (Destinations, About, Modal) */
.btn-primary {
    background-color: var(--brand-skyblue);
    border-color: var(--brand-skyblue);
    padding: 12px 24px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #259cd1; /* Darker Sky Blue */
    border-color: #259cd1;
    color: white;
}

/* Package Buttons (Accent Theme) */
.btn-package-primary {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-package-primary:hover {
    background-color: #e4a552; /* Darker accent */
    border-color: #e4a552;
    color: var(--primary-dark);
}
.btn-package-outline-primary {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-package-outline-primary:hover {
    background-color: var(--primary-accent);
    color: var(--primary-dark);
}


/* Testimonials Section */
.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.testimonial-stars {
    color: var(--primary-accent); /* Stars will remain accent color */
}
.testimonial-quote {
    font-style: italic;
    color: var(--primary-dark);
    font-size: 1.1rem;
}
.reviewer-info {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.reviewer-name {
    font-weight: 600;
    color: var(--primary-dark);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-dark);
    border-radius: 50%;
    padding: 1.2rem;
}

/* Footer Section */
footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7); /* Softer white for text */
}

.footer-logo {
    max-width: 150px; /* Reduced size */
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}

.footer-heading {
    color: #fff; /* Made headings pure white to be visible */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Adds the accent color underline to headings */
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-accent);
}

.footer-links li,
.footer-contact-info li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px; /* Adds a nice hover effect */
}

.footer-contact-info i {
    color: var(--primary-accent); /* Highlights the contact icons */
}

.approval-logos img {
    max-height: 45px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: var(--primary-accent);
}

/* Modal footer remains the same */
.modal-footer {
    justify-content: center;
}


/* Responsive Styles */
@media (max-width: 991.98px) {
  .about-overlap-wrapper {
    display: block; 
    min-height: auto;
  }
  .about-overlap-image {
    position: static; 
    width: 100%;
    height: auto;
  }
  .about-content-box {
    position: static; 
    width: 100%;
    margin-top: 2rem; 
    padding: 20px;
  }
  .about-content-box .row .col-6 img {
      height: 100px;
  }
}
/* Floating Container Style */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; /* Ensure it stays on top */
    display: flex;
    flex-direction: column; /* Buttons stack vertically */
    gap: 15px; /* Space between buttons */
}

/* Common Button Style */
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

/* WhatsApp Specific Colors */
.whatsapp-btn {
    background-color: #25d366;
    color: white;
}
.whatsapp-btn:hover {
    background-color: #20b858;
    color: white;
}

/* Taxi Specific Colors */
.taxi-btn {
    background-color: #ffc107; /* Taxi Yellow */
    color: #000;
}
.taxi-btn:hover {
    background-color: #e0a800;
    color: #000;
}

/* Mobile Responsiveness: Thoda chhota karein mobile par */
@media (max-width: 768px) {
    .floating-container {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
     /* Specific Styles for Car Rental Page */
        .rental-hero {
            /* Replace with a picture of a car on a mountain road */
            background: linear-gradient(rgba(255, 255, 255, 0.6), rgb(241, 241, 241)), url('images/car-rental-bg.jpg'); 
            background-size: cover;
            background-position: center;
            height: 50vh;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 76px;
        }

        .fleet-card {
            transition: transform 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .fleet-card:hover {
            transform: translateY(-5px);
        }
        .feature-icon-circle {
            width: 60px;
            height: 60px;
            background-color: #eef2ff;
            color: #0d6efd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }
        .himachal-hero {
            /* Ensure you have this image or change it to an existing one like 'images/about.jpg' */
            background: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)), url('images/shimla.jpg'); 
            background-size: cover;
            background-position: center;
            height: 60vh;
            color: rgb(216, 11, 11);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 76px; /* Height of fixed navbar */
        }
            .shimla-manali-hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Shimla Manali.jpg'); 
            background-size: cover;
            background-position: center;
            height: 50vh;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 76px;
        }

        /* Itinerary Styles */
        .accordion-button:not(.collapsed) {
            background-color: #eef2ff;
            color: #0d6efd;
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        .day-badge {
            background-color: #0d6efd;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            margin-right: 15px;
            font-size: 0.9rem;
            font-weight: bold;
        }
        .policy-box {
            background-color: #f8f9fa;
            border-left: 4px solid #0d6efd;
            padding: 20px;
            border-radius: 4px;
        }
        .check-list li {
            margin-bottom: 10px;
            list-style: none;
        }
        .check-list li i {
            margin-right: 10px;
        }
           .spiti-hero {
            /* Replace with a picture of Key Monastery or Spiti Road */
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Spiti Valley-1.jpg'); 
            background-size: cover;
            background-position: center;
            height: 50vh;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 76px;
        }
            .kashmir-paradise-hero {
            /* Replace with a picture of a Shikara or Dal Lake Sunset */
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/kashmir -popular.jpg'); 
            background-size: cover;
            background-position: center;
            height: 50vh;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 76px;
        }
   .ladakh-adventure-hero {
            /* Replace with a picture of a Biker in Ladakh or Pangong Lake */
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/leh ladakh.jpg'); 
            background-size: cover;
            background-position: center;
            height: 50vh;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 76px;
        }
           .rishikesh-hero {
            /* Replace with a picture of Rafting or Ganga Aarti */
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/rishikesh.jpg'); 
            background-size: cover;
            background-position: center;
            height: 50vh;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 76px;
        }