/* ============================================================
   KURYE TAKSİ — Premium Glassmorphic Design System
   Fonts: Outfit (headings) + Inter (body)
   Theme: Deep Space Obsidian + Warm Golden Accents
   ============================================================ */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ===== BASE RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ===== ACCESSIBILITY: FOCUS STYLES ===== */
button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ===== CSS CUSTOM PROPERTIES (Dark Theme Default) ===== */
:root {
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Backgrounds */
    --bg-primary: #080b11;
    --bg-secondary: #0d1117;
    --bg-alt: #111820;
    --bg-card: rgba(15, 20, 35, 0.6);

    /* Text */
    --text-primary: #f0f4f8;
    --text-secondary: #8b97a8;
    --text-muted: #6b7a8d;

    /* Accent Colors */
    --color-primary: #f97316;
    --color-primary-hover: #ea580c;
    --color-primary-glow: rgba(249, 115, 22, 0.15);
    --color-secondary: #ef4444;
    --color-secondary-hover: #dc2626;
    --color-whatsapp: #22c55e;
    --color-whatsapp-hover: #16a34a;

    /* Glass */
    --glass-bg: rgba(15, 20, 35, 0.6);
    --glass-border: rgba(255, 255, 255, 0.06);

    /* Shadows & Radius */
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --border-radius: 16px;

    /* Container */
    --container-max: 1200px;
}

/* ===== LIGHT THEME OVERRIDES ===== */
body.light-theme {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-alt: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.7);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(15, 23, 42, 0.08);
    --card-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

/* ===== BODY ===== */
html, body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(245, 158, 11, 0.5);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== LAYOUT: CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== UTILITY CLASSES ===== */
.hide {
    display: none !important;
}

.mt-5 {
    margin-top: 40px;
}

.text-success {
    color: var(--color-whatsapp);
}

.text-danger {
    color: var(--color-secondary);
}

.text-warning {
    color: var(--color-primary);
}

.thm-color {
    color: var(--color-primary);
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.07;
    }
    50% {
        opacity: 0.12;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 18px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes pulseRed {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 18px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes mapPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.phone-icon-anim {
    animation: bounce 2s infinite ease-in-out;
}

.animate-pulse {
    animation: glow-pulse 3s infinite ease-in-out;
}

/* ===== GLOW BLOBS (Ambient Background) ===== */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(120px);
    animation: glow-pulse 8s infinite ease-in-out;
}

.glow-blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(245, 158, 11, 0.08);
    top: -150px;
    right: -100px;
}

.glow-blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.06);
    bottom: -100px;
    left: -80px;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #fdba74 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #fdba74);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== BADGES & BUTTONS ===== */
.badge {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--color-primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #fdba74);
    color: #0f172a;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.3), 0 10px 20px rgba(245, 158, 11, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3), 0 10px 20px rgba(34, 197, 94, 0.2);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* ===== TOP HEADER ===== */
.top-header {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.top-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 20px;
}

.top-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.top-contact a i {
    color: var(--color-primary);
}

.top-contact a:hover {
    color: var(--text-primary);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.top-social a:hover {
    color: var(--color-primary);
}

/* ===== MAIN NAVIGATION HEADER ===== */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    background: rgba(10, 14, 20, 0.95);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    gap: 28px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), #fdba74);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-contact-btn {
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    padding: 8px 18px !important;
    border-radius: 20px;
    transition: all 0.3s ease !important;
}

.nav-contact-btn:hover {
    background-color: var(--color-primary) !important;
    color: #0f172a !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.nav-contact-btn::after {
    display: none !important;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--bg-alt);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

body.dark-theme .sun-icon { display: block; }
body.dark-theme .moon-icon { display: none; }
body:not(.dark-theme) .sun-icon { display: none; }
body:not(.dark-theme) .moon-icon { display: block; }

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 11, 17, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--glass-border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-mobile-menu {
    font-size: 32px;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-mobile-menu:hover {
    color: var(--color-primary);
}

.mobile-navigation {
    margin-bottom: auto;
}

.mobile-navigation li {
    margin-bottom: 20px;
}

.mobile-navigation a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-secondary);
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-navigation a:hover,
.mobile-navigation a.active {
    color: var(--color-primary);
    padding-left: 8px;
}

.mobile-contact-btn {
    color: var(--color-primary) !important;
}

