/* ==========================================================
   NS CONVENTION HALLS — UNIFIED DESIGN SYSTEM
   Mobile-first. Gold luxury theme. No inline overrides.
   ========================================================== */

/* -----------------------------------------------------------
   1. DESIGN TOKENS
   ----------------------------------------------------------- */
:root {
    --gold:        #C9A84C;
    --champagne:   #D9BD68;
    --gold-light:  #F5E6B0;
    --gold-dark:   #8B6A23;
    --dark:        #0f0f0f;
    --dark-rich:   #060504;
    --dark-card:   #0d0c0a;
    --cream:       #17110B;
    --light:       #FFFDF8;
    --white:       #ffffff;
    --text:        #1a1a1a;
    --text-muted:  #4a4235;
    --gray:        #666;
    --border-gold: rgba(201, 168, 76, 0.2);
    --border-gold-strong: rgba(201, 168, 76, 0.42);
    --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 20px 50px rgba(201, 168, 76, 0.18);
    --radius-card: 16px;
    --radius-btn:  6px;
    --radius-input: 8px;
    --transition:  0.3s ease;
}

/* -----------------------------------------------------------
   2. RESET & BASE
   ----------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}
section {
    padding: clamp(16px, 2vw, 28px) 0;
    position: relative;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.container-custom {
    width: 100%;
    max-width: 1400px;
    padding-left:  clamp(16px, 4vw, 60px);
    padding-right: clamp(16px, 4vw, 60px);
    margin: 0 auto;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.15;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
img {
    max-width: 100%;
    display: block;
}
p { line-height: 1.65; }

/* -----------------------------------------------------------
   3. ACCESSIBILITY
   ----------------------------------------------------------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    position: static;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 8px 14px;
    background: #111;
    color: #fff;
    border-radius: var(--radius-btn);
    z-index: 9999;
}
:focus-visible {
    outline: 2px solid var(--gold) !important;
    outline-offset: 3px !important;
}

/* -----------------------------------------------------------
   4. SECTION TITLE (unified across all sections)
   ----------------------------------------------------------- */
.section-title {
    text-align: center;
    margin-bottom: clamp(8px, 1.2vw, 14px);
}
.section-title > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--champagne);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.section-title > span::before,
.section-title > span::after {
    content: "";
    height: 1px;
    width: 22px;
    background: linear-gradient(90deg, transparent, var(--champagne));
}
.section-title > span::after {
    background: linear-gradient(90deg, var(--champagne), transparent);
}
.section-title h2,
.section-title .section-title-h2 {
    font-size: clamp(28px, 4.5vw, 52px);
    margin-top: 10px;
    color: #17110B;
}
/* White-on-dark variant */
.section-title.light h2,
.section-title .testimonial-title-light {
    color: #fff !important;
}

/* Testimonial header styling */
.testimonial-title-light {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 700;
    font-size: clamp(22px, 2.8vw, 34px);
    letter-spacing: 0.02em;
    text-transform: none;
    margin-bottom: 8px;
    line-height: 1.05;
}

/* -----------------------------------------------------------
   5. BUTTONS (standardized)
   ----------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--radius-btn);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: 1;
}
.btn-gold {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--champagne);
    border-color: var(--champagne);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: rgba(201, 168, 76, 0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}
/* Active/expanded state for gallery show more */
.btn-outline-gold.is-expanded {
    background: rgba(201, 168, 76, 0.12);
    color: var(--champagne);
}

/* -----------------------------------------------------------
   6. NAVBAR
   ----------------------------------------------------------- */
