/* Modern Rent-A-Car Platform v3.0 - Optimized */

:root {
    --brand-primary: #D81E05;
    --brand-secondary: #B71C1C;
    --brand-accent: #E53935;
    --neutral-dark: #1A1A1A;
    --neutral-medium: #4A4A4A;
    --neutral-light: #FFF;
    --surface-bg: #F5F5F5;
    --surface-card: #FFF;
    --surface-hover: #EEEEEE;
    --border-color: #E0E0E0;
    --success-color: #059669;
    --whatsapp-color: #25D366;
    --elevation-sm: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
    --elevation-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    --elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: 200ms cubic-bezier(.4, 0, .2, 1)
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased
}

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--neutral-medium);
    background: var(--surface-bg)
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: var(--neutral-light);
    box-shadow: var(--elevation-sm)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--elevation-md)
}

.btn-white {
    background: var(--neutral-light);
    color: var(--brand-primary);
    box-shadow: var(--elevation-sm)
}

.btn-white:hover {
    background: var(--surface-hover)
}

.btn-outline-white {
    background: transparent;
    color: var(--neutral-light);
    border: 2px solid var(--neutral-light)
}

.btn-outline-white:hover {
    background: var(--neutral-light);
    color: var(--brand-primary)
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: var(--neutral-light);
    box-shadow: var(--elevation-sm)
}

.btn-whatsapp.full-width {
    flex: 1;
    min-width: 150px
}

.btn-secondary {
    background: var(--surface-hover);
    color: var(--neutral-medium)
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px
}

.top-banner {
    background: linear-gradient(90deg, #7B1113 0%, #991B1E 100%);
    color: var(--neutral-light);
    text-align: center;
    padding: 10px 24px;
    padding-top: calc(10px + env(safe-area-inset-top));
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px
}

.header {
    background: #A51603;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    border-bottom: none
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--neutral-light);
    letter-spacing: 2px;
    text-transform: uppercase
}

.logo-slogan {
    font-size: 11px;
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .4);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .1)
}

.nav {
    display: flex;
    gap: 36px
}

.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition);
    position: relative
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--neutral-light);
    transition: width var(--transition);
    border-radius: 2px
}

.nav a:hover,
.nav a.active {
    color: var(--neutral-light)
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: var(--neutral-light);
    border-radius: 3px;
    transition: var(--transition)
}

.mobile-menu {
    display: none;
    position: fixed;
    top: calc(110px + env(safe-area-inset-top));
    left: 0;
    right: 0;
    background: var(--neutral-light);
    padding: 24px;
    box-shadow: var(--elevation-lg);
    z-index: 999
}

.mobile-menu.active {
    display: block
}

.mobile-menu a {
    display: block;
    padding: 16px 0;
    text-decoration: none;
    color: var(--neutral-medium);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color)
}

.hero,
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--neutral-light);
    padding: 80px 24px;
    overflow: hidden
}

.hero {
    min-height: 100vh
}

.page-hero {
    min-height: 320px;
    padding: 70px 24px
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, .88) 0%, rgba(183, 28, 28, .75) 100%)
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.9)
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 1
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.15
}

.hero p {
    font-size: 20px;
    opacity: .95;
    margin-bottom: 36px;
    line-height: 1.6
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px
}

.page-hero p {
    font-size: 18px;
    opacity: .95
}

.filters-bar {
    background: var(--neutral-light);
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 48px;
    box-shadow: var(--elevation-md);
    border: 1px solid var(--border-color)
}

.filters-form {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.filter-group {
    flex: 1;
    min-width: 200px
}

.filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--neutral-dark)
}

.filter-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--surface-bg);
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition)
}

.filter-group select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(216, 30, 5, .1)
}

.vehicles-section {
    padding: 40px 0
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--neutral-dark);
    margin-bottom: 32px;
    letter-spacing: -.5px
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px
}

.vehicle-card {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--elevation-sm);
    transition: all var(--transition);
    border: 1px solid var(--border-color)
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--elevation-lg)
}

.vehicle-image {
    position: relative;
    height: 160px;
    background: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vehicle-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--brand-primary);
    color: var(--neutral-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px
}

.vehicle-favorite {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: var(--neutral-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: var(--elevation-sm)
}

.vehicle-favorite:hover {
    background: var(--surface-hover);
    transform: scale(1.1)
}

.vehicle-content {
    padding: 16px
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px
}

.vehicle-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-dark);
    margin: 0
}

.vehicle-transmission {
    font-size: 13px;
    color: var(--neutral-medium)
}

.vehicle-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--neutral-medium);
    font-size: 14px;
    font-weight: 600
}

.vehicle-rating svg {
    color: #F59E0B
}

.vehicle-specs {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--neutral-medium)
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 5px
}

.vehicle-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px
}

.price-box {
    background: var(--surface-bg);
    padding: 8px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--border-color)
}

