/* ==========================================================================
   Exit2Eat — Homepage layout
   Hero image sits full-bleed behind the page; the filter sidebar floats on
   top of it (starting just below the overlapping header logo) and then
   continues down beside the restaurant grid once the hero image ends.
   ========================================================================== */

.e2e-home {
    position: relative;
}

/* Full-bleed hero background layer, sits behind hero text only */
.e2e-home-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 600px;
    background-image:
        linear-gradient(180deg, rgba(8, 20, 55, 0.65) 0%, rgba(8, 20, 55, 0.35) 40%, rgba(8, 20, 55, 0.15) 70%, rgba(8, 20, 55, 0) 100%),
        var(--hero-image, none),
        linear-gradient(135deg, #14275c 0%, #1c3f8f 45%, #2f6fd6 100%);
    background-size: cover, cover, cover;
    background-position: center, center, center;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - 80px), transparent 100%);
    z-index: 0;
}

/* Row holding sidebar + main content, sits below the hero */
.e2e-home-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-top: 8px;
}

/* ---------------- Sidebar ---------------- */
.e2e-home-sidebar {
    flex: 0 0 280px;
    width: 280px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(11, 31, 77, 0.18);
    padding: 20px;
    position: sticky;
    top: 100px;
}


.e2e-sidebar-location a {
    text-decoration: none;
}

.e2e-sidebar-search {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 4px 10px;
}

.e2e-sidebar-search i {
    color: #9aa2b1;
    font-size: 0.85rem;
}

.e2e-sidebar-scroll {
    max-height: 200px;
    overflow-y: auto;
}

/* ---------------- Main column ---------------- */
.e2e-home-main {
    flex: 1 1 auto;
    min-width: 0;
}

/* Hero text block - positioned to account for navbar overlay */
.e2e-home .hero-banner {
    background: transparent;
    box-shadow: none;
    padding: 110px 40px 40px;
}

/* Hero heading */
.e2e-hero-heading {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
    line-height: 1.12;
    font-size: 3rem;
}

/* Gradient text for "Road to Somewhere." */
.e2e-gradient-text {
    background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 25%, #60a5fa 50%, #a78bfa 75%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Decorative divider line */
.e2e-hero-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #38bdf8, #60a5fa, #a78bfa, #8b5cf6);
    border-radius: 2px;
    margin: 18px 0;
}

/* Hero subtitle */
.e2e-hero-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Hero description */
.e2e-hero-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    max-width: 620px;
    line-height: 1.65;
}

/* White search card inside the hero */
.e2e-hero-search {
    position: relative;
    box-shadow:
        0 0 40px rgba(37, 99, 235, 0.35),
        0 0 80px rgba(96, 165, 250, 0.35),
        0 0 120px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(40, 93, 215, 0.487);
    margin-top: 36px;
    flex-wrap: wrap;
    border-radius: 16px !important;
}

.e2e-hero-search::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(from 0deg,
            #38bdf8 0%,
            #1752dd 25%,
            #c4b5fd 50%,
            #8b5cf6 75%,
            #38bdf8 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.e2e-hero-search>* {
    min-width: 0;
}

.e2e-hero-search-divider {
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    flex: 0 0 auto;
    white-space: nowrap;
}

.e2e-hero-search input[type="text"] {
    background: #f1f5f9;
    flex: 1 1 200px;
    border-radius: 10px;
}

.e2e-hero-search input[type="text"]:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

/* Search button - blue gradient */
.e2e-btn-search {
    background: linear-gradient(90deg, #2563eb 0%, #4f46e5 50%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 12px !important;
    transition: all 0.2s ease;
}

.e2e-btn-search:hover {
    background: linear-gradient(90deg, #1d4ed8 0%, #4338ca 50%, #6d28d9 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.38);
}

/* ---------------- Feature Cards ---------------- */
.e2e-feature-cards {
    position: relative;
    z-index: 1;
}

.e2e-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(11, 31, 77, 0.08);
    border: 1px solid rgba(11, 31, 77, 0.04);
    transition: all 0.25s ease;
}

.e2e-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(11, 31, 77, 0.12);
}

.e2e-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.e2e-feature-icon-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.e2e-feature-icon-purple {
    background: rgba(139, 92, 246, 0.12);
    color: #8b5cf6;
}

