/* =========================================
   SAZ DROP TAXI
   Coming Soon Landing Page
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f5b400;
    --primary-dark: #d99500;
    --dark: #101010;
    --dark-2: #171717;
    --dark-3: #222222;
    --white: #ffffff;
    --text: #bdbdbd;
    --green: #25d366;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1150px, 92%);
    margin: auto;
}


/* =========================================
   HEADER
   ========================================= */

.header {
    position: relative;
    z-index: 10;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    background: rgba(16,16,16,0.95);
}

.nav {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--primary);

    font-size: 24px;
}

.logo strong {
    display: block;

    font-size: 20px;
    letter-spacing: 1px;
}

.logo small {
    display: block;

    color: var(--primary);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.nav-call {
    padding: 10px 18px;

    border: 1px solid var(--primary);
    border-radius: 50px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}

.nav-call:hover {
    background: var(--primary);
    color: #111;
}


/* =========================================
   HERO
   ========================================= */

.hero {
    min-height: 650px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;
    gap: 50px;

    padding: 80px 4%;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(245,180,0,0.15),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #101010,
            #171717
        );

    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    margin-left: auto;
}

.location-badge {
    display: inline-block;

    margin-bottom: 25px;

    padding: 8px 15px;

    border: 1px solid rgba(245,180,0,0.4);
    border-radius: 50px;

    background: rgba(245,180,0,0.08);

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;
}

.coming-label {
    margin-bottom: 12px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 3px;
}

h1 {
    max-width: 650px;

    font-size: clamp(42px, 6vw, 76px);

    line-height: 1.05;

    letter-spacing: -2px;
}

h1 span {
    display: block;

    color: var(--primary);
}

.hero-text {
    max-width: 590px;

    margin-top: 25px;

    color: var(--text);

    font-size: 18px;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 800;

    transition:
        transform 0.25s,
        box-shadow 0.25s,
        background 0.25s;
}

.btn:hover {
    transform: translateY(-3px);
}

.whatsapp {
    background: var(--green);
    color: #07140b;
}

.whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37,211,102,0.25);
}

.call {
    background: var(--primary);
    color: #111;
}

.call:hover {
    background: #ffc933;

    box-shadow:
        0 10px 30px rgba(245,180,0,0.25);
}

.website {
    margin-top: 25px;

    color: #888;

    font-size: 14px;
}


/* =========================================
   TAXI ILLUSTRATION
   ========================================= */

.hero-image {
    position: relative;

    min-height: 400px;

    display: grid;
    place-items: center;
}

.glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(245,180,0,0.12);

    filter: blur(60px);
}

.taxi-card {
    position: relative;

    width: min(450px, 90%);

    height: 300px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #242424,
            #121212
        );

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.5);

    overflow: hidden;
}

.road {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 70px;

    background: #0a0a0a;
}

.road::after {
    content: "";

    position: absolute;

    top: 33px;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        repeating-linear-gradient(
            90deg,
            var(--primary) 0 35px,
            transparent 35px 70px
        );
}

.taxi {
    position: absolute;

    left: 50%;

    bottom: 60px;

    width: 280px;
    height: 100px;

    transform: translateX(-50%);
}

.taxi-top {
    position: absolute;

    left: 60px;
    top: 0;

    width: 160px;
    height: 55px;

    border-radius: 70px 70px 5px 5px;

    background: var(--primary);
}

.window {
    position: absolute;

    top: 10px;

    width: 65px;
    height: 30px;

    background: #1a2933;

    border: 2px solid #333;

    border-radius: 8px 8px 2px 2px;
}

.left-window {
    left: 10px;
}

.right-window {
    right: 10px;
}

.taxi-body {
    position: absolute;

    bottom: 15px;

    width: 100%;
    height: 65px;

    border-radius: 20px 20px 12px 12px;

    background: var(--primary);

    box-shadow:
        inset 0 -15px 0 rgba(0,0,0,0.08);
}

