* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E30613;
    --dark-red: #B8050F;
    --light-red: #E30613;
    --red-accent: #E30613;
    --red-light: #E30613;
    --red-hover: #C10510;
    --white: #FFFFFF;
    --black: #0F172A;
    --dark-gray: #334155;
    --light-gray: #F8FAFC;
    --border-color: #E2E8F0;
    --green: #25D366;
    --blue: #2196F3;
    --yellow: #FFC107;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px -2px rgba(0,0,0,0.1), 0 2px 6px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 35px -10px rgba(227, 6, 19, 0.15);
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    z-index: 9999;
}

/* Promotional Banner */
.promo-banner {
    background: #ffffff;
    color: #D50306;
    text-align: center;
    padding: 12px 15px;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    animation: slideDown 0.5s ease-out;
}

.promo-banner p {
    color: #D50306;
    margin: 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .promo-banner {
        padding: 15px 20px;
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .promo-banner {
        padding: 18px 30px;
        font-size: 16px;
    }
}

/* Header & Top Bar */
.main-header {
    background: linear-gradient(90deg, #D50306 0%, #D50306 50%, #B00305 72%, #7A0103 100%);
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(213, 3, 6, 0.28);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.main-header.scrolled {
    box-shadow: 0 10px 30px rgba(213, 3, 6, 0.35);
    padding: 10px 20px;
    background: linear-gradient(90deg, #D50306 0%, #D50306 50%, #B00305 72%, #7A0103 100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 20px;
}

.logo-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo {
    display: block;
    height: 92px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.25s ease;
}

.logo-section .company-name {
    display: none;
}

.logo-section:hover .site-logo {
    transform: translateY(-1px);
}

.site-logo-sm {
    height: 68px;
    width: auto;
    max-width: 210px;
    border-radius: 8px;
}

.brand-icon-wrapper {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
    transition: transform 0.3s ease;
}

.logo-section:hover .brand-icon-wrapper {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text-box {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    margin: 0;
    line-height: 1.15;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

.company-name span.accent {
    color: var(--primary-red);
}

.tagline {
    font-size: 11px;
    color: var(--dark-gray);
    font-weight: 600;
    margin: 2px 0 0 0;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

/* Header Navigation */
.header-nav {
    display: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 4px;
    position: relative;
    transition: all 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--white);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.28);
    white-space: nowrap;
}

.contact-link i {
    font-size: 13px;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    color: var(--white);
}

.contact-link-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-link-phone:hover {
    background-color: var(--white);
    color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.menu-toggle {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 22px;
    color: var(--white);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 12px;
    z-index: 10;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.menu-toggle:active {
    transform: scale(0.95);
}

@media (max-width: 899px) {
    .site-logo {
        height: 76px;
        max-width: 230px;
    }

    .company-name {
        font-size: 15px;
        letter-spacing: 0.3px;
    }

    .contact-link {
        padding: 5px 8px;
        font-size: 11px;
        gap: 4px;
        border-radius: 16px;
    }

    .contact-link i {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    .contact-link {
        padding: 6px 8px;
        width: 32px;
        height: 32px;
        justify-content: center;
    }

    .contact-link span {
        display: none;
    }

    .contact-link i {
        font-size: 15px;
    }
}

/* Header Responsive rules */
@media (min-width: 900px) {
    .header-nav {
        display: flex;
    }
    
    .header-contact {
        display: flex;
        margin-left: 0;
    }

    .contact-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .menu-toggle {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .main-header {
        padding: 16px 40px;
    }
    
    .site-logo {
        height: 108px;
        width: auto;
        max-width: 340px;
    }

    .company-name {
        font-size: 22px;
    }
    
    .brand-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

/* Large Desktop Header */
@media (min-width: 1441px) {
    .main-header {
        padding: 20px 80px;
    }
    
    .header-content {
        max-width: 1600px;
    }
}

/* Hero Section */
/* ==========================================================================
   Corporate Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 560px;
    padding: 60px 20px;
    background-color: #0B1220;
    background-image: url('hero-banner.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 12, 22, 0.55) 0%, rgba(8, 12, 22, 0.72) 55%, rgba(8, 12, 22, 0.88) 100%),
        linear-gradient(90deg, rgba(227, 6, 19, 0.22) 0%, transparent 42%, transparent 100%);
    pointer-events: none;
}

.hero-overlay {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-content {
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(227, 6, 19, 0.15);
    border: 1px solid rgba(227, 6, 19, 0.4);
    border-radius: 30px;
    color: var(--light-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
}

.hero-title span.highlight {
    background: linear-gradient(135deg, #E30613 0%, #E30613 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0 0 24px 0;
    max-width: 720px;
}

/* Trust Badges Bar */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #CBD5E1;
}

.trust-item i {
    color: var(--green);
    font-size: 15px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 46px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 620px;
        padding: 80px 30px;
    }
    
    .hero-title {
        font-size: 54px;
    }
}

/* ==========================================================================
   Corporate Features Section (Why Us)
   ========================================================================== */
.corporate-features-section {
    background-color: var(--light-gray);
    padding: 70px 20px;
    border-bottom: 1px solid var(--border-color);
}

.corporate-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .corporate-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .corporate-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 24px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(227, 6, 19, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-red);
    border: 1px solid var(--primary-red);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    transform: scale(1.08);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 10px 0;
}

.feature-desc {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Section Titles & Badge Pills
   ========================================================================== */
.section-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* Vehicles Section - Base Styles */

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0 auto 30px auto;
    padding: 0;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
    order: -1;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    border-radius: 2px;
}

/* Category Filter Buttons */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0 15px;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-red);
    background-color: var(--white);
    color: var(--primary-red);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.filter-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-accent) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.5);
    border-color: var(--red-accent);
    position: relative;
}

.filter-btn.active:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-accent) 100%);
}

