﻿:root {
    --yellow: #FFD600;
    --yellow-dark: #F0C800;
    --black: #0A0A0A;
    --black-2: #141414;
    --black-3: #1E1E1E;
    --white: #F5F5F0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ── PAGE SYSTEM ── */
.page {
    display: none;
    min-height: 100vh;
}

    .page.active {
        display: block;
    }

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 68px;
    background: var(--black);
    border-bottom: 2px solid var(--yellow);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--yellow);
    cursor: pointer;
    text-decoration: none;
}

    .nav-logo span {
        color: var(--white);
    }

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

    .nav-links button {
        background: none;
        border: none;
        color: var(--white);
        font-family: 'Barlow', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
        padding: 8px 18px;
        border-radius: 4px;
        transition: background 0.2s, color 0.2s;
    }

        .nav-links button:hover,
        .nav-links button.active {
            background: var(--yellow);
            color: var(--black);
        }

/* ── CHECKER STRIP ── */
.checker {
    height: 12px;
    background-image: repeating-linear-gradient( 90deg, var(--yellow) 0px, var(--yellow) 20px, var(--black) 20px, var(--black) 40px );
}

/* ── HERO ── */
.hero {
    margin-top: 5px;
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255,214,0,0.08) 0%, transparent 70%), var(--black);
}

.hero-content {
    position: relative;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-top: 6px;
    margin-bottom: 28px;
}

    .hero-badge::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--black);
    }

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        mask-image: linear-gradient(to right, transparent 0%, black 30%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
        opacity: 0.7;
    }

@media (max-width: 768px) {
    .hero-image {
        display: none;
    }
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    line-height: 0.92;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 28px;
}

    h1 em {
        color: var(--yellow);
        font-style: normal;
    }

.hero-sub {
    font-size: 1.15rem;
    color: #bbb;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 44px;
    font-weight: 400;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .btn-primary:hover {
        background: var(--yellow-dark);
        transform: translateY(-2px);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 4px;
    border: 2px solid #333;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

    .btn-secondary:hover {
        border-color: var(--yellow);
        color: var(--yellow);
        transform: translateY(-2px);
    }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--yellow);
    padding: 28px 40px;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 0 20px;
    border-right: 2px solid rgba(0,0,0,0.15);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(0,0,0,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ── SECTIONS ── */
section {
    padding: 90px 40px;
}

.section-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    border-left: 3px solid var(--yellow);
    padding-left: 12px;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 20px;
}

/* ── ABOUT SECTION ── */
.about-section {
    background: var(--black-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text p {
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--yellow);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-text span {
    color: #888;
    font-size: 0.9rem;
}

.about-visual {
    background: var(--black-3);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 48px 36px;
    text-align: center;
}

.taxi-emoji-big {
    font-size: 6rem;
    display: block;
    margin-bottom: 24px;
}

.about-visual h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-visual p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.phone-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--yellow);
    letter-spacing: 2px;
}

/* ── AREAS ── */
.areas-section {
    background: var(--black);
}

    .areas-section .inner {
        max-width: 1100px;
        margin: 0 auto;
    }

.areas-intro {
    color: #aaa;
    font-size: 1.05rem;
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 56px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.area-card {
    background: var(--black-2);
    border: 1px solid #222;
    border-radius: 8px;
    padding: 28px 24px;
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
}

    .area-card:hover {
        border-color: var(--yellow);
        transform: translateY(-4px);
    }

    .area-card.primary {
        border-color: var(--yellow);
        background: linear-gradient(135deg, rgba(255,214,0,0.06) 0%, var(--black-2) 100%);
    }

.area-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

.area-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.area-card.primary .area-name {
    color: var(--yellow);
}

.area-desc {
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.5;
}

.area-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--black);
    padding: 3px 10px;
    border-radius: 2px;
    margin-top: 10px;
}

/* ── CONTACT PAGE ── */
.contact-hero {
    margin-top: 68px;
    background: var(--black-2);
    padding: 80px 40px 60px;
    text-align: center;
    border-bottom: 1px solid #222;
}

    .contact-hero h1 {
        margin-bottom: 16px;
    }

    .contact-hero p {
        color: var(--white);
        font-size: 1.05rem;
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.7;
    }

.contact-section {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--black-2);
    border: 1px solid #222;
    border-radius: 10px;
    padding: 36px 28px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    display: block;
    transition: border-color 0.2s, transform 0.2s;
}

    .contact-card:hover {
        border-color: var(--yellow);
        transform: translateY(-4px);
    }

    .contact-card.whatsapp:hover {
        border-color: #25D366;
    }

    .contact-card.email:hover {
        border-color: #4A90D9;
    }

.cc-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.cc-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.cc-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 1px;
    line-height: 1.1;
}

.cc-sub {
    font-size: 0.85rem;
    color: var(--white);
    margin-top: 8px;
}

.cc-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--black);
    transition: background 0.2s;
}

.contact-card.whatsapp .cc-cta {
    background: #25D366;
    color: #fff;
}

.contact-card.email .cc-cta {
    background: #4A90D9;
    color: #fff;
}

.contact-card:hover .cc-cta {
    opacity: 0.9;
}

/* ── INFO BOX ── */
.info-box {
    background: var(--black-2);
    border: 1px solid #222;
    border-left: 4px solid var(--yellow);
    border-radius: 8px;
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.info-box-icon {
    font-size: 2.5rem;
}

.info-box-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.info-box-text p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid #1a1a1a;
    padding: 40px;
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--yellow);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

    .footer-logo span {
        color: #555;
    }

footer p {
    color: var(--white);
    font-size: 0.85rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page.active .hero-content,
.page.active .contact-hero {
    animation: fadeUp 0.5s ease both;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .hero {
        padding: 60px 20px 40px;
    }

    section {
        padding: 60px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-bar {
        padding: 20px;
        gap: 20px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.15);
        padding-bottom: 16px;
    }

        .stat-item:last-child {
            border-bottom: none;
        }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-hero {
        padding: 60px 20px 40px;
    }

    footer {
        padding: 30px 20px;
    }
}