﻿
/* PRICING HERO */
.pricing-hero {
    background: linear-gradient(rgba(46,22,143,0.85), rgba(46,22,143,0.85)), url('/images/hero.png') center/cover no-repeat;
    color: #fff;
    padding: 90px 20px;
}

.pricing-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.pricing-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* PRICING SECTION */
.pricing-section {
    background: #f8f9fa;
}

.pricing-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(46,22,143,0.08);
    transition: 0.3s ease;
    height: 100%;
    border-top: 5px solid #2E168F;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 28px rgba(46,22,143,0.15);
    }

    .pricing-card h3 {
        color: #2E168F;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .pricing-card h5 {
        color: #C9A45C;
        font-weight: 600;
        margin-bottom: 10px;
    }

.vehicle-example {
    color: #777;
    font-size: 0.95rem;
    min-height: 48px;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #C53030;
    margin: 15px 0;
}

.pricing-card p {
    color: #666;
}

.featured {
    border-top: 5px solid #C53030;
}