.luxury-navbar {
    background: rgba(10, 9, 7, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    padding: 10px 0;
    z-index: 1050;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.luxury-navbar.scrolled {
    background: #111 !important;
    padding: 6px 0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25) !important;
}
.custom-toggler {
    border: 1px solid rgba(201,168,76,0.4) !important;
    padding: 8px 10px !important;
    background: rgba(255,255,255,0.05) !important;
    border-radius: var(--radius-btn);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 42px;
    height: 36px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.custom-toggler:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25) !important;
}
.custom-toggler:hover {
    background: rgba(201, 168, 76, 0.1) !important;
}
.toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform-origin: right center;
    margin: 3px auto;
}
/* Morph into a left-pointing arrow <- when expanded */
.custom-toggler[aria-expanded="true"] .bar-top {
    transform: rotate(45deg) translate(-2px, -3px) scaleX(0.6);
}
.custom-toggler[aria-expanded="true"] .bar-middle {
    transform: rotate(0deg) scaleX(0.9);
}
.custom-toggler[aria-expanded="true"] .bar-bottom {
    transform: rotate(-45deg) translate(-2px, 3px) scaleX(0.6);
}
.luxury-navbar .container-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.site-logo {
    height: clamp(34px, 4vw, 44px);
    width: auto;
    object-fit: contain;
    align-self: center;
    position: relative;
    top: -1px; /* Micro-adjustment to visually align center with text */
}
.logo-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    align-self: center;
}
.logo-text {
    font-size: clamp(13px, 1.6vw, 17px);
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-decor {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}
.logo-decor span {
    height: 1px;
    width: 18px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.logo-decor i {
    color: var(--gold);
    font-size: 7px;
    animation: sparkle 2.5s infinite ease-in-out;
}
@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50%       { opacity: 1;   transform: scale(1.15); }
}

/* Nav links */
.luxury-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

/* Vertical quick buttons: stacked navigation links styled as quick-action buttons */
.vertical-quick-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0;
}
.vertical-quick-buttons .nav-item { width: auto; }
.vertical-quick-buttons .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(217, 189, 104, 0.12), rgba(217, 189, 104, 0.06));
    color: var(--gold) !important;
    font-weight: 700;
    border: 1px solid rgba(217, 189, 104, 0.12);
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.vertical-quick-buttons .nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(31, 41, 55, 0.06);
    background: linear-gradient(90deg, #f6e7b8, #fff9eb);
    color: #111 !important;
}

@media (max-width: 991.98px) {
    .vertical-quick-buttons {
        flex-direction: column;
        width: 100%;
    }
    .vertical-quick-buttons .nav-item {
        width: 100%;
    }
    .vertical-quick-buttons .nav-link {
        width: 100%;
    }
}
.luxury-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.22);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.2;
}
.luxury-pill::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.5s;
}
.luxury-pill:hover::before { left: 100%; }
.luxury-pill:hover {
    transform: translateY(-2px);
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    color: var(--gold) !important;
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.2);
}

/* Language toggle */
.site-language-menu {
    position: relative;
    display: flex;
    align-items: center;
}
.site-language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}
.site-language-toggle:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}
.site-language-chevron {
    font-size: 9px;
    transition: transform 0.3s ease;
}
.site-language-menu.open .site-language-chevron {
    transform: rotate(180deg);
}
.site-language-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 130px;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: rgba(12, 10, 7, 0.97);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
    z-index: 1060;
}
.site-language-menu.open .site-language-dropdown {
    display: block;
    animation: dropIn 0.18s ease;
}
@keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.site-language-option {
    width: 100%;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #ddd;
    padding: 8px 11px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Montserrat', sans-serif;
}
.site-language-option:hover,
.site-language-option.active {
    background: rgba(201, 168, 76, 0.18);
    color: var(--gold-light);
}

/* Mobile nav collapse */
.navbar-toggler {
    border: 1px solid rgba(201, 168, 76, 0.4) !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* -----------------------------------------------------------
   7. HERO SECTION
   ----------------------------------------------------------- */
.hero {
    min-height: 720px;
    min-height: clamp(720px, 100svh, 900px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f0f;
    overflow: hidden;
    text-align: center;
    padding: 0;
}
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    animation: heroFade 12s infinite ease-in-out;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 4s; }
.hero-slide:nth-child(3) { animation-delay: 8s; }
@keyframes heroFade {
    0%, 30%    { opacity: 1; }
    40%, 90%   { opacity: 0; }
    100%       { opacity: 0; }
}
.hero-slide:nth-child(1) { opacity: 1; }
.hero-slide:nth-child(2) { opacity: 0; }
.hero-slide:nth-child(3) { opacity: 0; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3,3,3,0.88) 0%, rgba(5,5,5,0.62) 24%, rgba(5,5,5,0.32) 54%, rgba(3,3,3,0.78) 100%),
        radial-gradient(circle at 50% 36%, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.03) 30%, transparent 64%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    padding: clamp(86px, 9vw, 118px) clamp(16px, 4vw, 40px) clamp(42px, 6vw, 72px);
    overflow-wrap: break-word;
}
.hero-sub {
    color: var(--champagne);
    letter-spacing: 4px;
    font-size: clamp(11px, 1.8vw, 14px);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero h1 {
    font-size: clamp(36px, 5.6vw, 70px);
    line-height: 1.05;
    color: #fff;
    max-width: 820px;
    margin: 0 auto 18px;
    text-wrap: balance;
    text-shadow: 0 8px 28px rgba(0,0,0,0.58);
}
.hero p {
    color: #f1ebd9;
    font-size: clamp(14px, 1.9vw, 18px);
    line-height: 1.55;
    max-width: 650px;
    margin: 0 auto 24px;
    text-wrap: pretty;
    text-shadow: 0 3px 12px rgba(0,0,0,0.48);
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.hero-location {
    display: inline-block;
    max-width: min(100%, 560px);
    padding: 9px 20px;
    border: 1px solid rgba(217, 189, 104, 0.35);
    background: rgba(8, 7, 5, 0.72);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    color: #FFE494;
    font-size: clamp(10px, 1.6vw, 12px);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* -----------------------------------------------------------
   8. STATS SECTION
   ----------------------------------------------------------- */
.stats-section {
    background: var(--dark-card);
    padding: 24px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
/* Bootstrap col-lg-3 col-md-6 handles the 4-col layout. We only style the box. */
.stat-box {
    text-align: center;
    color: #fff;
    padding: 18px 12px;
    border-right: 1px solid rgba(201, 168, 76, 0.12);
    transition: var(--transition);
}
.stat-box:hover { background: rgba(255,255,255,0.03); }
.stat-box h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--champagne);
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1;
}
.stat-box p {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #b5ac97;
    margin: 0;
}
/* Remove Bootstrap g-4 gap on stats to keep seamless dividers */
.stats-section .row { --bs-gutter-x: 0; --bs-gutter-y: 0; }

/* -----------------------------------------------------------
   9. HALLS SECTION
   ----------------------------------------------------------- */
#halls {
    background: var(--light);
}
/* Bootstrap col-lg-4 handles the 3-column grid. We only style hall-card. */
.hall-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: clamp(380px, 45vw, 500px);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-gold);
    background: #000;
    cursor: pointer;
}
.hall-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    will-change: transform;
}
.hall-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 35%,
        rgba(0,0,0,0.65) 62%,
        rgba(0,0,0,0.96) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(18px, 3.5vw, 32px);
    z-index: 2;
}
.hall-overlay h3 {
    color: #fff;
    font-size: clamp(24px, 2.8vw, 32px);
    margin-bottom: 8px;
}
.hall-overlay p {
    color: #dfd8c8;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
}
.hall-card:hover img { transform: scale(1.06); }
.hall-card:hover      { box-shadow: var(--shadow-hover); }

