* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b00;
    --primary-dark: #e85f00;
    --primary-light: #fff3e8;
    --dark: #151515;
    --text: #343434;
    --text-light: #737373;
    --white: #ffffff;
    --light: #f8f9fb;
    --border: #e9e9e9;
    --success: #16a34a;
    --shadow-sm: 0 5px 20px rgba(0,0,0,.06);
    --shadow: 0 15px 40px rgba(0,0,0,.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: 0;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================
   COMMON
========================================= */

.section-container,
.header-container,
.hero-container,
.footer-container {
    width: min(1180px, 92%);
    margin: auto;
}

.section-heading {
    max-width: 700px;
    text-align: center;
    margin: 0 auto 55px;
}

.section-heading span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    color: var(--dark);
    font-size: 38px;
    line-height: 1.2;
    margin: 10px 0 14px;
}

.section-heading p {
    color: var(--text-light);
    font-size: 15px;
}


/* =========================================
   HEADER
========================================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(15px);
}

.header-container {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 47px;
    height: 47px;
    object-fit: contain;
    border-radius: 12px;
}

.logo-text h2 {
    font-size: 20px;
    color: var(--dark);
    line-height: 1;
}

.logo-text span {
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.login-nav-btn {
    color: var(--white) !important;
    background: var(--primary) !important;
    margin-left: 7px;
}

.login-nav-btn:hover {
    background: var(--primary-dark) !important;
}

.mobile-menu-btn {
    display: none;
}


/* =========================================
   HERO
========================================= */

.hero-section {
    padding: 145px 0 80px;
    background:
        radial-gradient(circle at 10% 20%, #fff4e9, transparent 30%),
        radial-gradient(circle at 90% 30%, #fff1e5, transparent 28%),
        white;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 65px;
}

.hero-badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 13px;
    border-radius: 30px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 {
    max-width: 650px;
    color: var(--dark);
    font-size: 60px;
    line-height: 1.08;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content > p {
    max-width: 570px;
    color: var(--text-light);
    font-size: 16px;
    margin: 22px 0 30px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.primary-btn {
    color: white;
    background: var(--primary);
    box-shadow: 0 10px 25px rgba(255,107,0,.25);
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.secondary-btn {
    color: var(--dark);
    background: white;
    border: 1px solid var(--border);
}

.secondary-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.location-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.location-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ecfdf3;
    color: var(--success);
}

.location-status strong {
    font-size: 13px;
}

.location-status p {
    color: var(--text-light);
    font-size: 11px;
}


/* =========================================
   HERO MAP
========================================= */

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 470px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: white;
    box-shadow: var(--shadow);
}

.hero-map {
    position: relative;
    height: 430px;
    overflow: hidden;
    border-radius: 21px;
    background: #e8eef0;
}

.map-grid {
    position: absolute;
    inset: -50px;
    opacity: .5;
    background-image:
        linear-gradient(90deg, transparent 48%, #d3dcdf 49%, #d3dcdf 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, #d3dcdf 49%, #d3dcdf 51%, transparent 52%);
    background-size: 80px 80px;
    transform: rotate(8deg);
}

.map-location {
    position: absolute;
    left: 46%;
    top: 42%;
    z-index: 5;
}

.map-location > span {
    display: block;
    width: 20px;
    height: 20px;
    border: 5px solid white;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 0 10px rgba(37,99,235,.15);
}

.map-label {
    position: absolute;
    top: 31px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 9px;
    border-radius: 6px;
    background: var(--dark);
    color: white;
    font-size: 9px;
    font-weight: 700;
}

.map-rider {
    position: absolute;
    z-index: 6;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    animation: riderFloat 3s ease-in-out infinite;
}

.rider-one {
    top: 18%;
    left: 23%;
}

.rider-two {
    top: 28%;
    right: 17%;
    color: #333;
}

.rider-three {
    bottom: 29%;
    right: 25%;
}

@keyframes riderFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

.map-route {
    position: absolute;
    width: 270px;
    height: 150px;
    left: 24%;
    top: 37%;
    border-top: 3px dashed var(--primary);
    border-right: 3px dashed var(--primary);
    border-radius: 0 80px 0 0;
    transform: rotate(10deg);
}

.ride-preview-card {
    position: absolute;
    z-index: 10;
    left: 27px;
    right: 27px;
    bottom: 27px;
    padding: 17px;
    border-radius: 18px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.ride-preview-header {
    display: flex;
    justify-content: space-between;
}

.ride-preview-header span {
    display: block;
    color: var(--text-light);
    font-size: 10px;
}

.ride-preview-header strong {
    font-size: 13px;
}

.online-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--success);
}

.ride-driver {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.ride-driver img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.ride-driver strong {
    display: block;
    font-size: 12px;
}

.ride-driver span {
    color: #d99400;
    font-size: 11px;
}

.ride-info {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    padding-top: 13px;
    border-top: 1px solid var(--border);
}

.ride-info small {
    display: block;
    color: var(--text-light);
    font-size: 9px;
}

.ride-info strong {
    font-size: 11px;
}


/* =========================================
   QUICK SERVICES
========================================= */

.quick-services {
    padding: 0 0 80px;
}

.quick-services .section-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.quick-service-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
    transition: .3s;
}

.quick-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-icon,
.feature-icon {
    display: grid;
    place-items: center;
    background: var(--primary-light);
    color: var(--primary);
}

.service-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    border-radius: 12px;
}

.quick-service-card h3 {
    font-size: 13px;
}

.quick-service-card p {
    color: var(--text-light);
    font-size: 10px;
}


/* =========================================
   FEATURES
========================================= */

.features-section,
.user-section {
    background: var(--light);
}

.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.feature-card {
    padding: 30px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: .3s;
}

.feature-card:hover,
.step-card:hover,
.user-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 19px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 13px;
}


/* =========================================
   HOW
========================================= */

.how-section {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.step-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: .3s;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 18px;
    color: #eee;
    font-size: 45px;
    font-weight: 800;
}

.step-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 13px;
    background: var(--dark);
    color: white;
}

