/* --- Global Styles & Variables --- */
:root {
    --primary-color: #6F0414;
    /* Deep Maroon */
    --primary-color-dark: #50030f;
    --bg-light: #ffffff;
    --bg-off-white: #F5F5F7;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
    --font-primary: 'Inter', sans-serif;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

/* --- Base & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-weight: 800;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.7;
    color: var(--text-muted);
}

/* --- Buttons --- */
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
}

.primary-btn:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.secondary-btn {
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--text-dark);
}

.secondary-btn:hover {
    background-color: rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.secondary-btn i {
    margin-left: 10px;
}

/* --- Header --- */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.logo img {
    width: 150px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* --- General Section Styling --- */
.section-padding {
    padding: 120px 0;
}

.off-white-bg {
    background-color: var(--bg-off-white);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title span {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
    font-size: 0.9rem;
}

.section-title.left-align {
    text-align: left;
    margin-left: 0;
}

/* --- Hero Section (100vh) --- */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle SVG pattern from heropatterns.com */
    background-color: var(--bg-off-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23e5e7eb' fill-opacity='0.4'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-tagline {
    display: inline-block;
    background-color: #fff;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.hero-content p {
    font-size: 1.25rem;
    margin: 25px 0 40px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: var(--bg-off-white);
    border-radius: 50%;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* --- Difference Section --- */
.difference-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.difference-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.difference-list {
    list-style: none;
    margin: 30px 0 40px;
}

.difference-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.difference-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
}

/* --- How It Works (ENHANCED) --- */
.how-it-works-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.how-it-works-container::before {
    /* Dashed line connector */
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-image: linear-gradient(to right, var(--border-color) 50%, transparent 50%);
    background-size: 20px 2px;
    background-repeat: repeat-x;
    z-index: 0;
}

.step-card {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.step-number-bg {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: var(--bg-off-white);
    line-height: 1;
    z-index: -1;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* --- Fleet Section --- */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.fleet-card {
    border-radius: var(--border-radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.fleet-card:hover {
    transform: scale(1.03);
}

.fleet-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.fleet-info {
    padding: 30px;
}

/* --- Contact Section (with Form) --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.contact-methods {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px;
    background: var(--bg-off-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--primary-color);
    background: #fff;
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--bg-off-white);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-primary);
    background: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(111, 4, 20, 0.1);
}

.form-submit-btn {
    width: 100%;
}

/* --- Footer, Floating Button, Legal Page Styles (Same as before) --- */
/* (omitted for brevity - copy from previous response) */

/* --- Responsive & Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }

    .difference-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .difference-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .difference-content {
        order: 2;
        text-align: center;
    }

    .section-title.left-align {
        text-align: center;
        margin-left: auto;
    }

    .contact-form-wrapper {
        order: 1;
        margin-bottom: 40px;
    }

    .contact-content {
        order: 2;
    }

    .how-it-works-container {
        grid-template-columns: 1fr;
    }

    .how-it-works-container::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col-about,
    .footer-col-social {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-logo {
        margin: auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-light);
        padding: 120px 40px 40px;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        align-items: center;
        justify-content: center;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    #main-header .cta-button {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ======================================= */
/*      REDESIGNED FOOTER STYLES           */
/* ======================================= */

#footer {
    background-color: var(--text-dark);
    color: #a9b3be;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    /* A more balanced and modern grid layout */
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 100px; /* Use height for consistency */
    margin-bottom: 20px;
    border-radius: 10px;
    /* This CSS trick makes your maroon logo appear white on the dark background */
}

.footer-col-about p {
    color: #a9b3be;
    margin-bottom: 30px;
}

.social-icons a {
    color: #a9b3be;
    font-size: 1.1rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}
.social-icons a:last-child {
    margin-right: 0;
}
.social-icons a:hover {
    color: var(--primary-color); /* Use brand color for hover */
}

.footer-col-links h4,
.footer-col-contact h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col-links ul,
.footer-col-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links li,
.footer-col-contact li {
    margin-bottom: 15px;
}

.footer-col-links a {
    color: #a9b3be;
    transition: all 0.3s ease;
}
.footer-col-links a:hover {
    color: #fff;
    padding-left: 5px; /* Subtle hover effect */
}

/* Specific styling for the new contact column */
.footer-col-contact li {
    display: flex;
    align-items: flex-start; /* Aligns icon with the top of the text */
    gap: 15px;
}
.footer-col-contact i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 0.9rem;
    color: white;
}
.footer-col-contact a,
.footer-col-contact span {
    color: #a9b3be;
    transition: color 0.3s ease;
}
.footer-col-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #343a40;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Responsive for the new footer --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col-about {
        grid-column: 1 / -1; /* Make about section full width */
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stack all columns on mobile */
        text-align: center;
    }
    .footer-col-about p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-col-contact li {
        justify-content: center; /* Center contact items on mobile */
    }
}
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    color: #fff;
}

.legal-page-body .legal-page-main {
    padding: 80px 0;
}

.legal-content {
    max-width: 1000px;
    margin: 140px auto;
}

.legal-content h1 {
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-muted);
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 40px;
}

.legal-content article {
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 1.5rem;
}

.legal-content article:first-of-type h2 {
    border-top: none;
    padding-top: 0;
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content strong {
    color: var(--text-dark);
}

/* =================================================== */
/*      MONTHLY PICK & DROP SERVICE SECTION STYLES     */
/* =================================================== */

.monthly-service-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Image side slightly smaller */
    align-items: center;
    gap: 80px;
}

.monthly-service-image-wrapper img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.monthly-service-content .section-title {
    margin-bottom: 30px;
}

.monthly-service-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.benefit-highlight {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background-color: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-highlight h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.timing-details {
    margin-bottom: 40px;
}

.timing-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.timing-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.timing-slot {
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.timing-slot i {
    color: var(--primary-color);
}


/* --- Responsive for the section --- */
@media (max-width: 1024px) {
    .monthly-service-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .monthly-service-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .monthly-service-content {
        text-align: center;
    }
    .benefit-highlight {
        text-align: left; /* Keep benefit text left-aligned */
    }
    .timing-slots {
        justify-content: center;
    }
}
/* =========================
    FAQ Section (New Theme)
============================ */
.faq-section {
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #333;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 20px 25px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;

  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question.active {
  background-color: #6F0414; 
  color: white;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  color: #6F0414; /* Keep the yellow accent for the icon */
  transition: transform 0.3s ease-in-out;
}

/* When active, change color and rotate the icon */
.faq-question.active .faq-icon {
  color: #ffffff;
  transform: rotate(45deg);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  color: #dddddd; /* Lighter gray for answer text */
  font-size: 16px;
  line-height: 1.6;
}

.faq-answer p {
  padding: 0 25px 20px 25px;
  margin: 0;
}