/* -----------------------------------------------------------
   10. AVAILABILITY CALENDAR
   ----------------------------------------------------------- */
.availability-section {
    background: #0a0907;
    color: #fff;
}
.availability-section .section-title h2 {
    color: #fff;
}
.availability-help {
    text-align: center;
    color: #b5ac97;
    font-size: 13px;
    margin-top: -14px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

/* Mobile hall dropdown */
.availability-select-wrapper {
    position: relative;
    display: block;
    width: 100%;
}
.availability-mobile-dropdown-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--champagne);
    font-size: 13px;
    pointer-events: none;
    transition: transform 0.3s ease;
    z-index: 1;
}
.availability-mobile-dropdown {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid var(--border-gold-strong);
    border-radius: var(--radius-input);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.availability-mobile-dropdown:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.availability-mobile-dropdown option {
    background: #17110B;
    color: #fff;
}

/* Calendar columns */
.availability-calendar-column {
    flex: 1;
    min-width: 0;
}

/* Calendar card */
.calendar-card {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-gold-strong) !important;
    border-radius: 10px !important;
    background: #FFFDF7 !important;
    box-shadow: 0 20px 55px rgba(0,0,0,0.32) !important;
    color: var(--text);
    height: 100%;
}
.calendar-card h3 {
    margin: 0 !important;
    padding: 14px 18px 12px !important;
    border-bottom: 1px solid rgba(139,106,35,0.18) !important;
    background: linear-gradient(180deg, #FFF7D9 0%, #F2E2B2 100%) !important;
    color: #120D08 !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(16px, 1.8vw, 21px) !important;
    font-weight: 700 !important;
    text-align: center !important;
    line-height: 1.2 !important;
}
.calendar-card > div[id^="calendar"] {
    flex: 1;
    padding: 14px !important;
    background: #FFFDF7 !important;
}

/* FullCalendar overrides */
#availability .fc .fc-toolbar.fc-header-toolbar {
    display: grid !important;
    grid-template-columns: 36px minmax(0,1fr) 36px !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 10px !important;
}
#availability .fc .fc-toolbar-chunk {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
}
#availability .fc .fc-toolbar-title {
    width: 100%;
    color: #17110B !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(15px, 1.6vw, 19px) !important;
    font-weight: 700 !important;
    text-align: center !important;
}
#availability .fc-button {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: 1px solid rgba(139,106,35,0.55) !important;
    border-radius: 8px !important;
    background: #17110B !important;
    color: #FFF7D8 !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18) !important;
    transition: 0.2s ease;
}
#availability .fc-button:hover {
    background: #D9BD68 !important;
    color: #17110B !important;
}
#availability .fc-theme-standard .fc-scrollgrid {
    width: 100% !important;
    border: 1px solid rgba(139,106,35,0.2) !important;
    border-radius: 8px !important;
    background: #fff !important;
    overflow: hidden !important;
}
#availability .fc-theme-standard td,
#availability .fc-theme-standard th {
    border-color: rgba(139,106,35,0.12) !important;
}
#availability .fc .fc-col-header-cell {
    background: #F4E7C2 !important;
}
#availability .fc .fc-col-header-cell-cushion {
    display: block !important;
    padding: 7px 2px !important;
    color: #3C2C15 !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase;
    text-decoration: none !important;
}
#availability .fc .fc-daygrid-day {
    background: #FFFDF8;
    transition: background 0.18s ease;
}
#availability .fc .fc-daygrid-day-frame {
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 4px !important;
    margin: 2px !important;
    border: 1px solid rgba(217,189,104,0.14) !important;
    border-radius: 7px !important;
}
#availability .fc .fc-daygrid-day-number {
    width: 32px !important;
    height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border-radius: 50% !important;
    color: #2F2415 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}