.step-card h3 {
    font-size: 16px;
}

.step-card p {
    color: var(--text-light);
    font-size: 12px;
}


/* =========================================
   USER
========================================= */

.user-section {
    padding: 100px 0;
}

.user-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.user-card {
    padding: 35px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 25px;
    transition: .3s;
}

.user-card-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
}

.user-card h3 {
    font-size: 20px;
}

.user-card p {
    min-height: 55px;
    color: var(--text-light);
    font-size: 13px;
    margin: 8px 0 22px;
}

.user-card a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   INSTALL
========================================= */

.install-section {
    padding: 70px 0;
    background: var(--dark);
}

.install-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.install-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: rgba(255,255,255,.1);
    color: var(--primary);
    font-size: 24px;
}

.install-content > div:nth-child(2) {
    flex: 1;
}

.install-content span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.install-content h2 {
    color: white;
    font-size: 24px;
}

.install-content p {
    color: #aaa;
    font-size: 13px;
}

.install-btn {
    padding: 14px 20px;
    border-radius: 11px;
    background: var(--primary);
    color: white;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   FOOTER
========================================= */

.main-footer {
    background: #101010;
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 65px 0;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-brand h3 {
    margin: 10px 0 5px;
}

.footer-brand p,
.footer-links a {
    color: #888;
    font-size: 12px;
}

.footer-links h4 {
    font-size: 13px;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 18px;
    text-align: center;
    border-top: 1px solid #252525;
}

.footer-bottom p {
    color: #666;
    font-size: 11px;
}


/* =========================================
   INSTALL POPUP
========================================= */

.install-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(5px);
}

.install-popup.show {
    display: flex;
}

.install-popup-box {
    position: relative;
    width: min(400px,100%);
    padding: 35px 28px 28px;
    text-align: center;
    border-radius: 25px;
    background: white;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.popup-app-icon {
    width: 75px;
    height: 75px;
    margin: auto auto 18px;
    padding: 10px;
    border-radius: 20px;
    background: var(--primary-light);
}

.popup-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.install-popup-box h3 {
    font-size: 21px;
}

.install-popup-box > p {
    color: var(--text-light);
    font-size: 12px;
    margin: 8px 0 20px;
}

.popup-install-btn {
    width: 100%;
    height: 48px;
    border-radius: 11px;
    background: var(--primary);
    color: white;
    font-weight: 700;
}

.popup-later-btn {
    margin-top: 12px;
    background: transparent;
    color: var(--text-light);
}


/* =========================================
   MOBILE BOTTOM NAV
========================================= */

.mobile-bottom-nav {
    display: none;
}


/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


/* =========================================
   AUTH / LOGIN PAGE
========================================= */

.auth-page {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 10% 20%,
            #fff2e5,
            transparent 30%
        ),
        #f8f9fb;
}


/* =========================================
   AUTH HEADER
========================================= */

.auth-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 15px;

    border-radius: 10px;

    color: #555;

    background: #f6f6f6;

    font-size: 13px;
    font-weight: 700;

    transition: .25s;
}

.auth-back-btn:hover {
    color: #ff6b00;
    background: #fff0e4;
}


/* =========================================
   AUTH MAIN
========================================= */

.auth-main {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 125px 0 70px;
}


.auth-wrapper {
    width: min(1080px, 92%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 450px;

    align-items: center;

    gap: 70px;
}


/* =========================================
   AUTH INFO
========================================= */

.auth-info-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 13px;

    border-radius: 30px;

    background: #fff0e4;

    color: #ff6b00;

    font-size: 11px;

    font-weight: 800;
}


.auth-info h1 {
    max-width: 550px;

    margin: 20px 0 17px;

    color: #151515;

    font-size: 50px;

    line-height: 1.1;
}


