/* ═══════════════════════════════════════════
   OMAR DRIVING SCHOOL — Public Theme
   Redesigned: clean navy + amber, Muzaf-inspired
═══════════════════════════════════════════ */

:root {
    --navy:        #0c1a3a;
    --navy-mid:    #142050;
    --amber:       #f7b321;
    --amber-dark:  #d99a00;
    --amber-bg:    #fff8e6;
    --white:       #ffffff;
    --off-white:   #f5f7fb;
    --text:        #0c1a3a;
    --muted:       #5a6e8a;
    --border:      rgba(12, 26, 58, 0.09);
    --border-mid:  rgba(12, 26, 58, 0.14);
    --shadow-sm:   0 2px 12px rgba(12, 26, 58, 0.07);
    --shadow-md:   0 8px 32px rgba(12, 26, 58, 0.11);
    --shadow-lg:   0 20px 60px rgba(12, 26, 58, 0.17);
    --radius:      10px;
    --radius-lg:   16px;
    --radius-xl:   22px;
    --max-width:   1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--off-white);
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Show Me, Tell Me study guide */
.smtm-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(247, 179, 33, 0.22), transparent 28%),
        linear-gradient(135deg, var(--navy) 0%, #172b58 100%);
    color: #fff;
}

.smtm-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 72px;
    align-items: center;
    padding-top: 82px;
    padding-bottom: 82px;
}

.smtm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.smtm-breadcrumb a:hover { color: var(--amber); }

.smtm-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--amber);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

.smtm-hero h1 {
    max-width: 740px;
    margin: 0;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.smtm-hero-copy > p {
    max-width: 68ch;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.8;
    text-wrap: pretty;
}

.smtm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.smtm-test-format {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(5, 14, 35, 0.42);
}

.smtm-test-format h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 21px;
    line-height: 1.3;
}

.smtm-format-row {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.smtm-format-number {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy);
    font-weight: 800;
}

.smtm-format-row strong { color: #fff; font-size: 15px; }
.smtm-format-row p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
}

.smtm-format-warning {
    margin: 18px 0 0;
    padding: 14px;
    border-radius: 10px;
    background: rgba(247, 179, 33, 0.13);
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    line-height: 1.65;
}

