/* Reset some basic elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

a {
    color: var(--bs-blue);
}

body {
    background: #fff;
}

section {
    position: relative;
}

section[id],
div[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-site) !important;
    background-color:#ffffff;
    color: #333;
    line-height: 1.6;
    font-size: 17px;
    font-weight: 400;
    overflow-x: hidden !important;
    flex-direction: column;
}

body, p, span, a, button, input, select, textarea, .nav-link, .btn, .facility-name, .time-card {
    font-family: var(--font-site) !important;
}

h1, h2, h3, h4, h5, h6, .heading_title, .about_title {
    font-family: var(--font-site) !important;
    letter-spacing: 0.8px;
}

.main_content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

:root {
    --primary: #174521;
    --secondary: #d29c3f;
    --blush: #d29c3f;
    --font-site: 'Cinzel', 'Playfair Display', Georgia, serif !important;
    --font-brand: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-condensed: 'Cinzel', 'Playfair Display', Georgia, serif !important;
    --font-body: 'Cinzel', 'Playfair Display', Georgia,  serif !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-secondary {
    background: var(--secondary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.border-secondary {
    border-color: var(--secondary) !important;
}

.custom-tooltip {
    --bs-tooltip-bg: #ffffff;
    --bs-tooltip-color: #000000;
}

.btn {
    padding: 12px 20px;
    font-size: 15px;
}

.form-label {
    color: #212121;
    font-size: 14px;
    font-weight: 400;
}

.btn-primary {
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: #ffffff !important;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0e2e16 !important;
    border-color: #0e2e16 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(23, 69, 33, 0.3);
}

.btn-blush, .btn-secondary, .secondary-btn {
    background: var(--secondary) !important;
    border: 1px solid var(--secondary) !important;
    color: #174521 !important;
    font-weight: 600;
    transition: 0.3s;
}

.btn-blush:hover, .btn-secondary:hover, .secondary-btn:hover {
    background: #b8832a !important;
    border-color: #b8832a !important;
    color: #0c2612 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(210, 156, 63, 0.35);
}
/* ==========================================================================
   TRANSPARENT FLOATING HEADER NAVBAR WITH SMOOTH SCROLL TRANSITION
   ========================================================================== */
.header_section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1040;
    transition: background-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

 

.header-logo-img {
    max-height: 72px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
}

.header-logo-img:hover {
    transform: scale(1.04);
}

.header-logo-text {
    font-size: 1.85rem;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.header_section .nav-link {
    font-family: 'Cinzel', 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 14px !important;
    position: relative;
    transition: all 0.3s ease;
}

.header_section .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transition: transform 0.3s ease;
}