.price-box.online {
    background: linear-gradient(135deg, var(--success-color) 0%, #047857 100%);
    color: var(--neutral-light);
    border: none
}

.price-label {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .3px
}

.price-value {
    font-size: 15px;
    font-weight: 800
}

.vehicle-deposit {
    text-align: center;
    font-size: 12px;
    color: var(--neutral-medium);
    padding: 6px 0;
    border-top: 1px solid var(--border-color);
    margin-bottom: 8px
}

.vehicle-actions {
    display: flex;
    gap: 10px
}

.vehicle-actions a,
.whatsapp-btn,
.call-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition)
}

.whatsapp-btn {
    background: var(--whatsapp-color);
    color: var(--neutral-light)
}

.call-btn {
    background: var(--brand-primary);
    color: var(--neutral-light)
}

.whatsapp-btn.full-width {
    flex: 1 1 100%
}

.whatsapp-btn svg,
.call-btn svg {
    flex-shrink: 0
}

.no-results {
    text-align: center;
    padding: 80px 24px
}

.no-results h3 {
    font-size: 26px;
    margin-bottom: 12px
}

.no-results p {
    color: var(--neutral-medium);
    margin-bottom: 24px
}

.why-us-section {
    padding: 50px 0;
    background: var(--neutral-light)
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px
}

.why-us-card {
    background: var(--surface-bg);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--elevation-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition)
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--elevation-md)
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: var(--neutral-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px
}

.why-us-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 14px
}

.why-us-card p {
    color: var(--neutral-medium);
    font-size: 15px;
    line-height: 1.7
}

.cta-section {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: var(--neutral-light);
    padding: 60px 24px;
    text-align: center
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -.5px
}

.cta-section p {
    font-size: 19px;
    opacity: .95;
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.7
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap
}

.footer {
    background: var(--neutral-dark);
    color: var(--neutral-light);
    padding: 70px 0 36px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px
}

.footer-logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-accent);
    margin-bottom: 18px
}

.footer-col p {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    line-height: 1.8
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 12px
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition)
}

.footer-col ul li a:hover {
    color: var(--neutral-light)
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, .75);
    font-size: 14px
}

.contact-info li svg {
    flex-shrink: 0;
    margin-top: 4px
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 24px
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-light);
    transition: all var(--transition)
}

.social-links a:hover {
    background: var(--brand-primary);
    transform: translateY(-2px)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px
}

.footer-bottom p {
    color: rgba(255, 255, 255, .75);
    font-size: 14px
}

.footer-links {
    display: flex;
    gap: 24px
}

.footer-links a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 14px
}

.footer-links a:hover {
    color: var(--neutral-light)
}

.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--elevation-lg);
    transition: all var(--transition)
}

.floating-btn:hover {
    transform: scale(1.05)
}

.floating-btn.whatsapp {
    background: var(--whatsapp-color);
    color: var(--neutral-light)
}

.floating-btn.phone {
    background: var(--brand-primary);
    color: var(--neutral-light)
}

.floating-buttons.single-button {
    flex-direction: row
}

.floating-btn.full-width {
    min-width: 220px;
    justify-content: center
}

.contact-section {
    padding: 90px 0
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px
}

.contact-form {
    background: var(--surface-card);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--elevation-md);
    border: 1px solid var(--border-color)
}

.contact-form h2 {
    font-size: 30px;
    margin-bottom: 36px
}

.form-group {
    margin-bottom: 24px
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--neutral-dark)
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition);
    background: var(--surface-bg)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(216, 30, 5, .1)
}

.form-group textarea {
    min-height: 140px;
    resize: vertical
}

.contact-info-section h2 {
    font-size: 30px;
    margin-bottom: 36px
}

.contact-info-card {
    background: var(--surface-bg);
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid var(--border-color)
}

.contact-info-card svg {
    color: var(--brand-primary);
    flex-shrink: 0
}

.contact-info-card h4 {
    font-size: 17px;
    margin-bottom: 6px
}

.contact-info-card p,
.contact-info-card a {
    color: var(--neutral-medium);
    font-size: 14px;
    text-decoration: none
}

.contact-info-card a:hover {
    color: var(--brand-primary)
}

.page-header {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: var(--neutral-light);
    padding: 48px 0;
    text-align: center
}

.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px
}

.page-header p {
    font-size: 17px;
    opacity: .95
}

.policy-section {
    padding: 70px 0
}

.policy-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 24px;
    margin-top: 36px
}

.policy-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 18px;
    margin-top: 24px
}

.policy-section p {
    margin-bottom: 18px;
    color: var(--neutral-medium);
    line-height: 1.8
}

.policy-section ul,
.policy-section ol {
    margin-bottom: 18px;
    margin-left: 24px
}

.policy-section li {
    margin-bottom: 12px;
    color: var(--neutral-medium)
}

.faq-section {
    padding: 90px 0
}

.faq-item {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
    overflow: hidden
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--neutral-dark);
    background: var(--surface-bg);
    transition: background var(--transition)
}

.faq-question:hover {
    background: var(--surface-hover)
}

.faq-answer {
    padding: 24px;
    color: var(--neutral-medium);
    display: none
}

.faq-item.active .faq-answer {
    display: block
}

