/* =========================================================
   URBANDORA — PREMIUM WEBSITE CSS
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f8fafc;
    color: #101a30;
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

button,
input,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e8edf4;
    backdrop-filter: blur(12px);
}

.nav-container {
    width: min(1180px, 92%);
    min-height: 76px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #101a30;
}

.logo span {
    color: #1769e0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;
    color: #65728a;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1769e0;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: #1769e0;
    border-radius: 10px;
}

.nav-book-btn {
    border: none;
    background: #1769e0;
    color: white;
    padding: 12px 20px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-book-btn:hover {
    background: #0f55bc;
    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    background: #ffffff;
    overflow: hidden;
}

.hero-container {
    width: min(1180px, 92%);
    min-height: 650px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 50px;
}

.hero-content {
    padding: 60px 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    background: #edf5ff;
    color: #1769e0;

    padding: 8px 13px;
    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 22px;
}

.hero h1 {
    max-width: 650px;

    font-size: clamp(42px, 5vw, 67px);
    line-height: 1.05;
    letter-spacing: -3px;

    color: #101a30;
}

.hero h1 span {
    color: #1769e0;
}

.hero-description {
    max-width: 570px;

    margin-top: 25px;

    color: #65728a;
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.hero-book-btn,
.hero-services-btn {
    min-height: 50px;
    padding: 0 22px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: 0.25s ease;
}

.hero-book-btn {
    border: none;
    background: #1769e0;
    color: white;
}

.hero-book-btn:hover {
    background: #0f55bc;
    transform: translateY(-2px);
}

.hero-services-btn {
    border: 1px solid #dce4ef;
    color: #26334d;
    background: white;
}

.hero-services-btn:hover {
    border-color: #1769e0;
    color: #1769e0;
}

.hero-trust {
    display: flex;
    gap: 35px;
    margin-top: 42px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 18px;
    color: #101a30;
}

.trust-item span {
    margin-top: 2px;
    color: #8994a7;
    font-size: 12px;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration img {
    width: 100%;
    max-width: 570px;
    height: auto;

    object-fit: contain;

    filter: drop-shadow(0 25px 35px rgba(16, 26, 48, 0.08));
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section-heading {
    width: min(700px, 92%);
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    color: #1769e0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.section-heading h2 span {
    color: #1769e0;
}

.section-heading p {
    margin-top: 15px;
    color: #65728a;
    font-size: 15px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 100px 0;
    background: #f8fafc;
}

.service-grid {
    width: min(1180px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: white;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: #d5e4fa;
    box-shadow: 0 20px 45px rgba(31, 61, 100, 0.10);
}

.service-image {
    height: 220px;
    background: #f2f7fd;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.service-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;

    transition: transform 0.35s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    font-size: 21px;
    letter-spacing: -0.5px;
}

.service-card-content > p {
    color: #65728a;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 8px;
    min-height: 45px;
}

.service-list {
    list-style: none;
    margin: 18px 0 22px;
}

.service-list li {
    position: relative;
    padding-left: 19px;
    margin-bottom: 8px;

    color: #65728a;
    font-size: 12px;
}

.service-list li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #1769e0;
    font-weight: 800;
}

.card-book-btn {
    width: 100%;
    border: none;

    background: #101a30;
    color: white;

    padding: 13px 18px;
    border-radius: 9px;

    font-size: 13px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: 0.25s ease;
}

.card-book-btn:hover {
    background: #1769e0;
    transform: translateY(-2px);
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-section {
    padding: 100px 0;
    background: white;
}

.steps-grid {
    width: min(1050px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.step-card {
    padding: 30px;

    border: 1px solid #e7edf5;
    border-radius: 16px;

    background: #fbfdff;

    transition: 0.25s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(31, 61, 100, 0.08);
}

.step-number {
    color: #1769e0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 19px;
}

.step-card p {
    color: #65728a;
    font-size: 13px;
    margin-top: 8px;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    padding: 100px 0;
    background: #f8fafc;
}

.reviews-grid {
    width: min(1100px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: white;
    border: 1px solid #e7edf5;
    border-radius: 16px;
    padding: 28px;
}

.review-stars {
    color: #f4a623;
    letter-spacing: 2px;
    font-size: 15px;
}

.review-card p {
    color: #65728a;
    font-size: 14px;
    line-height: 1.8;
    margin: 17px 0;
}

.review-card strong {
    display: block;
    font-size: 14px;
}

.review-card span {
    color: #9aa5b5;
    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 75px 0;
    background: #101a30;
}

.cta-container {
    width: min(1100px, 92%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.cta-container .section-label {
    color: #74aaff;
}

.cta-container h2 {
    color: white;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.cta-container h2 span {
    color: #74aaff;
}

.cta-container p {
    max-width: 570px;
    margin-top: 12px;
    color: #aeb8c9;
    font-size: 14px;
}

.cta-book-btn {
    flex-shrink: 0;

    border: none;
    background: #1769e0;
    color: white;

    padding: 15px 23px;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}

.cta-book-btn:hover {
    background: #3280f0;
    transform: translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #0b1221;
    color: white;
    padding-top: 65px;
}

.footer-container {
    width: min(1100px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    max-width: 280px;
    margin-top: 15px;

    color: #8d98ab;
    font-size: 13px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    font-size: 13px;
    margin-bottom: 7px;
}

.footer-column a {
    color: #8d98ab;
    font-size: 12px;
    transition: 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-book-btn {
    width: max-content;

    border: 1px solid #30405c;
    background: transparent;
    color: white;

    padding: 10px 15px;
    border-radius: 8px;

    font-size: 12px;
    font-weight: 600;

    transition: 0.2s ease;
}

.footer-book-btn:hover {
    background: #1769e0;
    border-color: #1769e0;
}

.footer-bottom {
    width: min(1100px, 92%);
    margin: 50px auto 0;

    padding: 20px 0;

    border-top: 1px solid #202b40;

    color: #69758a;
    font-size: 11px;
}


/* =========================================================
   BOOKING MODAL
========================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;

    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(8, 15, 28, 0.65);

    opacity: 0;
    visibility: hidden;

    transition: 0.25s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    position: relative;

    width: min(850px, 100%);
    max-height: 92vh;

    overflow-y: auto;

    background: white;
    border-radius: 20px;

    padding: 38px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);

    transform: translateY(20px) scale(0.98);

    transition: 0.25s ease;
}

.modal-overlay.show .booking-modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 17px;
    right: 19px;

    width: 35px;
    height: 35px;

    border: none;
    border-radius: 50%;

    background: #f1f4f8;
    color: #455168;

    font-size: 23px;
    line-height: 1;

    transition: 0.2s ease;
}

.modal-close:hover {
    background: #101a30;
    color: white;
}

.modal-header {
    padding-right: 45px;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 32px;
    letter-spacing: -1px;
}

.modal-header h2 span {
    color: #1769e0;
}

.modal-header p {
    color: #65728a;
    font-size: 13px;
    margin-top: 7px;
}

.form-section {
    padding: 25px 0;
    border-top: 1px solid #edf0f5;
}

.form-section:first-of-type {
    border-top: none;
}

.form-section h3 {
    font-size: 16px;
    margin-bottom: 17px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    color: #344158;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
}

.form-field input,
.form-field select {
    width: 100%;

    min-height: 46px;

    border: 1px solid #dce3ed;
    border-radius: 9px;

    background: white;
    color: #18243b;

    padding: 0 13px;

    outline: none;

    font-size: 13px;

    transition: 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
    border-color: #1769e0;
    box-shadow: 0 0 0 3px rgba(23, 105, 224, 0.09);
}

.address-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px;
}

.detect-btn {
    min-width: 105px;

    border: none;
    border-radius: 9px;

    background: #edf5ff;
    color: #1769e0;

    font-size: 12px;
    font-weight: 700;

    padding: 0 15px;

    transition: 0.2s ease;
}

.detect-btn:hover {
    background: #dcecff;
}

.detect-btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

.location-status {
    display: block;
    min-height: 18px;

    margin-top: 7px;

    color: #65728a;
    font-size: 11px;
}


/* =========================================================
   AVAILABILITY
========================================================= */

