﻿/* =====================================================
   DropTaxiBro â€” Yellow Ã— Black Ã— White Brand Theme
   Logo Colors: #F5B800 (Yellow) Â· #1A1A1A (Black) Â· #FFFFFF (White)
   ===================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* Brand palette â€” straight from logo */
    --yellow: #F5B800;
    --yellow-dark: #D4A017;
    --yellow-light: #FFF8E0;
    --yellow-xlight: #FFFBF0;
    --black: #1A1A1A;
    --black2: #2C2C2C;
    --black3: #3D3D3D;
    --white: #FFFFFF;
    --gray: #6B7280;
    --gray-light: #F9FAFB;
    --gray-border: #E5E7EB;

    --grad-yellow: linear-gradient(135deg, #F5B800 0%, #D4A017 100%);
    --grad-black: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --container: 1160px;
    --pad: 1.5rem;
    --section: 5rem;

    /* Radii */
    --r-sm: 0.5rem;
    --r-md: 0.875rem;
    --r-lg: 1.25rem;
    --r-xl: 1.5rem;
    --r-pill: 9999px;

    /* Shadows */
    --sh-sm: 0 1px 4px rgba(0, 0, 0, .08);
    --sh-md: 0 4px 16px rgba(0, 0, 0, .10);
    --sh-lg: 0 8px 32px rgba(0, 0, 0, .14);
    --sh-yellow: 0 4px 16px rgba(245, 184, 0, .35);
    --sh-yellow-lg: 0 8px 28px rgba(245, 184, 0, .50);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
    width: 100%;
}

.text-center {
    text-align: center;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: var(--section) 0;
    background: var(--white);
}

.section-gray {
    padding: var(--section) 0;
    background: var(--gray-light);
}

.section-dark {
    padding: var(--section) 0;
    background: var(--black);
}

.section-yellow {
    padding: var(--section) 0;
    background: var(--yellow);
}

/* ---------- TYPOGRAPHY ---------- */
.section-title {
    font-size: clamp(1.625rem, 3.5vw, 2.375rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: .5rem;
}

.section-title.light {
    color: var(--white);
}

.section-sub {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.72);
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--grad-yellow);
    border-radius: var(--r-pill);
    margin: .625rem auto 1.875rem;
}

.divider-left {
    margin-left: 0;
}

/* ---------- BADGE ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    background: var(--yellow-light);
    color: var(--black);
    padding: .25rem .875rem;
    border-radius: var(--r-pill);
    font-size: .8125rem;
    font-weight: 700;
    border: 1.5px solid rgba(245, 184, 0, .35);
    margin-bottom: .875rem;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--grad-yellow);
    color: var(--black);
    font-weight: 700;
    font-size: .9375rem;
    padding: .75rem 1.75rem;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    transition: all .25s;
    box-shadow: var(--sh-yellow);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-yellow-lg);
    background: var(--yellow-dark);
}

.btn-primary-lg {
    font-size: 1rem;
    padding: .875rem 2rem;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--grad-black);
    color: var(--white);
    font-weight: 700;
    font-size: .9375rem;
    padding: .75rem 1.75rem;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-lg);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
    font-weight: 700;
    font-size: .9375rem;
    padding: .6875rem 1.75rem;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    font-size: .9375rem;
    padding: .75rem 1.75rem;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    transition: all .25s;
    box-shadow: var(--sh-md);
    text-decoration: none;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-lg);
}

.block-btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* ---------- CARDS ---------- */
.card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1.5px solid var(--gray-border);
    padding: 1.75rem 1.5rem;
    transition: all .28s;
    box-shadow: var(--sh-sm);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 184, 0, .5);
    box-shadow: 0 10px 28px rgba(245, 184, 0, .18);
}

/* ---------- ICON BOX ---------- */
.icon-box {
    width: 56px;
    height: 56px;
    background: var(--yellow-light);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
}

.icon-box i {
    font-size: 1.375rem;
    color: var(--black);
}

/* ---------- GRIDS ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

/* ---------- STEP BOX ---------- */
.step-box {
    text-align: center;
    padding: 2rem 1.25rem;
}

.step-num {
    width: 52px;
    height: 52px;
    background: var(--grad-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--black);
    margin: 0 auto 1.125rem;
    box-shadow: var(--sh-yellow);
}

.step-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: .375rem;
}