.auth-info h1 span {
    color: #ff6b00;
}


.auth-info > p {
    max-width: 560px;

    color: #737373;

    font-size: 15px;
}


/* =========================================
   AUTH FEATURES
========================================= */

.auth-features {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;
}


.auth-features div {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 12px;

    border-radius: 9px;

    background: white;

    border: 1px solid #e9e9e9;

    font-size: 11px;

    font-weight: 700;
}


.auth-features i {
    color: #ff6b00;
}


/* =========================================
   AUTH CARD
========================================= */

.auth-card {
    padding: 30px;

    border-radius: 25px;

    background: white;

    border: 1px solid #e9e9e9;

    box-shadow:
        0 20px 60px rgba(0,0,0,.10);
}


.auth-card-header {
    text-align: center;
}


.auth-icon {
    width: 54px;
    height: 54px;

    display: grid;

    place-items: center;

    margin: auto auto 12px;

    border-radius: 16px;

    background: #fff0e4;

    color: #ff6b00;

    font-size: 19px;
}


.auth-card-header h2 {
    color: #151515;

    font-size: 25px;
}


.auth-card-header p {
    color: #888;

    font-size: 12px;

    margin-top: 3px;
}


/* =========================================
   ACCOUNT TABS
========================================= */

.account-tabs {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

    padding: 5px;

    margin: 25px 0;

    border-radius: 12px;

    background: #f5f5f5;
}


.account-tab {
    height: 42px;

    border-radius: 9px;

    background: transparent;

    color: #777;

    font-size: 12px;

    font-weight: 700;

    transition: .25s;
}


.account-tab.active {
    background: white;

    color: #ff6b00;

    box-shadow:
        0 3px 12px rgba(0,0,0,.08);
}


/* =========================================
   FORM
========================================= */

.form-group {
    margin-bottom: 18px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #333;

    font-size: 11px;

    font-weight: 700;
}


.form-group label i {
    color: #ff6b00;

    margin-right: 4px;
}


.input-box {
    position: relative;
}


.input-box > i {
    position: absolute;

    left: 14px;

    top: 50%;

    transform: translateY(-50%);

    color: #aaa;

    font-size: 14px;
}


.input-box input {
    width: 100%;

    height: 49px;

    padding: 0 15px 0 42px;

    border: 1px solid #e2e2e2;

    outline: none;

    border-radius: 11px;

    color: #222;

    font-size: 13px;

    background: #fff;

    transition: .25s;
}


.input-box input:focus {
    border-color: #ff6b00;

    box-shadow:
        0 0 0 3px rgba(255,107,0,.10);
}


/* =========================================
   SUBMIT
========================================= */

.auth-submit-btn {
    width: 100%;

    height: 49px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 11px;

    background: #ff6b00;

    color: white;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(255,107,0,.22);

    transition: .25s;
}


.auth-submit-btn:hover {
    background: #e85f00;

    transform: translateY(-2px);
}


.auth-submit-btn:disabled {
    opacity: .7;

    cursor: not-allowed;

    transform: none;
}


/* =========================================
   MESSAGE
========================================= */

.auth-message {
    min-height: 20px;

    margin-top: 10px;

    text-align: center;

    font-size: 11px;

    font-weight: 600;
}


.auth-message.success {
    color: #16a34a;
}


.auth-message.error {
    color: #dc2626;
}


/* =========================================
   OTP
========================================= */

.otp-section {
    margin-top: 22px;

    padding-top: 22px;

    border-top: 1px solid #eee;
}


.otp-title {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;
}


.otp-small-icon {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: #fff0e4;

    color: #ff6b00;
}


.otp-title strong {
    display: block;

    font-size: 13px;
}


.otp-title p {
    color: #888;

    font-size: 10px;
}


.otp-inputs {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 7px;

    margin-bottom: 15px;
}


.otp-input {
    width: 100%;
    height: 47px;

    text-align: center;

    border: 1px solid #ddd;

    outline: none;

    border-radius: 9px;

    font-size: 18px;

    font-weight: 800;
}


.otp-input:focus {
    border-color: #ff6b00;

    box-shadow:
        0 0 0 3px rgba(255,107,0,.10);
}


.resend-btn {
    width: 100%;

    margin-top: 12px;

    background: transparent;

    color: #888;

    font-size: 10px;
}


.resend-btn strong {
    color: #ff6b00;
}


/* =========================================
   RIDER REGISTER
========================================= */

.rider-register-box {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid #eee;

    color: #888;

    font-size: 10px;
}


.rider-register-box a {
    color: #ff6b00;

    font-weight: 800;
}


.rider-register-box a i {
    margin-left: 3px;
}


/* =========================================
   SECURITY
========================================= */

.login-security {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 6px;

    margin-top: 18px;

    color: #aaa;

    text-align: center;

    font-size: 9px;
}


.login-security i {
    color: #16a34a;
}