:root {
    --bg: #f4efe6;
    --panel: rgba(255, 252, 247, 0.94);
    --panel-strong: #fffaf3;
    --ink: #1f2a30;
    --muted: #6f7b81;
    --line: rgba(31, 42, 48, 0.1);
    --accent: #c86629;
    --accent-dark: #954310;
    --sea: #1d6772;
    --shadow: 0 24px 60px rgba(31, 42, 48, 0.12);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Trebuchet MS", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(29, 103, 114, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(200, 102, 41, 0.14), transparent 24%),
        linear-gradient(180deg, #faf6ee 0%, #f2eadf 100%);
}

.page-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 64px;
}

.topbar,
.top-controls,
.hero-stats,
.benefit-grid,
.steps-grid,
.vehicle-actions {
    display: flex;
}

.topbar {
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.brand-logo {
    height: 48px;
    width: auto;
    border-radius: 8px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff8f1;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy small,
.eyebrow,
.card-kicker,
.status-text,
.vehicle-meta,
.benefit-card p,
.step-card p {
    color: var(--muted);
}

.top-controls {
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.top-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 16px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.94rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    margin-right: 8px;
}

.top-link:hover {
    color: var(--accent);
    background: rgba(31, 42, 48, 0.04);
}

.top-link:active {
    transform: scale(0.98);
}

.inline-control {
    display: grid;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    min-height: 70dvh;
    border-radius: 36px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(10, 16, 22, 0.40) 0%, rgba(10, 16, 22, 0.08) 50%, rgba(10, 16, 22, 0.02) 100%),
        linear-gradient(180deg, rgba(8, 13, 18, 0.02) 0%, rgba(8, 13, 18, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 470px);
    gap: 28px;
    align-items: end;
    min-height: 720px;
    min-height: 70dvh;
    padding: 42px;
}

.hero-content-simple {
    grid-template-columns: minmax(0, 760px);
    align-items: end;
}

.hero-copy,
.booking-card,
.section,
.quote-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.hero-copy,
.booking-card,
.section {
    padding: 30px;
}

.hero-copy {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    color: white;
}

.hero-copy h1 {
    margin: 12px 0 18px;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-text {
    max-width: 560px;
    font-size: 1.04rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats,
.benefit-grid,
.steps-grid {
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 30px;
}

.hero-stats span,
.metric-badge {
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.94rem;
    font-weight: 700;
    color: white;
}

.card-header h2,
.section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.booking-form,
.contact-form {
    display: grid;
    gap: 14px;
}

.booking-card {
    align-self: end;
    background: rgba(255, 250, 243, 0.92);
    padding: 36px 32px;
}

.booking-card .field-grid {
    grid-template-columns: 1fr;
    gap: 14px;
}

.booking-section {
    margin-top: 28px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.booking-card-standalone {
    width: 100%;
    max-width: none;
    margin: 0;
    box-shadow: var(--shadow);
    border-radius: 30px;
}

label {
    display: grid;
    gap: 8px;
    font-size: 0.94rem;
    font-weight: 700;
}

input,
select,
textarea,
button {
    font: inherit;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(31, 42, 48, 0.12);
    border-radius: 16px;
    background: var(--panel-strong);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(29, 103, 114, 0.45);
    box-shadow: 0 0 0 3px rgba(29, 103, 114, 0.12);
    outline: none;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
    border-color: #d92d20;
    background: #fff8f6;
}

input.is-invalid:focus,
select.is-invalid:focus,
textarea.is-invalid:focus {
    border-color: #d92d20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.field-grid,
.details-layout,
.benefit-grid,
.steps-grid,
.vehicle-grid {
    display: grid;
    gap: 18px;
}

.field-grid,
.details-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-grid,
.steps-grid,
.vehicle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.toggle-row {
    display: flex;
    justify-content: flex-start;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 700;
}

.checkbox-row input {
    width: auto;
    margin-top: 4px;
}

.checkbox-copy {
    display: grid;
    gap: 2px;
}

.extra-price {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
}

.primary-button,
.secondary-button {
    padding: 16px 20px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 800;
}

.primary-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline {
    background: transparent;
    color: var(--sea);
    border: 2px solid var(--sea);
}

.btn-outline:hover {
    background: var(--sea);
    color: white;
}

.secondary-button {
    background: linear-gradient(135deg, var(--sea), #11444b);
    color: white;
}

.trust-section,
.steps-section {
    margin-top: 28px;
}

.benefit-card,
.vehicle-card {
    padding: 0;
    border-radius: 22px;
    background: var(--panel-strong);
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s, box-shadow 0.15s;
}

.benefit-card {
    padding: 20px;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.25);
    flex-shrink: 0;
}

.trust-card h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--sea);
}

.step-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 22px;
    background: var(--panel-strong);
    border: 1px solid var(--line);
}

.vehicle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(31, 42, 48, 0.12);
}

.vehicle-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #e8e4dc;
}

.vehicle-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-card-noimg {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sea);
    letter-spacing: 0.04em;
}