#availability .fc .fc-daygrid-day:not(.booked-date):not(.fc-day-disabled):hover .fc-daygrid-day-frame {
    background: rgba(201,168,76,0.1) !important;
    cursor: pointer;
}
#availability .fc .fc-day-today .fc-daygrid-day-frame {
    background: #FFF2B8 !important;
    border-color: rgba(139,106,35,0.3) !important;
}
#availability .fc .fc-day-today .fc-daygrid-day-number {
    background: #D9BD68 !important;
    color: #17110B !important;
}
#availability .fc .fc-daygrid-day.booked-date .fc-daygrid-day-frame {
    background: #FCE1E1 !important;
    border-color: rgba(185,28,28,0.22) !important;
}
#availability .fc .fc-daygrid-day.booked-date .fc-daygrid-day-number {
    background: #B91C1C !important;
    color: #fff !important;
}
#availability .fc .fc-daygrid-day.selected-date .fc-daygrid-day-frame {
    background: #F6E2A2 !important;
    border-color: rgba(155,117,32,0.5) !important;
}
#availability .fc .fc-daygrid-day.selected-date .fc-daygrid-day-number {
    background: linear-gradient(105deg, #9B7520 0%, #D0AD45 50%, #FFF1A8 100%) !important;
    color: #111 !important;
}
#availability .fc .fc-daygrid-day.fc-day-disabled {
    background: #F2EFE8 !important;
    opacity: 0.6;
}
#availability .fc .fc-daygrid-day-events {
    display: none !important;
}

/* Admin calendar: larger weekday cells and headers for booking management */
.calendar-panel .fc .fc-col-header-cell-cushion {
    font-size: 13px !important;
    padding: 10px 4px !important;
}
.calendar-panel .fc .fc-daygrid-day-frame {
    min-height: 70px !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.calendar-panel .fc .fc-daygrid-day-number {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
}

/* Booking table index column styling */
.table thead th.index-col,
.table tbody td.index-col,
.booking-table .index-col {
    text-align: center;
    vertical-align: middle;
    font-weight: 700;
    width: 56px;
}

/* Calendar legend */
.calendar-legend-shared {
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px auto 0 !important;
}
.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(217,189,104,0.2);
    border-radius: 7px;
    background: rgba(255,255,255,0.05);
    color: #F7E7B7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.calendar-legend-box {
    width: 12px !important;
    height: 12px !important;
    border-radius: 4px !important;
    flex-shrink: 0;
}
.legend-available {
    background: #FFFDF8 !important;
    border: 1px solid rgba(217,189,104,0.7);
}
.legend-today   { background: #D9BD68 !important; }
.legend-booked  { background: #B91C1C !important; }

/* -----------------------------------------------------------
   11. CONTACT SECTION
   ----------------------------------------------------------- */
#contact {
    background: var(--light);
    overflow: hidden;
}
.contact-visual {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.contact-visual-accent {
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.contact-visual-accent::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
}
#contact .container-custom {
    position: relative;
    z-index: 1;
}
/* Let Bootstrap col-lg-7 / col-lg-5 handle the contact layout — no row override */

/* Enquiry form card */
.contact-box {
    background: #fff;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.07);
    height: 100%;
}

/* Contact details card */
.contact-card {
    background: #0f0f0f;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    padding: clamp(24px, 4vw, 40px);
    color: #fff;
    height: 100%;
}
.contact-card h3 {
    font-size: clamp(24px, 3vw, 34px);
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-item .icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item .icon i {
    color: var(--champagne);
    font-size: 15px;
}
.contact-item .contact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.contact-item .contact-text span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--champagne);
}
.contact-item .contact-text a,
.contact-item .contact-text p {
    color: #ddd;
    font-size: 13px;
    line-height: 1.5;
}
.contact-item .contact-text a:hover { color: var(--champagne); }