.header_section .nav-link:hover,
.header_section .nav-link.active {
    color: #d4af37 !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.header_section .nav-link:hover::after,
.header_section .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header User Pill & Icon Buttons */
.btn-header-user {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.35s ease;
    text-decoration: none !important;
}

.btn-header-user:hover {
    background: linear-gradient(135deg, #d4af37, #b58d24);
    color: #061913;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-header-user .user-icon-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.btn-header-user:hover .user-icon-circle {
    background: rgba(6, 25, 19, 0.2);
    color: #061913;
}

.btn-header-icon-action {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-header-icon-action:hover {
    background: #d4af37;
    color: #061913;
    transform: rotate(15deg) scale(1.08);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}

.btn-header-user-mobile {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-dark-emerald {
    background: #081812 !important;
}

/* ========================= Banner ============================== */

.banner_sec {
    padding: 150px 0px;
}

/* Section spacing */
.facilities_section {
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

/* Tile card */
.facility-tile {
    background: var(--cream);
    border-radius: 16px;
    padding: 22px 12px;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Hover effect (luxury float) */
.facility-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    border-color: rgba(200, 158, 109, 0.3);
}

/* Name */
.facility-name {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.2px;
}

/* Title polish */
.about_title {
    font-size: 30px;
    letter-spacing: -0.5px;
}

/* Title */
.about_title {
    letter-spacing: -0.5px;
    font-weight: 700;
}

/* ==========================================================================
   BALANCED SMART LUXURY GLASS FOOTER STYLING
   ========================================================================== */
.smart-footer-area {
    background: linear-gradient(180deg, #0f1610 0%, #060907 100%);
    border-top: 3px solid #d29c3f;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    font-size: 15px;
    padding-top: 45px;
}

.smart-footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, rgba(210, 156, 63, 0) 0%, rgba(210, 156, 63, 0.9) 50%, rgba(210, 156, 63, 0) 100%);
}

/* Newsletter VIP Banner */
.smart-newsletter-banner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(210, 156, 63, 0.3);
    border-radius: 16px;
    padding: 28px 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.smart-newsletter-banner .newsletter-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
}

.smart-newsletter-banner .newsletter-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.newsletter-input {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(210, 156, 63, 0.4) !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-input:focus {
    border-color: #d29c3f !important;
    box-shadow: 0 0 12px rgba(210, 156, 63, 0.3) !important;
}

.newsletter-btn {
    background: linear-gradient(135deg, #d29c3f 0%, #b8832a 100%) !important;
    color: #0b0e12 !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    padding: 12px 24px;
    border-radius: 8px;
    border: none !important;
    white-space: nowrap;
    transition: all 0.3s ease !important;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #e5b35c 0%, #d29c3f 100%) !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(210, 156, 63, 0.35) !important;
}

.smart-col-card { 
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 24px 22px;
    height: 100%;
    transition: all 0.3s ease;
}

.smart-col-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(210, 156, 63, 0.25);
}

.smart-footer-brand-title {
    font-family: 'Cinzel', 'Oswald', Georgia, serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    color: #ffffff;
}

.smart-footer-brand-accent {
    color: #d29c3f;
}

.smart-footer-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.smart-footer-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.smart-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #d29c3f;
}

.smart-footer-links li {
    margin-bottom: 10px;
}

.smart-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none !important;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
}

.smart-footer-links a::before {
    content: '›';
    color: #d29c3f;
    font-weight: bold;
    margin-right: 8px; 
    transform: translateX(-3px);
    transition: all 0.25s ease;
}

.smart-footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.smart-footer-links a:hover::before {
    color: #e5b35c;
    transform: translateX(0);
}

.smart-footer-info .info-label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.smart-footer-info .info-val {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.smart-footer-info .info-link {
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.smart-footer-info .info-link:hover {
    color: #d29c3f;
}

.smart-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(210, 156, 63, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.smart-social-btn:hover {
    background: #d29c3f;
    color: #0c0f14 !important;
    border-color: #d29c3f;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(210, 156, 63, 0.4);
}

.smart-bottom-strip {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    margin-top: 40px;
}

/* Section Headings */
.footer-heading {
    font-family: var(--font-brand), Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 22px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: var(--secondary);
    font-weight: bold;
    font-size: 18px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Smart Opening Hours Card */
.smart-opening-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(210, 156, 63, 0.25);
    border-radius: 14px;
    padding: 1.35rem;
    position: relative;
    overflow: hidden;
}

.smart-opening-card .day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}

.smart-opening-card .day-row.is-today {
    background: rgba(210, 156, 63, 0.18);
    border: 1px solid rgba(210, 156, 63, 0.4);
    color: #ffffff;
    font-weight: 600;
}

.smart-opening-card .day-row.is-today .day-name::after {
    content: ' (Today)';
    font-size: 12px;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
}

.badge-open-status {
    background: rgba(40, 167, 69, 0.2);
    color: #5dd47e;
    border: 1px solid rgba(40, 167, 69, 0.4);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.badge-open-status .pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #28a745;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* Back to top button */
.btn-back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    font-size: 16px;
}

.btn-back-to-top:hover {
    background: var(--secondary);
    color: #0c2012;
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.heading_title {
    font-size: 28px;
}

/* SECTION BACKGROUND FEEL */
.menus-section {
    background: #fafafa;
}

/* MENU BUTTONS */
.menu-btn {
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e7e7e7;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    transition: .25s ease;
}

.menu-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* INFO CARDS */
.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* INFO BUTTONS */
.info-btn {
    padding: 8px 14px;
    border-radius: 8px;
    background: #f4f4f4;
    font-size: 13px;
    color: #333;
    transition: .2s;
}

.info-btn:hover {
    background: #000;
    color: #fff;
}

.info-btn.success {
    background: var(--primary);
    color: #fff;
}

/* FOOD TIMES */
.food-times {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.time-card {
    flex: 1 1 100px;
    background: #fff;
    border-radius: 14px;
    padding: 20px 5px;
    transition: .25s;
    border: 1px solid #DDD;
}

.time-card:hover {
    transform: translateY(-3px);
}

.time-card h6 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 5px;
}

.time-card div {
    font-weight: 600;
    font-size: 14px;
}

.time-card.today {
    background: var(--blush);
    color: #000000;
}

.time-card.today h6 {
    color: #000000;
}

.booking-offcanvas {
    max-width: 520px !important;
    width: 100% !important;
}


.booking-field label {
    font-weight: 600;
    font-size: 14px;
}

.booking-input {
    border-radius: 10px;
    padding: 10px;
}


.booking-time-item {
    border: 1px solid #e5e5e5;
    padding: 10px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.booking-time-item:hover {
    border-color: #0d6efd;
    background: #f8f9ff;
}

.booking-time-item input {
    margin: 0;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    box-shadow: none !important;
    border-radius: 5px !important;
}


span.select2.select2-container.select2-container--bootstrap-5.select2-container--below {
    width: 100% !important;
}

.select2-container--bootstrap-5.select2-container .select2-selection,
.select2-container--bootstrap-5.select2-container .select2-selection {
    box-shadow: none !important;
    border-radius: 6px !important;
    height: 45px !important;
    padding: 10px 10px;
}

.offcanvas-body {
    scrollbar-width: thin;
}

.booking-time-list {
    /* height: 300px; */
    overflow: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
}

select+.select2-container--bootstrap-5 {
    z-index: 1;
    width: 100% !important;
}

.select2-container {
    z-index: 9999;
}

.form-control {
    padding: 10px;
}

.booking-offcanvas {
    height: 100vh;
}

.booking-offcanvas .offcanvas-body {
    overflow-y: auto;
}

.user-sidebar {
    background: #c89e6d0f;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #eee;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.sidebar-menu .nav-link:hover {
    background: #c89e6d14;
    color: #111;
}

.sidebar-menu svg {
    stroke: var(--primary);
}

.user-info {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

.user-info img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #f5f5f5;
    margin-bottom: 15px;
}

.user-info h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111;
}

.user-info p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.sidebar-menu .nav-link {
    border-radius: 14px;
    padding: 12px 15px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.sidebar-menu .nav-link i {
    width: 20px;
    height: 20px;
}

.sidebar-menu .nav-link:hover {
    background: #c89e6d14;
    color: #111;
}

.sidebar-menu .nav-link.active {
    background: var(--primary) !important;
    color: #fff;
}

.sidebar-menu .nav-link.active svg {
    stroke: #fff;
}

.logout-link:hover {
    background: #fff1f1 !important;
    color: #dc3545 !important;
}

@media(max-width:991px) {
    .user-sidebar {
        margin-bottom: 25px;
    }
}

div#dataTables_filter input {
    font-size: 12px;
    padding: 8px 10px;
    box-shadow: none !important;
    outline: none !important;
}

select.form-select.form-select-sm {
    box-shadow: none !important;
}

div#dataTables_length {
    font-size: 14px;
}

div.dataTables_wrapper div.dataTables_length select {
    font-size: 13px;
}

div.dataTables_wrapper div.dataTables_filter label {
    font-size: 14px;
}

div#dataTables_info {
    font-size: 14px;
}

#dataTables_paginate .page-item .page-link {
    font-size: 14px;
}

#dataTables_paginate .active>.page-link,
#dataTables_paginate .page-link.active {
    background: var(--primary);
    border-color: var(--primary);
}

.user_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid #eee;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user_card .card-header {
    border: 1px solid #ededed;
    margin-bottom: 20px;
    background: #ffffff;
    padding: 16px;
    border-radius: 5px;
    border-left: 4px solid #c59967;
}

@media screen and (max-width:575px) {
    .user_card {
        padding: 14px;
    }
}

.event_img {
    text-align: center !important;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    /* background-color: #28488917; */
    height: 320px;
    overflow: hidden;
}

.event_img img {
    width: auto !important;
    max-height: 320px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.bg-primary {
    background: var(--primary) !important;
}

/* ==========================================================================
   SMART HERO & HEADER DESIGN SYSTEM (Inspired by Flight Club & Modern Social Venues)
   ========================================================================== */

 

/* Offcanvas High Z-Index Fix */
.offcanvas,
.menu_offcanvas,
.booking-offcanvas {
    z-index: 105000 !important;
}

.offcanvas-backdrop {
    z-index: 104000 !important;
}

.menu_offcanvas {
    background: linear-gradient(180deg, rgba(8, 12, 10, 0.92) 0%, rgba(4, 6, 5, 0.96) 100%);
}

.menu_offcanvas .offcanvas-header {
    background: rgb(26 29 28) !important;
    border-bottom: 1px solid rgba(212, 163, 89, 0.25) !important;
    padding: 1.25rem 1.5rem !important;
}
.menu_offcanvas .btn-close-custom {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 163, 89, 0.15);
    border: 1px solid rgba(212, 163, 89, 0.4);
    color: #d4a359;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.menu_offcanvas .btn-close-custom:hover {
    background: #d4a359;
    color: #122b18;
    transform: rotate(90deg);
}

