/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: white;
    color: #111;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 65px;
}

.brand-name {
    font-size: 32px;
    font-weight: 900;
    color: #ffd000;
}

.brand-tagline {
    font-size: 14px;
    color: white;
}

.nav-links a {
    margin-left: 25px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
}

/* HERO */
.hero-slider {
    margin-top: 90px;
    position: relative;
    height: 50vh;   /* Fixed banner height */
    min-height: 400px;
    overflow: hidden;
    object-position: bottom center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 35%;
    left: 8%;
    color: white;
}

.hero-overlay h1 {
    font-size: 55px;
    font-weight: 900;
}

.hero-overlay p {
    font-size: 18px;
    margin-top: 10px;
}

/* FILTER BUTTONS */
.filters {
    text-align: center;
    padding: 50px 0 20px;
}

.filters button {
    padding: 12px 22px;
    border: 2px solid #ffd000;
    background: none;
    margin: 0 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
}

/* PRODUCT GRID */
.catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    padding: 40px 60px;
}

.card {
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h3 {
    font-size: 20px;
    margin-top: 15px;
}

.price {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #ffd000;
}

.whatsapp {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
}

/* ABOUT / CONTACT SECTIONS */
.about-section, .contact-section {
    padding: 60px;
    text-align: center;
}

.about-section h2,
.contact-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: black;
    color: white;
}

.filters-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.filters-container select {
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    padding: 40px 80px;
}
.car-filter {
    background: #000;
    padding: 40px 60px;
    border-top: 3px solid #ffd000;
    border-bottom: 3px solid #ffd000;
}

.filter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.filter-left h3 {
    color: #ffd000;
    font-size: 18px;
    letter-spacing: 2px;
}

.filter-left p {
    color: #ccc;
    font-size: 14px;
    margin-top: 5px;
}

.filter-box {
    display: flex;
    flex-direction: column;
}

.filter-box label {
    color: #ffd000;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 1px;
}

.filter-box select {
    padding: 12px 20px;
    background: #111;
    color: white;
    border: 1px solid #333;
    border-radius: 5px;
    min-width: 220px;
}

.filter-box select:focus {
    outline: none;
    border: 1px solid #ffd000;
}

.filter-submit button {
    padding: 12px 30px;
    background: #ffd000;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.filter-submit button:hover {
    background: white;
}
.about-section {
    position: relative;
    background: url("images/about-bg.jpg") center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay {
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    max-width: 800px;
    text-align: center;
    color: white;
    padding: 20px;
}

.about-content h2 {
    font-size: 40px;
    color: #ffd000;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-tagline {
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    letter-spacing: 2px;
}
/* CONTACT SECTION */
.contact-section {
    background: #000;
    padding: 90px 40px;
    text-align: center;
    color: white;
}

.contact-title {
    font-size: 42px;
    color: #ffd000;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 50px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 10px;
    text-decoration: none;
    min-width: 280px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.contact-card i {
    font-size: 28px;
}

/* WhatsApp */
.whatsapp-card {
    background: linear-gradient(135deg, #1ebe57, #25D366);
    color: white;
}

/* Call */
.call-card {
    background: linear-gradient(135deg, #d4af37, #ffd000);
    color: black;
}

/* Map */
.map-card {
    background: #222;
    border: 1px solid #ffd000;
    color: white;
}

.contact-card h3 {
    margin: 0;
    font-size: 18px;
}

.contact-card span {
    font-size: 14px;
    opacity: 0.9;
}

/* Hover Effect */
.contact-card:hover {
    transform: translateY(-6px);
}

/* Map */
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #ffd000;
}
/* VIDEO SECTION */
.video-section {
    margin-top: 70px;
    margin-bottom: 70px;
}

.video-title {
    font-size: 28px;
    color: #ffd000;
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.video-card {
    background: #111;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: #ffd000;
}

.video-card iframe {
    width: 100%;
    height: 315px;
    border-radius: 10px;
}
/* ============================= */
/* MOBILE RESPONSIVE STYLES */
/* ============================= */

@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        padding: 10px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        margin-top: 10px;
    }

    .nav-links a {
        margin-left: 0;
        margin-right: 15px;
        font-size: 14px;
    }

    /* HERO */
    .hero-slider {
        height: 350px;
    }

    .hero-overlay {
        top: 25%;
        left: 5%;
    }

    .hero-overlay h1 {
        font-size: 26px;
    }

    .hero-overlay p {
        font-size: 14px;
    }

    /* FILTER SECTION */
    .filter-container {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .filter-box select {
        width: 100%;
        min-width: auto;
    }

    .filter-submit button {
        width: 100%;
    }

    /* PRODUCT GRID */
    .catalog {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    /* ABOUT SECTION */
    .about-section {
        height: auto;
        padding: 60px 20px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 14px;
    }

    /* CONTACT BUTTONS */
    .contact-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .contact-card {
        width: 100%;
    }

    /* VIDEO SECTION */
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-card iframe {
        height: 400px;
    }

}
.whatsapp-btn{
display:inline-block;
margin-top:12px;
padding:10px 18px;
background:#25D366;
color:white;
text-decoration:none;
border-radius:6px;
font-size:14px;
font-weight:bold;
}
.video-heading{
    color:#e8e7e5;
    font-size:18px;
    margin-bottom:10px;
}

.video-description{
    color:#ccc;
    font-size:14px;
    margin-top:10px;
}