.availability-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.availability-option {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 15px;

    border: 1px solid #dce3ed;
    border-radius: 10px;

    cursor: pointer;

    color: #455168;
    font-size: 12px;
    font-weight: 600;

    transition: 0.2s ease;
}

.availability-option:hover {
    border-color: #1769e0;
    background: #f7fbff;
}

.availability-option input {
    accent-color: #1769e0;
}

.other-person-fields {
    display: none;
    margin-top: 15px;
}

.other-person-fields.show {
    display: block;
}


/* =========================================================
   BOOKING SUMMARY
========================================================= */

.booking-summary {
    margin-top: 10px;

    padding: 22px;

    border: 1px solid #dce8f7;
    border-radius: 13px;

    background: #f5f9ff;
}

.booking-summary h3 {
    font-size: 15px;
    margin-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 8px 0;

    border-bottom: 1px solid #e4ebf5;

    font-size: 12px;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span {
    color: #65728a;
}

.summary-row strong {
    color: #18243b;
    text-align: right;
}

.submit-booking-btn {
    width: 100%;

    margin-top: 18px;

    border: none;
    border-radius: 10px;

    background: #1769e0;
    color: white;

    padding: 15px;

    font-size: 14px;
    font-weight: 800;

    transition: 0.25s ease;
}

.submit-booking-btn:hover {
    background: #0f55bc;
    transform: translateY(-1px);
}

.booking-note {
    text-align: center;

    color: #8b96a7;
    font-size: 10px;

    margin-top: 12px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 18px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 55px 0;
    }

    .hero-content {
        padding: 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-illustration img {
        max-width: 500px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .nav-container {
        min-height: 68px;
    }

    .nav-links {
        display: none;
    }

    .nav-book-btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .hero-container {
        min-height: auto;
        padding: 55px 0 65px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-book-btn,
    .hero-services-btn {
        width: 100%;
    }

    .hero-trust {
        gap: 20px;
    }

    .trust-item strong {
        font-size: 15px;
    }

    .trust-item span {
        font-size: 10px;
    }

    .services-section,
    .how-section,
    .reviews-section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .service-grid,
    .steps-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 240px;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-book-btn {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .booking-modal {
        padding: 27px 20px;
        border-radius: 16px;
    }

    .modal-header h2 {
        font-size: 27px;
    }

    .form-grid,
    .availability-options {
        grid-template-columns: 1fr;
    }

    .address-row {
        grid-template-columns: 1fr;
    }

    .detect-btn {
        min-height: 44px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .logo {
        font-size: 21px;
    }

    .nav-book-btn {
        padding: 9px 12px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-trust {
        gap: 14px;
    }

    .service-card-content {
        padding: 21px;
    }

    .booking-modal {
        padding: 25px 16px;
    }
}
/* =========================================================
   URBANDORA — MOBILE OPTIMIZATION
========================================================= */

@media (max-width: 700px) {

    /* ---------- NAVBAR ---------- */

    .navbar {
        padding: 12px 16px;
    }

    .nav-container {
        gap: 10px;
    }

    .logo {
        font-size: 22px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-book-btn {
        padding: 9px 13px;
        font-size: 12px;
    }


    /* ---------- HERO ---------- */

    .hero {
        padding: 55px 18px 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .trust-badge {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.12;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero-book-btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-illustration {
        margin-top: 25px;
    }

    .hero-illustration img {
        width: 100%;
        max-width: 360px;
    }


    /* ---------- SERVICES ---------- */

    .services-section {
        padding: 55px 18px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-card {
    width: 100%;
}

.service-image {
    min-height: 130px;
}

.service-card-content {
    padding: 14px;
}

.service-card-content h3 {
    font-size: 17px;
}

.service-card-content p {
    font-size: 12px;
}

.service-list {
    font-size: 12px;
}

.card-book-btn {
    width: 100%;
    padding: 10px 8px;
    font-size: 12px;
}


    /* ---------- HOW IT WORKS ---------- */

    .how-section {
        padding: 55px 18px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    /* ---------- REVIEWS ---------- */

    .reviews-section {
        padding: 55px 18px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    /* ---------- CTA ---------- */

    .cta-section {
        padding: 50px 18px;
    }

    .cta-container {
        padding: 30px 20px;
        text-align: center;
    }


    /* ---------- BOOKING MODAL ---------- */

    .modal-overlay {
        padding: 12px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .booking-modal {
        width: 100%;
        max-width: 100%;
        margin: 15px 0;
        border-radius: 16px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .address-row {
        flex-direction: column;
        align-items: stretch;
    }

    .detect-btn {
        width: 100%;
    }

    .submit-booking-btn {
        width: 100%;
    }


    /* ---------- REVIEW SCREEN ---------- */

    .review-details {
        padding: 6px 14px;
    }

    .review-row {
        flex-direction: column;
        gap: 5px;
    }

    .review-row strong {
        max-width: 100%;
        text-align: left;
    }

    .review-actions {
        flex-direction: column;
    }

    .review-edit-btn,
    .review-confirm-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .navbar {
        padding: 10px 12px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 9px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .nav-book-btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    .hero {
        padding: 45px 15px 35px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .services-section,
    .how-section,
    .reviews-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-image {
    min-height: 110px;
}

.service-card-content {
    padding: 11px;
}

.service-card-content h3 {
    font-size: 15px;
}

.service-card-content p {
    font-size: 11px;
}

.service-list {
    font-size: 11px;
}

.card-book-btn {
    padding: 9px 5px;
    font-size: 11px;
}
/* =========================================
   URBANDORA SERVICE GRID - RESPONSIVE
   ========================================= */

/* Tablet */
@media (min-width: 701px) and (max-width: 1000px) {

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .service-card {
        width: 100%;
    }

    .service-image {
        min-height: 160px;
    }

    .service-card-content {
        padding: 16px;
    }

    .service-card-content h3 {
        font-size: 18px;
    }

    .service-card-content p {
        font-size: 13px;
    }
}


/* Desktop */
@media (min-width: 1001px) {

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .service-card {
        width: 100%;
    }
}


/* Large Desktop */
@media (min-width: 1400px) {

    .service-grid {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        gap: 28px;
    }
}/* =========================================
   URBANDORA - BOOKING POPUP FINAL DESIGN
   ========================================= */

.booking-modal {
    width: min(720px, 94%);
    max-height: 92vh;
    overflow-y: auto;
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

/* Header */

.modal-header {
    text-align: left;
    margin-bottom: 25px;
    padding-right: 40px;
}

.modal-header h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 8px 0;
}

.modal-header p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Sections */

.form-section {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
}

.form-section h3 {
    font-size: 15px;
    margin-bottom: 15px;
    color: #101a30;
}

/* Form grid */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-field {
    width: 100%;
}

.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}

.form-field input,
.form-field select {
    width: 100%;
    min-height: 48px;
    padding: 0 13px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    outline: none;
    transition: 0.2s ease;
    box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

/* Address */

.address-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.detect-btn {
    min-width: 115px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.detect-btn:hover {
    background: #dbeafe;
}

/* Availability */

.availability-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.availability-option {
    border: 1px solid #d1d5db;
    background: #ffffff;
    border-radius: 11px;
    padding: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.availability-option:hover {
    border-color: #93c5fd;
}

.availability-option:has(input:checked) {
    border-color: #2563eb;
    background: #eff6ff;
}

/* Booking summary */

.booking-summary {
    margin-top: 18px;
    padding: 18px;
    border-radius: 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

/* Submit button */

.submit-booking-btn {
    width: 100%;
    min-height: 52px;
    margin-top: 18px;
    border: none;
    border-radius: 11px;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.submit-booking-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Close button */

.modal-close {
    width: 38px;
    height: 38px;
    top: 15px;
    right: 15px;
    border-radius: 50%;
}

/* =========================================
   MOBILE BOOKING POPUP
   ========================================= */

@media (max-width: 700px) {

    .modal-overlay {
        padding: 10px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .booking-modal {
        width: 100%;
        max-width: 100%;
        max-height: 94vh;
        margin: 8px 0;
        padding: 22px 16px;
        border-radius: 16px;
    }

    .modal-header {
        padding-right: 40px;
        margin-bottom: 18px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .modal-header p {
        font-size: 12px;
    }

    .form-section {
        padding: 15px;
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .form-section h3 {
        font-size: 14px;
        margin-bottom: 13px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-field input,
    .form-field select {
        min-height: 46px;
        font-size: 13px;
    }

    .address-row {
        grid-template-columns: 1fr;
    }

    .detect-btn {
        width: 100%;
        min-height: 44px;
    }

    .availability-options {
        grid-template-columns: 1fr;
    }

    .availability-option {
        padding: 13px;
    }

    .booking-summary {
        padding: 16px;
    }

    .submit-booking-btn {
        min-height: 50px;
    }
}

/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width: 400px) {

    .booking-modal {
        padding: 20px 13px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .form-section {
        padding: 13px;
    }

    .form-field input,
    .form-field select {
        min-height: 44px;
    }

    .booking-summary {
        padding: 14px;
    }
}


}