:root {
    --primary-green: #00b96b;
    /* Matches the logo/button green */
    --primary-yellow: #fded00;
    /* Matches the CTA yellow */
    --dark-bg: #111111;
    --text-light: #ffffff;
    --text-grey: #b3b3b3;
    --card-bg: #ffffff;
    --text-dark: #333333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

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

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.grid {
    display: grid;
}

.highlight-green {
    color: var(--primary-green);
    font-weight: 700;
}

.highlight-yellow {
    color: var(--primary-yellow);
}

/* --- HEADER / NAVBAR --- */
header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    /* Adjust based on your actual logo file */
}

/* Fallback text logo if image missing */
.logo-text {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
}

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

.btn-nav {
    background-color: var(--primary-green);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600 !important;
}


.btn-nav:hover {
    background-color: #009e5a;
}


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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(46, 204, 113, 0.85), rgba(39, 174, 96, 0.85)), url('bike-rent-in-guwahati.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* --- HERO SECTION UPDATE --- */
.hero {
    height: 100vh;
    /* Full screen height */
    /* Ensure your image URL is correct here */
    background: url('bike-rent-in-guwahati.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect for premium feel */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

/* --- HERO OVERLAY UPDATE (GREEN) --- */
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Restoring your original Green Gradient */
    background: linear-gradient(to bottom, rgba(46, 204, 112, 0.706), rgba(0, 185, 108, 0.724));
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    /* Limits width so text doesn't stretch too far */
    margin: 0 auto;
    padding-top: 60px;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    /* Large size */
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 25px;
}

/* The SEO Paragraph Styling */
.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    /* More breathing room for lines */
    margin-bottom: 40px;
    color: #ddd;
    max-width: 800px;
    /* Constrain width for readability */
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description strong {
    color: #fff;
    font-weight: 600;
}



/* Optional: Add a slight text shadow to H1 and P to ensure 
   they stay readable on the bright green background */
.hero-content h1,
.hero-description {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Scroll Indicator Animation */
.scroll-indicator {
    margin-top: 80px;
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 15px;
        /* Prevent text touching edges */
    }
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-primary:hover {
    background-color: #e6d600;
}

.btn-outline {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

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

/* --- WHY CHOOSE US --- */
.why-choose {
    background-color: #fff;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000;
}

.section-title p {
    color: #666;
    margin-bottom: 50px;
}

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

.feature-card {
    padding: 20px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e8f8f0;
    /* Light green bg */
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* --- HOW IT WORKS --- */
.how-it-works {
    background-color: #fcfcfc;
}

.steps-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* The grey connecting line */
.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: #fcfcfc;
    /* Mask the line behind text */
    padding: 0 10px;
    flex: 1;
    min-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 15px auto;
    color: #000;
    box-shadow: 0 5px 15px rgba(253, 237, 0, 0.4);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e8f8f0;
    /* Very light green */
    margin-top: -10px;
    margin-bottom: 5px;
    display: block;
    line-height: 1;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.9rem;
    color: #666;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background-color: #fff;
}

.testimonial-badge {
    display: inline-block;
    background-color: #e8f8f0;
    color: var(--primary-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    background: #fff;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.stars {
    color: #ffb400;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.quote-icon {
    float: right;
    color: #e0e0e0;
    font-size: 2rem;
}

.review-text {
    color: #555;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 80px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #666;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: #888;
}

.google-btn-container {
    margin-top: 40px;
    text-align: center;
}

.btn-google {
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* --- CONTACT SECTION --- */
.contact-section {
    background-color: var(--dark-bg);
    color: #fff;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    /* Dark transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-details .highlight {
    color: var(--primary-yellow);
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Placeholder styling for Map if you don't have API key immediately */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(90%);
    /* Dark mode map trick */
}

.whatsapp-cta {
    margin-top: 40px;
    text-align: center;
}

/* --- FOOTER --- */
footer {
    background-color: #000;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 20px;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-about p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #666;
    font-size: 0.85rem;
}

/* --- FLOATING WHATSAPP --- */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: transform 0.3s;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .steps-container::before {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Add JS to toggle this */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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



/* --- ROYAL ENFIELD AUTHORIZED SECTION --- */
.re-auth-section {
    background-color: #111;
    /* Matching your dark-bg variable */
    color: #fff;
    padding: 60px 0;
    border-bottom: 4px solid var(--primary-green);
    position: relative;
    overflow: hidden;
}

/* Optional: Add a subtle texture overlay if desired */
.re-auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #222 0%, #111 100%);
    z-index: 0;
}

.re-auth-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.re-logo-col img {
    max-width: 280px;
    filter: brightness(0) invert(1);
    /* Turns the black RE logo white */
    opacity: 0.9;
    transition: var(--transition);
}

.re-logo-col img:hover {
    opacity: 1;
    transform: scale(1.02);
}

.re-text-col {
    max-width: 600px;
}

.re-text-col h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.re-text-col h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.re-text-col p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 1rem;
}

.re-verify-btn {
    border-radius: 50px;
    /* Makes this button pill-shaped to differentiate */
    padding: 12px 30px;
}

/* Mobile Responsiveness for this section */
@media (max-width: 768px) {
    .re-auth-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .re-text-col h5 {
        justify-content: center;
    }

    .re-logo-col img {
        max-width: 200px;
    }
}


/* --- ABOUT SECTION --- */
.about-section {
    background-color: #fff;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Align the section title to the left for this specific section */
.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-content h5 {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-quote {
    border-left: 4px solid var(--primary-yellow);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #444;
    font-weight: 600;
    background: #fff9c433;
    /* Very light yellow bg */
    padding: 15px 20px;
}

.about-features-list {
    margin-bottom: 30px;
}

.about-features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #333;
}

.about-features-list i {
    color: var(--primary-green);
    background: #e8f8f0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Image Column Styling */
.about-image-col {
    position: relative;
}

.about-image-col .main-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Stats Box Overlay */
.stats-box {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    background-color: var(--dark-bg);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item h3 {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

.mt-3 {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        /* More gap to accommodate the floating stats box */
    }

    .about-content .section-title {
        text-align: center;
    }

    .stats-box {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: -50px;
        /* Pulls it up slightly over the image */
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================
   MOBILE OPTIMIZATION FOR HERO SECTION
   (Paste at the bottom of style.css)
========================================= */

@media (max-width: 768px) {
    .hero {
        /* Fixes "jittery" background on iOS/Mobile */
        background-attachment: scroll !important;

        /* Use dynamic height so address bar doesn't cut off content */
        min-height: 100vh;
        height: auto;
        /* Allows content to expand if text is long */
        padding-bottom: 60px;
        /* Space at bottom for scrolling */
    }

    .hero-content {
        /* Reduce top padding so Headline is visible immediately */
        padding-top: 110px;

        /* Ensure text doesn't touch screen edges */
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }

    .hero-content h1 {
        /* Resize huge text to fit mobile screen */
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-content h2 {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 20px;
        color: #eee;
        /* Slightly brighter for better contrast outdoors */
    }

    .hero-description {
        font-size: 0.75rem;
        /* Readable size without taking too much space */
        line-height: 1.5;
        margin-bottom: 10px;
    }

    /* Stack buttons vertically for easier tapping */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        /* Slightly smaller padding for mobile */
    }

    /* Hide the 'Scroll Down' animation on mobile to save vertical space */
    .scroll-indicator {
        display: none;
    }
}

/* Extra optimization for very small phones (iPhone SE, Galaxy Fold) */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 40px;
    }
}


/* --- LOCATIONS SEO SECTION --- */
.locations-section {
    background-color: #f9f9f9;
    /* Light grey to separate content */
    border-top: 1px solid #eee;
}

.locations-grid {
    display: grid;
    /* This creates a dynamic grid that fits as many items as possible */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Featured Location Cards (Top Row) */
.location-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-green);
}

.location-card i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.location-card span {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.location-card small {
    color: #888;
    font-size: 0.8rem;
}

/* Standard Location Links (The lists below) */
.location-link {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.location-link i {
    color: #ccc;
    font-size: 0.8rem;
}

.location-link:hover {
    color: var(--primary-green);
    border-color: #e0e0e0;
}

/* SEO Text Block Styling */
.locations-seo-text {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px dashed #ddd;
    /* Subtle border to show it's info */
}

.locations-seo-text strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on mobile */
    }
}



/* --- FOOTER UPDATES --- */
footer {
    background-color: #050505;
    /* Deep black for premium look */
    color: #fff;
    padding-top: 70px;
    padding-bottom: 20px;
    border-top: 4px solid var(--primary-green);
}

.footer-grid {
    display: grid;
    /* 4 Columns layout */
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--primary-yellow);
    padding-left: 10px;
}

/* Contact List Styling */
.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-list i {
    color: var(--primary-green);
    margin-top: 5px;
}

/* --- SEO TAGS (POPULAR SEARCHES) --- */
.seo-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-tag {
    display: inline-block;
    background-color: #1a1a1a;
    /* Dark Grey Background */
    color: #888;
    font-size: 0.75rem;
    /* Small font to fit many */
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid #333;
}

.seo-tag:hover {
    background-color: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Copyright Bar */
.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 25px;
    color: #555;
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on tablet */
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }

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

    .footer-logo {
        justify-content: center;
        display: flex;
    }

    .social-icons {
        justify-content: center;
    }
}


.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}






/* Blog Specific Styles */

.blog-header {
    padding: 120px 0 60px 0 !important;
    text-align: center !important;
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
}

.blog-header h1 {
    font-size: 2.5rem !important;
    margin-bottom: 20px !important;
    color: var(--white) !important;
}

.blog-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 60px 20px !important;
    background-color: var(--white) !important;
    color: var(--text-color) !important;
}

.blog-content h3 {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    color: var(--secondary-color) !important;
    font-size: 1.5rem !important;
}

.blog-content p {
    margin-bottom: 20px !important;
    line-height: 1.8 !important;
    color: var(--text-light) !important;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 30px !important;
    padding-left: 20px !important;
}

.blog-content li {
    margin-bottom: 15px !important;
    line-height: 1.6 !important;
    color: var(--text-light) !important;
}

.blog-content strong {
    color: var(--secondary-color) !important;
}