/* =========================================
   SEATME MAIN STYLESHEET
   TABLE OF CONTENTS
   1. Global Variables
   2. Font Helpers
   3. Base & Arabic Overrides
   4. Navbar (Desktop & Mobile)
   5. Hero Section
   6. App Section
   7. Reservation Section
   8. Enquiry Section
   9. Footer
   10. Packages & À-La-Carte Sections
   11. Language Links
========================================== */


/* =========================================
   GLOBAL VARIABLES
========================================= */
:root {
    --color-primary: #ba9275;
    --color-dark: #1A1A1A;
    --color-light: #F9F9F9;
    --color-gray: #7A7A7A;
    /* --color-bg-light-gray: #CBD0D0;
    --color-bg-dark: #1E2327; */

    --seatme-dark-blue: #1E2326;
    --seatme-light-blue: #C8CDCC;
    --seatme-gold: #ba9275;
    --white: #ffffff;

    /* Default fonts (English / French) */
    --font-heading: 'Prata', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Arabic font */
    --font-arabic: 'Almarai', sans-serif;

    --header-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

/* =========================================
   FONT HELPERS
========================================= */

/* HEADINGS — PRATA */
.prata-font {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* BODY — REGULAR (400) */
.montserrat-regular {
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* BODY — LIGHT (300) */
.montserrat-light {
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Optional: Medium (500) */
.montserrat-medium {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Optional: Semi-Bold (600) */
.montserrat-semibold {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* =========================================
   BASE
========================================= */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--seatme-dark-blue);
    background-color: var(--color-light);
    margin: 0;
    overflow-x: hidden;
    position: relative;

    padding-top: 188px;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 75px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.digit {
    font-family: var(--font-heading);
    margin-bottom: 0;
}

p,
ul,
li,
ol {
    font-family: var(--font-body);
    margin-bottom: 0;
}

/* =========================================
   Arabic Language Overrides
========================================= */
html[lang="ar"] body,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
.lang-link.ar,
html[lang="ar"] p,
html[lang="ar"] ul,
html[lang="ar"] li,
html[lang="ar"] ol {
    font-family: var(--font-arabic);
}

/* Override helper classes when lang=ar */
/* html[lang="ar"] .prata-font,
html[lang="ar"] .montserrat-font {
    font-family: var(--font-arabic) !important;
} */

.bg-light-gray {
    background-color: var(--seatme-light-blue);
}

/* leave this as the default for EN/FR */
/* .prata-font {
    font-family: var(--font-heading);
} */

/* ============================================================
   SEATME GLOBAL BUTTONS
   - All .btn are unified
   - We only style .btn-outline-light (hero)
   - And .btn-outline-dark (forms / explore more)
============================================================ */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.90rem;
    letter-spacing: 0.04em;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* HERO BUTTON: white outline on dark background */
.btn-outline-light {
    color: var(--white);
    border: 1px solid var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--seatme-gold);
    border-color: var(--seatme-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* FORM / GENERAL BUTTON: dark outline */
.btn-outline-dark,
.enquiry-submit-btn {
    color: var(--seatme-dark-blue);
    border: 1px solid var(--seatme-dark-blue);
    background: transparent;
}

.btn-outline-dark:hover,
.enquiry-submit-btn:hover {
    background: var(--seatme-dark-blue);
    border-color: var(--seatme-dark-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* =========================================
   HEADER + NAVBAR COMBINED SECTION
   (Sticky with hide/show on scroll)
========================================= */

/* Header Wrapper - normal flow, scrolls away */
.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: var(--seatme-light-blue);
}

@media (max-width: 991px) {
    .header-wrapper {
        justify-content: center !important;
        padding: 8px 12px;
        gap: 10px;
    }
}

/* =========================================
   DESKTOP NAVBAR (FIXED + Hide on Scroll with FADE)
========================================= */
.desktop-navbar {
    position: fixed !important;
    top: 40px !important; /* Start below header */
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    z-index: 99999 !important;
    background-color: var(--seatme-light-blue) !important;
    border-bottom: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, top 0.3s ease-in-out !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    will-change: transform, opacity, top;
}

/* When scrolled (header gone) - move to top */
.desktop-navbar.scrolled {
    top: 0 !important;
}

.desktop-navbar.navbar-hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
}

.desktop-navbar.navbar-visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* Override Bootstrap navbar positioning */
.navbar.desktop-navbar {
    position: fixed !important;
}

/* Adds consistent space below navbar */
.desktop-navbar::after {
    content: "";
    display: block;
    height: 20px;
    background-color: var(--seatme-light-blue);
}

/* Centered & properly sized logo */
.desktop-logo .logo-img {
    height: 90px;
    width: auto;
    display: block;
    margin: 0 auto;
    /* padding-bottom: 20px; */
    transition: height 0.3s ease;
}

/* Desktop navbar links styling */
.desktop-navbar .nav-link {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0 20px;
    transition: color 0.3s ease;
}

.desktop-navbar .nav-link:hover {
    color: var(--color-primary) !important;
}

.desktop-navbar .nav-link.active {
    color: var(--color-primary) !important;
    font-weight: 700;
}

/* Responsive logo sizes */
/* @media (min-width: 1400px) {
    .desktop-logo .logo-img {
        height: 110px;
    }
} */

@media (max-width: 1199px) {
    .desktop-logo .logo-img {
        height: 75px;
    }
}

/* Hide desktop navbar on mobile */
@media (max-width: 991px) {
    .desktop-navbar {
        display: none !important;
    }
}

/* =========================================
   MOBILE NAVBAR (FIXED + Hide on Scroll with FADE)
========================================= */
.navbar-area {
    position: fixed !important;
    top: 40px !important; /* Start below header */
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    z-index: 99999 !important;
    background-color: var(--seatme-light-blue) !important;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, top 0.3s ease-in-out !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    overflow: visible !important;
    will-change: transform, opacity, top;
}

/* When scrolled (header gone) - move to top */
.navbar-area.scrolled {
    top: 0 !important;
}

.navbar-area.navbar-hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
}

.navbar-area.navbar-visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* HIDE navbar when mobile menu is open */
.navbar-area.menu-open {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Override Bootstrap navbar positioning */
.navbar.navbar-area {
    position: fixed !important;
}
/* Hide mobile navbar on desktop */
@media (min-width: 992px) {
    .navbar-area {
        display: none !important;
    }
}

/* Mobile logo styling */
.mobile-logo img {
    height: 60px;
    width: auto;
}

/* =========================================
   HAMBURGER MENU
========================================= */
.hamburger {
    width: 32px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 5001;
    position: relative;
    touch-action: manipulation;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================================
   MOBILE SLIDE-IN MENU
========================================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 100px 30px 40px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
    right: 0;
}

/* RTL Support */
html[lang="ar"] .mobile-menu {
    right: auto;
    left: -100%;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html[lang="ar"] .mobile-menu.open {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 25px;
}

.mobile-menu ul li a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    font-family: var(--font-body);
    transition: color 0.2s ease;
    display: block;
    padding: 8px 0;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: var(--color-primary);
    font-weight: 700;
}

html[lang="ar"] .mobile-menu ul li a {
    font-family: var(--font-arabic);
}

/* =========================================
   CLOSE BUTTON (X)
========================================= */
.mobile-close-btn {
    position: absolute;
    top: 30px;
    right: 25px;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    z-index: 5100;
    transition: transform 0.2s ease, color 0.2s ease;
    font-weight: 300;
}

.mobile-close-btn:hover {
    transform: scale(1.15);
    color: var(--color-primary);
}

.mobile-close-btn:active {
    transform: scale(0.95);
}

html[lang="ar"] .mobile-close-btn {
    right: auto;
    left: 25px;
}

/* =========================================
   MENU OVERLAY
========================================= */
/* .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 4999;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
} */

/* =========================================
   BODY SCROLL LOCK
========================================= */
/* body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
} */


/* =========================================
   HERO SECTION — PERFECT FIXED-DESIGN VERSION
========================================= */

.hero-section {
    background-color: var(--seatme-light-blue);
    padding: 1rem 0 3rem;
}
@media (max-width: 991.98px) {
    .hero-section {
        padding: 0;
    }
}
/* The hero stays centered, with fixed max width */
.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    overflow: hidden;
    border-radius: 0px;
    height: auto;
}

/* LEFT SIDE */
.hero-left {
    background-color: var(--seatme-dark-blue);
    color: var(--white);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* RIGHT SIDE */
/* .hero-carousel {
    width: 50%;
    height: auto;
} */

/* Carousel images */
.hero-slide-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* =========================================
   HERO TITLES — ONE BLOCK, CORRECT SPACING
========================================= */

.hero-left h1 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 0.4rem;
    /* small gap to h2 */
}

.hero-left h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1.5rem;
    /* SAME as mb-4 */
}

/* =========================================
   TABLETS + MOBILE
========================================= */

@media (max-width: 991.98px) {

    /* .hero-section {
        padding-top: 80px;
    } */

    .hero-carousel {
        width: 100%;
        height: 300px;
        order: 1;
    }

    /* .hero-wrapper {
        flex-direction: column;
        max-width: 100%;
        padding: 0 20px;
    } */

    .hero-carousel {
        width: 100%;
        height: 300px;
        order: 1;
    }

    .hero-left {
        width: 100%;
        padding: 32px 20px;
        order: 2;
    }

    /* Mobile title sizes */
    .hero-left h1 {
        font-size: 28px;
    }

    .hero-left h2 {
        font-size: 18px;
    }
}

/* =========================================
   APP SECTION
========================================= */
.app-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.app-section h2 {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--color-dark);
}

.iphone-frame {
    position: relative;
    max-width: 400px;
}

.iphone-img {
    width: 100%;
    border-radius: 40px;
}

.iphone-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
}

.app-section img[alt*="Download"],
.app-section img[alt*="Google"] {
    transition: transform 0.3s ease;
}

.app-section img[alt*="Download"]:hover,
.app-section img[alt*="Google"]:hover {
    transform: scale(1.05);
}

@media (max-width: 576px) {

    /* Make the entire section centered */
    .app-section .row {
        text-align: center;
    }

    /* Force IMAGE to appear FIRST */
    .app-section .col-lg-5 {
        order: 1;
        /* image first */
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
    }

    /* Force TEXT/BUTTONS to appear SECOND */
    .app-section .col-lg-6 {
        order: 2;
        /* content second */
    }

    /* Center download buttons */
    .app-section .d-flex {
        justify-content: center !important;
    }

    /* Center iPhone frame */
    .iphone-frame {
        margin: 0 auto;
    }

    /* Smooth spacing */
    .app-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}


@media (max-width: 991px) {

    /* Center entire block */
    .app-section .row {
        text-align: center;
    }

    /* Force IMAGE to appear FIRST */
    .app-section .col-lg-5 {
        order: 1;
        /* image first */
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
    }

    /* Force TEXT + DOWNLOAD BUTTONS to appear SECOND */
    .app-section .col-lg-6 {
        order: 2;
        /* content second */
    }

    /* Center iPhone frame */
    .iphone-frame {
        margin: 0 auto;
    }

    /* Center buttons row */
    .app-section .d-flex {
        justify-content: center !important;
    }
}


/* =========================================
   RESERVATION SECTION
========================================= */
.reservation-section {
    background-color: #E6E6E6;
}

.full-height-row {
    display: flex;
    flex-wrap: nowrap;
    min-height: 100%;
    overflow: hidden;
}

/* LEFT IMAGE */
.reservation-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT CONTENT */
/* .reservation-content {
    flex: 0 0 50%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
} */

/* Titles */
.reservation-content h2 {
    font-size: 2rem;
}

.reservation-content p.text-muted {
    font-size: 0.9rem !important;
    font-weight: 300 !important;
    color: var(--seatme-dark-blue) !important;
}

/* Remove the extra margin under the title block */
.reservation-content .text-center {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================
   RESERVATION CARDS
========================================= */
.reservation-cards-wrapper {
    margin-bottom: 0 !important;
}

.reservation-card {
    background-color: var(--seatme-dark-blue);
    color: #fff;
    max-width: 700px;
    width: 100%;
    font-family: var(--font-heading) !important;
}

.reservation-title {
    font-size: 2.2rem;
    font-weight: normal !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin-bottom: 0 !important;
}

.reservation-card .reservation-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-primary);
    line-height: 1;
}

.reservation-card p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: normal;
}

