/* =====================================================
   DOT 2 DROP TAXI — Navy × Orange × White Brand Theme
   Primary: #0F2557 (Deep Navy)  Accent: #FF6B00 (Orange)
   ===================================================== */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* Brand Palette */
    --navy:        #0F2557;
    --navy-dark:   #091A40;
    --navy-mid:    #1A3A7C;
    --navy-soft:   #E8EDF8;
    --orange:      #FF6B00;
    --orange-dark: #E05A00;
    --orange-light:#FFF4ED;
    --orange-xlight:#FFF9F5;

    /* Neutral */
    --white:  #FFFFFF;
    --off-white: #F8F9FC;
    --text:   #1A1A2E;
    --text-2: #374151;
    --gray:   #64748B;
    --gray-light: #F1F5F9;
    --gray-border: #E2E8F0;

    /* Gradients */
    --grad-navy: linear-gradient(135deg, #0F2557 0%, #1A3A7C 100%);
    --grad-orange: linear-gradient(135deg, #FF6B00 0%, #E05A00 100%);
    --grad-hero: linear-gradient(135deg, #0F2557 0%, #0A1E45 60%, #091840 100%);

    /* Typography */
    --font-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container: 1160px;
    --pad: 1.5rem;
    --section: 5rem;

    /* Radii */
    --r-xs:   0.375rem;
    --r-sm:   0.5rem;
    --r-md:   0.875rem;
    --r-lg:   1.25rem;
    --r-xl:   1.75rem;
    --r-pill: 9999px;

    /* Shadows */
    --sh-sm:     0 1px 4px rgba(15,37,87,.08);
    --sh-md:     0 4px 16px rgba(15,37,87,.12);
    --sh-lg:     0 8px 32px rgba(15,37,87,.16);
    --sh-orange: 0 4px 16px rgba(255,107,0,.35);
    --sh-orange-lg: 0 8px 28px rgba(255,107,0,.50);
}

/* ---------- RESET ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    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; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); }

/* ---------- 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(--navy); }
.section-orange { padding: var(--section) 0; background: var(--orange); }
.section-off   { padding: var(--section) 0; background: var(--off-white); }

/* ---------- TYPOGRAPHY ---------- */
.section-title {
    font-size: clamp(1.625rem, 3.5vw, 2.375rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: .5rem;
    font-family: var(--font-head);
}
.section-title.light { color: var(--white); }
.section-title.orange { color: var(--orange); }

.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,.72); }

.divider {
    width: 48px; height: 3px;
    background: var(--grad-orange);
    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(--orange-light);
    color: var(--orange);
    padding: .275rem .875rem;
    border-radius: var(--r-pill);
    font-size: .8125rem;
    font-weight: 700;
    border: 1.5px solid rgba(255,107,0,.3);
    margin-bottom: .875rem;
    font-family: var(--font-head);
}
.badge.navy {
    background: var(--navy-soft);
    color: var(--navy);
    border-color: rgba(15,37,87,.2);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .5rem;
    background: var(--grad-orange);
    color: var(--white);
    font-weight: 700;
    font-size: .9375rem;
    padding: .8125rem 1.875rem;
    border-radius: var(--r-md);
    border: none; cursor: pointer;
    transition: all .25s;
    box-shadow: var(--sh-orange);
    white-space: nowrap;
    text-decoration: none;
    font-family: var(--font-head);
    letter-spacing: .01em;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-orange-lg);
    background: var(--orange-dark);
    color: var(--white);
}
.btn-primary-lg { font-size: 1rem; padding: .9375rem 2.25rem; }

.btn-navy {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .5rem;
    background: var(--grad-navy);
    color: var(--white);
    font-weight: 700;
    font-size: .9375rem;
    padding: .8125rem 1.875rem;
    border-radius: var(--r-md);
    border: none; cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    font-family: var(--font-head);
}
.btn-navy:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-lg);
    color: var(--white);
}

/* Alias for legacy btn-dark usage */
.btn-dark { display: inline-flex; align-items: center; justify-content: center;
    gap: .5rem; background: var(--grad-navy); color: var(--white);
    font-weight: 700; font-size: .9375rem; padding: .8125rem 1.875rem;
    border-radius: var(--r-md); border: none; cursor: pointer;
    transition: all .25s; text-decoration: none; font-family: var(--font-head); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); color: var(--white); }