.mobile-menu-footer {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.mobile-menu-footer p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.mobile-call-action {
    display: block;
    background: linear-gradient(135deg, var(--color-secondary), #f87171);
    color: white;
    padding: 12px;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.mobile-call-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-mobile-visual {
    display: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content .badge {
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary), #fdba74);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-car-card {
    background: linear-gradient(145deg, rgba(30, 35, 50, 0.95), rgba(15, 20, 30, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 24px;
    padding: 20px;
    width: 100%;
    max-width: 460px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(245, 158, 11, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    z-index: 1;
}

.hero-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 26px;
    background: conic-gradient(from 0deg, transparent, rgba(245, 158, 11, 0.4), transparent, rgba(245, 158, 11, 0.2), transparent);
    z-index: -1;
    animation: glowSpin 6s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-car-card:hover .hero-card-glow {
    opacity: 1;
}

@keyframes glowSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-car-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(245, 158, 11, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
}

.car-badge {
    position: absolute;
    top: 34px;
    left: 34px;
    background: linear-gradient(135deg, var(--color-primary), #f97316);
    color: #0f172a;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.car-badge i {
    font-size: 10px;
}

/* Hero Image Container */
.hero-img-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.hero-car-img {
    border-radius: 16px;
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-car-card:hover .hero-car-img {
    transform: scale(1.03);
}

.hero-img-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: skewX(-15deg);
    transition: none;
    pointer-events: none;
}

.hero-car-card:hover .hero-img-shine {
    animation: shineSweep 0.8s ease-out forwards;
}

@keyframes shineSweep {
    0% { left: -100%; }
    100% { left: 150%; }
}

/* Car Stats Pills */
.car-stats {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 0;
    margin-bottom: 14px;
}

.car-stat-pill {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 12px;
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.car-stat-pill i {
    color: var(--color-primary);
    font-size: 11px;
}

.car-stat-pill:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Hero Trust Bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-trust-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.hero-trust-stars i {
    color: #fbbf24;
    font-size: 13px;
    filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.4));
}

.hero-trust-stars span {
    margin-left: 8px;
    font-weight: 800;
    font-size: 16px;
    color: var(--text-primary);
}

.hero-trust-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Floating Pills */
.hero-floating-pills {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-pill {
    position: absolute;
    background: rgba(30, 35, 50, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: floatBounce 4s ease-in-out infinite;
    pointer-events: auto;
}

.floating-pill i {
    color: var(--color-primary);
    font-size: 13px;
}

.fp-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.fp-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 1.2s;
}

.fp-3 {
    top: 45%;
    right: -35px;
    animation-delay: 2.4s;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.car-stats i {
    color: var(--color-primary);
    margin-right: 5px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 50px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.04));
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.stat-item h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--color-primary);
}

.stat-item p {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.counter {
    font-family: var(--font-heading);
}

/* ===== CORPORATE SECTION ===== */
.corporate-section {
    background: var(--bg-primary);
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.corporate-text h3 {
    font-size: 26px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #fdba74 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.corp-highlight-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(30, 35, 50, 0.4) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-left: 5px solid var(--color-primary);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.corp-highlight-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.corp-highlight-card p {
    margin-bottom: 0 !important;
    font-size: 15px;
    line-height: 1.7;
}

.corporate-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Corporate Tabs */
.corp-tabs-header {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--glass-border);
    margin-top: 30px;
    margin-bottom: 20px;
}

.corp-tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 16px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.corp-tab-btn:hover {
    color: var(--text-secondary);
}

.corp-tab-btn.active {
    color: var(--color-primary);
}

.corp-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #fdba74);
    border-radius: 2px;
}

.corp-tab-pane {
    display: none;
}

.corp-tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.corp-tab-pane p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.corp-tab-pane i {
    font-size: 18px;
    margin-top: 3px;
}

/* Corporate Features Cards */
.corporate-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 28px;
    display: flex;
    gap: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.06);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.04));
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.feature-info p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--bg-alt);
    background-image: radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.03) 0%, transparent 60%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.6), 
        0 0 30px rgba(245, 158, 11, 0.15);
}

.service-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img {
    transform: scale(1.06);
}

.service-card-icon {
    position: absolute;
    bottom: -22px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), #fdba74);
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 3px solid var(--bg-secondary);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-icon {
    transform: translateY(-2px) rotate(15deg);
}

.service-content {
    padding: 30px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 22px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--color-primary) !important;
    background: transparent;
    border: 2px solid var(--color-primary);
    padding: 9px 22px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.05);
    text-align: center;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    background: var(--color-primary);
    color: #ffffff !important;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ===== PRICING SECTION & CALCULATOR ===== */