.reservation-card .reservation-details {
    font-size: 1rem;
}

.reservation-note {
    position: relative;
}

.reservation-note:before {
    content: "";
    width: 1px;
    height: 100%;
    /* min-height: 40px; */
    position: absolute;
    left: -15px;
    background-color: rgba(255, 255, 255, 0.4);
}

.reservation-footnote {
    max-width: 700px;
    width: 100%;
}

html[lang="ar"] .reservation-note:before {
    left: auto;
    right: -15px;
}

/* ================================
   MOBILE FIX (≤ 768px)
================================ */
@media (max-width: 768px) {
    .reservation-content {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 1.5rem 1rem !important;
    }

    .reservation-card {
        flex-direction: column !important;
        gap: 0.8rem !important;
        /* padding: 1rem 1rem !important; */
        max-width: 100% !important;
    }

    /* TITLE MOBILE */
    .reservation-title {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
        font-size: 28px !important;
        line-height: 1.2 !important;
        font-weight: normal !important;
    }

    .reservation-card>.right {
        flex: 100% !important;
        width: 100% !important;
    }

    .p-with-divider {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.6rem;
    }

    .p-with-divider .divider {
        display: none !important;
    }

    .p-with-divider p {
        max-width: 100% !important;
        text-align: left !important;
        font-weight: normal !important;
    }
}