.smtm-study-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.smtm-study-heading h2,
.smtm-booking-prompt h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.14;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.smtm-study-heading p {
    max-width: 70ch;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.smtm-counts {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.smtm-counts span {
    min-width: 100px;
    padding: 12px 15px;
    border-radius: 10px;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-align: center;
}

.smtm-counts strong {
    display: block;
    color: var(--amber);
    font-size: 22px;
}

.smtm-toolbar {
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.smtm-filters {
    display: flex;
    gap: 6px;
}

.smtm-filter,
.smtm-expand {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: var(--off-white);
    color: var(--navy);
    padding: 0 16px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.smtm-filter.is-active {
    background: var(--navy);
    color: #fff;
}

.smtm-filter:hover,
.smtm-expand:hover {
    background: var(--amber);
    color: var(--navy);
}

.smtm-search input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--border-mid);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    padding: 0 18px;
    font: inherit;
    font-size: 14px;
}

.smtm-search input:focus {
    outline: 3px solid rgba(247, 179, 33, 0.3);
    border-color: var(--amber-dark);
}

.smtm-results {
    margin: 16px 2px 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.smtm-question-list {
    overflow: hidden;
    border: 1px solid var(--border-mid);
    border-radius: 14px;
    background: #fff;
}

.smtm-question + .smtm-question {
    border-top: 1px solid var(--border);
}

.smtm-question[hidden] { display: none; }

.smtm-question summary {
    display: grid;
    grid-template-columns: 42px 84px minmax(0, 1fr) 22px;
    gap: 14px;
    align-items: center;
    min-height: 84px;
    padding: 16px 22px;
    cursor: pointer;
    list-style: none;
}

.smtm-question summary::-webkit-details-marker { display: none; }
.smtm-question summary:hover { background: #f9fafc; }

.smtm-question-number {
    color: #8795aa;
    font-size: 12px;
    font-weight: 700;
}

.smtm-question-type {
    display: inline-flex;
    justify-content: center;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.smtm-question-type--tell {
    background: #fff2cc;
    color: #714f00;
}

.smtm-question-type--show {
    background: #e7eefc;
    color: #193d78;
}

.smtm-question-title {
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    text-wrap: pretty;
}

.smtm-question-toggle {
    position: relative;
    width: 20px;
    height: 20px;
}

.smtm-question-toggle::before,
.smtm-question-toggle::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 4px;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--navy);
}

.smtm-question-toggle::after {
    transform: rotate(90deg);
    transition: transform 180ms ease-out;
}

.smtm-question[open] .smtm-question-toggle::after { transform: rotate(0); }

.smtm-answer {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 20px;
    margin: 0 22px 20px 78px;
    padding: 20px 22px;
    border-radius: 10px;
    background: var(--off-white);
}

.smtm-answer span {
    color: var(--amber-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.smtm-answer p {
    max-width: 75ch;
    margin: 0;
    color: #354966;
    font-size: 14px;
    line-height: 1.75;
}

.smtm-empty {
    padding: 44px 20px;
    text-align: center;
}

.smtm-empty h3 { margin: 0 0 6px; color: var(--navy); }
.smtm-empty p { margin: 0; color: var(--muted); }

.smtm-source-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 22px;
    padding: 22px 24px;
    border-radius: 12px;
    background: var(--amber-bg);
}

.smtm-source-note strong { color: var(--navy); }
.smtm-source-note p {
    max-width: 72ch;
    margin: 4px 0 0;
    color: #52647e;
    font-size: 13px;
}

.smtm-source-note a {
    flex: 0 0 auto;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.smtm-booking-prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 72px;
    padding: 34px 38px;
    border-radius: 16px;
    background: var(--navy);
    color: #fff;
}

.smtm-booking-prompt h2 { color: #fff; font-size: clamp(25px, 3vw, 36px); }
.smtm-booking-prompt p {
    max-width: 70ch;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

@media (max-width: 900px) {
    .smtm-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .smtm-study-heading { align-items: start; flex-direction: column; }
    .smtm-toolbar { grid-template-columns: 1fr; }
    .smtm-expand { justify-self: start; }
}

@media (max-width: 640px) {
    .smtm-hero-inner { padding-top: 42px; padding-bottom: 42px; }
    .smtm-hero h1 { font-size: clamp(38px, 12vw, 52px); }
    .smtm-hero-copy > p { font-size: 15px; }
    .smtm-test-format { padding: 22px; }
    .smtm-study-heading { margin-bottom: 20px; }
    .smtm-counts { width: 100%; }
    .smtm-counts span { flex: 1; }
    .smtm-filters { display: grid; grid-template-columns: repeat(3, 1fr); }
    .smtm-filter { padding: 0 10px; }
    .smtm-question summary {
        grid-template-columns: 34px minmax(0, 1fr) 20px;
        gap: 10px;
        padding: 16px;
    }
    .smtm-question-type { grid-column: 2; grid-row: 1; justify-self: start; }
    .smtm-question-title { grid-column: 2; grid-row: 2; }
    .smtm-question-number { grid-column: 1; grid-row: 1 / span 2; align-self: start; padding-top: 6px; }
    .smtm-question-toggle { grid-column: 3; grid-row: 1 / span 2; }
    .smtm-answer {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 0 14px 16px;
        padding: 17px;
    }
    .smtm-source-note,
    .smtm-booking-prompt {
        align-items: flex-start;
        flex-direction: column;
    }
    .smtm-booking-prompt { margin-bottom: 44px; padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .smtm-question-toggle::after { transition: none; }
}

/* ─── UTILITY TOP BAR ─────────────────────── */
.utility-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.utility-inner,
.site-header-inner,
.shell-inner,
.site-footer-inner,
.site-footer-bottom {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.utility-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.utility-items,
.utility-socials {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.utility-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.utility-label {
    color: var(--amber);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.utility-item a,
.utility-socials a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.utility-item a:hover,
.utility-socials a:hover { color: #fff; }

.utility-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* ─── SITE HEADER ─────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--border-mid);
    box-shadow: 0 2px 16px rgba(12, 26, 58, 0.08);
}

.site-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand img,
.site-footer-brand img {
    width: auto;
    height: 54px;
    object-fit: contain;
}

.site-brand-copy strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
}

.site-brand-copy span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.site-nav-shell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

.site-nav-links a {
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: background 0.2s, color 0.2s;
}

.site-nav-links a:hover {
    background: var(--amber-bg);
    color: var(--navy);
}

/* ─── BUTTONS ─────────────────────────────── */
.site-nav-cta,
.btn-primary,
.btn-secondary,
.card-link,
.faq-link,
.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
}

.site-nav-cta,
.btn-primary,
.card-link,
.wa-btn {
    background: var(--amber);
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(247, 179, 33, 0.32);
}

.site-nav-cta {
    min-height: 42px;
    padding: 0 20px;
    font-size: 14px;
    white-space: nowrap;
}

.btn-primary,
.btn-secondary,
.card-link,
.faq-link,
.wa-btn {
    min-height: 48px;
    padding: 0 24px;
    font-size: 15px;
}

.btn-secondary,
.faq-link {
    background: #fff;
    color: var(--text);
    border: 2px solid var(--border-mid);
    box-shadow: var(--shadow-sm);
}

.site-nav-cta:hover,
.btn-primary:hover,
.card-link:hover,
.wa-btn:hover {
    background: var(--amber-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(247, 179, 33, 0.38);
}

.btn-secondary:hover,
.faq-link:hover {
    border-color: var(--amber);
    transform: translateY(-1px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.38);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* ─── HERO (FULL-BLEED) ────────────────────── */
.page-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: stretch;
    background-color: var(--navy);
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(12, 26, 58, 0.94) 0%,
        rgba(12, 26, 58, 0.78) 45%,
        rgba(12, 26, 58, 0.52) 100%
    );
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 44px;
    align-items: center;
}

/* Left copy */
.hero-copy { color: #fff; }

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 6px;
    background: var(--amber);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title {
    margin: 0 0 16px;
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
}

.hero-title span { color: var(--amber); }

.hero-lead {
    margin: 0 0 24px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.72;
    max-width: 460px;
}

.hero-trust-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 500;
}

.hero-trust-list li::before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--amber);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230c1a3a'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414L8.414 15l-5.121-5.121a1 1 0 011.414-1.414L8.414 12.172l6.879-6.879a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Right: price strip + form */
.hero-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-price-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.hero-price-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-price-pill span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 500;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-price-pill strong {
    display: block;
    font-size: 21px;
    font-weight: 800;
    color: var(--amber);
    letter-spacing: -0.02em;
    line-height: 1;
}

/* Booking form card */
.hero-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.hero-form-card h3 {
    margin: 0 0 18px;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
}

.hero-form-card .form-field {
    margin-bottom: 13px;
}

.hero-form-card label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}

.hero-form-card input[type="text"],
.hero-form-card input[type="tel"],
.hero-form-card input[type="date"],
.hero-form-card select {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--border-mid);
    background: #fff;
    font: 14px "Poppins", sans-serif;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form-card input:focus,
.hero-form-card select:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(247, 179, 33, 0.18);
}

.hero-form-card .form-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Lesson type tabs */
.lesson-type-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.tab-option { position: relative; }

.tab-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tab-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 7px;
    border: 1.5px solid var(--border-mid);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.18s;
    user-select: none;
}

.tab-option input:checked + span {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.tab-option span:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-submit {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 8px;
    background: var(--amber);
    color: var(--navy);
    font: 700 16px "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
    box-shadow: 0 4px 14px rgba(247, 179, 33, 0.34);
    letter-spacing: 0.01em;
}

.btn-submit:hover {
    background: var(--amber-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(247, 179, 33, 0.4);
}

/* ─── MAIN SHELL ──────────────────────────── */
.public-shell {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0;
    padding-bottom: 80px;
}

/* ─── SECTION TYPOGRAPHY ──────────────────── */
.section-block { padding-top: 72px; }

.section-heading {
    max-width: 680px;
    margin-bottom: 32px;
}

.section-kicker,
.package-chip,
.banner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 0 13px;
    border-radius: 6px;
    background: var(--amber-bg);
    color: var(--amber-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    margin: 0 0 14px;
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--navy);
}

.section-copy,
.rich-copy,
.contact-copy,
.package-copy,
.faq-copy,
.testimonial-copy,
.booking-copy {
    color: var(--muted);
    line-height: 1.78;
    margin: 0;
    font-size: 15px;
}

/* ─── ABOUT ───────────────────────────────── */
.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.about-copy-card,
.surface-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 38px;
    box-shadow: var(--shadow-sm);
}

.about-copy-card h2 { margin-top: 0; }

.about-image-card,
.service-image-card {
    min-height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    background: var(--navy);
    box-shadow: var(--shadow-lg);
}

.about-image-card img,
.service-image-card img,
.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-highlight-panel {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-lg);
}

.about-highlight-panel h3,
.service-content-panel h3 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.check-list,
.plain-list,
.hero-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li,
.plain-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    padding: 5px 0;
}

.check-list li::before,
.plain-list li::before {
    content: "";
    flex-shrink: 0;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--amber);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230c1a3a'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414L8.414 15l-5.121-5.121a1 1 0 011.414-1.414L8.414 12.172l6.879-6.879a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ─── AREAS ───────────────────────────────── */
.section-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.section-intro-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.section-intro-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
}