.step-text {
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.7;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    background: var(--grad-black);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 40%, rgba(245, 184, 0, .15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: .875rem;
}

.page-hero h1 span {
    color: var(--yellow);
}

.page-hero p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .72);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
    background: var(--black);
    padding: .75rem 0;
}

.trust-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--white);
    font-weight: 700;
    font-size: .8125rem;
}

.trust-item i {
    color: var(--yellow);
}

/* ---------- FLOATING BUTTONS ---------- */
.float-call,
.float-wa {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 900;
    text-decoration: none;
    box-shadow: var(--sh-md);
    transition: all .25s;
    right: 1.125rem;
}

.float-call {
    bottom: 5.75rem;
    background: var(--yellow);
    color: var(--black);
    border: 2px solid var(--black);
}

.float-wa {
    bottom: 1.125rem;
    background: #25D366;
    color: var(--white);
}

.float-call:hover,
.float-wa:hover {
    transform: scale(1.12);
}

/* ---------- TARIFF TABLE ---------- */
.table-wrap {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-md);
    overflow-x: auto;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
}

.tariff-table thead {
    background: var(--grad-black);
}

.tariff-table thead th {
    color: var(--white);
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: .9rem;
    text-align: left;
    border-bottom: 3px solid var(--yellow);
    white-space: nowrap;
}

.tariff-table tbody tr {
    border-bottom: 1px solid var(--gray-border);
    transition: background .18s;
}

.tariff-table tbody tr:hover {
    background: var(--yellow-xlight);
}

.tariff-table tbody td {
    padding: .875rem 1.25rem;
    font-size: .9375rem;
    color: var(--black3);
}

.rate-pill {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    background: var(--yellow-light);
    color: var(--black);
    font-weight: 700;
    padding: .225rem .75rem;
    border-radius: var(--r-pill);
    font-size: .8125rem;
    border: 1px solid rgba(245, 184, 0, .4);
}

/* ---------- FOOTER LAYOUT ---------- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-head {
    color: var(--white);
    font-size: .9375rem;
    font-weight: 700;
    margin-bottom: 1.125rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.footer-head::before {
    content: '';
    width: 18px;
    height: 2.5px;
    background: var(--yellow);
    border-radius: 9999px;
    flex-shrink: 0;
}

.footer-link {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: .375rem;
    transition: all .18s;
    padding: .2rem 0;
}

.footer-link:hover {
    color: var(--yellow);
    padding-left: .375rem;
}

.footer-link i {
    font-size: .5rem;
    color: var(--yellow);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .7);
    font-size: .875rem;
    text-decoration: none;
    transition: all .25s;
}

.social-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .4);
    font-size: .8125rem;
}

.footer-btm-link {
    color: rgba(255, 255, 255, .4);
    font-size: .8125rem;
    transition: color .18s;
}

.footer-btm-link:hover {
    color: var(--yellow);
}

/* ---------- NOTE BOX ---------- */
.note-box {
    background: var(--yellow-xlight);
    border: 1.5px solid rgba(245, 184, 0, .35);
    border-radius: var(--r-lg);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.note-box h3 {
    font-weight: 700;
    color: var(--black);
    margin-bottom: .75rem;
}

.note-box li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    color: var(--black3);
    font-size: .9375rem;
    line-height: 1.65;
    padding: .25rem 0;
}

.note-box li i {
    color: var(--yellow-dark);
    margin-top: .25rem;
    flex-shrink: 0;
    font-size: .875rem;
}

/* ---------- FORM INPUTS ---------- */
.field-label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    color: var(--black3);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .35rem;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: .5rem;
    border: 2px solid var(--gray-border);
    border-radius: var(--r-md);
    padding: .625rem .875rem;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}

.input-wrap:focus-within {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245, 184, 0, .18);
}

.input-wrap i {
    color: var(--yellow-dark);
    font-size: .9375rem;
    flex-shrink: 0;
}

.input-wrap input,
.input-wrap select {
    border: 0;
    outline: none;
    width: 100%;
    background: transparent;
    font-size: .9375rem;
    color: var(--black);
    font-family: var(--font);
}

.field-row {
    margin-bottom: .875rem;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

/* ---------- CHECKERED SEPARATOR (taxi flavor) ---------- */
.checkered-strip {
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--black) 0, var(--black) 10px, var(--yellow) 10px, var(--yellow) 20px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid>div:first-child {
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    :root {
        --section: 3.5rem;
    }

    .trust-inner {
        gap: 1.25rem;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid>div:first-child {
        grid-column: 1;
    }

    .grid2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --pad: 1rem;
    }
}
