@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --brand-color: #ed1b24;
    --font-family-primary: "DM Sans", sans-serif;
    --letter-spacing-tight: -1px;
    --cta-primary-padding: 10px 24px;
    --cta-primary-font-weight: 500;
    --cta-primary-font-size: 20px;
    --cta-primary-border-radius: 50px;
    --brand-border-color: 1px solid #ed1b24;
    --paragraph-font-family: "Manrope";
}

a {
    text-decoration: none !important;
}

/* Navbar base */
.main-navbar {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    font-family: var(--font-family-primary);
}

/* Logo */
.site-logo img {
    height: 70px;
}

/* Center links */
.nav-center .nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 12px;
    position: relative;
    font-size: 22px;
    letter-spacing: -1px;
}

.nav-center .nav-link:hover,
.nav-center .nav-link.active {
    color: var(--brand-color);
}

/* CTA Button */
.btn-ride {
    background: var(--brand-color);
    color: #ffffff;
    padding: var(--cta-primary-padding);
    border-radius: var(--cta-primary-border-radius);
    font-weight: var(--cta-primary-font-weight);
    border: none;
    transition: all 0.3s ease;
    font-size: var(--cta-primary-font-size);
    letter-spacing: var(--letter-spacing-tight);
}

.btn-ride:hover {
    /* background: #cf6614; */
    background-color: #ec2933;
    transform: translateY(-2px);
    color: #fff;
}