.page-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.page-link-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.page-link-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.page-link-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.page-link-card p {
    flex: 1;
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* ─── PACKAGES SHOWCASE BAND ──────────────── */
.showcase-band {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.showcase-band .section-title { color: #fff; margin-top: 12px; }
.showcase-band .rich-copy { color: rgba(255, 255, 255, 0.76); }
.showcase-band .plain-list li { color: rgba(255, 255, 255, 0.76); }
.showcase-band .plain-list li::before { background-color: var(--amber); }
.showcase-band .mini-stat p { color: rgba(255, 255, 255, 0.7); }

.showcase-media {
    min-height: 320px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.mini-stat {
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-stat strong {
    display: block;
    font-size: 12px;
    color: var(--amber);
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mini-stat p { margin: 0; font-size: 13px; }

/* ─── PACKAGE CARDS ───────────────────────── */
.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.package-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.package-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--amber);
    opacity: 0;
    transition: opacity 0.2s;
}

.package-card:hover::before { opacity: 1; }

.package-chip { margin-bottom: 14px; }

.package-card h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
}

.package-price {
    font-size: clamp(36px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 10px 0 10px;
}

.package-copy {
    font-size: 14px;
    margin-bottom: 14px;
}

.package-card ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.package-card ul li {
    font-size: 14px;
    color: var(--muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.package-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--amber-dark);
    font-weight: 700;
}

/* ─── BOOKING ALERTS ──────────────────────── */
.booking-alert {
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    line-height: 1.7;
    font-size: 14px;
    border: 1px solid transparent;
}

.booking-alert-success {
    background: #edfaf3;
    color: #166534;
    border-color: #bbf7d0;
}

.booking-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

/* ─── CTA BANNER ──────────────────────────── */
.cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    padding: 48px 52px;
    box-shadow: var(--shadow-lg);
    background: var(--navy);
}

.cta-banner > img,
.cta-banner > .banner-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(12, 26, 58, 0.95) 30%,
        rgba(12, 26, 58, 0.65) 100%
    );
    z-index: 0;
}

.banner-fallback {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3160 100%);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.cta-banner .section-title,
.cta-banner .section-copy { color: #fff; }

/* ─── BOOKING FORM ────────────────────────── */
.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.booking-heading > .section-copy { display: none; }

.booking-heading-copy {
    max-width: 720px;
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

.booking-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.booking-card label,
.booking-card strong,
.contact-card strong {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-grid .full-span { grid-column: 1 / -1; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--border-mid);
    background: #fff;
    font: 14px "Poppins", sans-serif;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

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

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(247, 179, 33, 0.18);
}

.booking-side-stack { display: grid; gap: 18px; }

/* ─── CONTACT + INFO CARDS ────────────────── */
.contact-card,
.faq-card,
.related-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.contact-card h3,
.faq-card h3,
.related-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
}

.contact-list,
.info-stack {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}

.contact-list li:last-child { border-bottom: none; }

.contact-list strong {
    display: inline !important;
    min-width: 110px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0 !important;
    flex-shrink: 0;
}

.info-stack li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.info-stack li:last-child { border-bottom: none; }

.info-stack a {
    color: var(--muted);
    transition: color 0.2s;
}

.info-stack a:hover { color: var(--amber-dark); }

/* ─── TESTIMONIALS ────────────────────────── */
.testimonial-wrap { position: relative; }

.testimonial-slider {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.testimonial-track {
    display: flex;
    transition: transform 0.45s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 4px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 28px;
    align-items: center;
}

.testimonial-avatar,
.testimonial-avatar-fallback {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--amber);
}

.testimonial-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    font-size: 38px;
    font-weight: 700;
}

.testimonial-stars {
    margin-bottom: 10px;
    color: var(--amber);
    font-size: 17px;
    letter-spacing: 0.1em;
}

.testimonial-copy {
    font-size: 15px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-meta { margin-top: 16px; }

.testimonial-meta strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
}

.testimonial-meta span { color: var(--muted); font-size: 13px; }

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-mid);
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 20px;
    color: var(--text);
    transition: all 0.2s;
}

