/* =========================================================
   LADLI E-RIKSHA
   Main Global Style
   Theme: Orange + White
   Final Responsive Version
   ========================================================= */


/* =========================
   ROOT VARIABLES
   ========================= */

:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fff7ed;

    --white: #ffffff;
    --black: #111827;
    --text: #374151;
    --muted: #6b7280;

    --border: #e5e7eb;
    --background: #fffaf5;

    --success: #16a34a;
    --danger: #dc2626;

    --shadow-sm: 0 4px 12px rgba(17, 24, 39, 0.06);
    --shadow-md: 0 10px 30px rgba(17, 24, 39, 0.10);
    --shadow-lg: 0 20px 50px rgba(17, 24, 39, 0.14);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --container: 1180px;

    --header-height: 76px;

    --transition: 0.25s ease;
}


/* =========================
   RESET
   ========================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;

    scroll-behavior: smooth;

    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--white);
    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

img {
    display: block;
    height: auto;
}


/* =========================
   COMMON CONTAINERS
   ========================= */

.section-container,
.header-container,
.footer-container,
.hero-container,
.cta-container {
    width: min(calc(100% - 40px), var(--container));
    max-width: 100%;

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.main-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 10000;

    width: 100%;
    max-width: 100%;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid var(--border);

    box-shadow:
        0 2px 15px rgba(17, 24, 39, 0.05);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Header space
   This keeps page content below fixed header */

body {
    padding-top: var(--header-height);
}


.header-container {
    min-height: var(--header-height);

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    min-width: 0;
}


/* =========================
   BRAND
   ========================= */

.brand {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    min-width: 0;

    flex-shrink: 1;
}

.brand-logo {
    width: 48px;
    height: 48px;

    object-fit: contain;

    border-radius: 12px;

    flex-shrink: 0;
}

.brand-text {
    display: flex;

    flex-direction: column;

    min-width: 0;

    line-height: 1;
}

.brand-name {
    color: var(--primary);

    font-size: 20px;

    font-weight: 900;

    letter-spacing: 1px;

    white-space: nowrap;
}

.brand-subtitle {
    margin-top: 4px;

    color: var(--black);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    white-space: nowrap;
}


/* =========================
   DESKTOP NAVIGATION
   ========================= */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 8px;

    min-width: 0;
}

.nav-link {
    position: relative;

    padding: 10px 16px;

    color: var(--text);

    font-size: 14px;

    font-weight: 700;

    border-radius: 10px;

    transition: var(--transition);

    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);

    background: var(--primary-light);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: "";

    position: absolute;

    left: 16px;
    right: 16px;

    bottom: 3px;

    height: 2px;

    background: var(--primary);

    border-radius: 10px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    position: relative;

    width: 100%;
    max-width: 100%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(249, 115, 22, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fffaf5 100%
        );
}

.hero-section::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -180px;
    bottom: -180px;

    background: rgba(249, 115, 22, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.hero-container {
    min-height: 650px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 70px;

    padding-top: 70px;
    padding-bottom: 70px;

    min-width: 0;
}


/* =========================
   HERO CONTENT
   ========================= */

.hero-content {
    position: relative;

    z-index: 2;

    min-width: 0;
}

.hero-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    max-width: 100%;

    padding: 8px 14px;

    color: var(--primary-dark);

    background: var(--primary-light);

    border: 1px solid #fed7aa;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;

    margin-bottom: 20px;

    text-align: center;
}

.hero-content h1 {
    max-width: 650px;

    color: var(--black);

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -2px;

    overflow-wrap: anywhere;
}

.hero-content h1 span {
    display: block;

    color: var(--primary);
}

.hero-content p {
    max-width: 590px;

    margin-top: 24px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

    overflow-wrap: break-word;
}


/* =========================
   HERO BUTTONS
   ========================= */

.hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    max-width: 100%;

    margin-top: 32px;
}


