/* ===================================================================
   HOPNEST TAXI UI – CONSOLIDATED CSS
   PART 1 OF 3
   Includes:
   - Header
   - Mobile Menu
   - Hero (Concierge Top)
   =================================================================== */


/* ============================================================
   RESET / GLOBALS
============================================================ */
a:hover {
    text-decoration: none;
    color: #FFEDE6;
}


/* ===================================================================
   SECTION 1 — HEADER MODULE
   (.taxi-header, .taxi-header-container)
=================================================================== */

.taxi-header {
    background: #FFFFFF;
    border-bottom: 1px solid #ECECEC;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.taxi-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo-box {
    background: #FF5527;
    padding: 10px;
    border-radius: 8px;
}

.logo-box img {
    height: 32px;
    width: 32px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #343a40;
    margin-left: 14px;
}

/* Desktop Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.large-btn {
    padding: 10px 15px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #FF5527;
    color: #FF5527;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.large-btn:hover {
    background: #FF6A3A;
    color: #fff;
}

.large-btn i {
    font-size: 22px;
}

.store-buttons {
    display: flex;
    gap: 10px;
}

.store-buttons a svg {
    height: 42px;
}


/* ===================================================================
   SECTION 2 — MOBILE MENU + HAMBURGER
=================================================================== */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #FF5527;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 65px;
    right: 16px;
    background: #fff;
    border: 1px solid #ECECEC;
    border-radius: 16px;
    width: 300px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    z-index: 2000;
}
.mobile-menu.active {
    display: block;
}

.mobile-menu a.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 16px;
    color: #FF5527;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a.menu-item:last-of-type {
    border-bottom: none;
}

.mobile-menu a.menu-item i {
    font-size: 20px;
}

.mobile-menu .store-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
    align-items: flex-start;
}

.mobile-menu .store-buttons a svg {
    width: 100%;
    height: auto;
    max-height: 48px;
}

@media (max-width: 360px) {
    .mobile-menu {
        width: 260px;
        right: 10px;
    }
}

/* Responsive */
@media (max-width: 650px) {
    .header-right { display: none !important; }
    .menu-toggle { display: block; }
    .logo-text { font-size: 18px; }
}


/* ===================================================================
   SECTION 3 — HERO MODULE
   (hnc-hero, hnc-cta-card, badges)
=================================================================== */

:root {
    --hnc-primary: #ff5527;
    --hnc-primary-soft: #ff6a3a;
    --hnc-muted: #cfd1d4;
    --hnc-light: rgba(255,255,255,0.85);

    --hnc-radius-lg: 24px;
    --hnc-shadow-hero: 0 25px 55px rgba(0,0,0,0.55);
}

/* HERO BACKGROUND */
.hnc-hero {
    position: relative;
    padding: 130px 18px 150px;
    text-align: center;
    color: white;

    background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.85) 100%),
        var(--hnc-hero-bg, url(''));
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hnc-hero-content {
    max-width: 860px;
    margin: 0 auto;
}

.hnc-hero-title {
    font-size: clamp(28px, 7vw, 44px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    text-shadow: 0 12px 28px rgba(0,0,0,0.75);
}

.hnc-hero-support {
    font-size: clamp(15px, 4vw, 18px);
    opacity: 0.90;
    margin-bottom: 32px;
    line-height: 1.45;
}

/* CTA CARD */
.hnc-cta-card {
    margin-top: 10px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(16px);
    padding: 26px 30px;
    border-radius: var(--hnc-radius-lg);
    box-shadow: var(--hnc-shadow-hero);
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.hnc-cta-title {
    font-size: clamp(15px, 4vw, 20px);
    opacity: 0.95;
    margin-bottom: 16px;
}

.hnc-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.hnc-btn {
    padding: 12px 22px;
    border-radius: 999px;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    transition: 0.18s ease-in-out;
}

.hnc-btn-wa {
    background: var(--hnc-primary);
    color: #fff;
    border-color: var(--hnc-primary);
}

.hnc-btn-call {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    padding: 12px 16px;
}

.hnc-btn-call i {
    font-size: 17px;
}

.hnc-btn:hover {
    transform: translateY(-2px);
}

/* TRUST BADGES */
.hnc-trust {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hnc-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--hnc-light);
}

.hnc-trust-item i {
    font-size: 14px;
}


/* ===================================================================
   SECTION 4 — PACKAGES SECTION (CARDS + HORIZONTAL SCROLL)
   Prefix: .hn-pkg-
=================================================================== */

.hn-pkg-section {
    margin-top: 20px; /* FIXED SPACING BELOW HERO */
}

.hn-pkg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.hn-pkg-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.hn-pkg-subtitle {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Horizontal scroll wrapper */
.hn-pkg-scroll {
    display: flex;
    gap: 22px;
    padding-bottom: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
}

.hn-pkg-scroll::-webkit-scrollbar {
    height: 4px;
}

.hn-pkg-scroll::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 20px;
}


/* ===================================================================
   SECTION 5 — PACKAGE CARD
=================================================================== */

.hn-pkg-card {
    min-width: 290px;
    max-width: 340px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.12);
    scroll-snap-align: start;
    overflow: hidden;
    transition: .25s ease;
}