.slider-nav:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy);
}

.slider-nav.prev { left: -16px; }
.slider-nav.next { right: -16px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--border-mid);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.slider-dots .dot.active {
    background: var(--amber);
    transform: scale(1.25);
}

/* ─── FAQ ─────────────────────────────────── */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.faq-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}

.faq-copy { font-size: 14px; }

/* ─── MAP ─────────────────────────────────── */
.map-frame {
    width: 100%;
    min-height: 340px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ─── FOOTER ──────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0;
}

.site-footer-inner {
    padding-top: 52px;
    padding-bottom: 32px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.site-footer-brand {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.site-footer-brand h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 20px;
}

.site-footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-size: 14px;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-column h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 2;
    transition: color 0.2s;
}

.footer-column a:hover { color: var(--amber); }

.site-footer-bottom {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-credit img {
    height: 22px;
    width: auto;
    display: block;
    opacity: 0.75;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-credit:hover {
    color: #ffffff;
}

.footer-credit:hover img {
    opacity: 1;
    transform: translateY(-1px);
}

/* ─── WHATSAPP FLOAT ──────────────────────── */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;
}

.wa-btn {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 50px;
    font-size: 15px;
}

.wa-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.22);
}

/* ─── NAV TOGGLE ──────────────────────────── */
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1.5px solid var(--border-mid);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* ─── BADGE / PILL ROW ────────────────────── */
.badge-row,
.area-pills,
.trust-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.badge-pill,
.area-pill,
.trust-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* ─── MEDIA FALLBACK ──────────────────────── */
.media-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    background: linear-gradient(135deg, rgba(12, 26, 58, 0.9), rgba(30, 49, 96, 0.7));
    color: #fff;
}

