/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-search {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.btn-search:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-search-sm {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

.btn-book {
    padding: 0.625rem 1.5rem;
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled,
.navbar-light {
    background: var(--white);
    box-shadow: var(--shadow);
}

.navbar.scrolled .logo,
.navbar-light .logo {
    color: var(--gray-900);
}

.navbar.scrolled .nav-links a,
.navbar-light .nav-links a {
    color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover,
.navbar-light .nav-links a:hover {
    color: var(--primary);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    transition: color 0.3s;
}

.logo i {
    font-size: 1.75rem;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e293b 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15,23,42,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-wrap: pretty;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-xl);
    flex-wrap: wrap;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    flex: 1;
    min-width: 200px;
    border-right: 1px solid var(--gray-200);
}

.search-input-group:last-of-type {
    border-right: none;
}

.search-input-group > i {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.input-wrapper label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
}

.input-wrapper input {
    border: none;
    background: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
    width: 100%;
    outline: none;
    cursor: default;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

.badge i {
    color: var(--accent);
}

/* === Stats === */
.stats {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* === Section Header === */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.0625rem;
}

/* === How It Works === */
.how-it-works {
    padding: 5rem 0;
    background: var(--gray-50);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--white);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.step-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* === Popular Airports === */
.popular-airports {
    padding: 5rem 0;
    background: var(--white);
}

.airports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.airport-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--gray-200);
}

.airport-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.airport-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), var(--shadow-md);
}

.airport-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.9);
}

.airport-info {
    padding: 1.25rem;
}

.airport-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.airport-code {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--gray-100);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.airport-price {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.airport-price strong {
    color: var(--primary);
    font-size: 1.125rem;
}

.lot-count {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* === Partner CTA === */
.partner-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: var(--white);
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partner-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partner-text > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.partner-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.partner-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.9);
}

.partner-benefits i {
    color: var(--accent);
    font-size: 1.125rem;
}

.partner-visual {
    display: flex;
    justify-content: center;
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 100%;
    max-width: 340px;
    color: var(--gray-800);
    box-shadow: var(--shadow-xl);
}

.partner-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.partner-card-header i {
    color: var(--primary);
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 120px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mock-chart .bar {
    flex: 1;
    background: var(--gray-300);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    min-height: 20%;
    transition: background 0.3s;
}

.mock-chart .bar.highlight {
    background: linear-gradient(to top, var(--primary), var(--primary-light));
}

.mock-stats {
    display: flex;
    justify-content: space-between;
}

.mock-stats > div {
    display: flex;
    flex-direction: column;
}

.mock-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mock-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* === Testimonials === */
.testimonials {
    padding: 5rem 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stars {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.testimonial-card > p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* === Footer === */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.125rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--white);
}

/* ============ RESULTS PAGE ============ */

.results-header {
    padding-top: 5rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.results-search-bar {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.results-search-bar .search-input-group {
    border-right: 1px solid var(--gray-200);
    padding: 0.5rem 1rem;
    flex: 1;
    min-width: 160px;
}

.results-search-bar .search-input-group:first-child {
    padding-left: 0;
}

.results-search-bar .btn {
    margin-left: 1rem;
}

/* Results Layout */
.results-section {
    padding: 2rem 0 4rem;
}

.results-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 5rem;
}

.filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.filter-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.875rem;
    background: var(--white);
    color: var(--gray-700);
    outline: none;
}

.price-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.range-slider {
    width: 100%;
    accent-color: var(--primary);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: 0.375rem 0;
    cursor: pointer;
}

.checkbox-label input {
    accent-color: var(--primary);
}

/* Results Main */
.results-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.results-toolbar h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.results-dates {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Parking Cards */
.parking-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: box-shadow 0.2s;
}

.parking-card:hover {
    box-shadow: var(--shadow-md);
}

.parking-card.featured-card {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.badge-best {
    background: var(--accent);
    color: var(--gray-900);
}

.badge-premium {
    background: var(--gray-900);
    color: var(--white);
}

.badge-popular {
    background: var(--primary);
    color: var(--white);
}

.card-image-placeholder {
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.85);
}

.card-content {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.card-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    flex-wrap: wrap;
}

.card-meta .rating {
    color: var(--accent);
    font-weight: 700;
}

.card-meta .rating i {
    margin-right: 0.25rem;
}

.card-price {
    text-align: right;
    flex-shrink: 0;
    margin-left: 1rem;
}

.price-total {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-unit {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-bottom: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.feature i {
    color: var(--primary);
    font-size: 0.75rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

.card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tag-free-cancel {
    background: #ecfdf5;
    color: var(--success);
}

.tag-instant {
    background: #eff6ff;
    color: var(--primary);
}

.show-more {
    text-align: center;
    padding: 1.5rem 0;
}

/* === Modal === */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
}

.modal-header {
    margin-bottom: 1rem;
}

.modal-header i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.modal-content > p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.modal-highlight {
    font-weight: 600;
    color: var(--gray-800) !important;
}

.modal-lot {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.modal-lot strong {
    display: block;
    font-size: 1.125rem;
    color: var(--gray-900);
}

.modal-lot span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .results-layout {
        grid-template-columns: 1fr;
    }
    .filters-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0 1.5rem;
    }
    .airports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
        color: var(--white);
    }
    .navbar-light .mobile-menu-btn,
    .navbar.scrolled .mobile-menu-btn {
        color: var(--gray-800);
    }
    .hero {
        padding-top: 5rem;
    }
    .search-box {
        flex-direction: column;
    }
    .search-input-group {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .airports-grid {
        grid-template-columns: 1fr;
    }
    .parking-card {
        grid-template-columns: 1fr;
    }
    .card-image-placeholder {
        min-height: 140px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .results-search-bar .search-input-group {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 0.5rem 0;
    }
    .results-search-bar .btn {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .card-header {
        flex-direction: column;
    }
    .card-price {
        text-align: left;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .card-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
}
