/* ===== ROOT VARIABLES ===== */
:root {
    --bg-dark: #ffffff;
    --bg-card: #f8f8f8;
    --bg-section: #f0f0f0;
    --primary-red: #e63946;
    --orange-accent: #ff6b35;
    --text-white: #111111;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --gradient-brand: linear-gradient(135deg, #e63946, #ff6b35);
}

/* ===== GLOBAL ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--orange-accent);
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: transparent;
    padding: 1.2rem 0;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 2px 20px rgba(230, 57, 70, 0.15);
    padding: 0.7rem 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white) !important;
    letter-spacing: -0.5px;
}

.brand-drive {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: rgba(0,0,0,0.75) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 1rem !important;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: var(--gradient-brand);
    color: #fff !important;
}

.navbar-toggler {
    border-color: rgba(230, 57, 70, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817, 17, 17, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile navbar */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        border-radius: 12px;
        margin-top: 0.75rem;
        padding: 0.75rem 1rem;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        border: 1px solid var(--border-color);
    }

    .navbar-nav .nav-link {
        padding: 0.6rem 1rem !important;
        border-radius: 8px;
        border-left: 3px solid transparent;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(230, 57, 70, 0.08);
        color: var(--primary-red) !important;
        border-left-color: var(--primary-red);
    }

    .navbar-nav .nav-item.ms-lg-2 {
        margin-top: 0.5rem;
    }
}

/* ===== BUTTONS ===== */
.btn-brand {
    background: var(--gradient-brand);
    color: #fff !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
    display: inline-block;
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    opacity: 0.92;
}

.btn-outline-brand {
    background: transparent;
    color: var(--primary-red) !important;
    border: 2px solid var(--primary-red);
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-brand:hover {
    background: var(--gradient-brand);
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.35);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-title span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-brand);
    border-radius: 2px;
    margin: 0.6rem auto 1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 50%, #ffffff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 4rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: var(--primary-red);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title .gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-car-placeholder {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-car-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(230,57,70,0.08) 0%, transparent 70%);
}

.hero-car-placeholder i {
    font-size: 5rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-car-placeholder span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== FEATURED CARS ===== */
.featured-section {
    padding: 6rem 0;
    background-color: var(--bg-section);
}

/* ===== CAR CARDS ===== */
.car-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.car-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.2);
    border-color: rgba(230, 57, 70, 0.4);
}

.car-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f0f0f0;
}

.car-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.car-card:hover .car-card-img-wrapper img {
    transform: scale(1.05);
}

.car-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

.car-card-img-placeholder i {
    font-size: 3.5rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.car-card-body {
    padding: 1.4rem;
}

.car-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--text-white);
}

.car-brand {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(0,0,0,0.04);
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.spec-item i {
    color: var(--primary-red);
    font-size: 0.72rem;
}

.car-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.car-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.car-price-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
    line-height: 1;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 57, 70, 0.4);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.12);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-red);
    transition: background 0.3s, transform 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(230, 57, 70, 0.18);
    transform: scale(1.08);
}

.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-white);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: linear-gradient(135deg, #f5f5f5, #fff5f5);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 0;
}

.stat-box {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.4rem;
    display: block;
}

/* ===== ABOUT PAGE ===== */
.page-hero {
    padding: 9rem 0 5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-story {
    padding: 5rem 0;
    background: var(--bg-section);
}

.about-story-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.about-highlight {
    background: rgba(230, 57, 70, 0.06);
    border-left: 4px solid var(--primary-red);
    padding: 1.2rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
    color: rgba(0,0,0,0.85);
    font-style: italic;
}

.mission-vision {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.mv-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.team-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 57, 70, 0.3);
}

.team-avatar {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #e8e8e8, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
}

.team-avatar i {
    font-size: 5rem;
    color: rgba(230, 57, 70, 0.4);
}

.team-body {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.82rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    line-height: 1.6;
}

.values-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.value-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
}

.value-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.value-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ===== FLEET PAGE ===== */
.fleet-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.45rem 1.3rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.empty-fleet {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-muted);
}

.empty-fleet i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
}

.form-label {
    color: rgba(0,0,0,0.7);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.form-control {
    background: rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    background: rgba(0,0,0,0.06);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    color: var(--text-white);
    outline: none;
}

.form-control::placeholder {
    color: rgba(0,0,0,0.3);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1rem;
}

.contact-info-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.2rem;
}

.contact-info-value {
    font-size: 0.95rem;
    color: var(--text-white);
    font-weight: 500;
}

.contact-info-value a {
    color: var(--text-white);
}

.contact-info-value a:hover {
    color: var(--primary-red);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 1.5rem;
}

/* ===== ALERTS ===== */
.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #6fcf97;
    border-radius: 10px;
    padding: 1rem 1.2rem;
}

.alert-danger {
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: #ff8a94;
    border-radius: 10px;
    padding: 1rem 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #f5f5f5;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 1.5rem;
}

.footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted) !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff !important;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(0,0,0,0.5);
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(0,0,0,0.45);
}

/* ===== SCROLL-TO-TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