/* =========================================
   ENQUIRY SECTION
========================================= */
.enquiry-section {
    background-color: #fff;
}

.enquiry-section h2 {
    font-size: 2rem;
}

.enquiry-section h3 {
    font-size: 2rem;
}

.enquiry-subtitle {
    font-size: 2rem;
}

.enquiry-form {
    max-width: 600px;
}

.form-control:focus {
    box-shadow: none;
}

.enquiry-input {
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    padding: 8px 2px;
    font-size: 14px;
    background: transparent;
}

/* Inputs highlight */
.enquiry-input:focus {
    border-bottom: 1px solid var(--color-primary);
}

.extra-fields-box {
    background-color: #efefef;
    width: 100%;
}

.enquiry-inner {
    padding: 35px;
    /* Padding only for the form content */
}

.add-request {
    background-color: #efefef;
    font-size: 12px;
    cursor: pointer;
}

.add-icon {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
}

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

/* ================================
   DELETE ENQUIRY BUTTON ( × )
================================ */
.delete-enquiry-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: 300;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.delete-enquiry-btn:hover {
    color: #1e2326;
    transform: scale(1.2);
}


/* =========================================
   SELECT2 CUSTOM STYLE (MATCH ENQUIRY INPUT)
========================================= */

/* Remove default box */
.select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #333 !important;
    border-radius: 0 !important;
    height: 38px !important;
    padding-left: 0 !important;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

