/* =========================================
   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;

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

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

/* =========================================
   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;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-light);
    margin: 0;
    overflow-x: hidden;
}

/* =========================================
   Arabic Language Overrides
========================================= */
html[lang="ar"] body {
    font-family: var(--font-arabic) !important;
}

/* All headings in Arabic */
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6 {
    font-family: var(--font-arabic) !important;
}

/* 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(--color-bg-light-gray);
}

/* 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;
    /* 🔥 ALL CAPS */
    transition: all 0.3s ease;
}

/* HERO BUTTON: white outline on dark background */
.btn-outline-light {
    color: #fff !important;
    border: 1px solid #fff !important;
    background: transparent !important;
}

.btn-outline-light:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #fff !important;
    transform: translateY(-3px);
}

/* FORM / GENERAL BUTTON: dark outline */
.btn-outline-dark,
.enquiry-submit-btn {
    /* keep backwards compatibility */
    color: #000 !important;
    border: 1px solid #000 !important;
    background: transparent !important;
}

.btn-outline-dark:hover,
.enquiry-submit-btn:hover {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    transform: translateY(-3px);
}

/* =========================================
   Header (Original)
========================================= */

/* Match header width to hero-wrapper */
.header-wrapper {
    max-width: 1400px;
    /* same width as hero-wrapper */
    margin: 0 auto;
    /* center it */
    /* padding: 0 20px; */
    /* optional side padding */

    display: flex;
    justify-content: flex-end;
    /* push language to the right */
    align-items: center;
}


/* MOBILE FIX */
@media (max-width: 991px) {
    .header-wrapper {
        justify-content: center !important;
        /* center header items */
        padding: 0 12px;
        gap: 10px;
    }
}



/* =========================================
   DESKTOP NAVBAR (Original)
========================================= */
.desktop-navbar .nav-link {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0 20px;
    /* font-family: var(--font-heading); */
    /* ← Prata here */
    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;
}

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

/* =========================================
   MOBILE NAVBAR
========================================= */
.navbar-area {
    background: var(--color-bg-light-gray);
    width: 100%;
    position: relative;
    z-index: 1000;
}

.navbar-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    font-family: var(--font-heading);
}

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

/* ============================
   ACTIVE NAVIGATION LINK
============================ */
.desktop-navbar .nav-link.active,
.mobile-menu ul li a.active {
    color: var(--color-primary) !important;
    font-weight: 700;
}

/* =========================================
   DESKTOP NAVBAR (Sticky + Responsive)
========================================= */
.desktop-navbar {
    top: 0;
    z-index: 2000;
    background-color: var(--color-bg-light-gray);
    border-bottom: none !important;
    box-shadow: none !important;
    margin: 0;
    padding: 0;
}

/* 👇 Adds consistent space below, even when sticky */
.desktop-navbar::after {
    content: "";
    display: block;
    height: 20px;
    /* adjust the gap you want */
    background-color: var(--color-bg-light-gray);
    /* matches page bg or hero bg */
}

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

/* Slightly bigger logo on large screens */
@media (min-width: 1400px) {
    .desktop-logo .logo-img {
        height: 110px;
    }
}

/* Smaller logo on small laptops if needed */
@media (max-width: 1199px) {
    .desktop-logo .logo-img {
        height: 75px;
    }
}

/* Hide MOBILE navbar on desktop */
@media (min-width: 992px) {
    .navbar-area {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

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

/* Hamburger */
.hamburger {
    width: 32px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 4000;
    /* ensure always clickable */
}

.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);
}

/* Slide-in mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;
    padding: 80px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 2000;
}

/* 👇 unified with JS */
.mobile-menu.open {
    right: 0;
}

.mobile-menu.active {
    right: 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);
}

/* Close Button */
.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 10px;
    /* bigger tap area */
    line-height: 1;
    z-index: 3000;
    transition: 0.2s ease;
}