/* Form fields */
.form-field {
    margin-bottom: 16px;
}
.form-field:last-of-type { margin-bottom: 0; }
.form-field-wide { grid-column: 1 / -1; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #17110B;
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-input);
    border: 1px solid rgba(139,106,35,0.22);
    background: #fff;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    transition: var(--transition);
    line-height: 1.5;
}
.form-control::placeholder {
    color: #aaa;
    font-size: 15px;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
textarea.form-control {
    min-height: 100px;
    resize: vertical;
}
.form-help {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}
.form-help.is-error { color: #B91C1C; }

/* Enquiry status */
.enquiry-status {
    display: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 14px;
    text-align: center;
    line-height: 1.4;
}
.enquiry-status.is-visible {
    display: block;
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}
.enquiry-status.is-visible.is-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

/* Compact contact enquiry layout */
#contact .section-title {
    margin-bottom: 12px;
}
#contact .row.g-5 {
    --bs-gutter-x: 22px;
    --bs-gutter-y: 16px;
    align-items: stretch;
}
#contact .contact-box,
#contact .contact-card {
    padding: clamp(14px, 2vw, 22px);
}
#contact .contact-box {
    background: linear-gradient(135deg, #FFF6DC 0%, #FFFFFF 54%, #F7E9BA 100%);
    border-color: rgba(201,168,76,0.34);
    box-shadow: 0 12px 30px rgba(139,106,35,0.11);
}
#enquiryForm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
}
#contact .form-field {
    margin-bottom: 0;
}
#contact .form-label {
    margin-bottom: 6px;
    font-size: 13px;
    letter-spacing: 0.8px;
}
#contact .form-control {
    min-height: 44px;
    padding: 12px 16px;
    background-color: rgba(255,255,255,0.95);
    font-size: 15px;
    line-height: 1.5;
}
#contact select.form-control {
    background-position: right 14px center;
    padding-right: 38px;
}
#contact input[type="date"].form-control {
    min-height: 44px;
}
#contact textarea.form-control {
    min-height: 90px;
}
#contact .form-help {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.5;
}
#contact .form-field-wide {
    grid-column: auto;
}
#contact #enquiryForm > .btn,
#contact .enquiry-status {
    grid-column: 1 / -1;
}
#contact #enquiryForm > .btn {
    justify-self: start;
    padding: 10px 20px;
    margin-top: 2px;
}
#contact .contact-card h3 {
    margin-bottom: 16px;
    padding-bottom: 12px;
    font-size: clamp(22px, 2.3vw, 28px);
}
#contact .contact-item {
    gap: 11px;
    margin-bottom: 14px;
}
#contact .contact-item .icon {
    width: 32px;
    height: 32px;
}
#contact .contact-item .icon i {
    font-size: 13px;
}
#contact .contact-item .contact-text a,
#contact .contact-item .contact-text p {
    font-size: 12px;
    line-height: 1.4;
}
#contact .enquiry-status {
    margin-top: 0;
}

@media (max-width: 767.98px) {
    #enquiryForm {
        grid-template-columns: 1fr;
    }
    #contact .contact-box,
    #contact .contact-card {
        padding: 14px;
    }
    #contact #enquiryForm > .btn {
        justify-self: stretch;
        width: 100%;
    }
}

/* -----------------------------------------------------------
   12. FEATURES SECTION (Why Choose Us)
   ----------------------------------------------------------- */
/* Features uses Bootstrap .row.g-4 .col-lg-4 — let Bootstrap grid work */
.feature-box {
    background: #fff;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    padding: clamp(24px, 3.5vw, 38px);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.feature-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}
.feature-box:hover::before { opacity: 1; }
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--gold);
}
.feature-box i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 18px;
}
.feature-box h4 {
    font-size: clamp(18px, 2vw, 22px);
    color: #17110B;
    margin-bottom: 10px;
}
.feature-box p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* -----------------------------------------------------------
   13. ABOUT SECTION
   ----------------------------------------------------------- */