.e2e-feature-icon-green {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.e2e-feature-icon-pink {
    background: rgba(236, 72, 153, 0.12);
    color: #ec4899;
}

.e2e-feature-content {
    flex: 1;
    min-width: 0;
}

.e2e-feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.e2e-feature-text {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Stat cards under the hero */
.e2e-stat-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(11, 31, 77, 0.08);
}

.blue-col {
    color: #0b1f4d !important;
}

.e2e-btn-dark {
    background-color: #0b1f4d !important;
    color: #ffffff;
}

.e2e-btn-dark:hover {
    background-color: #0d389d !important;
    color: #ffffff;
}

.e2e-map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 132px;
    height: 42px;
    padding: 0 12px;

    background: #fff;
    color: #0b1f4d;
    border: 1px solid #d9dee8;
    border-radius: 12px;

    font-weight: 600;
    transition: .2s ease;
}

.e2e-map-btn i {
    font-size: 1.15rem;
    color: #0b1f4d;
}

.e2e-map-btn:hover {
    background: #0b1f4d;
    color: #fff;
    border-color: #0b1f4d;
}

.e2e-map-btn:hover i {
    color: #fff;
}

.form-select-sm {
    height: 42px;
    min-width: 132px;
    border-radius: 12px !important;
    border: 1px solid #d9dee8;
    font-weight: 600;
    background-color: #ffffff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1199.98px) {
    .e2e-home-hero-bg {
        height: 560px;
    }

    .e2e-home .hero-banner {
        padding: 100px 32px 36px;
    }

    .e2e-hero-heading {
        font-size: 2.6rem;
    }
}