.hn-pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15,23,42,0.18);
}

.hn-pkg-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hn-pkg-card-inner img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.hn-pkg-content {
    padding: 16px 16px 12px;
    flex-grow: 1;
}

/* Title */
.hn-pkg-card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Unit chip (full-day / per trip) */
.hn-pkg-unit-chip {
    display: inline-block;
    background: #fff4ef;
    color: #ff5527;
    border: 1px solid #ffd2c4;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin: 4px 0 12px 0;
}

/* Description */
.hn-pkg-card-desc {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.55;
    margin-bottom: 12px;
}


/* ===================================================================
   SECTION 6 — PRICE LIST CHIPS (HORIZONTAL)
=================================================================== */

.hn-pkg-chip-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
}

.hn-pkg-chip-scroll::-webkit-scrollbar {
    height: 3px;
}

.hn-pkg-chip {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}


/* ===================================================================
   SECTION 7 — CARD CTA BUTTON
=================================================================== */

.hn-pkg-cta {
    display: flex;
    justify-content: center;
    padding: 14px 0;
    text-decoration: none;
    color: #fff;
    background: #ff5527;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
}


/* ===================================================================
   SECTION 8 — PACKAGE MODAL
=================================================================== */

.hn-pkg-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    justify-content: center;
    align-items: flex-end;
    backdrop-filter: blur(4px);
    z-index: 999999;
}

.hn-pkg-modal-box {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 22px 22px 0 0;
    padding: 22px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
}

.hn-pkg-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.hn-pkg-modal-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}

.hn-pkg-modal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

#hnPkgUnitChipModal {
    margin: 4px 0 12px 0;
}

.hn-pkg-modal-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 20px;
}

.hn-pkg-section-block {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
}

.hn-pkg-section-heading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

#hnPkgInclusions,
#hnPkgExclusions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hn-pkg-modal-chip {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 13px;
}

/* Modal bottom CTA (WhatsApp) */
.hn-pkg-whatsapp {
    display: block;
    margin-top: 25px;
    padding: 15px;
    background: #FF5527;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    text-align: center;
}

/* FIX — REQUIRED */
.hn-pkg-modal.active {
    display: flex !important;
}

/* PRICE GRID (MODAL) */
.hn-pkg-price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 16px 0;
}

.hn-pkg-price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}

.hn-pkg-price-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.hn-pkg-price-value {
    font-size: 14px;
    font-weight: 700;
    color: #ff5527;
    white-space: nowrap;
}


/* ===================================================================
   SECTION 9 — VEHICLE CARDS MODULE
   Prefix: .hn-vc-
=================================================================== */

.hn-vc-section {
    padding: 60px 0;
    width: 100%;
}

.hn-vc-container {
    max-width: 1160px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.hn-vc-title {
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 700;
    margin-bottom: 4px;
}

.hn-vc-subtext {
    font-size: 15px;
    color: #717182;
    margin-bottom: 32px;
}

/* Grid */
.hn-vc-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

/* Card */
.hn-vc-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(15,23,42,0.08);
    transition: all 0.25s ease;
}