#about, .about-section {
    background: var(--light);
}
/* About uses Bootstrap .row.align-items-center.g-5 .col-lg-6 — let Bootstrap handle columns */
.about-image {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-gold);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 0;
}
.about-eyebrow {
    color: var(--champagne);
    font-size: clamp(12px, 1.5vw, 15px);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.about-content h2 {
    font-size: clamp(26px, 3.8vw, 46px);
    color: #17110B;
    margin-bottom: 20px;
    line-height: 1.15;
}
.about-content p {
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.about-content p:last-of-type { margin-bottom: 24px; }

/* -----------------------------------------------------------
   14. GALLERY SECTION
   ----------------------------------------------------------- */
#gallery {
    background: var(--light);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: clamp(12px, 2vw, 22px);
    max-height: calc(240px * 2 + clamp(12px, 2vw, 22px));
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.gallery-grid.is-expanded {
    max-height: none;
    overflow: visible;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 240px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    border: 1px solid rgba(201,168,76,0.12);
    cursor: pointer;
}
.gallery-item.is-hidden { display: none; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    background: rgba(17,13,8,0.88);
    border: 1px solid rgba(217,189,104,0.6);
    border-radius: 30px;
    padding: 8px 18px;
    color: #FFF3C2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 5;
    box-shadow: 0 8px 22px rgba(0,0,0,0.4);
    white-space: nowrap;
}
.gallery-item:hover .gallery-overlay-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.gallery-actions {
    display: flex;
    justify-content: center;
    margin-top: clamp(22px, 3vw, 32px);
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,6,4,0.95);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}
.lightbox-overlay.is-active { opacity: 1; }
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 88%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.94);
    transition: transform 0.3s ease;
}
.lightbox-overlay.is-active .lightbox-content { transform: scale(1); }
.lightbox-content img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border: 2px solid rgba(217,189,104,0.38);
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.6);
}
.lightbox-caption {
    margin-top: 14px;
    color: #FFFDF8;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-align: center;
}
.lightbox-close {
    position: absolute;
    top: -44px; right: 0;
    background: none;
    border: none;
    color: #FFFDF8;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

/* -----------------------------------------------------------
   15. TESTIMONIALS SECTION
   ----------------------------------------------------------- */
.testimonial-section {
    background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
                url('../images/cta-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    border-top: 1px solid rgba(201,168,76,0.15);
}
.testimonial-section .section-title h2,
.testimonial-title-light {
    color: #fff !important;
}
.testimonialSwiper { padding-bottom: 40px !important; }
.testimonial {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius-card);
    padding: clamp(20px, 3.5vw, 36px);
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    transition: var(--transition);
}
.testimonial:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(255,255,255,0.05);
}
.testimonial p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
    color: #f5f1e4;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.testimonial h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--champagne);
    margin-bottom: 6px;
}
.stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 14px;
    display: block;
    letter-spacing: 2px;
}

/* -----------------------------------------------------------
   16. CTA SECTION
   ----------------------------------------------------------- */
.cta {
    background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
                url('../images/cta-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 0 0 clamp(80px, 10vw, 130px);
    text-align: center;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.cta-content { max-width: 700px; margin: 0 auto; }
.cta-content h2 {
    font-size: clamp(26px, 4vw, 44px);
    color: #fff;
    margin-bottom: 14px;
}
.cta-content p {
    color: #dfd8c8;
    font-size: clamp(13px, 1.7vw, 15px);
    max-width: 560px;
    margin: 0 auto 26px;
    line-height: 1.65;
}

/* -----------------------------------------------------------
   17. MAP SECTION
   ----------------------------------------------------------- */
.map-section {
    background: var(--light);
    padding: clamp(50px, 7vw, 90px) 0;
}
.map-wrapper {
    background: #fff;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.map-header {
    padding: clamp(20px, 3.5vw, 36px);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    background: linear-gradient(135deg, #FFFDF8 0%, #FFF7E0 100%);
    text-align: center;
}
.map-header span {
    display: inline-block;
    color: var(--champagne);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.map-header h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    color: #17110B;
    margin-bottom: 8px;
}
.map-header p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}
.map-box { line-height: 0; }
.map-iframe {
    width: 100%;
    height: clamp(280px, 42vw, 500px);
    border: none;
    display: block;
}
.map-btn {
    padding: clamp(18px, 2.5vw, 28px);
    text-align: center;
    background: #FFFDF8;
    border-top: 1px solid rgba(201,168,76,0.12);
}

/* -----------------------------------------------------------
   18. FOOTER
   ----------------------------------------------------------- */
.footer-section {
    background: var(--dark-rich);
    color: #ccc;
    padding: clamp(24px, 4vw, 42px) 0 16px;
    font-size: 13px;
    line-height: 1.65;
}
.footer-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 18px;
    text-align: left;
}
.footer-logo span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}
.footer-text {
    color: #bfb6a8;
    max-width: 340px;
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.85;
    text-align: left;
    margin-bottom: 0;
}
.footer-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.footer-links a {
    color: #a59f93;
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer-contact .contact-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(201,168,76,0.12);
}
.footer-contact .contact-item {
    min-width: 0;
}
.footer-contact .contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.footer-contact .contact-text span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.footer-contact .contact-text a {
    color: #a59f93;
    font-size: 14px;
    line-height: 1.6;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    display: inline-block;
}
.footer-contact .contact-text a:hover { color: var(--gold); }
.footer-address { line-height: 1.6; }
.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #888;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-tunnel { display: none; }

