/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f5f7fa;
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #0b3d91;
}

.logo .logo-coil {
    color: #0b3d91;
}

.logo .logo-ards {
    color: #ff6b3c;
}

.logo2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
}

.logo2 .logo-coil {
    color: #ffffff;
}

.logo2 .logo-ards {
    color: #ff6b3c;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: #222;
    padding: .5rem;
    transition: .3s;
}

.nav-link:hover,
.nav-link.active {
    color: #0b3d91;
}

.btn-sm {
    padding: .4rem .8rem;
    background: #0b3d91;
    color: #fff;
    border-radius: 5px;
    transition: .3s;
}

.btn-sm:hover {
    background: #08306b;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #0b3d91;
    border-radius: 2px;
    transition: .3s;
}

@media(max-width:900px) {
    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 220px;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
        display: none;
    }

    .nav-list.show {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero.jpg')center/cover no-repeat;
    filter: brightness(60%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 800px;
    animation: fadeIn 1.5s ease forwards;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content .highlight {
    color: #ff6b3c;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #0b3d91;
    color: #fff;
    padding: .8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    background: #08306b;
}

.btn-ghost {
    background: none;
    border: 2px solid #fff;
    color: #fff;
    padding: .8rem 2rem;
    border-radius: 8px;
    transition: .3s;
}

.btn-ghost:hover {
    background: #fff;
    color: #0b3d91;
}

/* Brand Pillars */
.brand-pillars {
    padding: 6rem 0;
    background: #f5f7fa;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.pillar-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
    transition: .3s;
    cursor: pointer;
}

.pillar-card:hover {
    transform: translateY(-8px);
}

.pillar-card h3 {
    color: #0b3d91;
    margin-bottom: 1rem;
}

/* Inventory Grid */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.car-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
    overflow: hidden;
    transition: .3s;
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.car-info {
    padding: 1rem;
}

.car-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0b3d91;
    margin-bottom: .5rem;
}

.car-meta {
    margin-bottom: 1rem;
    font-size: .9rem;
    line-height: 1.4;
}

.car-meta li {
    margin-bottom: .3rem;
}

.car-price {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .5rem;
    color: #ff6b3c;
}

.button-wrapper {
    text-align: center;
    /* centers inline-block button */
    margin-top: 2rem;
    /* optional spacing */
}

.btn-outline {
    display: inline-block;
    /* shrink to fit text */
    padding: 0.8rem 2rem;
    /* nice padding around text */
    border: 2px solid #0b3d91;
    color: #0b3d91;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0b3d91;
    transition: all 0.3s ease;
    z-index: 0;
}

.btn-outline:hover::after {
    left: 0;
}

.btn-outline:hover {
    color: #fff;
}

.btn-outline span {
    position: relative;
    z-index: 1;
}

/* Centering utility */
.center-btn {
    display: inline-block;
    /* shrink to text */
    margin: 2rem auto;
}

/* Brand Story Section */
.brand-story {
    background: #f7f9fc;
    /* soft light background for contrast */
    padding: 4rem 0;
    text-align: center;
}

.brand-story h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #0b3d91;
    /* primary brand color */
    margin-bottom: 1rem;
}

.brand-story p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    /* centered paragraph */
    line-height: 1.6;
}

.banks-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.banks-logos img {
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.banks-logos img:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

/* VIP CTA */
.vip-cta {
    padding: 4rem 0;
    background: #ff6b3c;
    color: #fff;
    text-align: center;
}

.vip-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.vip-cta p {
    margin-bottom: 2rem;
    font-weight: 500;
}

.vip-cta input {
    padding: .7rem 1rem;
    border: none;
    border-radius: 6px;
    margin-right: .5rem;
    width: 250px;
    max-width: 70%;
}

.vip-cta button {
    padding: .7rem 1.5rem;
    border: none;
    border-radius: 6px;
    background: #0b3d91;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.vip-cta button:hover {
    background: #08306b;
}

/* Footer */
.footer {
    background: #0b3d91;
    color: #fff;
    padding: 3rem 1rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer a {
    color: #fff;
    transition: .3s;
}

.footer a:hover {
    color: #ff6b3c;
}

.footer-bottom {
    text-align: center;
    font-size: .85rem;
    opacity: .8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: #f7f9fc;
    text-align: center;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #0b3d91;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #333;
    line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.step-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #ff6b3c;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: #0b3d91;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* CTA Button */
.cta-how {
    margin-top: 3rem;
}




/* About Page Intro */
.about-intro {
    background: #f7f9fc;
    padding: 4rem 0;
    text-align: center;
}

.about-intro .page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #0b3d91;
    margin-bottom: 1rem;
}

.about-intro .page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: #555;
}

/* Story Section */
.about-story {
    padding: 4rem 0;
}

.about-story .grid--2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-family: 'Montserrat', sans-serif;
    color: #0b3d91;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-text h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ff6b3c;
    /* accent color for headings */
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.story-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Key Stats Section */
.about-stats {
    background: #0b3d91;
    /* brand blue */
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.about-stats .grid--4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    /* subtle transparent card effect */
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 220px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.stat-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #ff6b3c;
    /* accent color for numbers */
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #fff;
    line-height: 1.4;
}

/* Team Section */
.about-team {
    padding: 4rem 0;
    text-align: center;
}

.about-team h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #0b3d91;
    margin-bottom: 1rem;
}

.about-team p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    font-family: 'Montserrat', sans-serif;
    color: #0b3d91;
    margin-bottom: 0.3rem;
}

.team-member p {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 0.95rem;
}





/* Contact Hero */
.contact-hero {
    background: #f7f9fc;
    padding: 5rem 0;
    text-align: center;
}

.contact-hero .page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #0b3d91;
    margin-bottom: 1rem;
}

.contact-hero .page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Cards */
.contact-info {
    padding: 3rem 0;
}

.contact-info .grid--3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.info-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0b3d91;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-family: 'Inter', sans-serif;
    color: #555;
}

/* Form + Map Section */
.contact-form-map {
    padding: 4rem 0;
}

.contact-form-map .grid--2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

/* Form Styles */
.form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    font-family: 'Montserrat', sans-serif;
    color: #0b3d91;
    margin-bottom: 1.5rem;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-container textarea {
    resize: vertical;
}

.form-container button {
    background: #ff6b3c;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-container button:hover {
    background: #e05a2c;
}

/* Map Styles */
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
}