/* Selected text style */
.select2-container--default .select2-selection__rendered {
    color: #333 !important;
    padding-left: 0 !important;
    padding-right: 20px !important;
    font-size: 14px;
    line-height: 38px !important;
}

/* Arrow */
.select2-container--default .select2-selection__arrow {
    height: 38px !important;
    right: 0;
}

/* Focus state */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-bottom: 1px solid var(--color-primary) !important;
}

/* Dropdown panel */
.select2-dropdown {
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Options */
.select2-results__option {
    padding: 8px 12px !important;
    font-size: 14px;
    font-family: 'Montserrat';
}

/* Option hover */
.select2-results__option--highlighted {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}

.select2-container--default .select2-results>.select2-results__options {
    text-align: left;
}

html[lang="ar"] .select2-container--default .select2-results>.select2-results__options {
    text-align: right;
}

/* =========================================
   FOOTER
========================================= */
.seatme-footer {
    background-color: var(--seatme-dark-blue);
    color: #fff;
    padding: 40px 0 25px 0;
}

/* Keeps the whole group centered */
.footer-columns {
    max-width: 900px;
    /* 🔥 CONTROL WIDTH LIKE THE MOCKUP */
    margin: 0 auto;
    /* center the columns group */
}

/* Each column’s content must be left aligned */
/* .footer-col {
    text-align: left !important;
} */

/* Title */
.footer-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Line under titles — LEFT aligned */
.footer-line {
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
    margin: 6px 0 15px 0;
}

/* Text styling */
.footer-text {
    color: var(--color-light);
    font-size: 0.9rem;
}

/* Links */
.footer-link,
.footer-contact-link {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

html[lang="ar"] .footer-contact-link {
    direction: ltr;
}

.footer-link:hover,
.footer-contact-link:hover {
    color: var(--color-primary);
}

/* Disclaimer + copy */
.footer-disclaimer,
.footer-copy {
    font-size: 11px;
    color: #BFC5CA;
    line-height: 1.4;
}

.footer-disclaimer strong {
    color: var(--white);
    font-weight: 600;
}

/* =========================================
   FLOATING BUTTONS (FINAL FIXED VERSION)
========================================= */

.chat-with-us-btn {
    position: fixed;
    bottom: 95px;
    right: 30px;
    background-color: #fff;
    /* visible on white + dark */
    color: #1e2326;
    /* dark text for readability */
    border: 1px solid #1e2326;
    /* black border for visibility */
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    /* 🔥 ALL CAPS */
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    z-index: 9999;
}

.chat-with-us-btn:hover {
    background-color: var(--color-primary);
    /* gold hover */
    color: #fff;
    transform: translateY(-3px);
}

html[lang="ar"] .chat-with-us-btn {
    right: auto;
    left: 30px;
    font-family: var(--font-arabic);
}

@media (max-width: 576px) {
    .chat-with-us-btn {
        bottom: 70px;
        /* lifted for better accessibility */
        right: 18px;
        padding: 0.5rem 1.25rem !important;
        /* py-2 px-4 exact */
        font-size: 0.85rem !important;
        border-width: 1px;
        border-radius: 50rem !important;
        /* rounded-pill */
    }
}

/* =========================================
   WHEN OVERLAPPING FOOTER (dark background)
========================================= */
.chat-with-us-btn.in-footer {
    background-color: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
}

/* MOBILE FOOTER OVERLAP */
@media (max-width: 576px) {
    .chat-with-us-btn.in-footer {
        background-color: transparent !important;
        color: #fff !important;
        border-color: #fff !important;
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
    }
}

/* ABOUT HERO SECTION */
.about-hero-section {
    background-color: var(--seatme-dark-blue);
    color: var(--white);
}

.about-hero-image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 693px;
    height: 100%;
}

.about-hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6.5rem 7rem;
}

