/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    line-height: 1.6;
    background: #f8f8f8;
}

/* ---------------- TOP SOCIAL BAR ---------------- */
.top-bar {
    background: #111;
    color: #fff;
    padding: 6px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.top-bar a:hover { color: #e60000; }

/* ---------------- HEADER ---------------- */
.site-header {
    background: #ff0f23;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.site-header .logo img {
    height: 50px;       /* Adjust size as needed */
    width: auto;
    display: block;
}
/* Logo text color for dark navigation */
.site-header .logo-text {
    color: #ffffff;
}


.logo {
    font-size: 22px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
}


nav a {
    position: relative;
    padding: 6px 2px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Underline animation */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #e60000;
    transition: width 0.3s ease;
}

/* Hover */
nav a:hover {
    color: #e60000;
}

nav a:hover::after {
    width: 100%;
}

/* Active page (optional but recommended) */
nav a.active {
    color: #e60000;
}

nav a.active::after {
    width: 100%;
}

/* Active Navigation Link */
nav ul li a.active {
    background-color: #2ecc71; /* Green */
    color: #ffffff !important;
    border-radius: 6px;
    padding: 6px 12px;
}


.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE NAVIGATION */



/* ---------------- HERO ---------------- */
.hero {
    height: 320px;
    background: url("../images/hero.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 25px 35px;
    text-align: center;
    border-radius: 10px;
}

.hero-text h1 { font-size: 36px; }
.hero-text h2 { margin-top: 8px; font-size: 18px; font-weight: normal; }

#carList {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 1 for testing */
    gap: 25px;
}

.car {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.car:hover { transform: translateY(-6px); }

.car img { width: 100%; height: 200px; object-fit: cover; }
.car-info { padding: 15px; text-align: center; }
.car-info h3 { margin-bottom: 10px; }
.car-info button {
    padding: 8px 14px;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 700px;
    padding: 20px;
    border-radius: 12px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
}

.modal-main-img { width: 100%; border-radius: 10px; margin-bottom: 10px; }
.modal-thumbs { display: flex; gap: 10px; overflow-x: auto; margin-bottom: 10px; }
.modal-thumbs img { width: 70px; height: 50px; object-fit: cover; cursor: pointer; border-radius: 6px; }


/* ---------------- CONTENT ---------------- */
.content {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
}

.content h2 { margin-bottom: 15px; }
.content p { font-size: 16px; color: #555; }

/* ---------------- FOOTER ---------------- */
footer {
    background: #111;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-social a {
    margin-right: 12px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-social a:hover { color: #e60000; }

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #aaa;
}

.price {
    color: #e60000;
    font-weight: bold;
    font-size: 16px;
    margin: 6px 0; /* space above/below */
}


.footer-bottom strong { color: #fff; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 480px) {
    .hero-text h1 { font-size: 26px; }
}

/* Responsive adjustments */
@media (max-width: 1024px) { #carList { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { #carList { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { #carList { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
    .site-header .logo img {
        height: 40px;
    }
}
/* Address Card */
.address-card {
    background: #f8f8f8;
    border-left: 5px solid #e60000;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.address-card h3 {
    margin-bottom: 8px;
}

.address-card p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* Map Container */
.map-container {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.contact-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.contact-card i {
    font-size: 28px;
    color: #e60000;
    margin-bottom: 10px;
}

.contact-card h4 {
    margin-bottom: 5px;
}

.contact-card p {
    margin: 0;
    font-size: 15px;
}

.contact-card a {
    color: #25d366; /* WhatsApp green */
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.map-heading {
    text-align: center;
    margin: 20px 0 10px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* WHY CHOOSE US */
.why-choose {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
    backdrop-filter: blur(20px);
}

.why-choose h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.why-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.why-card {
    background: #f2b946;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.why-card i {
    font-size: 36px;
    color: #e60000;
    margin-bottom: 15px;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.why-card p {
    font-size: 15px;
    color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* FEATURED CARS */
.featured-cars {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

.featured-cars h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.featured-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 16px;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.car-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.car-info {
    padding: 20px;
}

.car-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #e60000;
    margin-bottom: 12px;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #e60000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s;
}

.btn:hover {
    background: #c40000;
}

.btn-outline {
    background: transparent;
    color: #e60000;
    border: 2px solid #e60000;
}

.btn-outline:hover {
    background: #e60000;
    color: #fff;
}

.view-all {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cars-grid {
        grid-template-columns: 1fr;
    }

    .car-card img {
        height: 180px;
    }
}
/* CALL TO ACTION */
.cta-section {
    background: linear-gradient(135deg, #e60000, #b80000);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: auto;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    background: #fff;
    color: #e60000;
    font-weight: bold;
}

.cta-btn:hover {
    background: #f1f1f1;
}

.cta-outline {
    border-color: #fff;
    color: #fff;
}

.cta-outline:hover {
    background: #fff;
    color: #e60000;
}

/* Responsive */
@media (max-width: 600px) {
    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 16px;
    }
}

/* CTA WITH OPENING HOURS */
.cta-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Opening Hours Card */
.opening-hours {
    background: rgba(255, 255, 255, 0.12);
    padding: 25px 22px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

.opening-hours h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #ffffff;
}

.opening-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    font-size: 15px;
}

.opening-hours li:last-child {
    border-bottom: none;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .opening-hours {
        margin-top: 30px;
    }

    .opening-hours li {
        justify-content: space-between;
    }
}

/* WHO WE ARE */
.who-we-are {
    padding: 60px 20px;
    background: #ffffff;
}

.who-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.who-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.who-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.who-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .who-container {
        grid-template-columns: 1fr;
    }

    .who-text {
        text-align: center;
    }
}
/* MISSION & VISION */
.mission-vision {
    padding: 60px 20px;
    background: #f8f8f8;
}

.mv-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.mv-card i {
    font-size: 40px;
    color: #e60000;
    margin-bottom: 15px;
}

.mv-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.mv-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 700px) {
    .mv-container {
        grid-template-columns: 1fr;
    }
}
/* WHY CUSTOMERS TRUST US */
.trust-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.trust-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 16px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.trust-card {
    background: #f8f8f8;
    padding: 25px 20px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.trust-card i {
    font-size: 36px;
    color: #e60000;
    margin-bottom: 15px;
}

.trust-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}
/* CARS PAGE INTRO SENTENCE */
.cars-intro {
    text-align: center;
    margin: 30px 0 20px;
}

.cars-intro p {
    font-size: 18px;
    color: #555;
}

@media (max-width: 600px) {
    .cars-intro p {
        font-size: 16px;
    }
}

/* MODAL SCROLL FIX */
.modal-content {
    max-height: 90vh;        /* Keeps modal inside screen */
    overflow-y: auto;        /* Enables vertical scroll */
}

/* Smooth scroll on mobile */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* LOGO WITH TEXT */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    white-space: nowrap;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .logo img {
        height: 38px;
    }

    .logo-text {
        font-size: 16px;
    }
}

/* MOVE HAMBURGER TO LEFT ON MOBILE */
@media (max-width: 768px) {
    .site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hamburger {
        order: -1; /* moves hamburger to the left */
    }

    .logo {
        order: 1;
    }
}
.welcome p {
    max-width: 900px;              /* controls text width */
    margin: 0 auto;                /* centers the paragraph */
    text-align: justify;           /* justify text */
    text-align-last: left;         /* prevents stretched last line */
    line-height: 1.9;              /* clean, readable line gap */
    font-size: 16px;
    color: #555;

    hyphens: auto;                 /* smooth word breaking */
    -webkit-hyphens: auto;
    -ms-hyphens: auto;

    overflow-wrap: break-word;
    word-break: normal;
}

/* Main Welcome Heading Animation */
.welcome h2 {
    text-align: center;
    margin-bottom: 10px;

    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlideDown 0.9s ease forwards;
}

@keyframes fadeSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Welcome Sub Heading */
/* Welcome Sub Heading – FORCE STYLE */
/* Welcome Sub Heading – Premium Look */
.welcome .welcome-sub {
    display: block;
    text-align: center !important;
    font-size: 20px;
    font-weight: 600;
    color: #e60000 !important;
    margin: 10px auto 20px;

    /* Subtle premium depth */
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);

    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 0.4s;
}


/* Animation */
@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Desktop */
.hamburger {
    display: none;
}
/* MOBILE NAV – LEFT SLIDE (FIXED) */
/* ================= MOBILE NAV – FINAL CLEAN FIX ================= */
/* ================= MOBILE NAV – GLASS STYLE (FINAL & SAFE) ================= */
@media (max-width: 768px) {

    /* Hide desktop nav */
    nav {
        display: none !important;
    }

    /* Show hamburger */
    .hamburger {
        display: block !important;
        font-size: 28px;
        cursor: pointer;
    }

    /* Mobile menu container */
    nav.active {
        display: block !important;
        position: absolute;
        top: 70px;                 /* opens below header */
        left: 10px;
        width: 230px;
        height: auto;              /* NOT full screen */
        padding: 14px 0;

        /* Glass / premium effect */
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border-radius: 14px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);

        z-index: 9999;
        animation: mobileNavFade 0.25s ease-out;
    }

    /* Menu animation */
    @keyframes mobileNavFade {
        from {
            opacity: 0;
            transform: translateY(-10px) scale(0.97);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Stack menu items */
    nav ul {
        display: flex !important;
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style: none;
        gap: 4px;
    }

    nav a {
        display: block;
        padding: 14px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #222 !important;
        border-radius: 8px;
        transition: background 0.25s ease, transform 0.2s ease;
    }

    /* Hover / tap effect */
    nav a:hover {
        background: rgba(230, 0, 0, 0.08);
        color: #e60000 !important;
        transform: translateX(4px);
    }

    /* Active page */
    nav a.active {
        background: rgba(230, 0, 0, 0.12);
        color: #e60000 !important;
        font-weight: 600;
    }

    /* Close button (✕) */
    .close-menu {
        display: none;
        position: absolute;
        top: 12px;
        right: 15px;
        font-size: 22px;
        font-weight: bold;
        cursor: pointer;
        color: #333;
    }

    nav.active .close-menu {
        display: block;
    }
}


    /* Close button */
    .close-menu {
        display: none;
        position: absolute;
        top: 12px;
        right: 15px;
        font-size: 22px;
        font-weight: bold;
        cursor: pointer;
        color: #333;
    }

    nav.active .close-menu {
        display: block;
    }
}

/* ================= MOBILE NAV ICONS ================= */
@media (max-width: 768px) {

    nav a {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    nav a i {
        font-size: 18px;
        color: #e60000;
        min-width: 20px;
        text-align: center;
    }

    nav a:hover i {
        color: #c40000;
    }

    nav a.active i {
        color: #e60000;
    }
}


/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Subtle pulse animation */
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float {
    animation: wa-pulse 2.5s infinite;
}
/* CARS PAGE SEARCH BAR BACKGROUND */
.search-bar {
    background: #f0f6ff;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

/* Input styling */
.search-bar input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #c7d8f5;
    font-size: 15px;
    outline: none;
}

/* Focus effect */
.search-bar input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}


/* Show close icon only on mobile */
@media (max-width: 768px) {
    .close-menu {
        display: block;
    }
}


/* Show close icon only on mobile */
@media (max-width: 768px) {
    .close-menu {
        display: block;
    }
}
/* ================= NAV FIX – DESKTOP vs MOBILE ================= */

/* ---------- DESKTOP NAV ---------- */
@media (min-width: 769px) {
    nav {
        display: flex !important;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    nav a {
        display: inline-flex;
        align-items: center;
        color: #fff;
    }

    /* Hide icons on desktop */
    nav a i {
        display: none;
    }

    .close-menu {
        display: none !important;
    }
}

/* ---------- MOBILE NAV ---------- */
@media (max-width: 768px) {

    nav {
        display: none !important;
    }

    nav.active {
        display: block !important;
        position: absolute;
        top: 70px;
        left: 10px;
        width: 230px;
        padding: 14px 0;

        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border-radius: 14px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        z-index: 9999;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    nav a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        color: #222 !important;
    }

    nav a i {
        font-size: 18px;
        color: #e60000;
    }
}

/* CALL NOW SECTION */
.call-now {
    background: linear-gradient(135deg, #111, #222);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.call-container {
    max-width: 800px;
    margin: auto;
}

.call-now h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.call-now p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.7;
}

.call-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #e60000;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.call-btn i {
    margin-right: 8px;
}

.call-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
/* HOW TO REACH US */
.reach-us {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.reach-container {
    max-width: 900px;
    margin: auto;
}

.reach-us h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.reach-us p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}
/* PRICE FILTER SECTION */
.price-filter {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.price-filter h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #e60000;
}

.price-inputs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-inputs input {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 160px;
    font-size: 14px;
}

.price-inputs button {
    padding: 10px 18px;
    background: #e60000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.price-inputs button:hover {
    background: #c40000;
}



