@media (max-width:1024px) {
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .mobile-menu-btn {
        display: flex
    }
    .nav {
        display: none
    }
    .top-banner {
        padding: 8px 16px;
        font-size: 12px
    }
    .header {
        padding: 12px 0
    }
    .header .container {
        padding: 0 16px
    }
    .logo-text {
        font-size: 22px
    }
    .logo-slogan {
        font-size: 10px;
        padding: 2px 8px
    }
    .hero {
        min-height: 420px;
        padding: 50px 16px
    }
    .hero h1 {
        font-size: 32px;
        margin-bottom: 16px;
        letter-spacing: -1px
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.5
    }
    .hero .btn {
        padding: 14px 32px;
        font-size: 15px;
        width: 100%;
        max-width: 320px
    }
    .page-hero {
        min-height: 240px;
        padding: 40px 16px
    }
    .page-hero h1 {
        font-size: 32px
    }
    .page-hero p {
        font-size: 16px
    }
    .vehicles-section {
        padding: 50px 0
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 36px
    }
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
        margin: 0 auto
    }
    .vehicle-card {
        border-radius: var(--radius-md)
    }
    .vehicle-image {
        height: 200px
    }
    .vehicle-content {
        padding: 16px
    }
    .vehicle-name {
        font-size: 18px
    }
    .vehicle-prices {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }
    .price-box {
        padding: 10px
    }
    .price-label {
        font-size: 10px
    }
    .price-value {
        font-size: 16px
    }
    .vehicle-deposit {
        font-size: 12px;
        padding: 8px 0
    }
    .vehicle-actions {
        gap: 8px
    }
    .vehicle-actions a,
    .whatsapp-btn,
    .call-btn {
        padding: 14px;
        font-size: 14px;
        min-height: 48px;
        border-radius: var(--radius-md)
    }
    .why-us-section {
        padding: 50px 0
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 480px;
        margin: 0 auto
    }
    .why-us-card {
        padding: 32px 24px
    }
    .why-us-icon {
        width: 64px;
        height: 64px
    }
    .why-us-card h3 {
        font-size: 20px
    }
    .why-us-card p {
        font-size: 14px
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }
    .contact-form {
        padding: 28px
    }
    .contact-form h2 {
        font-size: 24px;
        margin-bottom: 24px
    }
    .form-group {
        margin-bottom: 18px
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px;
        min-height: 48px
    }
    .contact-info-section h2 {
        font-size: 24px;
        margin-bottom: 24px
    }
    .contact-info-card {
        padding: 20px
    }
    .cta-section {
        padding: 50px 16px
    }
    .cta-section h2 {
        font-size: 28px;
        margin-bottom: 16px
    }
    .cta-section p {
        font-size: 16px;
        margin-bottom: 24px
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        min-height: 48px
    }
    .footer {
        padding: 50px 0 100px
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }
    .footer-col h4 {
        margin-bottom: 16px
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px
    }
    .floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: row;
        gap: 0;
        padding: 0;
        border-radius: 0;
        z-index: 1001;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, .15)
    }
    .floating-btn {
        flex: 1;
        border-radius: 0;
        padding: 16px;
        font-size: 15px;
        font-weight: 700;
        min-height: 56px;
        justify-content: center;
        box-shadow: none
    }
    .floating-btn:hover {
        transform: none
    }
    .floating-btn.whatsapp {
        border-right: 1px solid rgba(255, 255, 255, .2)
    }
    .floating-btn span {
        display: inline
    }
    .container {
        padding: 0 16px
    }
    .mobile-menu {
        top: calc(95px + env(safe-area-inset-top));
        padding: 20px 16px
    }
    .mobile-menu a {
        padding: 14px 0;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center
    }
    .filters-bar {
        padding: 20px;
        margin-bottom: 32px;
        border-radius: var(--radius-md)
    }
    .filters-form {
        flex-direction: column;
        gap: 16px
    }
    .filter-group {
        min-width: 100%
    }
    .filter-group select {
        min-height: 48px;
        font-size: 16px
    }
    .faq-question {
        padding: 18px;
        font-size: 15px;
        min-height: 48px
    }
    .faq-answer {
        padding: 18px;
        font-size: 14px
    }
    .policy-section {
        padding: 40px 0
    }
    .policy-section h2 {
        font-size: 24px;
        margin-top: 24px
    }
    .policy-section h3 {
        font-size: 18px
    }
    .page-header {
        padding: 32px 0
    }
    .page-header h1 {
        font-size: 28px
    }
    .page-header p {
        font-size: 15px
    }
    .contact-section {
        padding: 50px 0
    }
    .branches-grid {
        font-size: 13px
    }
}

@media (max-width:380px) {
    .hero h1 {
        font-size: 26px
    }
    .hero p {
        font-size: 14px
    }
    .section-title {
        font-size: 24px
    }
    .vehicle-name {
        font-size: 16px
    }
    .price-value {
        font-size: 14px
    }
    .cta-section h2 {
        font-size: 24px
    }
    .floating-btn {
        padding: 14px 8px;
        font-size: 13px
    }
    .floating-btn svg {
        width: 20px;
        height: 20px
    }
}

.vehicles-section .vehicle-actions a {
    border-radius: 50px;
    padding: 11px 16px;
    font-size: 12px
}