/* Grid Layout for Vehicle Cards */
.vehicles-section {
    padding: 60px 15px 40px 15px;
    background-color: var(--light-gray);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

#vehicleContainer,
.category-group {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    min-width: 0;
}

/* Category Title */
.category-title {
    font-size: 13px;
    font-weight: 700;
    color: #64748B;
    margin: 36px 0 16px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    position: relative;
    background: none;
}

.category-title::before {
    display: none;
}

.category-group:first-child .category-title {
    margin-top: 8px;
}

/* Hide categories by default when filtering */
.category-group.hidden {
    display: none;
}


/* Category Vehicles Container */
.category-vehicles {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 100%;
}

.vehicle-card {
    background-color: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border: 1px solid var(--border-color);
}

@media (hover: hover) and (pointer: fine) {
    .vehicle-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
        border-color: #CBD5E1;
    }
    .vehicle-card:hover .vehicle-image img {
        transform: scale(1.04);
    }
}

.vehicle-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

@supports (aspect-ratio: 1 / 1) {
    .vehicle-image {
        height: auto;
        padding-bottom: 0;
        aspect-ratio: 1 / 1;
    }
}

.vehicle-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    padding: 14%;
    box-sizing: border-box;
    transition: transform 0.35s ease;
    display: block;
    pointer-events: none;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
}

.favorite-btn:hover {
    transform: scale(1.08);
    background-color: var(--white);
}

.favorite-btn i {
    color: var(--primary-red);
    font-size: 14px;
}

.vehicle-details {
    padding: 14px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.vehicle-category {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1.4;
    max-width: calc(100% - 56px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

.vehicle-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    flex: 1;
    min-width: 0;
    line-height: 1.3;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vehicle-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: 999px;
    padding: 3px 8px;
}

.vehicle-rating i {
    color: #F59E0B;
    font-size: 11px;
}

.vehicle-rating span {
    font-weight: 700;
    font-size: 12px;
    color: var(--black);
    line-height: 1;
}

.vehicle-meta {
    margin: 0;
    font-size: 12px;
    color: #64748B;
    font-weight: 500;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 10px 0;
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
    margin: 0;
}

.spec-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    color: var(--dark-gray);
    min-width: 0;
    line-height: 1.2;
}

.spec-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.spec-item i {
    color: var(--primary-red);
    font-size: 12px;
    width: 12px;
    text-align: center;
    flex-shrink: 0;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}

.price-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
}

.price-btn {
    border: none;
    padding: 9px 6px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    min-height: 52px;
    min-width: 0;
    width: 100%;
}

.price-btn:active {
    transform: scale(0.98);
}

.price-btn.primary {
    background: var(--primary-red);
    color: var(--white);
}

.price-btn.primary:hover {
    background: var(--red-hover);
}

.price-btn.secondary {
    background-color: #0F172A;
    color: var(--white);
}