.media-fallback strong {
    display: block;
    font-size: 22px;
    line-height: 1.3;
}

.media-fallback span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 14px;
}

/* Service / landing page specific */
.service-highlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 24px;
}

.service-hero-card { min-height: 520px; }

.service-content-panel {
    padding: 28px;
}

.service-content-panel p { margin: 0; }
.service-content-panel p + p { margin-top: 12px; }

.service-pair-card,
.related-card { height: 100%; }

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

.section-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1120px) {
    .hero-inner {
        grid-template-columns: 1fr 360px;
        gap: 30px;
    }

    .showcase-band {
        grid-template-columns: 1fr;
    }

    .showcase-media { min-height: 260px; }

    .booking-grid,
    .contact-grid,
    .about-grid,
    .service-highlight-grid {
        grid-template-columns: 1fr;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .package-grid,
    .section-grid-4,
    .service-page-grid,
    .page-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-header-inner {
        flex-wrap: wrap;
        padding-top: 14px;
        padding-bottom: 14px;
        min-height: auto;
        gap: 10px;
    }

    .site-nav-shell {
        width: 100%;
        flex-wrap: wrap;
    }

    .nav-toggle { display: flex; }

    .site-nav-links {
        width: 100%;
        display: none;
        flex-direction: column;
        background: var(--off-white);
        border-radius: 10px;
        padding: 8px;
        border: 1px solid var(--border-mid);
    }

    .site-nav-links.is-open { display: flex; }
    .site-nav-links a { padding: 10px 14px; }
    .site-nav-cta { margin-left: auto; }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 48px 24px 44px;
    }

    .hero-form-wrap { max-width: 500px; }

    .faq-grid,
    .section-grid-2,
    .section-grid-3,
    .split-grid,
    .form-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-avatar,
    .testimonial-avatar-fallback { margin: 0 auto; }

    .slider-nav { display: none; }

}