.btn-outline-white {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .5rem;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.35);
    font-weight: 600; font-size: .9375rem;
    padding: .8125rem 1.875rem;
    border-radius: var(--r-md);
    cursor: pointer; transition: all .25s;
    text-decoration: none; font-family: var(--font-head);
}
.btn-outline-white:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-white {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .5rem; background: var(--white); color: var(--navy);
    font-weight: 700; font-size: .9375rem; padding: .8125rem 1.875rem;
    border-radius: var(--r-md); border: none; cursor: pointer;
    transition: all .25s; box-shadow: var(--sh-md); text-decoration: none;
    font-family: var(--font-head);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

/* ---------- 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(255,107,0,.35);
    box-shadow: 0 12px 32px rgba(255,107,0,.15);
}

/* ---------- ICON BOX ---------- */
.icon-box {
    width: 56px; height: 56px;
    background: var(--orange-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(--orange); }

/* ---------- 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-orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.125rem;
    box-shadow: var(--sh-orange);
    font-family: var(--font-head);
}
.step-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: .375rem; font-family: var(--font-head); }
.step-text  { color: var(--gray); font-size: .9rem; line-height: 1.7; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    background: var(--grad-hero);
    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(255,107,0,.18) 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;
    font-family: var(--font-head);
}
.page-hero h1 span { color: var(--orange); }
.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(--navy); 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: 600; font-size: .8125rem;
}
.trust-item i { color: var(--orange); }

/* ---------- FLOATING BUTTONS ---------- */
.float-call, .float-wa {
    position: fixed;
    border-radius: var(--r-pill);
    display: flex; align-items: center;
    font-size: .875rem;
    z-index: 900;
    text-decoration: none;
    box-shadow: var(--sh-lg);
    transition: all .25s;
    right: 1.125rem;
    font-weight: 700;
    gap: .375rem;
    padding: .625rem 1rem;
    white-space: nowrap;
}
.float-call {
    bottom: 5.75rem;
    background: var(--orange);
    color: var(--white);
}
.float-wa {
    bottom: 1.125rem;
    background: #25D366;
    color: var(--white);
}
.float-call:hover, .float-wa:hover { transform: scale(1.06); }

/* ---------- 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-navy); }
.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(--orange);
    white-space: nowrap; font-family: var(--font-head);
}
.tariff-table tbody tr { border-bottom: 1px solid var(--gray-border); transition: background .18s; }
.tariff-table tbody tr:hover { background: var(--orange-xlight); }
.tariff-table tbody td { padding: .875rem 1.25rem; font-size: .9375rem; color: var(--text-2); }
.rate-pill {
    display: inline-flex; align-items: center; gap: .2rem;
    background: var(--orange-light);
    color: var(--orange);
    font-weight: 700; padding: .225rem .75rem;
    border-radius: var(--r-pill); font-size: .8125rem;
    border: 1px solid rgba(255,107,0,.3);
}

/* ---------- 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,.1);
}
.footer-head {
    color: var(--white);
    font-size: .9375rem; font-weight: 700;
    margin-bottom: 1.125rem;
    display: flex; align-items: center; gap: .4rem;
    font-family: var(--font-head);
}
.footer-head::before {
    content: '';
    width: 18px; height: 2.5px;
    background: var(--orange);
    border-radius: 9999px; flex-shrink: 0;
}
.footer-link {
    color: rgba(255,255,255,.6); font-size: .875rem;
    display: flex; align-items: center; gap: .375rem;
    transition: all .18s; padding: .2rem 0;
}
.footer-link:hover { color: var(--orange); padding-left: .375rem; }
.footer-link i { font-size: .5rem; color: var(--orange); }
.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,.18);
    color: rgba(255,255,255,.7); font-size: .875rem;
    text-decoration: none; transition: all .25s;
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); 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(--orange); }

/* ---------- NOTE BOX ---------- */
.note-box {
    background: var(--orange-xlight);
    border: 1.5px solid rgba(255,107,0,.25);
    border-radius: var(--r-lg);
    padding: 1.5rem 2rem; margin-top: 2rem;
}
.note-box h3 { font-weight: 700; color: var(--navy); margin-bottom: .75rem; font-family: var(--font-head); }
.note-box li {
    display: flex; align-items: flex-start; gap: .5rem;
    color: var(--text-2); font-size: .9375rem;
    line-height: 1.65; padding: .25rem 0;
}
.note-box li i { color: var(--orange); margin-top: .25rem; flex-shrink: 0; font-size: .875rem; }

/* ---------- FORM INPUTS ---------- */
.field-label {
    display: block; font-size: .75rem; font-weight: 700;
    color: var(--navy); letter-spacing: .05em;
    text-transform: uppercase; margin-bottom: .35rem;
    font-family: var(--font-head);
}
.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(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,0,.15);
}
.input-wrap i { color: var(--orange); 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(--text); font-family: var(--font-body);
}
.field-row { margin-bottom: .875rem; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

/* ---------- CHECKERED SEPARATOR ---------- */
.checkered-strip {
    height: 5px;
    background: repeating-linear-gradient(90deg,
        var(--navy) 0, var(--navy) 10px,
        var(--orange) 10px, var(--orange) 20px);
}

/* ---------- GOOGLE PLACES AUTOCOMPLETE ---------- */
.pac-container {
    z-index: 99999 !important;
    border-radius: var(--r-md) !important;
    border: 2px solid var(--orange) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.18) !important;
    overflow: hidden; font-family: var(--font-body);
}
.pac-item { padding: .5rem 1rem; font-size: .875rem; color: var(--text); cursor: pointer; border-top: 1px solid #f0f0f0; }
.pac-item:hover { background: var(--orange-light); }
.pac-item-selected { background: var(--orange-light); }
.pac-icon { display: none; }

/* ---------- 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; }
    .float-call span, .float-wa span { display: none; }
    .float-call, .float-wa {
        width: 50px; height: 50px; border-radius: 50%;
        justify-content: center; padding: 0;
        font-size: 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; } }
