/* City VIP Transfer - final mobile optimization + empty section visual polish */

/* Global safety */
html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

/* Hide visible spam honeypot labels/fields without touching real Website fields */
.city-honeypot-hidden,
label.city-honeypot-hidden,
div.city-honeypot-hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Stronger spacing rhythm */
body.page-public .section {
    padding-top: clamp(44px, 6vw, 82px);
    padding-bottom: clamp(44px, 6vw, 82px);
}

body.page-public .section-title {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

body.page-public .section-title h2 {
    letter-spacing: -0.035em;
}

/* Smart location / maps: fill the blank area with premium visual guidance */
.map-picker-grid {
    gap: 22px !important;
}

.map-pane {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(219,226,238,0.96);
    box-shadow: 0 18px 44px rgba(10, 22, 46, 0.07);
}

.map-canvas {
    min-height: 330px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 138, 29, 0.16), transparent 0 28%),
        radial-gradient(circle at 82% 34%, rgba(20, 47, 86, 0.10), transparent 0 30%),
        linear-gradient(135deg, #f8fafc 0%, #eef3fa 100%);
}

.city-map-empty-state {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
}

.city-map-empty-card {
    width: min(380px, 92%);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.90);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 42px rgba(7, 20, 41, 0.10);
    backdrop-filter: blur(6px);
    padding: 20px;
    text-align: center;
}

.city-map-empty-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: linear-gradient(135deg, #ff8a1d, #ffb039);
    color: #fff;
    font-size: 26px;
    box-shadow: 0 12px 28px rgba(255, 138, 29, 0.30);
    margin-bottom: 12px;
}

.city-map-empty-card h4 {
    margin: 0 0 8px;
    color: #08152d;
    font-size: 18px;
    line-height: 1.3;
}

.city-map-empty-card p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.map-canvas.has-live-map .city-map-empty-state {
    display: none !important;
}

/* Extra enhancement blocks injected by JS */
.city-extra-section {
    margin-top: 28px;
}

.city-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.city-extra-card {
    border: 1px solid rgba(218, 226, 238, 0.94);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.94));
    box-shadow: 0 14px 34px rgba(9, 21, 44, 0.06);
    padding: 20px;
}

.city-extra-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 138, 29, 0.12);
    color: #ea6b00;
    font-size: 23px;
    margin-bottom: 12px;
}

.city-extra-card h3,
.city-extra-card h4 {
    margin: 0 0 8px;
    color: #071429;
    font-size: 18px;
    line-height: 1.35;
}

.city-extra-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.city-route-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.city-route-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255, 138, 29, 0.10);
    border: 1px solid rgba(255, 138, 29, 0.18);
    color: #9a4b00;
    font-size: 13px;
    font-weight: 700;
}

.city-cta-band {
    margin-top: 26px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(8, 21, 45, 0.95), rgba(16, 38, 76, 0.93)),
        radial-gradient(circle at 20% 20%, rgba(255, 138, 29, 0.35), transparent 0 26%);
    color: #fff;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 20px 54px rgba(7, 20, 41, 0.16);
}

.city-cta-band h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 22px;
}

.city-cta-band p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
}

.city-cta-band .btn {
    white-space: nowrap;
}

/* Public page specific polish */
body.page-public.page-fleet .grid-3,
body.page-public.page-destinations .grid-3,
body.page-public.page-corporate .grid-3,
body.page-public.page-partner .grid-3 {
    align-items: stretch;
}

body.page-public.page-flights .flights-table-wrap,
body.page-public.page-flights .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

body.page-public.page-flights table {
    min-width: 960px;
}

/* Better tap targets */
a.btn,
button.btn,
.small-btn,
.lang-current,
.nav-toggle {
    min-height: 42px;
}

/* Mobile optimization */
@media (max-width: 1024px) {
    body.page-public .container {
        width: min(100% - 28px, 1120px);
    }

    .split-hero,
    .panel-preview,
    .office-location-card,
    .map-picker-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .hero.hero-mini,
    .hero {
        min-height: auto !important;
        padding-top: 34px !important;
        padding-bottom: 34px !important;
    }

    .booking-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    .city-extra-grid {
        grid-template-columns: 1fr;
    }

    .city-cta-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body.page-public .section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    body.page-public .container {
        width: min(100% - 22px, 1120px);
    }

    .hero h1,
    .hero-mini h1 {
        font-size: clamp(34px, 11vw, 54px) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.055em !important;
    }

    .hero p,
    .hero-mini p {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    .trust-row,
    .account-links,
    .office-contact-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .trust-item {
        min-height: 66px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .booking-card {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    .reservation-access-actions,
    .booking-card .account-links {
        grid-template-columns: 1fr !important;
    }

    .booking-card form,
    .form-grid,
    .booking-form,
    .field-grid {
        grid-template-columns: 1fr !important;
    }

    .booking-card .field,
    .booking-card input,
    .booking-card select,
    .booking-card textarea {
        width: 100% !important;
        min-width: 0 !important;
    }

    .counter-grid,
    .extras-grid,
    .guest-counter-grid {
        grid-template-columns: 1fr !important;
    }

    .map-canvas {
        min-height: 230px;
    }

    .city-map-empty-card {
        padding: 16px;
    }

    .city-map-empty-icon {
        width: 48px;
        height: 48px;
        font-size: 23px;
    }

    .city-smart-location-highlights {
        grid-template-columns: 1fr !important;
    }

    .city-extra-card {
        padding: 17px;
    }

    .city-route-chip {
        width: 100%;
        justify-content: center;
    }

    .city-cta-band {
        padding: 20px;
        border-radius: 20px;
    }

    .city-cta-band .btn {
        width: 100%;
    }

    .office-contact-actions {
        grid-template-columns: 1fr !important;
    }

    .footer {
        text-align: left;
    }

    html[dir="rtl"] .footer {
        text-align: right;
    }
}

@media (max-width: 520px) {
    .trust-row {
        grid-template-columns: 1fr !important;
    }

    .hero h1,
    .hero-mini h1 {
        font-size: clamp(31px, 12vw, 42px) !important;
    }

    .section-title h2 {
        font-size: clamp(26px, 9vw, 34px) !important;
    }

    .booking-card h2 {
        font-size: 23px !important;
    }

    .map-canvas {
        min-height: 200px;
    }
}