.price-btn.secondary:hover {
    background-color: #1E293B;
}

.price-label {
    font-size: 9px;
    margin-bottom: 3px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
}

.price-amount {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    word-break: break-word;
}

.deposit-btn {
    width: 100%;
    background-color: #F8FAFC;
    color: #475569;
    border: 1px solid var(--border-color);
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.deposit-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    z-index: 1000;
    padding: 0 20px;
    width: 100%;
    pointer-events: none;
}

@media (min-width: 768px) {
    .floating-actions {
        gap: 20px;
        padding: 0 30px;
    }
    
    .floating-btn {
        padding: 18px 25px;
        font-size: 16px;
    }
}

.floating-btn {
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    pointer-events: auto;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.floating-btn:active {
    transform: translateY(-1px);
}

.call-btn {
    background-color: var(--blue);
    margin-left: 0;
}

.whatsapp-btn {
    background-color: var(--green);
    margin-right: 0;
    margin-left: auto;
}

.floating-btn i {
    font-size: 18px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Statistics Section */
.statistics-section {
    background: var(--white);
    padding: 80px 20px;
    margin: 80px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 25px;
    display: block;
}

.stat-content {
    margin-top: 0;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
    letter-spacing: -1px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.stat-number.stat-text {
    font-size: 32px;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--primary-red);
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.step-icon {
    font-size: 56px;
    color: var(--primary-red);
    margin: 30px 0 20px 0;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.2);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

.testimonial-rating {
    color: var(--yellow);
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(227, 6, 19, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    border: none;
    text-align: left;
    font: inherit;
    color: inherit;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-red);
    color: var(--white);
}

.faq-question:hover h3,
.faq-question:hover span,
.faq-question:hover i {
    color: var(--white);
}

.faq-question h3,
.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-red);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 15px;
        margin: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 32px;
        min-height: 40px;
    }
    
    .stat-number.stat-text {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .how-it-works-section,
    .testimonials-section,
    .faq-section {
        padding: 60px 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3,
    .faq-question span {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(90deg, #D50306 0%, #D50306 50%, #B00305 72%, #7A0103 100%);
    color: #ffffff;
    padding: 56px 20px 0;
    margin-top: 64px;
    width: 100%;
    position: relative;
    border-top: none;
}

.main-footer::before { display: none; }

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 360px;
}
.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    text-decoration: none;
}
.footer-brand-row .site-logo {
    height: 72px;
    width: auto;
    max-width: 240px;
    border-radius: 8px;
}
.footer-brand-name {
    display: none;
}
.footer-tagline {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 16px;
}
.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, transform 0.15s ease;
}
.footer-wa:hover { color: #fff; background: #1ebe5d; }

.footer-section { text-align: left; }

.footer-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

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

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

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

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
}

.footer-contact i {
    font-size: 14px;
    color: #ffffff;
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact .fa-whatsapp { color: #25D366; }

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}
.footer-contact a:hover { color: #fff; opacity: 0.8; }

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 16px;
    padding: 16px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom p { margin: 0; }

@media (min-width: 768px) {
    .main-footer {
        padding: 64px 30px 0;
        margin-top: 80px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 48px;
    }
}

@media (min-width: 1024px) {
    .main-footer { padding: 72px 40px 0; }
    .footer-content {
        grid-template-columns: 1.4fr 0.85fr 0.95fr 1.15fr;
        gap: 48px;
    }
}

/* Responsive Design */
/* Mobile First - Single Column */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .vehicle-name {
        font-size: 15px;
    }
    
    .floating-btn span {
        font-size: 11px;
    }
    
    .floating-actions {
        bottom: 15px;
        gap: 10px;
        padding: 0 15px;
        justify-content: space-between;
    }
    
    .floating-btn {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .vehicles-section {
        padding: 50px 12px 30px 12px;
    }
    
    .category-vehicles {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        margin-bottom: 24px;
    }
    
    .category-title {
        font-size: 12px;
        margin: 28px 0 14px 0;
        padding-bottom: 8px;
    }
    
    .vehicle-image img {
        padding: 12%;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 0;
    }
    
    .category-filters {
        gap: 8px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .spec-item {
        font-size: 12px;
    }
}

/* Tablet - 2 Columns */
@media (min-width: 481px) and (max-width: 768px) {
    .vehicles-section {
        padding: 60px 20px 40px 20px;
    }
    
    .category-filters {
        gap: 10px;
        margin-bottom: 35px;
    }
    
    .filter-btn {
        padding: 11px 20px;
        font-size: 13px;
    }
    
    .category-vehicles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    
    .category-title {
        font-size: 12px;
        margin: 32px 0 14px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
        font-size: 26px;
    }
}

/* Small Desktop - 3 Columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .vehicles-section {
        padding: 70px 25px 50px 25px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .category-vehicles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
    
    .category-title {
        font-size: 13px;
        margin: 36px 0 16px 0;
    }
    
    .section-title {
        margin-bottom: 45px;
        font-size: 26px;
    }
    
    .hero-section {
        height: 70vh;
    }
}

/* Medium Desktop - 4 Columns */
@media (min-width: 1025px) and (max-width: 1440px) {
    .vehicles-section {
        padding: 80px 30px 60px 30px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .category-vehicles {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
    
    .category-title {
        font-size: 13px;
        margin: 40px 0 16px 0;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
}

/* Large Desktop - 4 Columns (Fixed) */
@media (min-width: 1441px) {
    .vehicles-section {
        padding: 90px 40px 70px 40px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .category-vehicles {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
    }
    
    .category-title {
        font-size: 13px;
        margin: 44px 0 18px 0;
    }
    
    .hero-section {
        height: 80vh;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .vehicle-name {
        font-size: 17px;
    }
    
    .vehicle-details {
        padding: 16px 16px 18px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle-card {
    animation: fadeIn 0.5s ease-out;
}

/* ==========================================================================
   Mobile Nav Drawer
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background-color: var(--white);
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--light-gray);
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-close {
    background: var(--white);
    border: 1px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
}

.drawer-close:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.drawer-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: var(--black);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    background-color: transparent;
}

.drawer-link i {
    font-size: 18px;
    color: var(--dark-gray);
    width: 24px;
    text-align: center;
}

.drawer-link:hover, .drawer-link.active {
    background-color: var(--primary-red);
    color: var(--white);
}

.drawer-link:hover i, .drawer-link.active i {
    color: var(--white);
}

.drawer-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.drawer-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.drawer-btn.phone {
    background-color: var(--black);
    color: var(--white);
}

.drawer-info {
    font-size: 13px;
    color: var(--dark-gray);
    text-align: center;
    margin-top: 10px;
}

/* ==========================================================================
   Booking & Reservation Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background-color: var(--white);
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    max-height: calc(100vh - 32px);
    overflow: hidden;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    min-width: 0;
}

.modal-overlay.active .booking-modal {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-color);
    color: var(--black);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.modal-preview-header {
    background: #fff;
    padding: 20px 16px 0;
    text-align: center;
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.modal-image-box {
    position: relative;
    width: min(100%, 260px);
    height: 220px;
    margin: 12px auto 0;
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

@supports (aspect-ratio: 1 / 1) {
    .modal-image-box {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

.modal-preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10%;
    box-sizing: border-box;
    display: block;
    margin: 0;
    filter: none;
}

.modal-car-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.modal-car-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    color: var(--black);
}

.modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-option-box {
    background-color: var(--light-gray);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-option-title {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 2px;
}

.modal-option-price {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-red);
}

.modal-specs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background-color: #F1F5F9;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.modal-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--black);
    font-weight: 600;
}

.modal-spec-item i {
    color: var(--primary-red);
    font-size: 16px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.modal-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.modal-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.modal-btn-phone {
    background-color: var(--black);
    color: var(--white);
}

.modal-btn-phone:hover {
    background-color: #1E293B;
    transform: translateY(-2px);
    color: var(--white);
}



/* ── Hero CTA Buttons (WhatsApp only mode) ───────────────────────────────── */
.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
}

.hero-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.28);
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}
.hero-whatsapp-btn i { font-size: 13px; }
.hero-whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.hero-fleet-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: transparent;
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.45);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.hero-fleet-btn i { font-size: 12px; }
.hero-fleet-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

@media (max-width: 899px) {
  .hero-whatsapp-btn,
  .hero-fleet-btn {
    padding: 5px 10px;
    font-size: 11px;
    gap: 4px;
    border-radius: 16px;
  }
  .hero-whatsapp-btn i,
  .hero-fleet-btn i {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .hero-cta-wrap {
    margin-top: 18px;
    gap: 8px;
  }
}

/* Layout helpers */
.section-inner {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

.section-title-dark {
    margin-bottom: 40px;
    color: var(--black);
}

.empty-fleet {
    text-align: center;
    padding: 40px;
    color: #888;
}

.modal-option-note {
    font-size: 12px;
    color: var(--dark-gray);
}

.drawer-brand-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
}

.drawer-company-name {
    font-size: 18px;
}

.drawer-tagline {
    font-size: 9px;
}

.drawer-info i {
    color: var(--primary-red);
}

.footer-contact .fa-map-marker-alt {
    margin-top: 3px;
}

.legal-page {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    line-height: 1.8;
}

.legal-page > h1 {
    color: var(--primary-red);
    margin-bottom: 12px;
}
.legal-page .legal-meta {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 24px;
}
.legal-page .legal-note {
    background: #F8FAFC;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-red);
    padding: 14px 16px;
    font-size: 14px;
    color: #475569;
    margin-bottom: 28px;
}
.legal-page h2 {
    color: var(--dark-red);
    font-size: 18px;
    margin: 28px 0 12px;
}
.legal-page h3 {
    font-size: 15px;
    margin: 16px 0 8px;
}
.legal-page p { margin-bottom: 12px; }
.legal-page ul, .legal-page ol {
    margin: 0 0 12px 22px;
}
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--primary-red); }

/* ==========================================================================
   Corporate About Page
   ========================================================================== */
.corp-hero {
    position: relative;
    min-height: 380px;
    padding: 90px 20px 70px;
    background-color: #0B1220;
    background-image: url('hero-banner.jpg');
    background-size: cover;
    background-position: center 40%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.corp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(8, 12, 22, 0.88) 0%, rgba(8, 12, 22, 0.62) 55%, rgba(8, 12, 22, 0.45) 100%),
        linear-gradient(180deg, rgba(227, 6, 19, 0.18) 0%, transparent 50%);
}
.corp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.corp-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #E30613;
    margin-bottom: 14px;
}
.corp-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4.2vw, 46px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.6px;
    max-width: 720px;
    margin: 0 0 16px;
}
.corp-hero h1 span {
    color: #FF6B81;
}
.corp-hero-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #CBD5E1;
    max-width: 640px;
    margin: 0;
}
.corp-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #94A3B8;
    margin-bottom: 22px;
}
.corp-breadcrumb a { color: #E2E8F0; text-decoration: none; }
.corp-breadcrumb a:hover { color: #fff; }

.corp-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 20px;
}
.corp-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 72px;
}
.corp-split h2,
.corp-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.4px;
    margin: 0 0 8px;
}
.corp-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 10px;
}
.corp-split p,
.corp-copy p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 0 0 16px;
    text-align: left;
}
.corp-split p:last-child { margin-bottom: 0; }
.corp-photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 280px;
}
.corp-photo img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.corp-stats {
    background: #0F172A;
    padding: 48px 20px;
}
.corp-stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.corp-stat {
    text-align: center;
    padding: 8px;
}
.corp-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}
.corp-stat span {
    font-size: 13px;
    font-weight: 600;
    color: #94A3B8;
    letter-spacing: 0.4px;
}

.corp-block { margin-bottom: 72px; }
.corp-block-head {
    max-width: 640px;
    margin-bottom: 36px;
}
.corp-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.corp-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.corp-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.corp-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}
.corp-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 8px;
}
.corp-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0;
}

.corp-mv {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.corp-mv-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 28px 26px;
    border: 1px solid var(--border-color);
}
.corp-mv-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.corp-mv-card h3 i { color: var(--primary-red); font-size: 16px; }
.corp-mv-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--dark-gray);
    margin: 0;
}

.corp-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 18px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}
.corp-cta h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #fff;
    margin: 0 0 6px;
}
.corp-cta p {
    color: #94A3B8;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}
.corp-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (min-width: 768px) {
    .corp-split { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
    .corp-stats-grid { grid-template-columns: repeat(4, 1fr); }
    .corp-values { grid-template-columns: repeat(2, 1fr); }
    .corp-mv { grid-template-columns: repeat(2, 1fr); }
    .corp-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 40px 44px;
    }
    .corp-hero { min-height: 420px; padding: 110px 24px 80px; }
}
@media (min-width: 1024px) {
    .corp-values { grid-template-columns: repeat(3, 1fr); }
}