@media (max-width: 991px) {
    .about-hero-image {
        min-height: 500px;
    }

    .about-hero-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-image {
        min-height: 360px;
    }

    .about-hero-content {
        padding: 2rem;
    }
}

/* ===== Vision Section ===== */
.vision-section {
    background-color: #fff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.vision-text {
    max-width: 750px;
    font-size: 1rem;
    line-height: 1.8;
}


/* RESPONSIVE */
@media (max-width: 768px) {

    /* Center buttons on mobile */
    .vision-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .vision-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* ===== Contact Hero Section ===== */
.contact-hero-section {
    background-color: #F3F4F4;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.contact-hero-section h2 {
    font-size: 2.3rem;
}

.contact-hero-section p {
    font-size: 1rem;
    color: #555;
}

/* ===== Contact Page ===== */
.contact-section {
    background-color: #fff;
}

.contact-image {
    width: 100%;
    border-radius: 0px;
    object-fit: cover;
    height: 100%;
}

.contact-input {
    border: none;
    border-bottom: 1px solid #c0c0c0;
    border-radius: 0;
    padding: 8px 2px;
    font-size: 0.95rem;
    background: transparent;
}

.contact-input:focus {
    border-bottom: 1px solid var(--color-primary);
    box-shadow: none;
}

/* Mobile adjustments */
@media (max-width: 991px) {

    .contact-hero-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .contact-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .contact-image {
        display: none;
    }
}


/* ===== Packages Header ===== */
.packages-header h2 {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.packages-header p {
    color: var(--color-dark);
}

.packages-header {
    padding: 3rem 0 1rem;
}

/* ===== Package Cards ===== */
.package-card {
    background-color: var(--seatme-dark-blue);
    color: var(--white);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.package-card .package-heading {
    color: var(--color-light);
    font-size: 1.8rem;
}

.package-card .package-subheading {
    color: var(--seatme-gold);
}

.package-card .package-caption {
    color: var(--color-light);
    font-size: .875rem;
    margin-top: -.8rem;
}

.package-card .package-price {
    font-size: 2rem;
}

.package-card .package-details p {
    font-size: .8rem;
    font-weight: 700;
}

.package-card .package-details ul {
    padding-left: .625rem;
    font-size: .8rem;
}

html[lang="ar"] .package-card .package-details ul {
    padding-left: 0;
    padding-right: .625rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .packages-header h2 {
        font-size: 1.9rem;
    }
}

.alacarte-section {
    background-color: var(--white);
}

/* Card Container */
.alacarte-card {
    /* text-align: left; */
    border: 0 none;
}

.alacarte-card .card-body {
    padding: 0;
}

.alacarte-card .card-footer {
    background: transparent;
    border: 0 none;
    padding: 0;
}

/* Service Image */
.alacarte-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 0px;
}


/* ✅ Responsive Adjustments */
@media (max-width: 991px) {

    /* Center cards on mobile */
    .alacarte-card {
        text-align: center;
    }

    .alacarte-img {
        height: 220px;
    }

    .alacarte-section h2 {
        font-size: 1.6rem !important;
    }

    .alacarte-card h4 {
        font-size: 1.2rem;
        margin-top: 1rem;
    }

    .alacarte-card p {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        color: #555;
    }

}


/* Language Links */
.lang-links .lang-link {
    color: var(--color-dark);
    /* normal dark text */
    font-size: 0.85rem;
    /* same as .small */
    text-decoration: none;
}

.lang-links .lang-link:hover {
    color: var(--color-primary);
    /* slight gold hover (optional) */
}

/* Active language → GOLD */
.lang-links .active-lang {
    color: var(--color-primary) !important;
}

/* Separator styling */
.lang-links .separator {
    color: var(--color-dark);
    font-size: 0.85rem;
}


/* ============================
   COMPACT PREMIUM MODAL
============================ */

/* Make modal narrower */
#enquiryModal .modal-dialog {
    max-width: 500px !important;
}

/* Modal body styling */
.enquiry-modal {
    border-radius: 0px !important;
    padding: 15px;
    border: none !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* Close button */
.custom-close {
    filter: invert(20%);
    opacity: 0.6;
}

.custom-close:hover {
    opacity: 1;
}

/* Summary box */
.summary-box {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 0;
    border: 1px solid #e6e6e6;
}

/* Divider */
.soft-divider {
    border-top: 1px solid #e4e4e4;
    margin: 15px 0;
}

/* Input fields */
.enquiry-field {
    background: #ffffff !important;
    border-radius: 0px !important;
    border: 0px solid #dcdcdc;
    border-bottom-width: 1px;
    padding: 10px 14px !important;
    font-size: 14px;
}

.enquiry-field:focus {
    border-color: #bfa14a !important;
    box-shadow: 0 none !important;
}

/* Service summary image smaller */
#serviceSummary img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 10px;
    object-fit: cover;
}

/* Service text sizing */
#serviceSummary h5 {
    font-size: 1rem !important;
}