/* Cloudflare tunnel link — hide in production */
.footer-tunnel { display: none; }

/* -----------------------------------------------------------
   19. FLOATING BUTTONS
   ----------------------------------------------------------- */
.floating-enquiry {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #17110B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
    box-shadow: 0 10px 24px rgba(0,0,0,0.28);
    transition: var(--transition);
}
.floating-enquiry:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 14px 30px rgba(201,168,76,0.32);
    color: #17110B;
}
.whatsapp {
    position: fixed;
    bottom: 96px; right: 24px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    z-index: 1000;
    box-shadow: 0 10px 24px rgba(0,0,0,0.28);
    transition: var(--transition);
}
.whatsapp:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 14px 30px rgba(37,211,102,0.32);
    color: #fff;
}

/* Hero secondary button */
.btn-site-visit { min-width: 160px; }

/* Hall enquiry link */
.hall-enquiry-link { cursor: pointer; }

/* Gallery show more label + chevron rotation */
.gallery-show-more .fa-chevron-down {
    transition: transform 0.3s ease;
}
.gallery-show-more.is-expanded .fa-chevron-down {
    transform: rotate(180deg);
}

/* Footer tunnel link */
.footer-tunnel-link {
    color: #666;
    font-size: 11px;
    transition: var(--transition);
}
.footer-tunnel-link:hover { color: var(--gold); }

/* -----------------------------------------------------------
   20. HALLS SCROLL ROW (Mobile horizontal scroll)
   ----------------------------------------------------------- */
.halls-scroll-row { /* handled by grid at all sizes */ }

/* -----------------------------------------------------------
   21. SCROLL MARGIN for anchors (accounts for fixed navbar ~60px)
   ----------------------------------------------------------- */
#halls, #availability, #contact, #about, #gallery {
    scroll-margin-top: 70px;
}

/* -----------------------------------------------------------
   22. RESPONSIVE — 1920px+ (large desktop)
   ----------------------------------------------------------- */
@media (min-width: 1800px) {
    .hero h1 { font-size: 90px; }
    /* Bootstrap col-lg-3 maintains 4-col stats at all large sizes */
}

/* -----------------------------------------------------------
   22. RESPONSIVE — 1440px desktop
   ----------------------------------------------------------- */
@media (min-width: 1440px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* -----------------------------------------------------------
   23. RESPONSIVE — 1200px desktop
   ----------------------------------------------------------- */
@media (min-width: 1200px) {
    .availability-section .row {
        display: flex;
        flex-direction: row;
        gap: 18px;
    }
    .availability-calendar-column {
        display: block !important;
    }
}

/* -----------------------------------------------------------
   24. RESPONSIVE — 992px tablet/desktop
   ----------------------------------------------------------- */
@media (min-width: 992px) {
    .availability-section .row {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }
    .availability-calendar-column {
        display: block !important;
    }
    .gallery-grid {
        grid-template-columns: repeat(4, minmax(200px, 1fr));
        max-height: calc(240px * 2 + clamp(12px, 2vw, 22px));
        overflow: hidden;
    }
    /* Contact section: Bootstrap col-lg-7 and col-lg-5 handle widths natively */
}

/* -----------------------------------------------------------
   25. RESPONSIVE — <992px (mobile/tablet)
   ----------------------------------------------------------- */
@media (max-width: 991.98px) {
    /* Navbar mobile menu */
    .luxury-nav { display: flex; }
    .navbar-collapse {
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: rgba(12,10,7,0.98);
        border-bottom: 1px solid rgba(201,168,76,0.18);
        padding: 16px 20px 20px;
        box-shadow: 0 15px 28px rgba(0,0,0,0.5);
    }
    .navbar-collapse.show {
        display: block !important;
    }
    .navbar-nav {
        align-items: stretch;
        gap: 8px;
        width: 100%;
    }
    .luxury-pill {
        display: block;
        text-align: center;
        padding: 10px 12px;
    }
    .site-language-menu {
        justify-content: center;
        margin-top: 8px;
    }
    .site-language-dropdown {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    /* Hero */
    .hero {
        min-height: 560px;
        min-height: clamp(520px, 72svh, 660px);
        padding: 0 !important;
    }
    .hero-content { padding: 88px 16px 44px; }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions .btn { width: 100%; text-align: center; }

    /* Stats: Bootstrap col-md-6 gives 2-col automatically — just adjust borders */
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(201,168,76,0.12);
    }

    /* Halls: Bootstrap col-lg-4 stacks to 1-col on mobile; set proper card height */
    .hall-card { height: clamp(300px, 60vw, 420px); }

    /* Calendar - only show active column */
    .availability-calendar-column { display: none; }
    .availability-calendar-column.is-active { display: block; }

    /* Contact: Bootstrap col-lg-7/5 stacks to full-width on mobile natively */
    .contact-card { margin-top: 0; }

    /* Features */
    .feature-box { margin-bottom: 16px; }

    /* About - stack */
    .about-image { margin-bottom: 24px; max-height: 300px; }
    .about-image img { height: 300px; object-fit: cover; }

    /* Floating buttons */
    .floating-enquiry { display: none !important; }
    .whatsapp         { width: 50px; height: 50px; font-size: 22px; bottom: 18px; right: 18px; }
}

/* -----------------------------------------------------------
   26. RESPONSIVE — ≤768px (small tablet)
   ----------------------------------------------------------- */
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item { height: 200px; }
    .map-iframe { height: 260px; }

    /* Footer stack */
    .footer-section .col-lg-4 { text-align: left !important; }
    .footer-text { margin: 0 0 20px; text-align: left; }
    .footer-links { align-items: flex-start; }
    .footer-contact { align-items: flex-start; }
    .footer-contact p { justify-content: center; }
    .footer-bottom { justify-content: center; }
    .stats-section { display: none; }

    /* ---- MOBILE: compact section spacing ---- */
    section { padding: 18px 0 !important; }
    .section-title { margin-bottom: 14px !important; }
    .container-custom { padding-left: 12px; padding-right: 12px; }
    .row.g-4, .row.g-5 { --bs-gutter-y: 10px; --bs-gutter-x: 10px; }

    /* Availability: tighten dropdown → calendar gap */
    .availability-section .row { --bs-gutter-y: 4px; }
    .form-label.mb-2 { margin-bottom: 4px !important; }
}