.hn-vc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.14);
}

/* Icon tile */
.hn-vc-icon-tile {
    width: 60px;
    height: 60px;
    background: #FFF1EB;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FontAwesome icons */
.hn-vc-icon-tile i {
    font-size: 28px;
    color: #FF5527;
}

/* SVG mask icon */
.hn-vc-mask-icon {
    width: 32px;
    height: 32px;
    background-color: #FF5527;

    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;

    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

/* Text */
.hn-vc-card-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 3px;
}

.hn-vc-card-sub {
    font-size: 14px;
    color: #717182;
}



/* ===================================================================
   SECTION 10 — HOW IT WORKS MODULE
   Prefix: .hn-how-
=================================================================== */

.hn-how-section {
    padding: 60px 16px;
}

.hn-how-container {
    max-width: 1100px;
    margin: 0 auto;
}

.hn-how-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
}

.hn-how-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Steps wrapper */
.hn-how-steps {
    position: relative;
    padding-left: 25px; /* space for timeline */
}

/* Vertical timeline line */
.hn-how-steps::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ffe1d7; /* soft orange */
    border-radius: 4px;
}

/* Individual step */
.hn-how-step {
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Connector dot */
.hn-how-step::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 28px;
    width: 16px;
    height: 16px;
    background: #ff5527;
    border-radius: 50%;
    border: 3px solid #fff;
}

/* Title Row */
.hn-how-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hn-how-step-number {
    background: #ff5527;
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.hn-how-step h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.hn-how-step p {
    margin: 0;
    margin-top: 6px;
    font-size: 15px;
    color: #545e6b;
    line-height: 1.6;
}

/* Desktop layout */
@media (min-width: 780px) {
    .hn-how-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
        row-gap: 30px;
        padding-left: 0;
    }

    .hn-how-steps::before {
        display: none;
    }

    .hn-how-step::before {
        display: none;
    }
}



/* ===================================================================
   SECTION 11 — FOOTER
   Prefix: .taxi-footer
=================================================================== */

.taxi-footer {
    background: #2A2A2A;
    color: #EAEAEA;
    padding: 50px 20px 0 20px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
}

.footer-container h2 {
    margin-bottom: 12px;
    font-size: 22px;
    color: #FFFFFF;
}

.footer-about,
.footer-contact {
    flex: 1;
    min-width: 280px;
}

.footer-about p,
.footer-contact p {
    line-height: 1.6;
    font-size: 15px;
    color: #CFCFCF;
}

.footer-bottom {
    margin-top: 40px;
    padding: 15px;
    text-align: center;
    background: #1E1E1E;
    color: #9A9A9A;
    font-size: 14px;
}

/* ================================
   FOOTER MODULE (taxi-footer)
   ================================ */

.taxi-footer {
    background: #2A2A2A;
    color: #EAEAEA;
    padding: 50px 20px 0 20px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
}

.footer-container h2 {
    margin-bottom: 12px;
    font-size: 22px;
    color: #FFFFFF;
}

.footer-about,
.footer-contact {
    flex: 1;
    min-width: 280px;
}

.footer-about p,
.footer-contact p {
    line-height: 1.6;
    font-size: 15px;
    color: #CFCFCF;
}

.footer-bottom {
    margin-top: 40px;
    padding: 15px;
    text-align: center;
    background: #1E1E1E;
    color: #9A9A9A;
    font-size: 14px;
}


/* FORCE MODAL TO SHOW WHEN ACTIVE (FINAL FIX) */
.hn-pkg-modal.active {
    display: flex !important;
}

@media (max-width: 768px) {
    .hn-pkg-modal.active {
        display: flex !important;
    }
}


.hnc-btn-model-call{width: 100%; background: var(--hnc-primary); margin: 20px auto; color: #fff; text-align: center;}
.cta-label {display: block; color: var(--light); font-size: small; margin: 10px auto;}
.hnc-btn-wa {}



.hn-pkg-list {
    margin: 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hn-pkg-list li {
    font-size: 14px;
    color: #374151;
    line-height: 1.55;
}


