/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body, button, input, textarea, select {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f7f7f8;
    color: #1a1a1d;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar-content {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #1a1a1d;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c5162e;
}

.nav-whatsapp {
    background: #25d366;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.22);
}

.nav-whatsapp:hover {
    background: #128c7e;
}

.whatsapp-nav-btn {
    background-color: #25d366;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.whatsapp-nav-btn:hover {
    background-color: #128c7e;
}

/* Hero */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.78)),
        url("images/hero.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(216, 31, 56, 0.10), transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.04), transparent 30%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-text {
    max-width: 760px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #444;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #121216;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555965;
    max-width: 640px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #d81f38, #a10f22);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(216, 31, 56, 0.22);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
}

.hero-btn.secondary {
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: #1a1a1d;
    background: rgba(255, 255, 255, 0.75);
}

.hero-btn.secondary:hover {
    background: #ffffff;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-item {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    color: #333;
    font-size: 14px;
}

/* Main */
.main-section {
    padding: 90px 0 70px;
    background: linear-gradient(180deg, #f7f7f8 0%, #efeff2 100%);
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 45px;
}

.section-mini {
    display: inline-block;
    color: #c5162e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 13px;
}

.title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    font-weight: 800;
    color: #121216;
}

.section-text {
    color: #5b5f6b;
    font-size: 1.05rem;
}

/* Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* Card */
.vehicle-card {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
    border-color: rgba(216, 31, 56, 0.25);
}

.vehicle-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.vehicle-info {
    padding: 20px;
}

.vehicle-type {
    display: inline-block;
    font-size: 12px;
    background: rgba(216, 31, 56, 0.10);
    color: #c5162e;
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.vehicle-name {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #121216;
}

.vehicle-details {
    font-size: 13px;
    color: #6a6e79;
    margin-bottom: 8px;
}

.vehicle-price {
    color: #c5162e;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.vehicle-description {
    color: #5b5f6b;
    margin-bottom: 18px;
    font-size: 0.97rem;
}

.whatsapp-btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    font-weight: 700;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

/* CTA */
.cta-section {
    padding: 30px 0 90px;
    background: #efeff2;
}

.cta-box {
    background: linear-gradient(135deg, #ffffff, #f4f4f6);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 28px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

.cta-mini {
    color: #c5162e;
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.cta-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #121216;
}

.cta-text p {
    color: #5b5f6b;
}

.cta-btn {
    white-space: nowrap;
    background: linear-gradient(135deg, #d81f38, #a10f22);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Contact page */
.page-hero {
    padding: 90px 0 40px;
    background: linear-gradient(180deg, #f7f7f8 0%, #efeff2 100%);
}

.page-hero-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(216, 31, 56, 0.10);
    color: #c5162e;
    font-size: 14px;
    font-weight: 700;
}

.page-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 16px;
    color: #121216;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #5b5f6b;
    max-width: 760px;
    margin: 0 auto;
}

.contact-section {
    padding: 30px 0 80px;
    background: linear-gradient(180deg, #efeff2 0%, #f7f7f8 100%);
}

.contact-card {
    background: linear-gradient(180deg, #ffffff 0%, #f6f6f8 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

.contact-text {
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.contact-text p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #50545f;
    margin-bottom: 18px;
}

.contact-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.3s;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #d81f38, #a10f22);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(216, 31, 56, 0.20);
}

.contact-btn.primary:hover {
    transform: translateY(-2px);
}

.contact-btn.secondary {
    background: #ffffff;
    color: #1a1a1d;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.contact-btn.secondary:hover {
    background: #f2f2f4;
}

.contact-media {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-image,
.contact-map {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: #ffffff;
    padding: 25px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 42px;
    width: auto;
}

.footer p {
    color: #6b6f7b;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 860px) {
    .navbar-content {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-media {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 78vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle,
    .page-subtitle {
        font-size: 1rem;
    }

    .cta-text h3 {
        font-size: 1.4rem;
    }

    .logo {
        height: 46px;
    }

    .hero-actions,
    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn,
    .nav-whatsapp,
    .cta-btn,
    .contact-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-image img,
    .contact-map iframe {
        min-height: 300px;
    }
}