#serviceSummary p {
    font-size: 0.85rem !important;
}

/* Date inputs same style */
.enquiry-field[type="date"] {
    color: #555 !important;
}


/* ============================================================
   SEATME PREMIUM TOAST THEME WITH GOLD ICONS
   ============================================================ */

/* :root {
    --seatme-gold: #ba9275;
} */

/* Base toast look */
#toast-container>div {
    background-color: #1A1A1A !important;
    /* Premium black card */
    color: #FFFFFF !important;
    border-radius: 12px !important;
    padding: 16px 20px 16px 58px !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25) !important;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #2c2c2c !important;
    position: relative;
    background-image: none !important;
}

/* Remove default icon images */
#toast-container>.toast-success,
#toast-container>.toast-error,
#toast-container>.toast-info,
#toast-container>.toast-warning {
    background-image: none !important;
}

/* ======= ICON BASE STYLE ======= */
#toast-container>div::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 700;
    color: var(--seatme-gold);
}

/* ======= ICONS PER TYPE ======= */

/* Success (✓) */
#toast-container>.toast-success::before {
    content: "✓";
}

/* Error (×) */
#toast-container>.toast-error::before {
    content: "✕";
}

/* Warning (!) */
#toast-container>.toast-warning::before {
    content: "!";
}

/* Info (i) */
#toast-container>.toast-info::before {
    content: "i";
}

/* Close button */
.toast-close-button {
    color: #fff !important;
    opacity: 0.6 !important;
    font-size: 18px !important;
}

.toast-close-button:hover {
    opacity: 1 !important;
    color: var(--seatme-gold) !important;
}

/* Titles and message */
.toast-title {
    font-weight: 600 !important;
}

.toast-message {
    font-size: 14px !important;
    line-height: 1.5;
}


/* =========================================
   LEGAL PAGES (Terms, Privacy, etc.)
========================================= */

.legal-page-section {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Title Style */
.legal-title h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 35px;
    color: var(--color-dark);
}