.pricing-section {
    background: var(--bg-primary);
    background-image: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.03) 0%, transparent 60%);
}

.pricing-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.calculator-box {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.calculator-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.calculator-box h3 i {
    color: var(--color-primary);
}

.calc-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.calc-form .form-group {
    margin-bottom: 22px;
}

.calc-form label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.calc-form label i {
    margin-right: 6px;
}

.start-pin { color: var(--color-whatsapp); }
.end-pin { color: var(--color-secondary); }

/* Form Inputs Global */
.calc-form select,
.contact-form select,
.contact-form input,
.contact-form textarea,
.search-box-wrapper input {
    width: 100%;
    background-color: rgba(8, 11, 17, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 14px;
    border-radius: 10px;
    outline: none;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.calc-form select:focus,
.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.search-box-wrapper input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Light theme form inputs */
body.light-theme .calc-form select,
body.light-theme .contact-form select,
body.light-theme .contact-form input,
body.light-theme .contact-form textarea,
body.light-theme .search-box-wrapper input {
    background-color: rgba(241, 245, 249, 0.8);
}

/* Car Class Selection */
.car-class-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.car-class-option {
    border: 1px solid var(--glass-border);
    background: rgba(8, 11, 17, 0.4);
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-class-option:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.car-class-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.class-icon {
    font-size: 18px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.class-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.car-class-option.active {
    border-color: var(--color-primary);
    background: rgba(245, 158, 11, 0.06);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}

.car-class-option.active .class-icon {
    color: var(--color-primary);
}

.car-class-option.active .class-name {
    color: var(--text-primary);
}

/* Results Box */
.results-box {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.results-placeholder {
    text-align: center;
    max-width: 320px;
}

.placeholder-icon {
    font-size: 60px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.results-placeholder h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.results-placeholder p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.results-content {
    width: 100%;
}

.results-content.hide {
    display: none;
}

/* Route Visualization */
.route-visualization {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 14px 10px;
    background: rgba(8, 11, 17, 0.5);
    border-radius: 14px;
    border: 1px solid var(--glass-border);
}

.visual-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    width: 100px;
    text-align: center;
}

.visual-node i {
    font-size: 16px;
}

.visual-line {
    flex-grow: 1;
    height: 4px;
    background: var(--glass-border);
    position: relative;
    border-radius: 2px;
    margin: 0 8px;
}

.visual-car {
    position: absolute;
    top: -12px;
    left: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-primary), #fdba74);
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    transform: translateX(-50%);
}

.visual-car.animating {
    transition: left 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Stats Result Grid */
.stats-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.result-stat-item {
    background: rgba(8, 11, 17, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.result-stat-item .label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.result-stat-item h4 {
    font-size: 18px;
    font-weight: 800;
}

.highlight-price {
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.02) 100%);
}

.highlight-price h4 {
    color: var(--color-primary);
    font-size: 22px;
}

.note-box {
    background: rgba(245, 158, 11, 0.04);
    border-left: 3px solid var(--color-primary);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.note-box i {
    margin-right: 5px;
    color: var(--color-primary);
}

.results-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== DISTRICTS SECTION ===== */
.districts-section {
    background: var(--bg-alt);
    background-image: radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
}

.districts-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.search-box-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 450px;
}

.search-box-wrapper input {
    padding: 14px 14px 14px 44px;
    border-radius: 30px;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.clear-search {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    display: none;
    transition: color 0.3s ease;
}

.clear-search:hover {
    color: var(--text-primary);
}

.clear-search.visible {
    display: block;
}

.filter-tabs {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--text-primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-primary), #fdba74);
    color: #0f172a;
    border-color: var(--color-primary);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background: rgba(15, 20, 30, 0.5);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.district-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--color-primary);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.district-badge:hover {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    border-left-width: 5px;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.district-badge .name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
}

.district-badge .side-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.avrupa-tag {
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-whatsapp);
}

.anadolu-tag {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-primary);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--bg-primary);
    background-image: radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.03) 0%, transparent 60%);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.15);
}

.faq-item.active {
    border-left: 3px solid var(--color-primary);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 22px 25px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-arrow {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 15px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--bg-alt);
    background-image: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 60%);
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0.3;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-content {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 48px 50px;
    text-align: center;
    box-shadow: var(--card-shadow);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 120px;
    color: rgba(245, 158, 11, 0.06);
    position: absolute;
    top: 0;
    left: 40px;
    line-height: 1;
    pointer-events: none;
}