.vehicle-card-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.vehicle-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0 2px;
}

.meta-badge {
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(29, 103, 114, 0.08);
    color: var(--sea);
    font-size: 0.78rem;
    font-weight: 600;
}

.vehicle-price {
    margin: 8px 0 4px;
    font-size: 1.08rem;
    color: var(--accent);
}

.vehicle-price small {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.82rem;
}

.vehicle-card-body .primary-button {
    margin-top: auto;
}

.step-number {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(29, 103, 114, 0.1);
    color: var(--sea);
    font-weight: 800;
}

.vehicle-card h3 {
    margin-top: 0;
}

.vehicle-actions {
    gap: 10px;
    margin-top: 18px;
}

.quote-panel {
    margin-top: 22px;
    padding: 28px;
}

.extras-panel {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.88);
    border: 1px solid var(--line);
}

.quote-row,
.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.quote-row.total,
.detail-row:last-child {
    border-bottom: none;
}

.quote-row.total {
    font-weight: 800;
    padding-top: 18px;
}

.status-text {
    margin-top: 14px;
    min-height: 24px;
}

.hint {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

.rental-days {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 2px;
    min-height: 0;
}

.contact-section {
    margin-top: 28px;
}

.about-layout {
    display: grid;
    gap: 28px;
}

[hidden] {
    display: none !important;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first breakpoints
   ══════════════════════════════════════════════════════════════════════ */

/* ── Tablet (≤960px) ────────────────────────────────────────────── */
@media (max-width: 960px) {
    .benefit-grid,
    .steps-grid,
    .vehicle-grid,
    .details-layout,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 420px;
        min-height: 55dvh;
        border-radius: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 20px;
    }

    .hero-copy h1 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        line-height: 1.05;
        margin: 8px 0 12px;
    }

    .hero-text {
        font-size: 0.92rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .hero-stats {
        margin-top: 18px;
        gap: 8px;
    }

    .hero-stats span {
        font-size: 0.82rem;
        padding: 8px 12px;
    }

    .booking-card {
        padding: 22px 18px;
    }

    .booking-card-standalone {
        border-radius: 20px;
    }

    .section {
        padding: 20px;
    }

    .topbar {
        gap: 10px;
        margin-bottom: 16px;
    }

    .brand-copy small {
        display: none;
    }

    .top-controls {
        gap: 8px;
    }

    .top-link {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .inline-control {
        font-size: 0.75rem;
    }

    .card-header h2,
    .section-heading h2 {
        font-size: clamp(1.25rem, 4vw, 1.8rem);
    }

    /* Location pages */
    .loc-hero { padding: 50px 20px 40px; border-radius: 16px; }
    .loc-hero h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
    .loc-hero .loc-sub { font-size: 0.9rem; }
    .highlights { gap: 8px; }
    .highlight-badge { padding: 6px 14px; font-size: 0.78rem; }
    .content-section h2 { font-size: 1.3rem; }
    .cta-box { padding: 28px 18px; border-radius: 16px; }
    .cta-box a { padding: 12px 24px; font-size: 1rem; }
    .steps li { padding: 12px 12px 12px 50px; }
    .faq-item { padding: 14px; }
}

/* ── Small Tablet / Large Phone (≤768px) ───────────────────────── */
@media (max-width: 768px) {
    .page-shell {
        width: calc(100% - 24px);
        padding: 16px 0 48px;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .top-controls {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
    }

    .brand-logo {
        height: 40px;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .hero {
        border-radius: 16px;
        margin-bottom: 16px;
        min-height: 320px;
        min-height: 50dvh;
    }

    .hero-content {
        padding: 16px;
    }

    .hero-copy h1 {
        font-size: 1.6rem;
        line-height: 1.08;
    }

    .hero-text {
        font-size: 0.85rem;
    }

    .hero-stats span {
        font-size: 0.76rem;
        padding: 6px 10px;
    }

    .section {
        padding: 16px;
        border-radius: 18px;
    }

    .booking-card {
        padding: 18px 14px;
    }

    .booking-card .card-header h2 {
        font-size: 1.2rem;
    }

    .booking-form {
        gap: 10px;
    }

    input, select, textarea {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .primary-button {
        padding: 14px 16px;
        border-radius: 12px;
    }

    /* Benefits */
    .benefit-card {
        padding: 16px;
    }

    .trust-card h3 {
        font-size: 1rem;
        gap: 10px;
    }

    .trust-icon {
        width: 30px;
        height: 30px;
    }

    /* Steps */
    .step-card {
        padding: 16px;
    }

    .step-number {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    /* Vehicle cards */
    .vehicle-card-img {
        height: 140px;
    }

    .vehicle-card-body {
        padding: 12px 14px;
    }

    .vehicle-card h3 {
        font-size: 0.95rem;
    }

    .vehicle-price {
        font-size: 0.95rem;
    }

    /* Contact form */
    .contact-form {
        gap: 10px;
    }

    .phone-field-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .phone-field-wrapper select {
        width: 100%;
        min-width: unset;
    }

    /* Details layout */
    .details-layout {
        gap: 14px;
    }

    .quote-panel {
        padding: 18px;
    }

    .extras-panel {
        padding: 14px;
    }

    /* Footer */
    .site-footer {
        padding: 20px 16px;
        font-size: 0.78rem;
    }

    .site-footer p {
        margin-bottom: 6px;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }

    /* Location cards on homepage */
    .locations-section div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }

    /* Location pages */
    .loc-hero { padding: 32px 16px 28px; border-radius: 12px; }
    .loc-hero h1 { font-size: 1.3rem; }
    .loc-hero .loc-sub { font-size: 0.82rem; }
    .highlight-badge { padding: 5px 10px; font-size: 0.72rem; }
    .content-section h2 { font-size: 1.15rem; padding-left: 10px; }
    .content-section h3 { font-size: 1rem; }
    .content-section p, .content-section li { font-size: 0.85rem; line-height: 1.6; }
    .cta-box { padding: 24px 14px; border-radius: 12px; }
    .cta-box a { padding: 12px 20px; font-size: 0.9rem; width: 100%; display: block; }
    .steps li { padding: 10px 10px 10px 44px; font-size: 0.85rem; }
    .steps li::before { width: 26px; height: 26px; left: 10px; top: 12px; line-height: 26px; font-size: 0.85rem; }
    .faq-item { padding: 12px; }
    .faq-item h3 { font-size: 0.95rem; }
}

/* ── Landscape Phones (short height) ──────────────────────────────── */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 220px !important;
        min-height: 70dvh !important;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .hero-content {
        min-height: auto !important;
        padding: 14px 18px;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .hero-copy h1 {
        font-size: 1.15rem;
        line-height: 1.1;
        margin: 4px 0 6px;
    }

    .hero-text {
        font-size: 0.75rem;
        line-height: 1.35;
    }

    .hero-stats {
        margin-top: 8px;
        gap: 4px;
    }

    .hero-stats span {
        font-size: 0.68rem;
        padding: 4px 8px;
    }

    .topbar {
        gap: 6px;
        margin-bottom: 8px;
    }

    .page-shell {
        padding: 8px 0 32px;
    }

    .section {
        padding: 12px;
        border-radius: 12px;
    }
}

/* ── Mid-size phones (≤600px, between 480 and 768) ───────────────── */
@media (max-width: 600px) {
    .hero {
        min-height: 280px;
        min-height: 48dvh;
        border-radius: 18px;
    }

    .hero-content {
        padding: 16px;
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 1.45rem;
        line-height: 1.08;
    }

    .hero-text {
        font-size: 0.84rem;
    }

    .page-shell {
        width: calc(100% - 20px);
        padding: 14px 0 44px;
    }

    .booking-card {
        padding: 16px 13px;
    }

    .vehicle-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .vehicle-card-img {
        height: 130px;
    }

    .vehicle-card h3 {
        font-size: 0.88rem;
    }

    .vehicle-price {
        font-size: 0.9rem;
    }

    .vehicle-meta-badges {
        gap: 4px;
    }

    .meta-badge {
        font-size: 0.7rem;
        padding: 3px 7px;
    }

    .top-controls {
        gap: 6px;
    }

    .inline-control {
        font-size: 0.72rem;
    }

    .results-controls {
        justify-content: flex-start;
    }

    .sort-select {
        min-width: 150px;
        font-size: 0.82rem;
    }
}

/* ── Phone (≤480px) ─────────────────────────────────────────────── */
@media (max-width: 480px) {
    .page-shell {
        width: calc(100% - 16px);
        padding: 12px 0 40px;
    }

    .hero {
        min-height: 260px;
        min-height: 45dvh;
    }

    .hero-copy h1 {
        font-size: 1.35rem;
        line-height: 1.1;
    }

    .hero-text {
        font-size: 0.82rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .hero-stats span {
        font-size: 0.78rem;
        width: 100%;
        text-align: center;
    }

    .eyebrow {
        font-size: 0.75rem;
    }

    .section {
        padding: 14px;
        border-radius: 14px;
    }

    .booking-card {
        padding: 14px 12px;
    }

    input, select, textarea {
        padding: 12px;
        font-size: 16px; /* prevent iOS zoom */
    }

    .top-controls {
        flex-direction: column;
        width: 100%;
    }

    .top-link {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .inline-control {
        width: 100%;
    }

    .inline-control select {
        width: 100%;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
    }

    .vehicle-actions {
        flex-direction: column;
    }

    .vehicle-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .section-heading h2,
    .card-header h2 {
        font-size: 1.15rem;
    }

    .step-card h3 {
        font-size: 0.95rem;
    }

    .step-card p {
        font-size: 0.82rem;
    }

    .benefit-card p {
        font-size: 0.82rem;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1rem; }

    .brand-logo {
        height: 36px;
    }

    .brand-copy strong {
        font-size: 0.92rem;
    }

    /* WhatsApp button smaller */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }

    /* Cookie consent compact */
    .cookie-consent {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 12px;
        font-size: 0.78rem;
    }

    /* Location pages */
    .loc-hero { padding: 24px 12px 20px; border-radius: 10px; margin-bottom: 20px; }
    .loc-hero h1 { font-size: 1.15rem; }
    .loc-hero .loc-sub { font-size: 0.78rem; }
    .highlights { gap: 6px; margin-bottom: 28px; }
    .highlight-badge { padding: 4px 8px; font-size: 0.7rem; border-radius: 12px; }
    .content-section { margin-bottom: 28px; }
    .content-section h2 { font-size: 1.05rem; padding-left: 8px; border-left-width: 3px; }
    .content-section h3 { font-size: 0.9rem; }
    .content-section p, .content-section li { font-size: 0.8rem; line-height: 1.5; }
    .content-section ul { padding-left: 16px; }
    .cta-box { padding: 20px 12px; }
    .cta-box h2 { font-size: 1.1rem; }
    .cta-box a { font-size: 0.85rem; padding: 10px 16px; }
    .steps li { font-size: 0.8rem; padding: 8px 8px 8px 38px; }
    .steps li::before { width: 22px; height: 22px; left: 8px; top: 10px; line-height: 22px; font-size: 0.75rem; }
    .faq-item { padding: 10px; border-radius: 8px; }
    .faq-item h3 { font-size: 0.88rem; }
    .faq-item p { font-size: 0.8rem; }

    /* About / legal / FAQ pages */
    main[style*="max-width"] { padding: 20px 12px 40px !important; }
    main h1 { font-size: 1.3rem !important; }
    main h2 { font-size: 1.05rem !important; }
}

/* ── Very small (≤360px) ────────────────────────────────────────── */
@media (max-width: 360px) {
    .hero-copy h1 {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 10px;
    }

    .section,
    .booking-card {
        padding: 10px;
    }
}

/* Custom Phone & Validation Styles */
.phone-field-wrapper {
    display: flex;
    gap: 8px;
    align-items: stretch;
    width: 100%;
}

.phone-field-wrapper select {
    width: auto;
    min-width: 130px;
    flex-shrink: 0;
}

.phone-field-wrapper input {
    flex-grow: 1;
}

.field-validation-error,
.phone-validation-error {
    color: #b42318;
    font-size: 0.85rem;
    margin-top: -6px;
    margin-bottom: 4px;
    display: none;
    font-weight: 600;
}

/* ── Results sort control ──────────────────────────────────────── */
.results-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.sort-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted, #8892b0);
}

.sort-select {
    width: auto;
    min-width: 180px;
    padding: 8px 36px 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: var(--panel-strong, #1e1e3a);
    color: var(--text-primary, #e4e6ef);
    cursor: pointer;
    font-size: 0.88rem;
    appearance: auto;
}

.sort-select:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.15);
    outline: none;
}