/* Content Box */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.85;
    font-family: var(--font-body);
    font-size: 1rem;
}

/* RTL Support */
html[lang="ar"] {
    direction: rtl;
    font-family: var(--font-arabic);
}

html[lang="ar"] .legal-content,
html[lang="ar"] .reservation-card p,
html[lang="ar"] .select2-container--default,
html[lang="ar"] .select2-selection--single,
html[lang="ar"] button,
html[lang="ar"] a.btn {
    font-family: var(--font-arabic);
}

/* html[lang="en"] .legal-content,
html[lang="fr"] .legal-content {
    text-align: left;
} */

html[lang="ar"] .reservation-card .reservation-price {
    font-family: var(--font-heading);
}

.reservation-bottom-row>div:first-child,
.reservation-bottom-row>div:last-child {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 768px) {

    .reservation-bottom-row>div:first-child,
    html[lang="ar"] .reservation-bottom-row>div:last-child {
        padding-left: 0;
        padding-right: .5rem;
    }

    .reservation-bottom-row>div:last-child,
    html[lang="ar"] .reservation-bottom-row>div:first-child {
        padding-right: 0;
        padding-left: .5rem;
    }
}

/* =========================================
   RESPONSIVE FIXES — MOBILE MARGINS
========================================= */

/* Tablets */
@media (max-width: 991px) {
    .legal-content {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.75;
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* SMALL PHONES */
@media (max-width: 576px) {
    .legal-content {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-left: 25px;
        /* 🔥 EXACTLY WHAT YOU WANT */
        margin-right: 25px;
        /* 🔥 EXACTLY WHAT YOU WANT */
    }
}


.mobile-logo img {
    height: 55px;
    /* adjust as needed */
    width: auto;
    display: block;
}

@media (max-width: 480px) {
    .mobile-logo img {
        height: 45px;
    }
}


/* ===========================
   MEMBER MODAL MINIMAL STYLES
=========================== */

/* Modal content */
#memberModal .modal-content {
    border-radius: 10px;
    font-family: var(--font-body);
    background-color: #fff;
}

/* Modal header */
#memberModal .modal-header {
    border-bottom: none;
    padding: 1.5rem 2rem;
}

#memberModal .modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
}

html[lang="ar"] #memberModal .modal-title {
    font-family: var(--font-arabic);
}

/* Close button */
#memberModal .btn-close {
    opacity: 0.7;
}

#memberModal .btn-close:hover {
    opacity: 1;
}

/* Modal body */
#memberModal .modal-body {
    padding: 1rem 2rem 2rem 2rem;
}

#memberModal .modal-body h6 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

html[lang="ar"] #memberModal .modal-body h6 {
    font-family: var(--font-arabic);
}

#memberModal .modal-body p {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

html[lang="ar"] #memberModal .btn-close {
    margin: 0 auto 0 0;
}

/* Form inputs */
#memberModal .form-control.enquiry-input {
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

#memberModal .form-control.enquiry-input:focus {
    border-color: var(--color-primary);
    box-shadow: none;
}

/* Submit button */
#memberModal .btn {
    border-radius: 50px;
    font-weight: 500;
    padding: 0.5rem 2rem;
}

#memberModal .btn:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* Responsive adjustments */
@media (max-width: 575px) {
    #memberModal .modal-dialog {
        max-width: 95%;
        margin: 1.5rem auto;
    }

    #memberModal .modal-body {
        padding: 1rem 1rem 1.5rem 1rem;
    }
}


/* MEMBER MODAL SALUTATION SELECT2 */
#memberModal .select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #333 !important;
    border-radius: 0 !important;
    height: 38px !important;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    padding-left: 0 !important;
}

#memberModal .select2-container--default .select2-selection__rendered {
    color: #333 !important;
    font-size: 14px;
    line-height: 38px !important;
    padding-left: 0 !important;
    padding-right: 20px !important;
}

#memberModal .select2-container--default .select2-selection__arrow {
    height: 38px !important;
    right: 0;
}

#memberModal .select2-container--default.select2-container--focus .select2-selection--single {
    border-bottom: 1px solid var(--color-primary) !important;
}

#memberModal .select2-dropdown {
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#memberModal .select2-results__option {
    padding: 8px 12px !important;
    font-size: 14px;
    font-family: 'Montserrat';
}

#memberModal .select2-results__option--highlighted {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}