@media (max-width: 640px) {
    .utility-inner,
    .site-header-inner,
    .public-shell,
    .shell-inner,
    .site-footer-inner,
    .site-footer-bottom {
        padding-left: 18px;
        padding-right: 18px;
    }

    .utility-inner { flex-direction: column; align-items: flex-start; gap: 8px; }

    .page-hero { min-height: auto; }
    .hero-inner { padding: 40px 18px 36px; }
    .hero-title { font-size: 32px; }
    .hero-price-strip { grid-template-columns: repeat(3, 1fr); }
    .hero-price-pill { padding: 10px 6px; }
    .hero-price-pill strong { font-size: 18px; }
    .hero-price-pill span { font-size: 10px; }
    .hero-form-card { padding: 20px; }
    .hero-form-card .form-two-col { grid-template-columns: 1fr; }

    .package-grid,
    .section-grid-4,
    .page-link-grid,
    .service-page-grid { grid-template-columns: 1fr; }

    .showcase-band,
    .cta-banner { padding: 26px 22px; }

    .cta-banner { padding: 32px 24px; }

    .booking-card { padding: 22px; }

    .about-copy-card,
    .surface-card { padding: 24px; }

    .site-footer-grid { grid-template-columns: 1fr; }

    .wa-float { right: 14px; bottom: 14px; }

    .site-nav-cta { width: 100%; margin-left: 0; }
}

/* ─── BOOKING RESULT MODAL ─────────────────── */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(12, 26, 58, 0.55);
    backdrop-filter: blur(3px);
    animation: booking-modal-fade 0.2s ease;
}

.booking-modal-overlay.is-hidden { display: none; }

.booking-modal {
    width: min(100%, 420px);
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 30px 30px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(12, 26, 58, 0.35);
    animation: booking-modal-pop 0.25s ease;
}

.booking-modal-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
    color: #ffffff;
}

.booking-modal--success .booking-modal-icon { background: #16a34a; }
.booking-modal--error .booking-modal-icon { background: #dc2626; }

.booking-modal h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #0c1a3a;
}

.booking-modal p {
    margin: 0 0 24px;
    color: #5a6e8a;
    line-height: 1.7;
}

.booking-modal-close { width: 100%; }

@keyframes booking-modal-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes booking-modal-pop {
    from { opacity: 0; transform: translateY(14px) scale(0.96); }
    to   { opacity: 1; transform: none; }
}