.testimonial-content .rating {
    color: var(--color-primary);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.testimonial-content p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.user-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.user-info span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-arrow {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-muted);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 28px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--color-primary), #fdba74);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--bg-primary);
    background-image: radial-gradient(circle at 70% 70%, rgba(245, 158, 11, 0.03) 0%, transparent 60%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.04));
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item:nth-child(2) .info-item-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.04));
    color: var(--color-whatsapp);
}

.info-item-text span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.info-item-text a,
.info-item-text p {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.info-item-text a:hover {
    color: var(--color-primary);
}

/* Contact Form Container */
.contact-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.contact-form-container h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.col-6 {
    flex: 1;
}

.contact-form label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form textarea {
    resize: vertical;
}

/* ===== MAP MOCKUP ===== */
.map-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 380px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.map-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 20px;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-card h4 {
    font-size: 14px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-card p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.map-vector {
    width: 100%;
    height: 100%;
    background-color: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.map-grid-lines {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(15deg);
}

.map-river {
    position: absolute;
    width: 120%;
    height: 60px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.18));
    bottom: 20px;
    left: -10%;
    transform: rotate(-10deg);
    border-radius: 30px;
}

.map-road {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.main-road-1 {
    width: 150%;
    height: 24px;
    top: 40%;
    left: -20%;
    transform: rotate(5deg);
}

.main-road-2 {
    width: 30px;
    height: 150%;
    left: 60%;
    top: -20%;
    transform: rotate(-15deg);
}

.local-road-1 {
    width: 120%;
    height: 12px;
    top: 70%;
    left: -10%;
    transform: rotate(-5deg);
}

.local-road-2 {
    width: 12px;
    height: 120%;
    left: 30%;
    top: -10%;
    transform: rotate(10deg);
}

.map-marker {
    position: absolute;
    top: 55%;
    left: 61%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--color-primary), #fdba74);
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    z-index: 5;
}

.pulse-ring {
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    height: 46px;
    width: 46px;
    position: absolute;
    top: 0;
    left: 0;
    animation: mapPulse 2.5s infinite ease-out;
    opacity: 0;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.about-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-widget .logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 180px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 380px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--color-primary), #fdba74);
    color: #0f172a;
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.footer-widget h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #fdba74);
    border-radius: 2px;
}

.links-widget ul li {
    margin-bottom: 12px;
}

.links-widget a {
    color: var(--text-secondary);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.links-widget a i {
    font-size: 10px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.links-widget a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.links-widget a:hover i {
    color: var(--color-primary);
}

.contact-widget ul li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-widget ul li i {
    color: var(--color-primary);
    font-size: 16px;
    margin-top: 3px;
}

.contact-widget ul li a:hover {
    color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 30px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* Footer Districts */
.footer-districts-container {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
}

.footer-districts-wrapper h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-districts-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #fdba74);
    border-radius: 2px;
}

.footer-districts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-district-col h4 {
    font-size: 15px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.footer-district-col ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px 15px;
}

.footer-district-col ul li {
    font-size: 13px;
}

.footer-district-col ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-district-col ul li a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

/* ===== FLOATING ACTION BUTTONS ===== */
/* ===== FLOATING ACTION BUTTONS (Round Circles) ===== */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.fab-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fab-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}

.fab-circle:active {
    transform: scale(0.95);
}

/* WhatsApp Button */
.fab-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: fabPulseGreen 2.5s infinite;
}

.fab-whatsapp:hover {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes fabPulseGreen {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* Phone Button */
.fab-phone {
    background: linear-gradient(135deg, var(--color-primary), #f97316);
    animation: fabPulseOrange 3s infinite;
}

.fab-phone:hover {
    box-shadow: 0 6px 28px rgba(245, 158, 11, 0.5);
}

@keyframes fabPulseOrange {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(245, 158, 11, 0); }
}

/* Scroll to Top Button */
.fab-scroll-top {
    background: rgba(30, 35, 50, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
}

.fab-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-scroll-top:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.5);
    color: var(--color-primary);
    box-shadow: 0 6px 28px rgba(245, 158, 11, 0.2);
}

/* Video Play Button */
.fab-video {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    animation: fabPulseRed 2.5s infinite;
}

.fab-video:hover {
    box-shadow: 0 6px 28px rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, #f87171, #dc2626);
}

@keyframes fabPulseRed {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(239, 68, 68, 0); }
}