.mobile-close-btn:hover {
    transform: scale(1.1);
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1500;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.hero-section {
    background-color: var(--color-bg-light-gray);
    padding: 30px 0 60px;
}

/* The hero stays centered, with fixed max width */
.hero-wrapper {
    max-width: 1400px;
    /* <<---- PERFECT fixed width */
    margin: 0 auto;
    /* center */
    display: flex;
    gap: 0;
    overflow: hidden;
    border-radius: 0px;

    height: auto;
    /* <<---- IMPORTANT: NO vh! */
}

/* LEFT SIDE */
.hero-left {
    width: 50%;
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-slide-wrapper,
.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

@media (max-width: 991px) {

    .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;
    }
}

/* =========================================
   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 {
    background-size: cover;
    background-position: center;
    flex: 0 0 50%;
}

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

/* Titles */
.reservation-content h2 {
    font-size: 1.7rem !important;
}

.reservation-content p.text-muted {
    font-size: 0.9rem !important;
    font-weight: 300 !important;
    text-transform: lowercase !important;
    color: var(--color-bg-dark) !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(--color-bg-dark);
    color: #fff;
    padding: 1.5rem 2rem !important;

    max-width: 700px;
    width: 100%;
    margin: 1rem auto !important;

    border-radius: 0;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;

    /* Use heading font (Prata) */
    font-family: var(--font-heading) !important;
}

/* LEFT SIDE */
.reservation-card>.left {
    flex: 1 1 auto;
    min-width: 0;
}

/* RIGHT SIDE */
.reservation-card>.right {
    flex: 0 0 42%;
    min-width: 0;
}

/* TITLE — regular weight, no bold */
.reservation-card h5 {
    font-size: 35px !important;
    font-weight: normal !important;
    /* remove bold */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* PRICE — regular weight, keeps color */
.reservation-card h4 {
    font-size: 35px !important;
    font-weight: normal !important;
    /* remove bold */
    color: var(--color-primary);
}

/* Paragraphs */
.reservation-card p {
    font-size: 0.85rem !important;
    margin-bottom: 0.4rem;
    font-weight: normal !important;
    /* remove bold */
}

/* ===============================
   DIVIDER BLOCK
================================= */
.p-with-divider {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.p-with-divider .divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.4);
}

.p-with-divider p {
    text-align: left !important;
    display: block;
    line-height: 1.3;
    font-size: 0.8rem !important;
    max-width: 240px !important;
    margin: 0;
    font-weight: normal !important;
}

/* ===============================
   BOTTOM HINTS
================================= */
.reservation-bottom-row {
    max-width: 700px;
    margin: 1rem auto 0;
}

.reservation-bottom-row p {
    font-size: 0.85rem !important;
    font-weight: normal !important;
}

/* ================================
   MOBILE FIX (≤ 768px)
================================ */
@media (max-width: 768px) {

    .reservation-image {
        display: none !important;
    }

    .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;
    }

    .reservation-card h5 {
        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 h4 {
    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;
    padding: 10px 25px;
    /* SAME LEFT ALIGNMENT AS INPUTS */
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    cursor: pointer;
}

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

/* ================================
   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: #000;
    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;
}

/* =========================================
   FOOTER
========================================= */
.seatme-footer {
    background-color: #1E2327;
    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;
}

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

/* Disclaimer + copy */
.footer-disclaimer,
.footer-copy {
    font-size: 10px;
    color: var(--color-gray);
}

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

.chat-with-us-btn {
    position: fixed;
    bottom: 95px;
    right: 30px;
    background-color: #fff;
    /* visible on white + dark */
    color: #000;
    /* dark text for readability */
    border: 1px solid #000;
    /* 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);
}

@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(--color-bg-dark);
}

.about-hero-image {
    background-size: cover;
    background-position: center;
    height: 70vh;
    /* Desktop height */
}

.about-hero-content {
    background-color: var(--color-bg-dark);
    color: #fff;
    height: 70vh;
}

.about-text-box-large {
    padding: 3.5rem 4rem;
    /* 🔥🔥 more space */
}

@media (max-width: 991px) {
    .about-text-box-large {
        padding: 2.5rem;
        /* responsive */
    }
}

@media (max-width: 768px) {
    .about-text-box-large {
        padding: 1.8rem;
        /* mobile friendly */
    }
}

/* MOBILE */
@media (max-width: 991px) {
    .about-hero-image {
        height: 300px !important;
        /* Mobile height */
    }

    .about-hero-content {
        height: auto;
        padding: 2rem !important;
    }
}

/* ===== 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;
    color: #555;
}


/* 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: 2.2rem;
    font-family: 'Prata', serif !important;
}

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

.packages-header {
    padding-top: 6rem !important;
    padding-bottom: 1rem !important;
}

/* ===== Package Cards ===== */
.package-card {
    background-color: #1E2327;
    color: #fff;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Card Title */
.package-card h4 {
    color: var(--color-light);
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Prata', serif !important;
}

/* Card Subtitle / Small title */
.package-card h5 {
    color: var(--seatme-gold);
    font-size: 1.6rem;
    font-family: 'Prata', serif !important;
}

.package-card h6 {
    color: var(--color-light);
    margin-bottom: 30px;
    font-size: 14px;
    font-family: 'Prata', serif !important;
}


/* Price */
.package-price {
    font-size: 24px;
    margin-bottom: 1rem;
    font-family: 'Prata', serif !important;
}

/* List Styling */
.package-card ul {
    padding-left: 1rem;
}

.package-card ul li {
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--color-light);
    font-family: 'Prata', serif;
}

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

/* ===== À-La-Carte Section (NEW DESIGN) ===== */
.alacarte-section {
    background-color: #fff;
}

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

/* 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"] .legal-content {
    text-align: right;
    font-family: var(--font-arabic);
}

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

/* =========================================
   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;
    }
}