.menu_offcanvas .mobile-nav-item {
    margin-bottom: 8px;
}

.menu_offcanvas .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 7px 10px;
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    text-decoration: none;
}

.menu_offcanvas .mobile-nav-link i.icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(212, 163, 89, 0.12);
    color: #d4a359;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.25s ease;
}

.menu_offcanvas .mobile-nav-link:hover,
.menu_offcanvas .mobile-nav-link.active { 
    color: #d4a359 !important; 
}

.menu_offcanvas .mobile-nav-link:hover i.icon-badge,
.menu_offcanvas .mobile-nav-link.active i.icon-badge {
    background: #d4a359 !important;
    color: #122b18 !important;
}

.menu_offcanvas .mobile-offcanvas-footer {
    border-top: 1px solid rgba(212, 163, 89, 0.2);
    padding-top: 20px;
    margin-top: 20px;
}

.menu_offcanvas .mobile-info-badge {
    font-size: 13px;
    color: rgba(246, 237, 219, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.menu_offcanvas .mobile-info-badge i {
    color: #d4a359;
}

 

.header_section .nav-link:hover,
.header_section .nav-link.active {
    color: #d4a359 !important;
}

.header_section .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 2px;
    background: #d4a359;
    transition: transform 0.25s ease;
}

.header_section .nav-link:hover::after,
.header_section .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-smart-book {
    background: linear-gradient(135deg, #d4a359 0%, #b8832a 100%) !important;
    color: #0e2e16 !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px;
    border: none !important;
    box-shadow: 0 4px 15px rgba(212, 163, 89, 0.4);
    transition: all 0.3s ease !important;
}

.btn-smart-book:hover {
    background: linear-gradient(135deg, #e5b46a 0%, #c9943b 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 163, 89, 0.6);
}

/* Smart Hero Section - Clear Image View */
.hero_smart_sec {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b1a0e;
    overflow: hidden;
    padding: 120px 0 100px;
}

.hero_smart_img {
    filter: brightness(0.9) contrast(1.1) saturate(1.08);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: scale(1.01);
    transition: transform 12s cubic-bezier(0.25, 1, 0.5, 1);
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

.hero_smart_sec:hover .hero_smart_img {
    transform: scale(1.04);
}

.hero_overlay_clean {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 26, 14, 0.65) 0%, rgba(11, 26, 14, 0.35) 45%, rgba(11, 26, 14, 0.85) 100%),
                radial-gradient(ellipse at center, rgba(0,0,0,0.1) 20%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero_content_wrap {
    position: relative;
    z-index: 2;
}

.hero_clean_content {
    max-width: 900px;
    margin: 0 auto;
}

.hero_location_tag {
    font-family: 'Oswald', sans-serif !important;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #e2b45f;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    margin-bottom: 14px;
}

.hero_clean_title {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.08;
    color: #ffffff;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'Oswald', sans-serif !important;
}

.hero_clean_title .highlight-gold {
    color: #e2b45f;
    text-shadow: 0 4px 25px rgba(226, 180, 95, 0.6);
    background: linear-gradient(135deg, #fce4b3 0%, #e2b45f 50%, #bd8c32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_subtitle {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

.btn-hero-gold {
    background: linear-gradient(135deg, #f3ca74 0%, #e2b45f 50%, #c9943b 100%) !important;
    color: #111d12 !important;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    letter-spacing: 1.5px;
    padding: 14px 36px !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(226, 180, 95, 0.45);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.btn-hero-gold:hover {
    background: linear-gradient(135deg, #f7d688 0%, #e8be6d 50%, #d49f3e 100%) !important;
    color: #0b150c !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(226, 180, 95, 0.65);
}

.btn-hero-outline {
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1.5px solid #e2b45f !important;
    color: #e2b45f !important;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    letter-spacing: 1.5px;
    padding: 14px 36px !important;
    backdrop-filter: blur(6px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.btn-hero-outline:hover {
    background: #e2b45f !important;
    color: #111d12 !important;
    border-color: #e2b45f !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(226, 180, 95, 0.45);
}

@media (max-width: 768px) {
    .hero_smart_sec {
        min-height: 75vh;
        padding: 80px 0 60px;
    }
    .hero_location_tag {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
    .hero_clean_title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    .hero_subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    .btn-hero-gold, .btn-hero-outline {
        padding: 12px 28px !important;
        font-size: 0.95rem !important;
        width: 100%;
        max-width: 280px;
    }
}

.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 163, 89, 0.22);
    border: 1px solid rgba(212, 163, 89, 0.5);
    color: #f3d498;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero_title {
    font-family: var(--font-brand), 'Cinzel', serif !important;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    margin-bottom: 20px;
}

.hero_title .highlight-gold {
    color: #d4a359;
    background: linear-gradient(135deg, #f3d498 0%, #d4a359 50%, #9e6b3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto 30px auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Floating Quick Booking Bar (Smart Widget) */
.quick_booking_bar {
    position: relative;
    z-index: 10;
    margin-top: -65px;
}

.quick_bar_card {
    background: rgba(18, 43, 24, 0.94);
    border: 1px solid rgba(212, 163, 89, 0.4);
    border-radius: 20px;
    padding: 22px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(15px);
}

.quick_bar_field {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 10px 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.quick_bar_field:focus-within,
.quick_bar_field:hover {
    border-color: #d4a359;
    background: rgba(255, 255, 255, 0.14);
}

.quick_bar_label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4a359;
    font-weight: 600;
    margin-bottom: 2px;
    display: block;
}

.quick_bar_select,
.quick_bar_input {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    width: 100%;
    outline: none !important;
    box-shadow: none !important;
}

.quick_bar_select option {
    background: #0e2e16;
    color: #fff;
}

/* Smart Experience Cards (Flight Club Inspired) */
.smart_exp_card {
    position: relative;
    background: #0e2e16;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 163, 89, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.smart_exp_card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 163, 89, 0.75);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.38);
}

.smart_exp_img_wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.smart_exp_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.smart_exp_card:hover .smart_exp_img_wrap img {
    transform: scale(1.08);
}

.smart_exp_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(14,46,22,0.92) 100%);
}

.smart_exp_badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4a359;
    color: #07140a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.smart_exp_body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(180deg, #0e2e16 0%, #081c0d 100%);
}

.smart_exp_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.smart_exp_desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-card-outline {
    border: 1px solid rgba(212, 163, 89, 0.5);
    color: #d4a359;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-card-outline:hover {
    background: #d4a359;
    color: #0e2e16;
    border-color: #d4a359;
    box-shadow: 0 6px 18px rgba(212, 163, 89, 0.35);
}

/* Feature Counter Bar */
.smart_feature_bar {
    background: #07140a;
    border-top: 1px solid rgba(212, 163, 89, 0.2);
    border-bottom: 1px solid rgba(212, 163, 89, 0.2);
    padding: 25px 0;
}

.smart_feature_item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    justify-content: center;
}

.smart_feature_icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 163, 89, 0.15);
    border: 1px solid rgba(212, 163, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a359;
    font-size: 18px;
    flex-shrink: 0;
}

.smart_feature_text h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.smart_feature_text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   FLIGHT CLUB-INSPIRED HOMEPAGE SECTIONS
   ========================================================================== */
.fc-section {
    background-color: #F6EDDB;
    padding: 70px 0;
    position: relative;
}

.fc-script-subtitle {
    font-family: 'Playfair Display', 'Georgia', cursive, serif;
    font-style: italic;
    color: #174521;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.fc-main-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    color: #174521;
    font-weight: 700;
    font-size: 44px;
    letter-spacing: 0.5px;
    line-height: 1.15;
    text-transform: uppercase;
}

.fc-image-wrap {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: visible;
}

.fc-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.fc-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(15, 20, 15, 0.92) 100%);
    padding: 40px 30px 25px;
    text-align: center;
    color: #ffffff;
}

.fc-caption-overlay h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 6px;
}

.fc-caption-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Floating Content Card Styles */
.fc-floating-card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    padding: 35px 30px;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.fc-floating-card.pos-right {
    right: -40px;
}

.fc-floating-card.pos-left {
    left: -40px;
}

/* Card Color Variants */
.fc-card-wine {
    background: #3c1218;
    color: #ffffff;
}

.fc-card-wine .fc-card-title {
    color: #f67280;
}

.fc-card-cream {
    background: #ece0ca;
    color: #2b2b2b;
    border: 1px solid rgba(210, 156, 63, 0.3);
}

.fc-card-cream .fc-card-title {
    color: #174521;
}

.fc-card-green {
    background: #174521;
    color: #ffffff;
}

.fc-card-green .fc-card-title {
    color: #d29c3f;
}

.fc-card-soft {
    background: #f2e9d7;
    color: #2b2b2b;
    border: 1px solid rgba(210, 156, 63, 0.2);
}

.fc-card-soft .fc-card-title {
    color: #174521;
}

.fc-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.1;
}

.fc-card-desc {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Pill Action Buttons */
.btn-fc-coral {
    background-color: #e84e63;
    color: #ffffff !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-fc-coral:hover {
    background-color: #d13b50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 78, 99, 0.4);
}

.btn-fc-gold {
    background-color: #d29c3f;
    color: #10141a !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-fc-gold:hover {
    background-color: #e3a948;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 156, 63, 0.4);
}

.fc-link-secondary {
    color: #174521;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 14px;
    font-weight: 600;
    margin-left: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fc-link-secondary:hover {
    color: #d29c3f;
}

/* Responsive Floating Cards for Tablets & Mobile */
@media (max-width: 991px) {
    .fc-floating-card {
        position: relative;
        top: 0;
        transform: none;
        width: 100%;
        margin-top: -30px;
        left: 0 !important;
        right: 0 !important;
        border-radius: 8px;
    }
    
    .fc-image-wrap img {
        height: 380px;
    }

    .fc-main-title {
        font-size: 32px;
    }
}

/* ==========================================================================
   SMART VARIED HOMEPAGE SECTIONS
   ========================================================================== */
.smart-feature-box {
    background: #ece0ca;
    border: 1px solid rgba(210, 156, 63, 0.3);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.smart-feature-img {
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    width: 100%;
}

.smart-badge-wine {
    background: #3c1218;
    color: #e84e63;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}

.smart-badge-green {
    background: #174521;
    color: #d29c3f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}

.smart-feature-list li {
    font-size: 15px;
    color: #2b2b2b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.smart-feature-list i {
    color: #174521;
    font-size: 16px;
}

.corporate-banner {
    background: linear-gradient(135deg, #174521 0%, #0d2813 100%);
    border: 1px solid #d29c3f;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.brunch-card-wrap {
    background: #f2e9d7;
    border: 1px solid rgba(210, 156, 63, 0.25);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   CLEAN MINIMALIST GRID HOMEPAGE STYLING
   ========================================================================== */
.clean-grid-card {
    background: #ffffff;
    border: 1px solid #e2d5c1;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.clean-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(23, 69, 33, 0.12);
    border-color: #d29c3f;
}

.clean-grid-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.clean-grid-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.clean-grid-card:hover .clean-grid-card-img {
    transform: scale(1.05);
}

.clean-grid-card-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.clean-grid-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #174521;
    background: #f4ebd9;
    padding: 5px 14px;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: 14px;
    border: 1px solid rgba(210, 156, 63, 0.3);
}

.clean-grid-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #174521;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.clean-grid-desc {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-clean-gold {
    background-color: #d29c3f;
    color: #10141a !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-clean-gold:hover {
    background-color: #174521;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(23, 69, 33, 0.25);
}

.btn-clean-coral {
    background-color: #e84e63;
    color: #ffffff !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-clean-coral:hover {
    background-color: #174521;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(23, 69, 33, 0.25);
}

/* Feature Highlights Grid */
.highlight-tile {
    background: #ffffff;
    border: 1px solid #e2d5c1;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f4ebd9;
    color: #174521;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
    border: 1px solid rgba(210, 156, 63, 0.3);
}

.highlight-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #174521;
    margin-bottom: 6px;
}

.highlight-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ==========================================================================
   SMART REVEAL ANIMATIONS & UNIFIED ELEANOR RIGBY SECTION CARDS
   ========================================================================== */

/* Universal Scroll Reveal Smoothness */
.smart-reveal {
    opacity: 0;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.smart-reveal[data-reveal="fade-up"] {
    transform: translateY(45px);
}

.smart-reveal[data-reveal="fade-down"] {
    transform: translateY(-35px);
}

.smart-reveal[data-reveal="fade-left"] {
    transform: translateX(-45px);
}

.smart-reveal[data-reveal="fade-right"] {
    transform: translateX(45px);
}

.smart-reveal[data-reveal="zoom-in"] {
    transform: scale(0.93);
}

.smart-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1) !important;
}

/* Stagger Delay Utility */
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* Unified Luxury Section Cards (Eleanor Rigby's Aesthetic) */
.smart-section-card {
    background: #fbf6ee;
    border: 1px solid rgba(210, 156, 63, 0.35);
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 12px 35px rgba(23, 69, 33, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.smart-section-card:hover {
    box-shadow: 0 20px 45px rgba(23, 69, 33, 0.12);
    border-color: #d29c3f;
}

@media (max-width: 768px) {
    .smart-section-card {
        padding: 28px 20px;
        border-radius: 16px;
    }
}

/* Clean High-Res Image Frames */
.fc-image-wrap {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    border: 2px solid rgba(210, 156, 63, 0.4);
}

.fc-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.97) contrast(1.04);
}

.fc-image-wrap:hover img {
    transform: scale(1.04);
}

.highlight-tile {
    background: #ffffff;
    border: 1px solid rgba(210, 156, 63, 0.3);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(23, 69, 33, 0.05);
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-tile:hover {
    transform: translateY(-8px);
    border-color: #d29c3f;
    box-shadow: 0 18px 38px rgba(23, 69, 33, 0.12);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #174521 0%, #0d2813 100%);
    color: #d29c3f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    border: 2px solid #d29c3f;
    box-shadow: 0 6px 16px rgba(23, 69, 33, 0.2);
    transition: transform 0.35s ease, background 0.35s ease;
}

.highlight-tile:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #d29c3f 0%, #b8832a 100%);
    color: #174521;
    border-color: #174521;
}

/* ==========================================================================
   FLIGHT CLUB / BLACK CAT STYLE MULTI-STEP BOOKING WIDGET (ENHANCED)
   ========================================================================== */

@keyframes stepFadeIn {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.step-booking-widget {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    color: #111111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.step-panel {
    animation: stepFadeIn 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: opacity, transform;
}

.step-summary-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111111;
    animation: stepFadeIn 0.22s ease forwards;
}

.step-summary-bar .step-edit-btn {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111111;
    border: 1px solid #d5d5d5;
    background: #ffffff;
    padding: 3px 12px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.step-summary-bar .step-edit-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.step-active-header {
    padding: 14px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-row-item {
    padding: 20px 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-row-item:hover:not(.disabled) {
    background: #f8f9fa;
}

.step-row-item.selected {
    background: #f4ebd9;
    border-color: #d29c3f;
}

.step-row-title {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #000000;
    margin: 0;
    line-height: 1.15;
    text-transform: uppercase;
}

.step-row-subtitle {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 14px;
    color: #666666;
    margin-top: 6px;
}

.step-row-item.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #fafafa;
}

.step-row-item.disabled .step-row-title {
    color: #888888;
}

.step-row-item.disabled .step-row-reason {
    font-size: 12px;
    color: #999999;
    font-family: monospace;
    margin-top: 6px;
}

/* Guest Selector Button / Bar */
.step-guests-bar {
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 20px;
    text-align: center;
}

.step-guests-btn {
    border: 1px solid #d5d5d5;
    background: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 30px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.step-guests-btn:hover {
    border-color: #111111;
    background: #f8f9fa;
}

/* Quick Date Shortcuts */
.step-quick-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.step-quick-date-btn {
    border: 1px solid #d5d5d5;
    background: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.step-quick-date-btn:hover,
.step-quick-date-btn.active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

/* Custom Step Calendar */
.step-calendar-wrap {
    padding: 18px 20px;
}

.step-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.step-calendar-month-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #000000;
}

.step-calendar-nav-btn {
    background: none;
    border: none;
    font-size: 22px;
    color: #111111;
    cursor: pointer;
    padding: 4px 14px;
    transition: transform 0.15s ease;
}

.step-calendar-nav-btn:hover {
    transform: scale(1.2);
}

.step-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.step-calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.step-cal-day {
    padding: 10px 4px;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
    border: 1px solid transparent;
}

.step-cal-day:hover:not(.disabled) {
    background: #f0f0f0;
}

.step-cal-day.active {
    background: #000000;
    color: #ffffff;
    font-weight: 700;
}

.step-cal-day.disabled {
    color: #dddddd;
    cursor: not-allowed;
}

/* Timings Grid */
.step-timings-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 12px 20px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888888;
}

.step-timings-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 240px;
}

.step-time-slots-col {
    border-right: 1px solid #e5e5e5;
    max-height: 320px;
    overflow-y: auto;
}

.step-time-slot-item {
    padding: 14px 12px;
    border-bottom: 1px solid #e5e5e5;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
}

.step-time-slot-item:hover {
    background: #f8f9fa;
}

.step-time-slot-item.active {
    background: #111111;
    color: #ffffff;
}

.step-end-time-col {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f7f7f7;
    color: #666666;
    font-size: 14px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

/* Step 5 Enquiry Form */
.step-enquiry-box {
    padding: 24px 20px;
}

.step-summary-banner {
    font-size: 15px;
    color: #333333;
    margin-bottom: 18px;
    line-height: 1.5;
}

.step-summary-banner strong {
    font-weight: 700;
    color: #000000;
}

.step-summary-banner a {
    color: #d29c3f;
    text-decoration: underline !important;
    font-weight: 600;
}

.step-note-alert {
    background: #fffdf2;
    border: 1px solid #f0e2b6;
    color: #7d6023;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 20px;
}

.btn-step-submit {
    background: var(--primary) !important;
    color: #ffffff !important;
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 4px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-step-submit:hover {
    background: #174521;
}

.step-icon {
    color: #174521;
    font-size: 15px;
    width: 20px;
    text-align: center;
    display: inline-block;
}

/* ==========================================================================
   MOBILE RESPONSIVE STYLES FOR STEP BOOKING WIDGET
   ========================================================================== */
@media (max-width: 576px) {
    .step-summary-bar {
        padding: 10px 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .step-summary-bar .step-edit-btn {
        font-size: 10px;
        padding: 2px 8px;
    }

    .step-active-header {
        padding: 12px 14px;
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .step-row-item {
        padding: 16px 12px;
    }

    .step-row-title {
        font-size: 20px;
        letter-spacing: 0.3px;
    }

    .step-row-subtitle {
        font-size: 13px;
    }

    .step-guests-bar {
        padding: 12px 14px;
    }

    .step-guests-btn {
        font-size: 14px;
        padding: 10px 16px;
        gap: 10px;
    }

    .step-quick-dates {
        padding: 10px 12px;
        gap: 8px;
    }

    .step-quick-date-btn {
        font-size: 12px;
        padding: 8px 6px;
        letter-spacing: 1px;
    }

    .step-calendar-wrap {
        padding: 12px 10px;
    }

    .step-calendar-header {
        margin-bottom: 12px;
    }

    .step-calendar-month-title {
        font-size: 18px;
    }

    .step-calendar-nav-btn {
        font-size: 18px;
        padding: 2px 8px;
    }

    .step-calendar-weekdays {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .step-calendar-days-grid {
        gap: 4px;
    }

    .step-cal-day {
        padding: 8px 2px;
        font-size: 14px;
    }

    .step-timings-header {
        padding: 10px 12px;
        font-size: 10px;
    }

    .step-time-slot-item {
        padding: 12px 8px;
        font-size: 17px;
    }

    .step-end-time-col {
        padding: 15px 10px;
        font-size: 12px;
    }

    .step-enquiry-box {
        padding: 16px 12px;
    }

    .step-summary-banner {
        font-size: 13px;
    }

    .btn-step-submit {
        font-size: 15px;
        padding: 12px 16px;
    }
}

/* ==========================================================================
   AROLAX AGENCY THEME ANIMATIONS & HOMEPAGE SECTIONS (NO BACKGROUNDS, BORDERS OR SHADOWS)
   ========================================================================== */

/* Remove background, border, and box-shadow from homepage cards & sections */
.fc-section,
.smart-section-card,
.corporate-banner,
.arolax-card,
.arolax-accordion-wrap,
.arolax-counter-box,
.arolax-faq-box,
.arolax-cta-banner,
.arolax-marquee-wrap {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Keyframe Animations */
@keyframes floatBadge {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes marqueeTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Floating Hero Badges */
.arolax-hero-badge {
    position: absolute;
    background: rgba(14, 18, 24, 0.85);
    border: 1px solid rgba(210, 156, 63, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    z-index: 4;
    animation: floatBadge 6s ease-in-out infinite;
}

.arolax-hero-badge.badge-top-left {
    top: 22%;
    left: 5%;
}

.arolax-hero-badge.badge-bottom-right {
    bottom: 22%;
    right: 5%;
    animation-delay: -3s;
}

@media (max-width: 991px) {
    .arolax-hero-badge { display: none !important; }
}

/* Infinite Marquee Banner (No Background or Border) */
.arolax-marquee-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden;
    padding: 16px 0;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.arolax-marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marqueeTicker 28s linear infinite;
}

.arolax-marquee-content:hover {
    animation-play-state: paused;
}

.arolax-marquee-item {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    padding: 0 25px;
}

.arolax-marquee-item .star-icon {
    color: #d29c3f;
    margin-right: 25px;
    font-size: 14px;
}

/* Arolax Clean Experience Cards (No Border, No Shadow) */
.arolax-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 24px;
    padding: 20px 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.arolax-card:hover {
    transform: translateY(-8px);
}

.arolax-img-wrap {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: none !important;
    box-shadow: none !important;
}

.arolax-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.arolax-card:hover .arolax-img-wrap img {
    transform: scale(1.06);
}

.arolax-num-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d29c3f;
    background: rgba(210, 156, 63, 0.12);
    border: 1px solid rgba(210, 156, 63, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
}

/* Arolax Interactive Accordion List (No Border, No Shadow) */
.arolax-accordion-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 0;
}

.arolax-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 24px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.arolax-accordion-item:last-child {
    border-bottom: none !important;
}

.arolax-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arolax-accordion-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    transition: color 0.3s ease;
}

.arolax-accordion-num {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #d29c3f;
    margin-right: 20px;
}

.arolax-accordion-item.active .arolax-accordion-title,
.arolax-accordion-item:hover .arolax-accordion-title {
    color: #d29c3f;
}

.arolax-accordion-content {
    display: none;
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
}

.arolax-accordion-item.active .arolax-accordion-content {
    display: block;
}

/* Arolax Counter Stats (No Border, No Shadow) */
.arolax-counter-box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.arolax-counter-box:hover {
    transform: translateY(-5px);
}

.arolax-counter-num {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #d29c3f;
    line-height: 1;
    margin-bottom: 8px;
}

.arolax-counter-label {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Arolax FAQ Accordion (No Outer Border, No Shadow) */
.arolax-faq-box {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.arolax-faq-header {
    padding: 20px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.arolax-faq-header i {
    color: #d29c3f;
    transition: transform 0.3s ease;
}

.arolax-faq-box.active .arolax-faq-header i {
    transform: rotate(180deg);
}

.arolax-faq-body {
    padding: 0 10px 20px 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.6;
    display: none;
}

.arolax-faq-box.active .arolax-faq-body {
    display: block;
}

/* Arolax CTA Banner (No Border, No Shadow) */
.arolax-cta-banner {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   CUSTOM ORGANIC IMAGE SHAPE STYLES
   ========================================================================== */

.smart-img-wrap {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.smart-img-wrap img {
    transition: transform 0.6s ease;
    width: 100%;
    display: block;
}

.smart-img-wrap:hover img {
    transform: scale(1.04);
}

/* Shape 1: Top-Left & Bottom-Right Curves */
.smart-shape-1,
.smart-shape-1 img {
    border-radius: 55px 15px 55px 15px !important;
}
 
/* Shape 2: Top-Right & Bottom-Left Curves */
.smart-shape-2,
.smart-shape-2 img {
    border-radius: 15px 55px 15px 55px !important;
}
 
/* Shape Arch: Grand Top Arch */
.smart-shape-arch,
.smart-shape-arch img {
    border-radius: 70px 70px 20px 20px !important;
}

/* Shape Pill/Notch: Diagonal Dynamic Cut */
.smart-shape-pill,
.smart-shape-pill img {
    border-radius: 45px 12px 45px 12px !important;
}

/* Gold Accent Border Overlay on Shaped Images */
.smart-gold-border {
    border: 2px solid rgba(210, 156, 63, 0.4) !important;
    transition: border-color 0.3s ease;
}
.smart-gold-border:hover {
    border-color: rgba(210, 156, 63, 0.85) !important;
}

/* Update fc-image-wrap for shaped look */
.fc-image-wrap.smart-shape-arch {
    border-radius: 70px 70px 20px 20px !important;
    overflow: hidden;
}
.fc-image-wrap.smart-shape-arch img {
    border-radius: 70px 70px 20px 20px !important;
}

/* ==========================================================================
   INSTAGRAM FEED / GALLERY STYLES
   ========================================================================== */
.insta-grid-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(210, 156, 63, 0.25);
}
.insta-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25) !important;
    border-color: rgba(210, 156, 63, 0.7);
}
.insta-grid-card .insta-img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.insta-grid-card:hover .insta-img {
    transform: scale(1.08);
}
.insta-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
    opacity: 0.92;
    transition: opacity 0.3s ease;
}
.insta-grid-card:hover .insta-card-overlay {
    opacity: 1;
}
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   RANELAGH'S TAVERN PREMIUM LIVERPOOL NIGHTLIFE DESIGN & GSAP STYLES
   ========================================================================== */

:root {
    --gold-main: #d4af37;
    --gold-glow: #e5c158;
    --gold-subtle: rgba(212, 175, 55, 0.2);
    --gold-light: #f3e5ab;
    --emerald-night: #061913;
    --emerald-dark: #0a241b;
    --charcoal-bg: #0d1110;
    --black-bg: #070908;
    --glass-dark: rgba(10, 30, 23, 0.65);
}

.font-cinzel {
    font-family: 'Cinzel', Georgia, serif !important;
}

.font-playfair {
    font-family: 'Playfair Display', Georgia, serif !important;
}

.font-oswald {
    font-family: 'Oswald', sans-serif !important;
}

.bg-emerald-night {
    background-color: var(--emerald-night) !important;
}

.bg-charcoal {
    background-color: var(--charcoal-bg) !important;
}

.bg-black {
    background-color: var(--black-bg) !important;
}

.bg-dark-glass {
    background: var(--glass-dark) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.text-gold {
    color: var(--gold-main) !important;
}

.text-gold-light {
    color: var(--gold-light) !important;
}

.bg-gold-tag {
    background-color: var(--gold-main) !important;
}

.bg-gold-subtle {
    background-color: var(--gold-subtle) !important;
}

.border-gold-glow {
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(212, 175, 55, 0.1) !important;
}

.border-gold-subtle {
    border-color: rgba(212, 175, 55, 0.25) !important;
}

.border-gold-y {
    border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.max-w-600 { max-width: 600px; }
.max-w-650 { max-width: 650px; }
.max-w-750 { max-width: 750px; }
.max-w-500 { max-width: 500px; }
.letter-spacing-2 { letter-spacing: 2px; }
.letter-spacing-3 { letter-spacing: 3px; }
.letter-spacing-4 { letter-spacing: 4px; }
.sec-padding { padding: 90px 0; }

/* Hero Nightlife Section with Swiper Autoplay Slider */
.hero-nightlife-sec {
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 105px;
    padding-bottom: 60px;
}

.hero-swiper {
    z-index: 0;
}

.hero-swiper .swiper-slide {
    opacity: 0 !important;
    transition: opacity 1.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
    pointer-events: none;
}

.hero-swiper .swiper-slide-active,
.hero-swiper .swiper-slide-duplicate-active {
    opacity: 1 !important;
    pointer-events: auto;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    animation: heroKenBurns 14s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    0% { transform: scale(1.04) rotate(0.01deg); }
    100% { transform: scale(1.12) rotate(0.01deg); }
}

.hero-dark-vignette {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #000000a8;
    z-index: 1;
    pointer-events: none;
}

/* Swiper Navigation Arrows */
.hero-swiper-prev,
.hero-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(8, 26, 18, 0.75);
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.35s ease;
    backdrop-filter: blur(8px);
}

.hero-swiper-prev { left: 24px; }
.hero-swiper-next { right: 24px; }

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
    background: #d4af37;
    color: #061913;
    border-color: #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.hero-swiper-pagination {
    bottom: 20px !important;
    z-index: 10;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.35s ease;
    margin: 0 6px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #d4af37;
    width: 32px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

/* Central Hero Content Wrapper (Transparent over Slider) */
.hero-content-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: relative;
}

.bg-dark-glass-subtle {
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.text-gold-gradient {
    background: linear-gradient(135deg, #fff2c6 0%, #e6be53 40%, #b88b20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
}

.hero-flourish-tag {
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
}

.gold-flourish-symbol {
    font-size: 16px;
    margin: 0 6px;
    color: #e6be53;
}

.bg-emerald-subtle {
    background: rgba(10, 41, 25, 0.6);
    backdrop-filter: blur(6px);
}

.hero-hours-pill {
    background: linear-gradient(135deg, #165332 0%, #0d351f 100%);
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #e6be53;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(212, 175, 55, 0.2);
    display: inline-block;
}

.hero-card-desc {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.btn-gold-card {
    background: linear-gradient(135deg, #e6be53 0%, #c49929 100%) !important;
    color: #061a10 !important;
    border: 1px solid #fff2c6 !important;
    letter-spacing: 2px;
    font-family: 'Cinzel', sans-serif;
    font-size: 15px;
    transition: all 0.35s ease !important;
}

.btn-gold-card:hover {
    background: linear-gradient(135deg, #fff2c6 0%, #e6be53 100%) !important;
    color: #04100a !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6) !important;
}

/* Button & Card Utilities */
.btn-gold-neon {
    background: linear-gradient(135deg, #d4af37 0%, #b58d24 100%) !important;
    color: #061913 !important;
    border: none !important;
    letter-spacing: 1.5px;
    transition: all 0.35s ease !important;
}

.btn-gold-neon:hover {
    background: linear-gradient(135deg, #e5c158 0%, #d4af37 100%) !important;
    color: #061913 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5) !important;
}

.btn-outline-gold-glow {
    border: 2px solid var(--gold-main) !important;
    color: var(--gold-main) !important;
    background: transparent !important;
    letter-spacing: 1.5px;
    transition: all 0.35s ease !important;
}

.btn-outline-gold-glow:hover {
    background: var(--gold-main) !important;
    color: #061913 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35) !important;
}

/* Mobile Responsiveness for Hero Card & Arrows */
@media (max-width: 991.98px) {
    .hero-swiper-prev { left: 10px; width: 42px; height: 42px; font-size: 15px; }
    .hero-swiper-next { right: 10px; width: 42px; height: 42px; font-size: 15px; }
    .hero-card-title { font-size: 2.4rem !important; }
    .hero-emerald-card { padding: 1.75rem 1.25rem !important; }
}

@media (max-width: 575.98px) {
    .hero-swiper-prev, .hero-swiper-next { display: none !important; }
    .hero-card-title { font-size: 1.8rem !important; }
    .hero-card-subtitle { font-size: 1rem !important; letter-spacing: 2px !important; }
    .hero-card-desc { font-size: 0.9rem !important; line-height: 1.5 !important; }

    .hero-address-wrap {
        padding: 6px 14px !important;
        max-width: 100% !important;
        white-space: normal !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .hero-address-wrap span {
        font-size: 0.82rem !important;
        line-height: 1.3 !important;
        word-break: break-word;
    }
    .hero-address-wrap i {
        font-size: 0.85rem !important;
    }

    .hero-hours-pill {
        padding: 6px 14px !important;
        font-size: 0.78rem !important;
        letter-spacing: 1px !important;
        white-space: normal !important;
        max-width: 100% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .btn-gold-neon {
        padding: 10px 24px !important;
        font-size: 0.85rem !important;
        letter-spacing: 1.5px !important;
        max-width: 100% !important;
        white-space: normal !important;
    }
}

/* GSAP Ticker Marquee */
.ticker-marquee-wrap {
    width: 100%;
}

.ticker-marquee-content {
    gap: 45px;
    width: max-content;
}

.ticker-item {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-main);
    text-transform: uppercase;
}

/* Nightlife Cards */
.nightlife-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.nightlife-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.25) !important;
    border-color: var(--gold-main) !important;
}

.card-badge-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    transform: rotate(45deg);
    background: #dc3545;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    z-index: 3;
}

.card-img-wrap {
    height: 200px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nightlife-card:hover .card-img {
    transform: scale(1.08);
}

/* Gallery Cards */
.gallery-nightlife-card {
    height: 240px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.gallery-nightlife-card:hover {
    transform: scale(1.04);
    border-color: var(--gold-main);
}

.gallery-nightlife-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nightlife-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 25, 19, 0.75);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-nightlife-card:hover .gallery-nightlife-overlay {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .sec-padding { padding: 60px 0; }
    .hero-main-title { font-size: 2.5rem !important; }
    .hero-subtitle { font-size: 1rem !important; letter-spacing: 2px !important; }
    .border-end-md { border-end: none !important; border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important; padding-bottom: 12px; }
}

/* ==========================================================
   SUBSCRIBE FOR UPDATES & SPECIAL OFFERS SECTION (WHITE BG)
   ========================================================== */
.subscribe-section {
    position: relative;
    background: #f3f3f3 !important;
    color: #111111 !important;
    padding: 70px 0;
}

.script-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    color: #c59b27 !important;
    background: linear-gradient(135deg, #d8b456 0%, #b88a20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subscribe-tag-text {
    color: #222222 !important;
    font-weight: 700;
    letter-spacing: 2px;
}

.subscribe-input {
    background: #fdf8e8 !important;
    border: 1px solid #e2d2a4 !important;
    color: #222222 !important;
    border-radius: 8px !important;
    padding: 0.75rem 1.25rem !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease !important;
}

.subscribe-input::placeholder {
    color: #a09270 !important;
}

.subscribe-input:focus {
    background: #ffffff !important;
    border-color: #c59b27 !important;
    box-shadow: 0 0 12px rgba(197, 155, 39, 0.35) !important;
    outline: none !important;
}

.btn-subscribe-gold {
    background: linear-gradient(135deg, #d8b456 0%, #c49929 100%);
    color: #ffffff !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-subscribe-gold:hover {
    background: linear-gradient(135deg, #c49929 0%, #a87f1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 155, 39, 0.5);
    color: #ffffff !important;
}

/* Special Offer Banner Image Frame */
.special-offer-card-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border: 2px solid #c59b27;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.special-offer-card-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.special-offer-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================================
   MOBILE & TABLET RESPONSIVE MEDIA QUERIES
   ========================================================== */
@media (max-width: 767.98px) {
    .subscribe-section {
        padding: 45px 15px !important;
    }

    .script-title {
        font-size: 2.6rem !important;
        line-height: 1.2 !important;
    }

    .subscribe-tag-text {
        font-size: 0.85rem !important;
        letter-spacing: 1px !important;
    }

    .subscribe-input {
        min-height: 48px;
        font-size: 0.95rem !important;
    }

    .btn-subscribe-gold {
        min-height: 48px;
        font-size: 1rem !important;
    }

    .special-offer-card-wrap {
        border-width: 1.5px;
    }
}

@media (max-width: 575.98px) {
    .subscribe-section {
        padding: 35px 12px !important;
    }

    .subscribe-section .script-title {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }

    .subscribe-tag-text {
        font-size: 0.72rem !important;
        letter-spacing: 1px !important;
    }

    .gold-flourish-symbol {
        font-size: 12px !important;
    }

    .subscribe-input {
        min-height: 44px !important;
        font-size: 0.88rem !important;
        text-align: center !important;
        border-radius: 8px !important;
    }

    .btn-subscribe-gold {
        min-height: 44px !important;
        font-size: 0.92rem !important;
        letter-spacing: 1px !important;
        width: 100% !important;
        border-radius: 8px !important;
    }

    .special-offer-card-wrap {
        border-radius: 10px;
    }
}

/* ==========================================================================
   RANELAGH'S TAVERN OFFICIAL FOOTER STYLING
   ========================================================================== */
.ranelaghs-custom-footer { 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 0;
    margin-top: 0;
}

.footer-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 10, 0.92) 0%, rgba(4, 6, 5, 0.96) 100%);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.footer-icon-circle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bg-gold-gradient {
    background: linear-gradient(135deg, #d8b456 0%, #b88a20 100%);
}

.text-gold-light {
    color: #e5c46d !important;
}

.hover-gold {
    transition: color 0.3s ease;
}
.hover-gold:hover {
    color: #d8b456 !important;
    text-shadow: 0 0 10px rgba(216, 180, 86, 0.4);
}

.footer-map-card {
    border: 1px solid rgba(212, 175, 55, 0.35);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.footer-map-card:hover {
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25) !important;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 767.98px) {
    .ranelaghs-custom-footer {
        padding-bottom: 1rem;
    }
    .footer-torn-top-banner svg {
        height: 24px !important;
    }
    .ranelaghs-custom-footer .script-title {
        font-size: 1.35rem !important;
        margin-bottom: 0.75rem !important;
    }
    .footer-map-card iframe {
        height: 190px !important;
    }
    .footer-icon-circle {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

.card-header {
    padding: 20px 15px;
}


.table thead th {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #475569;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 18px;
    white-space: nowrap;
}
.table td {
    padding: 14px 18px;
    vertical-align: middle;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}
 