.taxi-text {
    position: absolute;

    left: 50%;
    top: 22px;

    transform: translateX(-50%);

    color: #111;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: 4px;
}

.headlight {
    position: absolute;

    left: 10px;
    top: 25px;

    width: 18px;
    height: 15px;

    border-radius: 50%;

    background: #fff;
}

.headlight.right {
    left: auto;
    right: 10px;
}

.wheel {
    position: absolute;

    bottom: 0;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: #0c0c0c;

    border: 8px solid #333;
}

.wheel-left {
    left: 35px;
}

.wheel-right {
    right: 35px;
}


/* =========================================
   SERVICES
   ========================================= */

.services {
    padding: 100px 0;

    background: #0c0c0c;
}

.section-heading {
    text-align: center;

    margin-bottom: 50px;
}

.section-heading p {
    margin-bottom: 8px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3px;
}

.section-heading h2 {
    font-size: clamp(32px, 5vw, 48px);
}

.section-heading h2 span {
    color: var(--primary);
}

.heading-line {
    width: 60px;
    height: 4px;

    margin: 18px auto 0;

    border-radius: 10px;

    background: var(--primary);
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.service-card {
    padding: 35px 28px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 18px;

    background: #171717;

    transition:
        transform 0.3s,
        border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(245,180,0,0.6);
}

.service-card.featured {
    border-color:
        rgba(245,180,0,0.5);
}

.service-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 15px;

    background: rgba(245,180,0,0.12);

    font-size: 25px;
}

.service-card h3 {
    margin-bottom: 10px;

    font-size: 22px;
}

.service-card p {
    color: #999;

    font-size: 15px;
}


/* =========================================
   CTA
   ========================================= */

.cta {
    padding: 75px 0;

    background:
        linear-gradient(
            120deg,
            #f5b400,
            #d99500
        );

    color: #111;
}

.cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.cta-small {
    margin-bottom: 5px;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
}

.cta h2 {
    max-width: 600px;

    font-size: clamp(30px, 5vw, 48px);

    line-height: 1.1;
}

.cta h2 span {
    color: #fff;
}

.cta p {
    margin-top: 12px;

    max-width: 600px;
}

.cta-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.cta .whatsapp {
    background: #111;
    color: #fff;
}

.cta .call {
    background: #fff;
}


/* =========================================
   FOOTER
   ========================================= */

footer {
    background: #080808;
}

.footer-content {
    min-height: 130px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-content strong {
    color: var(--primary);

    letter-spacing: 1px;
}

.footer-content p {
    color: #777;

    font-size: 13px;
}

.footer-content div:last-child {
    display: flex;

    flex-direction: column;

    gap: 6px;

    text-align: right;
}

.footer-content a {
    color: #aaa;

    font-size: 14px;
}

.footer-content a:hover {
    color: var(--primary);
}

.copyright {
    padding: 18px;

    border-top: 1px solid rgba(255,255,255,0.06);

    color: #666;

    font-size: 12px;

    text-align: center;
}


/* =========================================
   MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-content {
        margin: auto;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        min-height: 300px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;

        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }
}


@media (max-width: 600px) {

    .nav {
        min-height: 68px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;

        font-size: 20px;
    }

    .logo strong {
        font-size: 17px;
    }

    .nav-call {
        padding: 8px 13px;

        font-size: 12px;
    }

    .hero {
        padding: 55px 5% 45px;
    }

    h1 {
        font-size: 43px;

        letter-spacing: -1.5px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-image {
        min-height: 260px;
    }

    .taxi-card {
        height: 240px;
    }

    .taxi {
        transform:
            translateX(-50%)
            scale(0.8);
    }

    .services {
        padding: 70px 0;
    }

    .service-card {
        padding: 28px 22px;
    }

    .cta {
        padding: 60px 0;
    }

    .footer-content {
        padding: 30px 0;

        flex-direction: column;

        text-align: center;
    }

    .footer-content div:last-child {
        text-align: center;
    }
}


/* =========================================
   REDUCED MOTION ACCESSIBILITY
   ========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}