/* ===== VIDEO MODAL OVERLAY ===== */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-overlay.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.video-player-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-player-container video,
.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}

/* ===== SUCCESS MODAL ===== */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 11, 17, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.custom-modal {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-modal-overlay.active .custom-modal {
    transform: scale(1);
}

.modal-success-icon {
    font-size: 64px;
    color: var(--color-whatsapp);
    margin-bottom: 20px;
}

.custom-modal h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.custom-modal p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* =============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================= */

/* ----- 1024px and below ----- */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .districts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
    }

    .footer-widget:nth-child(3) {
        grid-column: span 2;
    }
}

/* ----- 768px and below ----- */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .top-header {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .theme-toggle {
        display: none;
    }

    /* Hero */
    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-mobile-visual {
        display: flex;
        justify-content: center;
        margin-bottom: 24px;
        position: relative;
    }

    .hero-mob-img {
        max-width: 280px;
        width: 80%;
        height: auto;
        filter: drop-shadow(0 8px 24px rgba(245, 158, 11, 0.15));
        animation: floatPin 3s ease-in-out infinite;
    }

    @keyframes floatPin {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-actions .btn-primary {
        background: linear-gradient(135deg, var(--color-primary), #fdba74);
        color: #0f172a !important;
        border: none;
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    }

    .hero-actions .btn-whatsapp {
        background: #25d366;
        color: #ffffff !important;
        border: none;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    }

    .hero-actions .btn-secondary {
        background: transparent !important;
        border: none !important;
        color: var(--text-primary) !important;
        box-shadow: none !important;
        text-decoration: underline;
        padding: 5px 0;
        margin-top: 5px;
    }

    .hero-actions .btn-secondary:hover {
        color: var(--color-primary) !important;
        transform: none !important;
    }

    .hero-visual {
        display: none !important;
    }

    .hero-car-card {
        max-width: 380px;
        margin: 0 auto;
        overflow: visible;
    }

    .hero-car-card .hero-card-glow {
        opacity: 0.8;
    }

    .hero-car-img {
        height: 200px;
    }

    .hero-floating-pills {
        display: none;
    }

    .logo-img {
        height: 90px;
    }

    /* Corporate */
    .corporate-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Pricing */
    .pricing-card-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Districts */
    .districts-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box-wrapper {
        max-width: 100%;
    }

    .filter-tabs {
        justify-content: space-between;
    }

    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .col-6 {
        flex: 1;
        width: 100%;
    }

    /* Testimonials */
    .testimonial-content {
        padding: 35px 20px;
    }

    .testimonial-content::before {
        font-size: 80px;
        left: 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-widget:nth-child(3) {
        grid-column: span 1;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-districts-grid {
        grid-template-columns: 1fr;
    }

    /* Calculator & Results boxes */
    .calculator-box,
    .results-box,
    .contact-form-container {
        padding: 28px 20px;
    }

    /* Floating Action Buttons — Mobile */
    .fab-container {
        bottom: 20px;
        right: 16px;
        gap: 12px;
    }

    .fab-circle {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ----- 576px and below: Stack map ---- */
@media (max-width: 576px) {
    .map-wrapper {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
    }

    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        padding: 15px;
        width: 100%;
    }

    .map-card {
        max-width: 100%;
        box-shadow: none;
        border: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
    }

    .map-vector {
        height: 250px;
    }
}

/* ----- 480px and below ----- */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .section-title {
        font-size: 24px;
    }

    .badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 10px;
        align-items: center;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin: 0 auto;
    }

    .stat-item h3 {
        font-size: 22px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 16px;
    }

    .district-badge {
        padding: 10px 12px;
        justify-content: center;
    }

    .district-badge .side-tag {
        display: none !important;
    }

    .stats-result-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .filter-tabs {
        flex-wrap: wrap;
    }

    .filter-btn {
        flex: 1;
        min-width: 0;
        text-align: center;
        padding: 10px 14px;
        font-size: 12px;
    }

    .corp-tabs-header {
        flex-wrap: wrap;
    }

    .corp-tab-btn {
        font-size: 12px;
        padding: 10px 12px;
    }

    .car-class-selection {
        grid-template-columns: 1fr;
    }
}

/* ----- 375px: Minimum viable mobile ----- */
@media (max-width: 375px) {
    .container {
        padding: 0 14px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title-wrapper {
        margin-bottom: 40px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .stat-item {
        padding: 18px 16px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .calculator-box,
    .results-box,
    .contact-form-container {
        padding: 20px 16px;
    }
}

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
}