/* -----------------------------------------------------------
   27. RESPONSIVE — ≤576px (mobile)
   ----------------------------------------------------------- */
@media (max-width: 575.98px) {
    section { padding: 44px 0; }
    .stats-section { padding: 36px 0; }

    .stat-box { padding: 16px 12px; }
    .stat-box h2 { font-size: 30px; }

    /* Calendar */
    #availability .fc .fc-toolbar.fc-header-toolbar {
        grid-template-columns: 32px minmax(0,1fr) 32px !important;
    }
    #availability .fc-button {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
    }
    #availability .fc .fc-col-header-cell-cushion {
        font-size: 8px !important;
        padding: 6px 1px !important;
    }
    #availability .fc .fc-daygrid-day-frame {
        min-height: 40px !important;
    }
    #availability .fc .fc-daygrid-day-number {
        width: 24px !important;
        height: 24px !important;
        font-size: 11px !important;
        border-radius: 50% !important;
    }

    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gallery-item { height: 160px; }

    .hero {
        min-height: 620px;
        min-height: clamp(620px, 100svh, 760px);
    }
    .hero-content {
        padding-left: 14px;
        padding-right: 14px;
    }
    .hero-sub {
        max-width: 310px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.45;
        letter-spacing: 2px;
        text-wrap: balance;
    }
    .hero h1 {
        max-width: 340px;
        font-size: clamp(28px, 8.4vw, 33px);
    }
    .hero p  {
        max-width: 330px;
        font-size: 13px;
        margin-bottom: 18px;
    }
    .hero-location {
        max-width: 330px;
        font-size: 9px;
        letter-spacing: 1px;
        padding: 8px 14px;
    }
    .calendar-legend-shared { gap: 8px; }
    .legend-item { font-size: 9px; padding: 4px 9px; }
}

/* -----------------------------------------------------------
   28. RESPONSIVE — ≤390px (iPhone 14 and similar)
   ----------------------------------------------------------- */
@media (max-width: 390px) {
    .btn { padding: 11px 20px; font-size: 11px; }
    .hero-content { padding-top: 82px; padding-bottom: 38px; }
    .hero h1 { max-width: 320px; font-size: 26px; }
    .hero-sub { max-width: 300px; font-size: 9px; letter-spacing: 1.5px; }
    .hero-location { max-width: 300px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 200px; }
    /* Bootstrap col-md-6 gives 2-col stats automatically */
}

/* -----------------------------------------------------------
   29. RESPONSIVE — ≤320px (very small)
   ----------------------------------------------------------- */
@media (max-width: 320px) {
    .hero h1 { font-size: 24px; }
    .btn { font-size: 10px; padding: 10px 16px; letter-spacing: 1px; }
    .stat-box h2 { font-size: 26px; }
    .section-title h2 { font-size: 22px; }
    .contact-box, .contact-card { padding: 18px; }
    .feature-box { padding: 18px; }
}
