/* ===== General Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== Header ===== */
header {
    width: 100%;
    background-color: #003366; /* Delta Dark Blue */
    display: flex;
    justify-content: space-between; /* logo left, call right */
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .logo img {
    height: 50px;
}

header .call-btn a {
    background-color: #C01933; /* Delta Red */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Header */
@media(max-width:768px){
    header {
        flex-direction: row;
        justify-content: space-between;
    }

    header .logo img {
        height: 45px;
    }

    header .call-btn a {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* ===== Hero Section ===== */
.hero {
    background-color: #e6f0ff;
    text-align: center;
    padding: 100px 20px 60px;
}

.hero-content h1 {
    font-size: 36px;
    color: #003366;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.hero-content .hero-btn {
    background-color: #C01933;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Promo Banner inside Hero */
.promo-banner {
    width: 100%;
    background-color: #C01933;
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px 5px 0 0;
    margin-bottom: 20px;
}

@media(max-width:768px){
    .promo-banner {
        font-size: 16px;
        padding: 10px 0;
    }
}

/* ===== Car Categories ===== */
.car-categories {
    padding: 60px 20px;
    text-align: center;
}

.car-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.car-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    width: 220px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.car-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.car-card h3 {
    color: #003366;
    margin-bottom: 5px;
}

.car-card p {
    color: #C01933;
    font-weight: bold;
}

/* ===== Features & Why Choose Us ===== */
.features, .why-choose {
    padding: 50px 20px;
    text-align: center;
}

.features .feature {
    margin-bottom: 25px;
}

.why-choose ul {
    list-style-type: disc;
    display: inline-block;
    text-align: left;
    margin-top: 20px;
    color: #333;
}

.why-choose ul li {
    margin-bottom: 10px;
}

/* ===== Top Car Brands Quick Links ===== */
.brand-links {
    text-align: center;
    padding: 40px 20px;
    background-color: #f2f2f2;
}

.brand-links h2 {
    color: #003366;
    margin-bottom: 20px;
}

.brand-links-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* wrap links to fit all screens */
    gap: 10px;
}

.brand-links-container a {
    text-decoration: none;
    background-color: #C01933;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    flex: 1 1 120px; /* flexible width */
    text-align: center;
    white-space: nowrap;
}

.brand-links-container a:hover {
    background-color: #a01528;
}

/* ===== Short Disclaimer ===== */
.short-disclaimer {
    margin: 40px 20px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

/* ===== Footer ===== */
footer {
    background-color: #003366;
    color: #fff;
    padding: 20px 30px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-pages a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 15px;
    font-size: 14px;
}

.footer-pages a:hover {
    text-decoration: underline;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #ffffff;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #ccc;
}

/* ===== Sticky TFN Bar ===== */
.sticky-tfn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #C01933;
    text-align: center;
    padding: 12px 0;
    color: #fff;
    font-weight: bold;
    z-index: 999;
}

.sticky-tfn a {
    color: #fff;
    text-decoration: none;
}

/* ===== Responsive ===== */
@media(max-width:768px){
    .car-cards {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
    }

    .brand-links-container a {
        flex: 1 1 100px;
        font-size: 14px;
        padding: 8px 10px;
    }
}
header {
    width: 100%;
    background-color: #003366;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .logo img {
    height: 50px;
}

header .call-btn a {
    background-color: #C01933;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Centered page title between logo and call now */
header .page-title {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    flex: 1;
}

header .page-title h2 {
    margin: 0;
}

/* Responsive adjustments */
@media(max-width:768px){
    header {
        flex-direction: row;
        justify-content: space-between;
    }

    header .logo img {
        height: 45px;
    }

    header .call-btn a {
        padding: 8px 15px;
        font-size: 14px;
    }

    header .page-title {
        font-size: 16px;
        text-align: center;
        margin: 0 5px;
    }
}