/* =========================
   BUTTONS
   ========================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    max-width: 100%;

    padding: 0 22px;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 800;

    border: 2px solid transparent;

    text-align: center;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);

    overflow-wrap: break-word;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);

    background: var(--primary);

    box-shadow:
        0 8px 20px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);

    box-shadow:
        0 12px 25px rgba(249, 115, 22, 0.32);
}

.btn-outline {
    color: var(--primary);

    background: var(--white);

    border-color: #fdba74;
}

.btn-outline:hover {
    color: var(--white);

    background: var(--primary);

    border-color: var(--primary);
}

.btn-white {
    color: var(--primary);

    background: var(--white);

    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background: var(--primary-light);
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    display: flex;

    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 100%;

    min-height: 430px;

    min-width: 0;
}

.hero-card {
    position: relative;

    width: min(100%, 430px);

    max-width: 100%;

    padding: 42px 30px;

    text-align: center;

    background: var(--white);

    border: 1px solid #fed7aa;

    border-radius: var(--radius-xl);

    box-shadow: var(--shadow-lg);

    overflow: hidden;
}

.hero-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 7px;

    background: linear-gradient(
        90deg,
        var(--primary-dark),
        var(--primary),
        #fb923c
    );
}

.hero-card-logo {
    display: flex;

    justify-content: center;
    align-items: center;

    width: 170px;
    height: 170px;

    max-width: 70vw;
    max-height: 70vw;

    margin: 10px auto 25px;

    background: var(--primary-light);

    border-radius: 50%;

    box-shadow:
        inset 0 0 0 1px #fed7aa;
}

.hero-card-logo img {
    width: 135px;
    height: 135px;

    max-width: 80%;
    max-height: 80%;

    object-fit: contain;
}

.hero-card-content {
    max-width: 100%;
}

.hero-card-content h3 {
    color: var(--black);

    font-size: 24px;

    font-weight: 900;

    overflow-wrap: anywhere;
}

.hero-card-content p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 14px;

    overflow-wrap: break-word;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.services-section,
.how-section {
    width: 100%;
    max-width: 100%;

    padding: 90px 0;

    overflow: hidden;
}

.services-section {
    background: var(--white);
}

.how-section {
    background: var(--background);
}

.section-heading {
    max-width: 680px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-label {
    display: inline-block;

    max-width: 100%;

    color: var(--primary);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.8px;

    overflow-wrap: break-word;
}

.section-heading h2 {
    margin-top: 8px;

    color: var(--black);

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.15;

    font-weight: 900;

    letter-spacing: -1px;

    overflow-wrap: anywhere;
}

.section-heading p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 15px;

    overflow-wrap: break-word;
}


/* =========================================================
   SERVICES GRID
   ========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;

    width: 100%;
    max-width: 100%;

    min-width: 0;
}

.service-card {
    min-width: 0;

    padding: 30px 24px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);

    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color: #fed7aa;

    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: var(--primary-light);

    border: 1px solid #fed7aa;

    border-radius: 16px;

    font-size: 26px;

    flex-shrink: 0;
}

.service-card h3 {
    color: var(--black);

    font-size: 18px;

    font-weight: 850;

    overflow-wrap: anywhere;
}

.service-card p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

    overflow-wrap: break-word;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    width: 100%;
    max-width: 100%;

    min-width: 0;
}

.step-card {
    position: relative;

    min-width: 0;

    padding: 32px 28px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    overflow: hidden;
}

.step-number {
    color: var(--primary);

    font-size: 42px;

    font-weight: 900;

    line-height: 1;

    margin-bottom: 25px;
}

.step-card h3 {
    color: var(--black);

    font-size: 19px;

    font-weight: 850;

    overflow-wrap: anywhere;
}

.step-card p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 14px;

    overflow-wrap: break-word;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    width: 100%;
    max-width: 100%;

    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    color: var(--white);

    overflow: hidden;
}

.cta-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    min-width: 0;
}

.cta-container > * {
    min-width: 0;
}

.cta-container .section-label {
    color: #ffedd5;
}

.cta-container h2 {
    max-width: 650px;

    margin-top: 8px;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.2;

    font-weight: 900;

    overflow-wrap: anywhere;
}

.cta-container p {
    margin-top: 10px;

    color: #ffedd5;

    overflow-wrap: break-word;
}


/* =========================================================
   FOOTER
   ========================================================= */

.main-footer {
    width: 100%;
    max-width: 100%;

    background: #111827;

    color: var(--white);

    padding: 55px 0 25px;

    overflow: hidden;
}

.footer-container {
    display: flex;

    flex-direction: column;

    gap: 30px;

    min-width: 0;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 0;
}

.footer-brand img {
    width: 52px;
    height: 52px;

    object-fit: contain;

    background: var(--white);

    border-radius: 12px;

    flex-shrink: 0;
}

.footer-brand h3 {
    font-size: 18px;

    font-weight: 850;

    overflow-wrap: anywhere;
}

.footer-brand p {
    margin-top: 3px;

    color: #9ca3af;

    font-size: 13px;

    overflow-wrap: break-word;
}

.footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 22px;

    padding: 22px 0;

    border-top:
        1px solid rgba(255,255,255,0.1);

    border-bottom:
        1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: #d1d5db;

    font-size: 13px;

    font-weight: 650;

    transition: var(--transition);

    white-space: nowrap;
}

.footer-links a:hover {
    color: #fb923c;
}

.footer-bottom {
    color: #9ca3af;

    font-size: 12px;

    overflow-wrap: break-word;
}


/* =========================================================
   MOBILE BOTTOM NAVBAR
   ========================================================= */

.mobile-bottom-nav {
    display: none;
}


/* =========================================================
   FORM ELEMENTS
   ========================================================= */

input,
textarea,
select {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    min-height: 48px;

    padding: 0 14px;

    color: var(--black);

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;

    outline: none;

    transition: var(--transition);
}

textarea {
    min-height: 120px;

    padding-top: 12px;

    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(249, 115, 22, 0.10);
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
    background: #fdba74;

    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
    color: var(--white);

    background: var(--primary);
}


/* =========================================================
   UTILITY
   ========================================================= */

.text-orange {
    color: var(--primary);
}

.bg-orange {
    background: var(--primary);
}

.bg-light-orange {
    background: var(--primary-light);
}

.hidden {
    display: none !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    :root {
        --header-height: 70px;
    }

    .section-container,
    .header-container,
    .footer-container,
    .hero-container,
    .cta-container {
        width: min(calc(100% - 36px), var(--container));
    }

    .hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.9fr);

        gap: 40px;

        padding-top: 55px;
        padding-bottom: 55px;
    }

    .hero-content h1 {
        font-size: clamp(40px, 5vw, 58px);
    }

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .desktop-nav {
        gap: 3px;
    }

    .nav-link {
        padding-left: 11px;
        padding-right: 11px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    :root {
        --header-height: 62px;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;

        overflow-x: hidden;
    }

    body {
        /*
         * Fixed header + fixed bottom navigation
         */
        padding-top: var(--header-height);

        padding-bottom:
            calc(74px + env(safe-area-inset-bottom));
    }


    /* ---------- CONTAINERS ---------- */

    .section-container,
    .header-container,
    .footer-container,
    .hero-container,
    .cta-container {
        width: calc(100% - 28px);

        max-width: 100%;
    }


    /* =====================================================
       FIXED MOBILE HEADER
       ===================================================== */

    .main-header {
        position: fixed;

        top: 0;
        left: 0;
        right: 0;

        width: 100%;

        min-height: var(--header-height);

        z-index: 10000;
    }

    .header-container {
        min-height: var(--header-height);

        width: calc(100% - 28px);

        gap: 12px;
    }

    .desktop-nav {
        display: none;
    }

    .brand {
        max-width: 100%;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-name {
        font-size: 18px;

        letter-spacing: 0.8px;
    }

    .brand-subtitle {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .hero-section {
        width: 100%;
        max-width: 100%;

        overflow: hidden;
    }

    .hero-container {
        width: calc(100% - 28px);

        min-height: auto;

        display: grid;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 35px;

        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;

        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        width: 100%;
        max-width: 100%;

        font-size:
            clamp(34px, 10vw, 46px);

        line-height: 1.08;

        letter-spacing: -1px;

        overflow-wrap: anywhere;
    }

    .hero-content p {
        width: 100%;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;

        font-size: 15px;

        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;

        justify-content: center;

        gap: 10px;

        margin-top: 25px;
    }

    .hero-buttons .btn {
        flex: 1 1 150px;

        min-width: 0;

        max-width: 100%;
    }


    /* =====================================================
       HERO CARD
       ===================================================== */

    .hero-visual {
        width: 100%;
        max-width: 100%;

        min-height: auto;

        padding: 0;
    }

    .hero-card {
        width: 100%;

        max-width: 390px;

        padding: 35px 22px;

        margin-left: auto;
        margin-right: auto;

        border-radius: 24px;
    }

    .hero-card-logo {
        width: 145px;
        height: 145px;

        margin-bottom: 22px;
    }

    .hero-card-logo img {
        width: 115px;
        height: 115px;
    }

    .hero-card-content h3 {
        font-size: 21px;
    }


    /* =====================================================
       SECTIONS
       ===================================================== */

    .services-section,
    .how-section {
        padding: 60px 0;
    }

    .section-heading {
        width: 100%;
        max-width: 100%;

        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size:
            clamp(28px, 8vw, 36px);

        letter-spacing: -0.5px;
    }

    .section-heading p {
        font-size: 14px;

        line-height: 1.7;
    }


    /* =====================================================
       SERVICES
       ===================================================== */

    .services-grid {
        width: 100%;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 15px;
    }

    .service-card {
        width: 100%;
        max-width: 100%;

        padding: 24px 20px;
    }


    /* =====================================================
       HOW IT WORKS
       ===================================================== */

    .steps-grid {
        width: 100%;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 15px;
    }

    .step-card {
        width: 100%;
        max-width: 100%;

        padding: 25px 20px;
    }


    /* =====================================================
       CTA
       ===================================================== */

    .cta-section {
        padding: 60px 0;
    }

    .cta-container {
        width: calc(100% - 28px);

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 25px;
    }

    .cta-container h2 {
        width: 100%;
        max-width: 100%;

        font-size:
            clamp(27px, 7vw, 36px);
    }

    .cta-container p {
        font-size: 14px;
    }

    .cta-container .btn {
        width: 100%;

        max-width: 300px;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .main-footer {
        padding: 45px 0 20px;
    }

    .footer-container {
        width: calc(100% - 28px);

        align-items: center;

        text-align: center;

        gap: 25px;
    }

    .footer-brand {
        justify-content: center;

        text-align: left;
    }

    .footer-links {
        width: 100%;

        justify-content: center;

        gap: 14px 20px;
    }


    /* =====================================================
       MOBILE BOTTOM NAVBAR
       ===================================================== */

    .mobile-bottom-nav {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;
        max-width: 100%;

        height: 70px;

        display: grid;

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        background:
            rgba(255, 255, 255, 0.98);

        border-top:
            1px solid var(--border);

        box-shadow:
            0 -6px 22px rgba(17, 24, 39, 0.10);

        z-index: 9999;

        padding:
            5px
            4px
            calc(5px + env(safe-area-inset-bottom));

        backdrop-filter: blur(12px);

        -webkit-backdrop-filter: blur(12px);
    }

    .mobile-bottom-nav a {
        position: relative;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 4px;

        min-width: 0;

        color: #6b7280;

        text-decoration: none;

        font-size: 10px;

        font-weight: 700;

        transition:
            color 0.2s ease,
            transform 0.2s ease;
    }

    .mobile-bottom-nav a:hover,
    .mobile-bottom-nav a:active,
    .mobile-bottom-nav a.active {
        color: var(--primary);
    }

    .mobile-bottom-nav a:active {
        transform: scale(0.94);
    }


    /* =====================================================
       HOME ICON
       ===================================================== */

    .nav-icon-home {
        position: relative;

        width: 21px;
        height: 17px;

        border:
            2px solid currentColor;

        border-top: none;

        border-radius: 2px;

        margin-top: 5px;
    }

    .nav-icon-home::before {
        content: "";

        position: absolute;

        width: 13px;
        height: 13px;

        border-left:
            2px solid currentColor;

        border-top:
            2px solid currentColor;

        transform: rotate(45deg);

        left: 2px;
        top: -7px;

        background: #ffffff;
    }

    .nav-icon-home::after {
        content: "";

        position: absolute;

        width: 5px;
        height: 8px;

        border:
            2px solid currentColor;

        border-bottom: none;

        left: 6px;
        bottom: 0;
    }


    /* =====================================================
       BOOKING ICON
       ===================================================== */

    .nav-icon-booking {
        position: relative;

        width: 21px;
        height: 18px;

        border:
            2px solid currentColor;

        border-radius: 4px;
    }

    .nav-icon-booking::before {
        content: "";

        position: absolute;

        left: -2px;
        right: -2px;
        top: 4px;

        border-top:
            2px solid currentColor;
    }

    .nav-icon-booking::after {
        content: "";

        position: absolute;

        width: 3px;
        height: 5px;

        background: currentColor;

        left: 4px;
        top: -5px;

        border-radius: 2px;

        box-shadow:
            8px 0 0 currentColor;
    }


    /* =====================================================
       RIDES ICON
       ===================================================== */

    .nav-icon-rides {
        position: relative;

        width: 21px;
        height: 21px;

        border:
            2px solid currentColor;

        border-radius: 50%;
    }

    .nav-icon-rides::before {
        content: "";

        position: absolute;

        width: 7px;
        height: 7px;

        border:
            2px solid currentColor;

        border-radius: 50%;

        left: 5px;
        top: 5px;
    }

    .nav-icon-rides::after {
        content: "";

        position: absolute;

        width: 5px;
        height: 5px;

        background: currentColor;

        border-radius: 50%;

        left: 6px;
        top: 6px;
    }


    /* =====================================================
       PROFILE ICON
       ===================================================== */

    .nav-icon-profile {
        position: relative;

        width: 21px;
        height: 21px;

        border:
            2px solid currentColor;

        border-radius: 50%;
    }

    .nav-icon-profile::before {
        content: "";

        position: absolute;

        width: 6px;
        height: 6px;

        border:
            2px solid currentColor;

        border-radius: 50%;

        left: 5px;
        top: 3px;
    }

    .nav-icon-profile::after {
        content: "";

        position: absolute;

        width: 11px;
        height: 6px;

        border:
            2px solid currentColor;

        border-bottom: none;

        border-radius:
            8px 8px 0 0;

        left: 3px;
        bottom: 3px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    :root {
        --header-height: 58px;
    }

    body {
        padding-top: var(--header-height);

        padding-bottom:
            calc(72px + env(safe-area-inset-bottom));
    }

    .section-container,
    .header-container,
    .footer-container,
    .hero-container,
    .cta-container {
        width: calc(100% - 24px);
    }


    /* Header */

    .header-container {
        min-height: var(--header-height);
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-subtitle {
        font-size: 8px;

        letter-spacing: 1.2px;
    }


    /* Hero */

    .hero-container {
        width: calc(100% - 24px);

        padding-top: 40px;
        padding-bottom: 40px;

        gap: 30px;
    }

    .hero-content h1 {
        font-size:
            clamp(31px, 10vw, 39px);

        line-height: 1.08;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;

        flex: none;
    }


    /* Hero Card */

    .hero-card {
        width: 100%;

        padding: 30px 17px;

        border-radius: 20px;
    }

    .hero-card-logo {
        width: 125px;
        height: 125px;
    }

    .hero-card-logo img {
        width: 100px;
        height: 100px;
    }

    .hero-card-content h3 {
        font-size: 19px;
    }

    .hero-card-content p {
        font-size: 13px;
    }


    /* Sections */

    .services-section,
    .how-section {
        padding: 50px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .section-heading p {
        font-size: 13px;
    }


    /* Cards */

    .service-card,
    .step-card {
        padding: 21px 18px;

        border-radius: 18px;
    }

    .service-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 16px;
    }


    /* CTA */

    .cta-section {
        padding: 50px 0;
    }

    .cta-container {
        width: calc(100% - 24px);
    }

    .cta-container h2 {
        font-size: 27px;
    }


    /* Footer */

    .main-footer {
        padding-top: 40px;
    }

    .footer-container {
        width: calc(100% - 24px);
    }

    .footer-brand {
        flex-direction: column;

        text-align: center;
    }

    .footer-links {
        gap: 12px 16px;
    }


    /* Bottom Nav */

    .mobile-bottom-nav {
        height: 68px;
    }

    .mobile-bottom-nav a {
        font-size: 9px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    :root {
        --header-height: 56px;
    }

    .section-container,
    .header-container,
    .footer-container,
    .hero-container,
    .cta-container {
        width: calc(100% - 20px);
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-subtitle {
        font-size: 7px;
    }

    .hero-content h1 {
        font-size: 29px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .hero-card {
        padding-left: 14px;
        padding-right: 14px;
    }

    .mobile-bottom-nav a {
        font-size: 8px;
    }

}



/* =========================================
   LADLI E-RIKSHA - COMPACT HEADER
========================================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    z-index: 10000;
}

.header-inner {
    width: 100%;
    max-width: 1180px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 9px;

    text-decoration: none;
    flex-shrink: 0;
}

.brand img {
    width: 48px;
    height: 48px;

    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    line-height: 1;
}

.brand-title {
    color: #ff6b00;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.brand-subtitle {
    margin-top: 5px;

    color: #111827;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.7px;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 34px;
}

.desktop-nav a {
    position: relative;

    height: 80px;

    display: flex;
    align-items: center;

    padding: 0;

    text-decoration: none;

    color: #374151;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: #ff6b00;
}

.desktop-nav a.active {
    color: #ff6b00;
}

.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 11px;

    height: 2px;

    background: #ff6b00;

    border-radius: 5px;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    padding: 7px;

    border: none;
    background: transparent;

    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: #ff6b00;

    border-radius: 5px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .main-header {
        height: 70px;
    }

    .header-inner {
        padding: 0 15px;
    }

    .brand {
        gap: 8px;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand-title {
        font-size: 18px;
    }

    .brand-subtitle {
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-top: 4px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}