@media (max-width: 991.98px) {
    .e2e-home-hero-bg {
        height: 520px;
    }

    .e2e-home .hero-banner {
        padding: 90px 24px 32px;
    }

    .e2e-hero-heading {
        font-size: 2.2rem;
    }

    .e2e-home-row {
        flex-direction: column;
        padding-top: 0;
    }

    .e2e-home-sidebar {
        width: 100%;
        flex-basis: auto;
        position: static;
    }

    .e2e-hero-search {
        margin-top: 24px;
    }

    .e2e-feature-card {
        padding: 16px;
    }

    .e2e-feature-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .e2e-feature-title {
        font-size: 0.85rem;
    }

    .e2e-feature-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .e2e-home-hero-bg {
        height: 480px;
    }

    .e2e-home .hero-banner {
        padding: 80px 16px 24px;
    }

    .e2e-hero-heading {
        font-size: 1.7rem;
    }

    .e2e-hero-subtitle {
        font-size: 1.05rem;
    }

    .e2e-hero-desc {
        font-size: 0.85rem;
    }

    .e2e-hero-divider {
        width: 40px;
        margin: 12px 0;
    }

    .e2e-home-sidebar {
        padding: 16px;
    }

    .e2e-hero-search-divider {
        display: none !important;
    }

    .e2e-ad-slot {
        margin-bottom: 16px;
    }

    .e2e-feature-cards .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .e2e-feature-card {
        padding: 14px 12px;
        gap: 10px;
        border-radius: 12px;
    }

    .e2e-feature-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .e2e-feature-title {
        font-size: 0.8rem;
    }

    .e2e-feature-text {
        font-size: 0.7rem;
    }

    .e2e-btn-search {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Exit2Eat — Footer Pages Design System
   ========================================================================== */

:root {
    --e2e-navy: #0b1f4d;
    --e2e-navy-2: #12275e;
    --e2e-blue: #2563eb;
    --e2e-blue-2: #3b82f6;
    --e2e-indigo: #4f46e5;
    --e2e-violet: #7c3aed;
    --e2e-radius-lg: 24px;
    --e2e-radius-md: 16px;
    --e2e-shadow-card: 0 10px 40px rgba(11, 31, 77, 0.08);
    --e2e-shadow-card-hover: 0 18px 48px rgba(11, 31, 77, 0.14);
}

/* --- Hero --- */
.e2e-fp-hero {
    position: relative;
    background: linear-gradient(135deg, #0b1f4d 0%, #12275e 35%, #1c3f8f 70%, #3b82f6 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.e2e-fp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 400px at 80% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.e2e-fp-hero .container { position: relative; z-index: 1; }

.e2e-fp-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 14px;
}

.e2e-fp-hero-gradient {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.e2e-fp-hero-sub {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 10px;
}

.e2e-fp-hero-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
}

.e2e-fp-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.e2e-fp-hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.e2e-fp-hero-avatars {
    display: flex;
}

.e2e-fp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #0b1f4d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: -8px;
}

.e2e-fp-hero-trust-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Features (For Travelers) */
.e2e-fp-hero-features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.e2e-fp-hero-feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.8rem;
}

.e2e-fp-hero-feat i {
    font-size: 1.1rem;
    color: #60a5fa;
    margin-top: 2px;
}

.e2e-fp-hero-feat strong { display: block; margin-bottom: 2px; }

/* Exit Sign */
.e2e-fp-hero-sign {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.e2e-fp-exit-badge {
    background: #1a1a2e;
    color: #fbbf24;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 6px;
    border: 2px solid #fbbf24;
    margin-bottom: 8px;
}

.e2e-fp-exit-sign {
    background: #1a5c2a;
    border: 3px solid #ffffff;
    border-radius: 12px;
    padding: 20px 28px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.e2e-fp-exit-sign--green { background: #1a5c2a; }

.e2e-fp-exit-icons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.2rem;
}

.e2e-fp-exit-label {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
}

/* --- Buttons --- */
.e2e-fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
}

.e2e-fp-btn--primary {
    background: linear-gradient(90deg, #2563eb, #4f46e5);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.e2e-fp-btn--primary:hover {
    background: linear-gradient(90deg, #1d4ed8, #4338ca);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
}

.e2e-fp-btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.e2e-fp-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.e2e-fp-btn--sm { padding: 10px 22px; font-size: 0.88rem; }

/* --- Feature Cards --- */
.e2e-fp-features {
    position: relative;
    z-index: 2;
    margin-top: -30px;
    padding: 0 0 20px;
}

.e2e-fp-feat-card {
    background: #ffffff;
    border-radius: var(--e2e-radius-md);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--e2e-shadow-card);
    border: 1px solid rgba(11, 31, 77, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.e2e-fp-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--e2e-shadow-card-hover);
}

.e2e-fp-feat-card--center { text-align: center; }

.e2e-fp-feat-card--full {
    text-align: center;
    padding: 28px 20px;
}

.e2e-fp-feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 14px;
}

.e2e-fp-feat-icon--blue { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.e2e-fp-feat-icon--green { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.e2e-fp-feat-icon--purple { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.e2e-fp-feat-icon--pink { background: rgba(236, 72, 153, 0.12); color: #ec4899; }
.e2e-fp-feat-icon--amber { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }

.e2e-fp-feat-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}

.e2e-fp-feat-text {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.e2e-fp-feat-img-placeholder {
    margin-top: 14px;
    background: #f1f5f9;
    border-radius: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.5rem;
}

/* --- Stats --- */
.e2e-fp-stats { padding: 30px 0 40px; }

.e2e-fp-stat-card {
    background: linear-gradient(135deg, #0b1f4d, #1c3f8f);
    border-radius: var(--e2e-radius-md);
    padding: 24px 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(11, 31, 77, 0.2);
}

.e2e-fp-stat-card--light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: inherit;
    box-shadow: var(--e2e-shadow-card);
}

.e2e-fp-stat-icon {
    font-size: 1.3rem;
    color: #60a5fa;
    margin-bottom: 8px;
}

.e2e-fp-stat-card--light .e2e-fp-stat-icon { color: #3b82f6; }

.e2e-fp-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.e2e-fp-stat-star { color: #fbbf24; }

.e2e-fp-stat-card--light .e2e-fp-stat-number { color: #0b1f4d; }

.e2e-fp-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.e2e-fp-stat-card--light .e2e-fp-stat-label { color: #64748b; }

/* --- Content Sections --- */
.e2e-fp-content-section {
    padding: 40px 0;
    background: #f6f8fc;
}

.e2e-fp-content-section--alt { background: #ffffff; }

.e2e-fp-content-card {
    background: #ffffff;
    border-radius: var(--e2e-radius-lg);
    box-shadow: var(--e2e-shadow-card);
    padding: 48px;
    overflow: hidden;
}

.e2e-fp-section-label {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.e2e-fp-section-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #0b1f4d;
    line-height: 1.25;
    margin-bottom: 14px;
}

.e2e-fp-section-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0;
}

.e2e-fp-section-text {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}

.e2e-fp-section-emphasis {
    font-size: 1rem;
    font-weight: 600;
    color: #2563eb;
    font-style: italic;
}

.e2e-fp-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.e2e-fp-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.e2e-fp-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 0.85rem;
}

/* --- Image Cards --- */
.e2e-fp-img-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
    min-height: 260px;
}

.e2e-fp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 260px;
}

.e2e-fp-img-placeholder {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: rgba(255, 255, 255, 0.3);
    font-size: 3rem;
}

.e2e-fp-img-tags {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.e2e-fp-img-tag {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Map Card (For Restaurants) */
.e2e-fp-img-card--map {
    background: #f1f5f9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.e2e-fp-map-overlay {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.e2e-fp-map-pin {
    width: 48px;
    height: 48px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
}

.e2e-fp-map-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.e2e-fp-map-card strong { display: block; color: #0f172a; font-size: 0.9rem; }
.e2e-fp-map-card span { color: #64748b; font-size: 0.78rem; }

.e2e-fp-map-stats {
    display: flex;
    gap: 12px;
}

.e2e-fp-map-stat {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.e2e-fp-map-stat i { color: #3b82f6; font-size: 1rem; margin-bottom: 4px; display: block; }
.e2e-fp-map-stat strong { display: block; color: #0f172a; font-size: 0.85rem; }
.e2e-fp-map-stat span { color: #64748b; font-size: 0.7rem; }

/* --- Quote Icon --- */
.e2e-fp-quote-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

/* --- Dark Card --- */
.e2e-fp-dark-card {
    background: linear-gradient(135deg, #0b1f4d, #16307a);
    border-radius: var(--e2e-radius-lg);
    padding: 48px;
    color: #ffffff;
    box-shadow: 0 16px 44px rgba(11, 31, 77, 0.25);
}

.e2e-fp-dark-card--cta {
    background: linear-gradient(135deg, #0b1f4d 0%, #1c3f8f 60%, #2563eb 100%);
}

.e2e-fp-dark-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #60a5fa;
}

.e2e-fp-dark-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.e2e-fp-dark-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 0;
}

.e2e-fp-dark-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.e2e-fp-dark-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.e2e-fp-dark-feat {
    text-align: center;
}

.e2e-fp-dark-feat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #60a5fa;
    margin: 0 auto 10px;
}

.e2e-fp-dark-feat h6 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 0.88rem;
}

.e2e-fp-dark-feat p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* --- Phone Mockup --- */
.e2e-fp-phone-mockup {
    max-width: 280px;
    margin: 0 auto;
}

.e2e-fp-phone-screen {
    background: #ffffff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.e2e-fp-phone-header {
    background: #2563eb;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.e2e-fp-phone-map {
    background: #e8f4e8;
    border-radius: 10px;
    height: 100px;
    margin-bottom: 12px;
}

.e2e-fp-phone-restaurant {
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
}

.e2e-fp-phone-rest-name {
    font-weight: 700;
    font-size: 0.82rem;
    color: #0f172a;
    margin-bottom: 2px;
}

.e2e-fp-phone-rest-rating {
    color: #f59e0b;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.e2e-fp-phone-rest-info {
    color: #64748b;
    font-size: 0.72rem;
}

/* --- Steps Flow (How It Works) --- */
.e2e-fp-steps-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.e2e-fp-step {
    text-align: center;
    flex: 0 0 auto;
    width: 160px;
    position: relative;
}

.e2e-fp-step-num {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: #2563eb;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.e2e-fp-step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #eff6ff;
    border: 2px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: #2563eb;
}

.e2e-fp-step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0b1f4d;
    margin-bottom: 6px;
}

.e2e-fp-step-text {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
    padding: 0 8px;
}

.e2e-fp-step-connector {
    display: flex;
    align-items: center;
    padding-top: 28px;
}

.e2e-fp-step-dots {
    width: 40px;
    height: 2px;
    background: repeating-linear-gradient(90deg, #cbd5e1 0, #cbd5e1 4px, transparent 4px, transparent 8px);
}

/* --- CTA Section --- */
.e2e-fp-cta {
    padding: 50px 0;
}

.e2e-fp-cta-card {
    background: linear-gradient(135deg, #0b1f4d 0%, #1c3f8f 60%, #2563eb 100%);
    border-radius: var(--e2e-radius-lg);
    padding: 48px;
    color: #ffffff;
    box-shadow: 0 16px 44px rgba(11, 31, 77, 0.25);
}

.e2e-fp-cta-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.e2e-fp-cta-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.e2e-fp-cta-illustration {
    text-align: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.15);
}

/* --- Bottom CTA Bar --- */
.e2e-fp-bottom-cta {
    background: #ffffff;
    border-radius: var(--e2e-radius-md);
    padding: 24px 32px;
    box-shadow: var(--e2e-shadow-card);
    border: 1px solid rgba(11, 31, 77, 0.06);
}

.e2e-fp-bottom-cta-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b1f4d;
    margin-bottom: 4px;
}

.e2e-fp-bottom-cta-text {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
    .e2e-fp-hero { padding: 100px 0 60px; }
    .e2e-fp-content-card { padding: 32px 24px; }
    .e2e-fp-dark-card { padding: 32px 24px; }
    .e2e-fp-cta-card { padding: 36px 24px; }
    .e2e-fp-steps-flow { gap: 20px; }
    .e2e-fp-step-connector { display: none; }
}

@media (max-width: 767.98px) {
    .e2e-fp-hero { padding: 90px 0 50px; }
    .e2e-fp-hero-title { font-size: 2rem; }
    .e2e-fp-hero-features { flex-direction: column; gap: 10px; }
    .e2e-fp-feat-card { padding: 20px 16px; }
    .e2e-fp-stat-number { font-size: 1.8rem; }
    .e2e-fp-content-section .row { text-align: center; }
    .e2e-fp-img-card { margin-bottom: 20px; }
    .e2e-fp-dark-tags { justify-content: center; }
    .e2e-fp-step { width: 100%; }
    .e2e-fp-bottom-cta { text-align: center; padding: 24px 20px; }
}

@media (max-width: 575.98px) {
    .e2e-fp-hero { padding: 80px 0 40px; }
    .e2e-fp-hero-title { font-size: 1.7rem; }
    .e2e-fp-content-card { padding: 24px 16px; }
    .e2e-fp-dark-card { padding: 28px 16px; }
    .e2e-fp-map-stats { flex-direction: column; }
    .e2e-fp-about-icon-card { padding: 24px 16px; }
    .e2e-fp-about-icon-bg { width: 80px; height: 80px; font-size: 2rem; }
    .e2e-fp-value-item { flex-direction: column; text-align: center; gap: 8px; }
    .e2e-fp-value-item h5 { margin-bottom: 0; }
}

/* ==========================================================================
   About Page — Big Icon Cards & Values
   ========================================================================== */

.e2e-fp-about-icon-card {
    background: #ffffff;
    border-radius: var(--e2e-radius-lg);
    padding: 36px;
    text-align: center;
    box-shadow: var(--e2e-shadow-card);
    border: 1px solid rgba(11, 31, 77, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.e2e-fp-about-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--e2e-shadow-card-hover);
}

.e2e-fp-about-icon-bg {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.e2e-fp-about-icon-card:hover .e2e-fp-about-icon-bg {
    transform: scale(1.1);
}

.e2e-fp-about-icon-card--blue .e2e-fp-about-icon-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    color: #2563eb;
}

.e2e-fp-about-icon-card--green .e2e-fp-about-icon-bg {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    color: #059669;
}

.e2e-fp-about-icon-card--purple .e2e-fp-about-icon-bg {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    color: #7c3aed;
}

.e2e-fp-about-icon-card--amber .e2e-fp-about-icon-bg {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    color: #d97706;
}

.e2e-fp-about-icon-card--pink .e2e-fp-about-icon-bg {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    color: #db2777;
}

.e2e-fp-about-icon-card--dark .e2e-fp-about-icon-bg {
    background: rgba(255, 255, 255, 0.1);
    color: #60a5fa;
}

.e2e-fp-about-icon-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.e2e-fp-about-icon-card--dark h4 {
    color: #000;
}

.e2e-fp-about-icon-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.5;
}

.e2e-fp-about-icon-card--dark p {
    color: rgba(255, 255, 255, 0.7);
}

/* Values List */
.e2e-fp-values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.e2e-fp-value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8fafc;
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(11, 31, 77, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.e2e-fp-value-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
}

.e2e-fp-value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 2px;
}

.e2e-fp-value-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.e2e-fp-value-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   FAQ Page — Modern Futuristic
   ========================================================================== */

.e2e-fp-faq-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid rgba(11, 31, 77, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.e2e-fp-faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2563eb, #7c3aed);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.e2e-fp-faq-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(11, 31, 77, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
}

.e2e-fp-faq-item:hover::before {
    opacity: 1;
}

.e2e-fp-faq-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.06));
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.e2e-fp-faq-item:hover .e2e-fp-faq-icon {
    transform: scale(1.1);
}

.e2e-fp-faq-icon--green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.06));
    color: #059669;
}

.e2e-fp-faq-icon--purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.06));
    color: #7c3aed;
}

.e2e-fp-faq-q {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.e2e-fp-faq-item .e2e-fp-section-text {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
}

/* ---------------- Discover More ---------------- */
.e2e-discover-more{position:relative;overflow:hidden;width:100%;max-width:1100px;margin:2.25rem auto 1rem;padding:2rem;border:1px solid rgba(99,102,241,.18);border-radius:22px;background:linear-gradient(135deg,#0b1f4d 0%,#193c8a 54%,#453091 100%);box-shadow:0 18px 42px rgba(11,31,77,.18);color:#fff}.e2e-discover-more-glow{position:absolute;width:260px;height:260px;border-radius:50%;filter:blur(8px);pointer-events:none}.e2e-discover-more-glow--one{top:-150px;right:-55px;background:rgba(56,189,248,.23)}.e2e-discover-more-glow--two{bottom:-170px;left:26%;background:rgba(167,139,250,.2)}.e2e-discover-more-heading{position:relative;max-width:690px;margin-bottom:1.5rem}.e2e-discover-more-kicker{display:inline-flex;align-items:center;gap:.45rem;padding:.42rem .75rem;border-radius:999px;background:rgba(255,255,255,.14);color:#dbeafe;font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase}.e2e-discover-more h2{margin:.8rem 0 .45rem;color:#fff;font-size:clamp(1.55rem,2.5vw,2.25rem);font-weight:800;line-height:1.16}.e2e-discover-more-heading>p{margin:0;color:rgba(255,255,255,.78);font-size:1rem}.e2e-discover-more-card{position:relative;z-index:1;display:flex;gap:1rem;height:100%;padding:1.25rem;border:1px solid rgba(255,255,255,.16);border-radius:16px;background:rgba(255,255,255,.1);backdrop-filter:blur(8px)}.e2e-discover-more-icon{display:inline-flex;flex:0 0 42px;width:42px;height:42px;align-items:center;justify-content:center;border-radius:12px;font-size:1.1rem}.e2e-discover-more-icon--traveler{background:#dbeafe;color:#2563eb}.e2e-discover-more-icon--restaurant{background:#ede9fe;color:#7c3aed}.e2e-discover-more-card h3{margin:.1rem 0 .45rem;color:#fff;font-size:1rem;font-weight:750}.e2e-discover-more-card p{margin:0 0 .8rem;color:rgba(255,255,255,.78);font-size:.84rem;line-height:1.6}.e2e-discover-more-link{display:inline-flex;align-items:center;gap:.45rem;color:#fff;font-size:.83rem;font-weight:700;text-decoration:none}.e2e-discover-more-link:hover{color:#bae6fd}.e2e-discover-more-location{position:relative;z-index:1;display:flex;gap:.75rem;align-items:flex-start;margin-top:1rem;padding:1rem 1.1rem;border:1px solid rgba(125,211,252,.82);border-radius:14px;background:rgba(3,12,35,.22);box-shadow:0 0 0 1px rgba(186,230,253,.2),0 10px 22px rgba(3,12,35,.2),0 0 20px rgba(96,165,250,.2)}.e2e-discover-more-location-icon{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;flex:0 0 32px;border-radius:50%;background:rgba(34,197,94,.2);color:#86efac}.e2e-discover-more-location p{margin:0;color:rgba(255,255,255,.8);font-size:.84rem;line-height:1.55}.e2e-discover-more-location strong{color:#fff}.e2e-discover-more-tagline{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;gap:.5rem;margin-top:1.15rem;color:#dbeafe;font-size:.84rem;font-weight:700;text-align:center}.e2e-discover-more-tagline i{color:#f9a8d4}@media(max-width:575.98px){.e2e-discover-more{margin-top:1.75rem;padding:1.35rem;border-radius:18px}.e2e-discover-more-card{padding:1rem}.e2e-discover-more-location{padding:.9rem}}

.e2e-discover-more-card{box-shadow:0 8px 20px rgba(3,12,35,.16);transition:transform .28s cubic-bezier(.2,.8,.2,1),border-color .28s ease,box-shadow .28s ease,background-color .28s ease}.e2e-discover-more-card:hover,.e2e-discover-more-card:focus-within{transform:translateY(-6px);border-color:rgba(125,211,252,.82);background:rgba(255,255,255,.15);box-shadow:0 0 0 1px rgba(186,230,253,.2),0 14px 30px rgba(3,12,35,.3),0 0 22px rgba(96,165,250,.24)}.e2e-discover-more-icon{transition:transform .28s ease,box-shadow .28s ease}.e2e-discover-more-card:hover .e2e-discover-more-icon,.e2e-discover-more-card:focus-within .e2e-discover-more-icon{transform:scale(1.07);box-shadow:0 6px 14px rgba(3,12,35,.2)}(prefers-reduced-motion:reduce){.e2e-discover-more-card,.e2e-discover-more-icon{transition:none}.e2e-discover-more-card:hover,.e2e-discover-more-card:focus-within{transform:none}}
\n\n/* Mobile filter panel controls */\n.e2e-mobile-filter-open,.e2e-mobile-sidebar-head{display:none}@media(max-width:991.98px){.e2e-home-sidebar{overflow:hidden;max-height:1600px;opacity:1;transform:translateY(0);transition:max-height .38s ease,opacity .24s ease,transform .3s ease,padding .38s ease,margin .38s ease,border-width .3s ease}.e2e-mobile-sidebar-head{display:flex;align-items:center;justify-content:space-between;margin:-2px 0 14px;padding-bottom:12px;border-bottom:1px solid #e5e7eb;color:#0b1f4d;font-size:.9rem;font-weight:750}.e2e-mobile-sidebar-close{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;margin:-8px -8px -8px 0;padding:10px;border:0;border-radius:12px;background:#f1f5f9;color:#0b1f4d;font-size:1rem;line-height:1;transition:transform .2s ease,background-color .2s ease,color .2s ease,box-shadow .2s ease}.e2e-mobile-sidebar-close:hover{background:#e0e7ff;color:#3730a3;box-shadow:0 4px 10px rgba(37,99,235,.14)}.e2e-mobile-sidebar-close:active{transform:scale(.86) rotate(90deg)}.e2e-mobile-filter-open{align-items:center;justify-content:center;gap:.5rem;width:100%;padding:.8rem 1rem;border:1px solid #c7d2fe;border-radius:14px;background:#fff;color:#0b1f4d;font-size:.88rem;font-weight:700;box-shadow:0 6px 18px rgba(11,31,77,.08);transition:transform .2s ease,box-shadow .2s ease}.e2e-home-row.is-sidebar-closed .e2e-home-sidebar{max-height:0;opacity:0;transform:translateY(-10px);margin:0;padding-top:0;padding-bottom:0;border-top-width:0;border-bottom-width:0;pointer-events:none}.e2e-home-row.is-sidebar-closed .e2e-mobile-filter-open{display:inline-flex}.e2e-mobile-filter-open:active{transform:scale(.98)}}@media(prefers-reduced-motion:reduce){.e2e-home-sidebar,.e2e-mobile-sidebar-close,.e2e-mobile-filter-open{transition:none!important}}\n