﻿
/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(46,22,143,0.75), rgba(46,22,143,0.75)), url('/images/hero.png') center/cover no-repeat;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #f8f8f8;
}

.hero .btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 6px;
    font-weight: 500;
    background-color: #C9A45C;
    border: none;
    color: #fff;
    transition: 0.3s ease;
}

    .hero .btn:hover {
        background-color: #b38f4e;
    }

/* SECTION TITLES */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2E168F;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* VEHICLE CARDS */
.vehicle-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46,22,143,0.08);
    height: 100%;
}

    .vehicle-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(46,22,143,0.18);
    }

    .vehicle-card img {
        height: 220px;
        object-fit: cover;
        width: 100%;
    }

    .vehicle-card .card-body {
        padding: 20px;
        text-align: center;
    }

    .vehicle-card h5 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #2E168F;
    }

    .vehicle-card p {
        color: #666;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .vehicle-card .badge {
        padding: 8px 14px;
        font-size: 0.9rem;
        border-radius: 6px;
        background-color: #C9A45C;
        color: #fff;
    }

/* WHY CHOOSE US */
.feature-box {
    padding: 25px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(46,22,143,0.05);
    transition: 0.3s ease;
    height: 100%;
    border-top: 4px solid #2E168F;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(46,22,143,0.12);
    }

    .feature-box h4 {
        font-weight: 600;
        margin-bottom: 10px;
        color: #2E168F;
    }

    .feature-box p {
        color: #666;
        margin: 0;
    }

/* CTA SECTION */
.cta-section {
    background: #F2F2F2;
    padding: 70px 20px;
    text-align: center;
}

    .cta-section h2 {
        font-weight: 700;
        margin-bottom: 15px;
        color: #2E168F;
    }

    .cta-section p {
        color: #666;
        margin-bottom: 25px;
    }

    .cta-section .btn {
        background-color: #C53030;
        border: none;
        color: #fff;
    }

        .cta-section .btn:hover {
            background-color: #a82626;
        }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        padding: 70px 15px;
    }

        .hero h1 {
            font-size: 2rem;
        }

    .section-title {
        font-size: 1.6rem;
    }
}


```css id="searchhero2"
/* HERO SEARCH FORM */
.availability-form {
    background: rgba(255,255,255,0.12);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    max-width: 1000px;
    margin: auto;
}

.availability-form .form-control,
.availability-form .form-select {
    height: 50px;
    border-radius: 8px;
    border: none;
}

.availability-form label {
    font-weight: 500;
    margin-bottom: 8px;
}

.btn-gold {
    background-color: #C9A45C;
    color: #fff;
    font-weight: 600;
    border: none;
    height: 50px;
    border-radius: 8px;
}

    .btn-gold:hover {
        background-color: #b38f4e;
        color: #fff;
    }

```