/* Topbar */
.topbar {
    background: var(--brand-color);
    color: #ffffff;
    font-size: 14px;
    font-family: var(--font-family-primary);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

/* Opening hours */
.opening-hours {
    font-family: var(--font-family-primary);
}

.opening-hours i {
    margin-right: 6px;
    color: var(--brand-color);
}

/* Social icons */
.topbar-right {
    display: flex;
    gap: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {}


/* Hero Section */
.hero-section {
    position: relative;
    height: 550px;
    overflow: hidden;
}

/* Background Image */
.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero-overlay {
    position: relative;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
}

/* Content wrapper */
.hero-content {
    display: flex;
    justify-content: flex-end;
    /* RIGHT aligned */
}

/* Form box */
.hero-form {
    background: #ffffff;
    padding: 24px;
    /* border-radius: 12px; */
    max-width: 360px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Form title */
.form-title {
    margin-bottom: 16px;
    font-weight: 600;
    color: #333;
    font-family: var(--font-family-primary);
    font-size: 26px;
    letter-spacing: -1px;

}

.form-control {
    font-family: var(--font-family-primary) !important;
    height: 50px !important;
}

/* Button */
.btn-hero {
    width: 100%;
    background: var(--brand-color);
    font-family: var(--font-family-primary);
    font-size: var(--cta-primary-font-size);
    font-weight: var(--cta-primary-font-weight);
    color: #ffffff;
    padding: 10px;
    border: none;
    transition: 0.3s ease;
}

.why-choose {
    margin: 120px 0;
}

.choose-us {
    text-align: center;
}

.choose-us h2 {
    color: var(--brand-color);
    font-size: 60px;
    font-family: var(--font-family-primary);
    letter-spacing: var(--letter-spacing-tight);
}

.choose-us h3 {
    font-size: 25px;
    font-family: var(--font-family-primary);
    letter-spacing: var(--letter-spacing-tight);
}

.box-img {
    border: 1px solid gray;
}

.box-sect {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.box-img {
    padding: 10px 32px;
    transition: 0.3s;
    border: var(--brand-border-color);
}

.box-img p {
    font-size: 22px;
    color: #9b9b9b;
    line-height: 27px;
    padding-top: 10px;
    font-family: var(--paragraph-font-family);
}

.box-img h4 {
    font-size: 30px;
    color: black;
    font-family: var(--font-family-primary);
    font-weight: var(--cta-primary-font-weight);
}

.box-img:hover {
    background: var(--brand-color);
}

.box-img:hover h4 {
    color: white;
}

.box-img:hover p {
    color: white;
}

.boxActive{
     background: var(--brand-color);
}
.boxActive h4{
     color: white;
}
.boxActive p{
     color: white;
}
.boxActive:hover{
     background: #fff;
}
.boxActive:hover h4{
     color: #000;
}
.boxActive:hover p{
    color: #000;
}

/* Topbar */
.topbar {
    background: var(--brand-color);
    color: #ffffff;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

/* Social icons */
.topbar-right {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon a {
    text-decoration: none !important;
}

.social-icon:hover {
    background: #c5151d;
    transform: translateY(-2px);
}

.foot-sec {
    color: white;
    background: var(--brand-color);
    padding: 25px;
    margin-bottom: 30px;
    font-family: var(--font-family-primary);
}

.location-card {
    background: #fff;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.location-card h5 {
    color: #0056b3;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 30px;
    font-family: 'Bebas Neue Bold', sans-serif;
}

.location-card .icon {
    color: #0056b3;
    margin-right: 10px;
}

.location-card iframe {
    width: 100%;
    height: 200px;
    border: 0;

}



.contact-row {
    margin-bottom: 10px;
    color: #747474;
    display: flex;
    font-weight: bold;
    font-family: 'Neulis Sans Regular', sans-serif;
}

.contact-row a {
    text-decoration: none;
    color: #747474;
    font-family: 'Neulis Sans Regular', sans-serif;
    font-weight: bold;
}


.local-tyle {
    margin: 120px 0 0 0;
}

.location {
    font-family: var(--font-family-primary);
    color: var(--brand-color);
    letter-spacing: var(--letter-spacing-tight);
    font-weight: var(--cta-primary-font-weight);
}

.location-eyebrow {
    font-size: 25px;
    font-family: var(--font-family-primary);
    letter-spacing: var(--letter-spacing-tight);
    text-align: center;
}

/* aboutcss */
/* About Section */
.about-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Eyebrow */
.eyebrow-heading {
    display: inline-block;
    /* margin-bottom: 10px; */
    /* color: var(--brand-color); */
    /* font-weight: 600; */
    /* text-transform: uppercase; */
    /* letter-spacing: 1px; */
    /* font-size: 14px; */

    font-size: 25px;
    font-family: var(--font-family-primary);
    letter-spacing: var(--letter-spacing-tight);
}

/* Main heading */
.section-heading {
    color: var(--brand-color);
    font-size: 60px;
    font-family: var(--font-family-primary);
    letter-spacing: var(--letter-spacing-tight);
}

/* Text */
.about-text {
    font-size: 19px;
    color: #555;
    padding-top: 10px;
    font-family: var(--paragraph-font-family);
}

/* Image */
.about-image img {
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .section-heading {
        font-size: 28px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-image {
        margin-top: 30px;
    }
}

/* Location Card */
.location-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Top Info */
.location-info {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 500px;
}

.location-item i {
    font-size: 18px;
    color: var(--brand-color);
    margin-top: 4px;
}

.location-item p {
    margin: 0;
    font-size: 16px;
    color: #444;
    line-height: 1.5;
    font-family: var(--font-family-primary);
}

.whatsapp-link {
    font-size: 16px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-link:hover {
    color: var(--brand-color);
}

/* Map */
.location-map {
    width: 100%;
    height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================
   MOBILE CTA (BOTTOM BAR)
========================= */

.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
}

.cta-btn {
    width: 50%;
    padding: 14px 10px;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-family: var(--font-family-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
}

.cta-call {
    background: var(--brand-color);
}

.cta-whatsapp {
    background: #25d366;
}

.cta-btn i {
    font-size: 18px;
}

/* =========================
   DESKTOP FLOATING ICONS
========================= */

.desktop-cta {
    position: fixed;
    bottom: 30px;
    width: 100%;
    pointer-events: none;
    z-index: 9999;
}

.desktop-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: fixed;
    bottom: 30px;
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Call icon - LEFT */
.call-icon {
    left: 30px;
    background: var(--brand-color);
}

/* WhatsApp icon - RIGHT */
.whatsapp-icon {
    right: 30px;
    background: #25d366;
}

/* Hover effect */
.desktop-icon:hover {
    transform: translateY(-5px);
}

.product-card {
    position: relative;
    overflow: hidden;
    height: 420px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Black overlay box */
.overlay-box {
    position: absolute;
    left: 0;
    /* top: 0; */
    bottom: 0;
    height: 60%;
    width: 60%;
    background: rgba(0, 0, 0, 0.70);
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Text */
.overlay-box h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--brand-color);
    font-family: var(--font-family-primary);
    letter-spacing: var(--letter-spacing-tight);
}

.overlay-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--paragraph-font-family);
}

/* Buttons */
.btn-wrap {
    display: flex;
    gap: 10px;
}

.btn-primary {
    background-color: var(--brand-color) !important;
    border: none;
    font-size: 16px;
    font-family: var(--font-family-primary);

}

.spare-parts-section {
    background-color: #f8f9fa;
}

/* Section text */
.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand-color);
    margin-bottom: 8px;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-desc {
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
    color: #666;
}

/* Card */
.spare-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spare-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.spare-card img {
    width: 376px;
    height: 248px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.spare-card h5 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-family-primary);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--brand-color);
}

.spare-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: var(--paragraph-font-family);
}

/* Buttons */
.card-btns {
    display: flex;
    gap: 10px;
}

.card-btns .btn {
    flex: 1;
}

.aboutImage{
    width: 636px;
    height: 583px;
    object-fit: cover;
}

/* Responsive heading */
@media (max-width: 768px) {
    .section-heading {
        font-size: 28px;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .overlay-box {
        width: 100%;
        padding: 20px;
    }

    .product-card {
        height: 360px;
    }
}

/* Prevent overlap with mobile CTA */
@media (max-width: 767px) {
    body {
        padding-bottom: 56px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .location-info {
        flex-direction: column;
    }

    .location-map {
        height: 300px;
    }
}



/* Mobile responsive */
@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .box-sect {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
    }

    .hero-overlay {
        padding: 40px 0;
    }

    .hero-content {
        justify-content: center;
        /* Center on mobile */
    }

    .hero-form {
        max-width: 100%;
    }
}


/* Mobile adjustments */
@media (max-width: 991px) {
    .nav-center {
        margin: 20px 0;
    }

    .nav-cta {
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Responsive css here */
@media screen and (min-device-width: 300px) and (max-device-width: 768px) {
    .choose-us h3 {
        font-size: 18px;
    }

    .choose-us h2 {
        font-size: 35px;
    }

    .box-img h4 {
        font-size: 20px;
    }

    .box-img p {
        font-size: 16px;
    }

    .site-logo img {
        height: 50px;
    }

    .topbar-inner {
        flex-direction: row;
        gap: 8px;
        text-align: center;
    }
    .location-eyebrow{
        font-size: 18px;
    }
}