/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette - Estilo Chicha Pop Festivo / Claro (Versión Vistosa) */
    --color-bg-dark: #f4f5fa; /* Fondo General Claro */
    --color-bg-card: #ffffff; /* Tarjetas Blancas con Contraste Chicha */
    --color-bg-nav: rgba(255, 255, 255, 0.95);
    
    /* Neones y Colores Chicha Vivos */
    --color-primary: #ffcc00; /* Amarillo Taxi / Dorado Chicha */
    --color-primary-hover: #e6b800;
    --color-primary-glow: rgba(255, 204, 0, 0.4);
    
    --color-chicha-magenta: #e60067; /* Fucsia / Magenta Chicha Vivo */
    --color-chicha-cyan: #00b4d8; /* Cían / Azul Festivo */
    --color-chicha-green: #10b981; /* Verde Esmeralda / Lima */

    --color-secondary: #0f172a;
    --color-accent-green: #25d366; /* WhatsApp Green */
    --color-text-main: #0f172a; /* Texto Oscuro de Alta Legibilidad */
    --color-text-muted: #475569;
    --color-border: rgba(230, 0, 103, 0.2);
    --color-border-hover: #ffcc00;
    
    /* Gradients Chicha Pop Claro */
    --gradient-primary: linear-gradient(135deg, #ffcc00 0%, #e60067 100%);
    --gradient-chicha-text: linear-gradient(90deg, #d90429 0%, #e60067 40%, #7209b7 100%);
    --gradient-chicha-badge: linear-gradient(135deg, #e60067 0%, #ffcc00 100%);
    --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    --gradient-glow: radial-gradient(circle, rgba(230, 0, 103, 0.12) 0%, rgba(255, 204, 0, 0.1) 40%, rgba(244, 245, 250, 0) 70%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions & Shadow */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px -10px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 25px rgba(255, 204, 0, 0.4);
    --shadow-chicha-pink: 0 0 25px rgba(230, 0, 103, 0.3);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

.text-gradient {
    background: var(--gradient-chicha-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.95rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: var(--gradient-chicha-badge);
    border: 1px solid rgba(255, 230, 0, 0.5);
    border-radius: 50px;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #090912;
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.4);
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 127, 0.6), 0 0 15px rgba(255, 230, 0, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(230, 0, 103, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
}

.logo-taxi {
    color: #eab308; /* Amarillo Dorado Taxi */
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.3);
}

.logo-chamba {
    color: #e60067; /* Fucsia / Magenta Chicha */
    text-shadow: 0 0 10px rgba(230, 0, 103, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
}

.nav-link:hover {
    color: var(--color-chicha-magenta);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #0f172a;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255,0,127,0.18) 0%, rgba(255,230,0,0.12) 45%, rgba(9,9,18,0) 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1, .hero-title-main {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 0, 127, 0.35);
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-wrapper {
    background-color: rgba(255, 0, 127, 0.12);
    border: 1px solid rgba(255, 0, 127, 0.4);
    color: var(--color-primary);
    padding: 0.65rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}

.hero-feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hero-feature-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

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

.visual-card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition-smooth);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.visual-tag {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    border: 2px solid var(--color-chicha-magenta);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(230, 0, 103, 0.2);
}

.tag-top {
    top: 10%;
    left: -5%;
}

.tag-bottom {
    bottom: 10%;
    right: -5%;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

.tag-dot.accent {
    background-color: var(--color-accent-green);
}

/* ==========================================================================
   VEHICLES SECTION
   ========================================================================== */
.vehicles-section {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-muted);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.vehicle-card {
    position: relative;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: visible;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background-color: rgba(255, 255, 255, 0.02);
    aspect-ratio: 1.5 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-wrapper img {
    transition: var(--transition-smooth);
    width: 90%;
    object-fit: contain;
}

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

.card-badge {
    position: absolute;
    top: -14px;
    right: 1rem;
    left: auto;
    padding: 0.6rem 1.3rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 900;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 25;
    transform: rotate(3deg);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.vehicle-card:hover .card-badge {
    transform: rotate(0deg) scale(1.1);
}

.badge-new {
    background: linear-gradient(135deg, #ffe600 0%, #ff007f 100%);
    color: #000000;
    font-weight: 900;
    border: 2px solid #ffffff;
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.6), 0 0 15px rgba(255, 230, 0, 0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

.badge-used {
    background: linear-gradient(135deg, #00f0ff 0%, #ff007f 100%);
    color: #ffffff;
    font-weight: 900;
    border: 2px solid #ffffff;
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.6), 0 0 15px rgba(255, 0, 127, 0.5);
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.car-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.car-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.spec-item svg {
    color: var(--color-chicha-cyan);
}

.pricing-box {
    background-color: rgba(255, 0, 127, 0.05);
    border: 1px solid rgba(255, 0, 127, 0.25);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.75rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    color: var(--color-text-muted);
}

.price-value {
    font-weight: 600;
}

.price-value.highlight {
    color: var(--color-primary);
    font-weight: 800;
    text-shadow: 0 0 8px rgba(255, 230, 0, 0.4);
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    margin-bottom: 1.5rem;
}

.feat-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
    border-top: 1px solid rgba(230, 0, 103, 0.15);
    border-bottom: 1px solid rgba(230, 0, 103, 0.15);
}

.benefits-glow {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230,0,103,0.08) 0%, rgba(244,245,250,0) 70%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: #ffffff;
    border: 2px solid rgba(230, 0, 103, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: #e60067;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(230, 0, 103, 0.15);
}

.benefit-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, rgba(230, 0, 103, 0.1) 0%, rgba(255, 204, 0, 0.15) 100%);
    border: 2px solid rgba(230, 0, 103, 0.3);
    color: #e60067;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(230, 0, 103, 0.1);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* ==========================================================================
   REQUIREMENTS SECTION
   ========================================================================== */
.requirements-section {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
}

.req-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.req-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.req-content p {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.req-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-accent-green);
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.req-list strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.req-list p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.req-visual {
    position: relative;
    padding: 2rem;
}

.req-cta-card {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border: 2px solid rgba(230, 0, 103, 0.2);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.req-cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.req-cta-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.glow-bg {
    position: absolute;
    width: 105%;
    height: 105%;
    top: -2.5%;
    left: -2.5%;
    background: var(--gradient-primary);
    filter: blur(40px);
    opacity: 0.1;
    z-index: 1;
    border-radius: 30px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: #ffffff;
    border-top: 2px solid rgba(230, 0, 103, 0.2);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.brand-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.social-icon {
    width: 44px;
    height: 44px;
    background-color: #f1f5f9;
    border: 1px solid rgba(230, 0, 103, 0.2);
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: #e60067;
    color: #ffffff;
    border-color: #e60067;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 0, 103, 0.3);
}

.footer-links h3,
.footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-links a:hover {
    color: #e60067;
    padding-left: 5px;
}

.footer-contact p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-item svg {
    color: #e60067;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem 0;
    background-color: #f8fafc;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--color-accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: bounce-float 3s infinite alternate;
    transition: var(--transition-smooth);
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes bounce-float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-features {
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image {
        transform: none;
        max-width: 80%;
    }
    .hero-image:hover {
        transform: scale(1.02);
    }
    .tag-top, .tag-bottom {
        display: none;
    }
    .req-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
    }
}

@media (max-width: 768px) {
    .btn-header {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--color-border);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        font-size: 1.25rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .contact-details {
        align-items: center;
    }
    .bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Menu toggle animations */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ==========================================================================
   EVALUATION NOTICE CARD
   ========================================================================== */
.evaluation-notice-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 0, 127, 0.08);
    border: 1.5px solid rgba(255, 0, 127, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(255, 0, 127, 0.15);
}

.notice-icon {
    font-size: 2rem;
    line-height: 1;
}

.notice-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}

.notice-text p {
    font-size: 0.92rem;
    color: var(--color-text-main);
    line-height: 1.5;
}

.notice-highlight {
    margin-top: 0.5rem;
    font-size: 0.88rem !important;
    color: #ff80bf !important;
}

/* ==========================================================================
   THEME TOGGLE BUTTON & DARK MODE OVERRIDES
   ========================================================================== */
.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(230, 0, 103, 0.1) 0%, rgba(255, 204, 0, 0.15) 100%);
    border: 2px solid rgba(230, 0, 103, 0.3);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    border-color: #e60067;
    box-shadow: 0 6px 18px rgba(230, 0, 103, 0.25);
}

.theme-toggle-btn .sun {
    display: none;
}

.theme-toggle-btn .moon {
    display: inline-block;
}

/* --- DARK MODE OVERRIDES --- */
body.dark-mode {
    --color-bg-dark: #090912;
    --color-bg-card: #131322;
    --color-bg-nav: rgba(13, 13, 26, 0.95);
    --color-primary: #ffe600;
    --color-primary-hover: #fff066;
    --color-chicha-magenta: #ff007f;
    --color-chicha-cyan: #00f0ff;
    --color-secondary: #ffffff;
    --color-text-main: #f8fafc;
    --color-text-muted: #a0a5ba;
    --color-border: rgba(255, 0, 127, 0.25);
    --color-border-hover: rgba(255, 230, 0, 0.6);
    --gradient-primary: linear-gradient(135deg, #ffe600 0%, #ff007f 100%);
    --gradient-chicha-text: linear-gradient(90deg, #ffe600 0%, #ff007f 50%, #00f0ff 100%);
    --gradient-chicha-badge: linear-gradient(135deg, #ff007f 0%, #ffe600 100%);
    --gradient-dark: linear-gradient(180deg, #131322 0%, #090912 100%);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    background-color: #090912 !important;
    color: #f8fafc !important;
}

body.dark-mode .main-header {
    background-color: rgba(13, 13, 26, 0.95) !important;
    border-bottom-color: rgba(255, 0, 127, 0.25) !important;
}

body.dark-mode .logo-taxi {
    color: #ffe600 !important;
}

body.dark-mode .logo-chamba {
    color: #ff007f !important;
}

body.dark-mode .nav-link {
    color: #a0a5ba !important;
}

body.dark-mode .nav-link:hover {
    color: #ffe600 !important;
}

body.dark-mode .mobile-menu-toggle span {
    background-color: #f8fafc !important;
}

body.dark-mode .hero-section {
    background: linear-gradient(180deg, #131322 0%, #090912 100%) !important;
}

body.dark-mode .hero-lead,
body.dark-mode .hero-feature-item p,
body.dark-mode .car-subtitle,
body.dark-mode .price-label,
body.dark-mode .benefit-card p,
body.dark-mode .req-content p,
body.dark-mode .brand-desc,
body.dark-mode .footer-links a,
body.dark-mode .footer-contact p,
body.dark-mode .bottom-container {
    color: #a0a5ba !important;
}

body.dark-mode .hero-feature-item h4,
body.dark-mode .spec-item,
body.dark-mode .price-value,
body.dark-mode .section-header h2,
body.dark-mode .req-content h2,
body.dark-mode .req-list strong,
body.dark-mode .btn-secondary {
    color: #f8fafc !important;
}

body.dark-mode .feature-icon-wrapper {
    background-color: rgba(255, 0, 127, 0.12) !important;
    border-color: rgba(255, 0, 127, 0.4) !important;
    color: #ffe600 !important;
}

body.dark-mode .visual-tag {
    background-color: rgba(15, 20, 36, 0.85) !important;
    color: #f8fafc !important;
    border-color: rgba(255, 0, 127, 0.4) !important;
}

body.dark-mode .vehicles-section,
body.dark-mode .requirements-section {
    background-color: #090912 !important;
}

body.dark-mode .vehicle-card,
body.dark-mode .benefit-card,
body.dark-mode .req-cta-card {
    background-color: #131322 !important;
    border-color: rgba(255, 0, 127, 0.25) !important;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7) !important;
}

body.dark-mode .benefit-card h3,
body.dark-mode .req-cta-card h3,
body.dark-mode .card-body h3 {
    color: #f8fafc !important;
}

body.dark-mode .benefits-section {
    background: linear-gradient(180deg, #0f1424 0%, #070a13 100%) !important;
    border-color: rgba(255, 0, 127, 0.25) !important;
}

body.dark-mode .benefit-icon {
    background: rgba(255, 0, 127, 0.12) !important;
    border-color: rgba(255, 0, 127, 0.4) !important;
    color: #ffe600 !important;
}

body.dark-mode .main-footer {
    background-color: #070a13 !important;
    border-top-color: rgba(255, 0, 127, 0.25) !important;
}

body.dark-mode .footer-bottom {
    background-color: #04060d !important;
    border-top-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .footer-links h3,
body.dark-mode .footer-contact h3,
body.dark-mode .contact-item {
    color: #f8fafc !important;
}

body.dark-mode .social-icon {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 0, 127, 0.25) !important;
    color: #f8fafc !important;
}

body.dark-mode .theme-toggle-btn {
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.15) 0%, rgba(255, 0, 127, 0.2) 100%) !important;
    border-color: rgba(255, 230, 0, 0.4) !important;
}

body.dark-mode .theme-toggle-btn .sun {
    display: inline-block !important;
}

body.dark-mode .theme-toggle-btn .moon {
    display: none !important;
}
