/* CSS Variable Definitions for Consistent Branding */
:root {
    --primary-color: #d4af37; /* Warm Gold */
    --primary-dark: #aa841c;
    --bg-light: #ffffff;
    --bg-card: #f9f9f9;
    --text-dark: #121212;
    --text-muted: #666666;
    --border-color: rgba(0, 0, 0, 0.1);
    --font-sans: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: #ffffff !important;
    color: #121212 !important;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    background-color: #ffffff !important;
}

/* Force all section/div text to be visible — override any Elementor dark defaults */
.elementor-section,
.elementor-container,
.elementor-widget-container,
.elementor-column,
.e-con,
.e-con-inner {
    color: inherit;
}

/* Ensure headings are always visible dark text unless explicitly set light */
h1, h2, h3, h4, h5, h6 {
    color: #121212;
}

p, span, li, td, th, label {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation Styles */
.site-header {
    background: #ffffff !important;
    border-bottom: 1px solid var(--border-color) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 999999 !important;
    padding: 4px 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
}

.elementor-section,
.elementor-top-section {
    z-index: 1 !important;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 60px !important;
}

.site-branding img {
    display: block;
}

.dl-nav {
    display: flex;
    align-items: center;
}

.dl-main-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.dl-main-menu > li {
    position: relative;
    padding: 4px 0;
}

.dl-main-menu a {
    font-size: 1rem;
    font-weight: 500;
}

/* Dropdown Sub-menu Styles */
.menu-item-has-children {
    position: relative !important;
}

.menu-item-has-children .sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
    border-radius: 8px !important;
    min-width: 230px !important;
    display: none !important;
    flex-direction: column !important;
    padding: 8px 0 !important;
    box-shadow: 0 14px 35px rgba(0,0,0,0.18) !important;
    list-style: none !important;
    margin: 0 !important;
    z-index: 9999999 !important;
    pointer-events: auto !important;
}

.menu-item-has-children .sub-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu,
.menu-item-has-children.active .sub-menu {
    display: flex !important;
}

.sub-menu li a {
    padding: 10px 20px !important;
    display: block !important;
    font-size: 0.92rem !important;
    color: #121212 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s !important;
    white-space: nowrap !important;
}

.sub-menu li a:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    color: #aa841c !important;
}

.btn-contact {
    background-color: var(--primary-color);
    color: #121212 !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600 !important;
}

.btn-contact:hover {
    background-color: var(--primary-dark);
}

/* Burger/Mobile Menu Trigger */
.dl-menu-btn {
    display: none;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    padding: 10px;
    z-index: 100000 !important;
    -webkit-tap-highlight-color: transparent;
}

.burger-menu {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line-menu {
    display: block !important;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color) !important;
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}

/* Burger Animation on Active state */
.dl-menu-btn.active .first-line {
    transform: translateY(8px) rotate(45deg);
}

.dl-menu-btn.active .middle-line {
    opacity: 0;
}

.dl-menu-btn.active .last-line {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive Menu rules */
@media (max-width: 991px) {
    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 999999 !important;
    }
    
    .header-inner {
        position: relative !important;
    }

    .dl-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(212, 175, 55, 0.12) !important;
        border: 1px solid rgba(212, 175, 55, 0.4) !important;
        border-radius: 8px;
        cursor: pointer;
        padding: 0 !important;
        z-index: 1000000 !important;
    }

    .burger-menu {
        width: 22px;
        height: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .line-menu {
        background-color: var(--primary-color) !important;
        height: 2.5px;
        width: 100%;
        border-radius: 3px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .dl-menu-btn.active .first-line,
    .burger-menu.menu-open .first-line {
        transform: translateY(6.5px) rotate(45deg);
    }
    .dl-menu-btn.active .middle-line,
    .burger-menu.menu-open .middle-line {
        opacity: 0;
    }
    .dl-menu-btn.active .last-line,
    .burger-menu.menu-open .last-line {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    html body .site-header .dl-nav {
        position: fixed !important;
        top: 75px !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        border-bottom: 4px solid var(--primary-color) !important;
        box-shadow: 0 20px 45px rgba(0,0,0,0.25) !important;
        display: none !important;
        flex-direction: column !important;
        padding: 20px 25px 30px !important;
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
        z-index: 999999 !important;
        transform: none !important;
        visibility: visible !important;
    }

    html body .site-header .dl-nav.active,
    html body .site-header .dl-nav.menu-open {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    body .dl-main-menu {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    body .dl-main-menu > li {
        width: 100% !important;
        border-bottom: 1px solid rgba(0,0,0,0.08) !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    body .dl-main-menu > li:last-child {
        border-bottom: none !important;
    }

    body .dl-main-menu a {
        color: #121212 !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        display: block !important;
        width: 100% !important;
        padding: 14px 0 !important;
    }

    body .menu-item-has-children .sub-menu {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        padding: 5px 0 10px 15px !important;
        border: none !important;
        background: #fdfdfd !important;
        margin-top: 0 !important;
        list-style: none !important;
    }

    body .menu-item-has-children.active .sub-menu,
    body .menu-item-has-children.menu-open .sub-menu {
        display: block !important;
    }

    /* Hero Mobile Responsive Layout */
    .hero-banner {
        height: 580px !important;
        min-height: 580px !important;
        max-height: 580px !important;
        position: relative !important;
        overflow: hidden !important;
    }
    .hero-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.2) 100%) !important;
    }
    .hero-content {
        max-width: 100% !important;
        top: 30px !important;
        bottom: auto !important;
        padding: 0 20px !important;
        z-index: 10 !important;
    }
    .hero-super {
        font-size: 0.76rem !important;
        margin-bottom: 6px !important;
        letter-spacing: 0.16em !important;
        color: #d4af37 !important;
        text-shadow: 0 1px 4px rgba(0,0,0,0.8) !important;
    }
    .hero-heading {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
        color: #ffffff !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.8) !important;
    }
    .hero-desc {
        font-size: 0.85rem !important;
        line-height: 1.48 !important;
        margin-bottom: 18px !important;
        max-width: 86% !important;
        color: rgba(255, 255, 255, 0.95) !important;
        background: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        text-shadow: 0 1px 6px rgba(0,0,0,0.9) !important;
    }
    .hero-action-buttons {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        margin-top: 0 !important;
        z-index: 12 !important;
    }
    .hero-btn.gold-btn,
    .hero-btn.glass-btn {
        padding: 11px 18px !important;
        font-size: 0.78rem !important;
        border-radius: 25px !important;
        text-align: center !important;
    }
    .hero-couple-cutout {
        right: -10px !important;
        height: 240px !important;
        max-height: 240px !important;
        bottom: 0 !important;
        z-index: 1 !important;
        opacity: 0.92 !important;
        pointer-events: none !important;
        filter: drop-shadow(0 6px 15px rgba(0,0,0,0.6)) !important;
    }
}

/* Footer Styles */
.footer-widget-section {
    background-color: #0d0d0d !important;
    padding: 70px 0 50px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
}

.widget h3 {
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #a0a0a0;
    margin: 20px 0 25px 0;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links li {
    margin: 0;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-btn.facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

.social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border-color: transparent;
}

.social-btn.youtube:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon-wrapper {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #a0a0a0;
}

.contact-text a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.footer-links-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-menu li {
    margin: 0;
    padding: 0;
}

.footer-links-menu li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links-menu li a:hover {
    color: var(--primary-color);
    transform: translateX(6px);
}

.site-bottom-footer {
    background-color: #060606 !important;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    font-size: 0.88rem;
    color: #777777;
}

.site-bottom-footer span {
    color: var(--primary-color);
    font-weight: 500;
}

.text-center {
    text-align: center;
}

/* Fix massive SVG icons scaling out of bounds */
svg {
    max-width: 100%;
}
.dl-slider-controls svg,
.dl-slider-button-prev svg,
.dl-slider-button-next svg {
    width: 24px !important;
    height: 24px !important;
    display: inline-block;
}
.topbar-contact-info svg {
    width: 14px !important;
    height: 14px !important;
}
.dl-social-profiles svg {
    width: 18px !important;
    height: 18px !important;
}

/* Force-hide stuck preloaders to prevent blocking page layout rendering */
.slider-preloader,
.preloader {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Force all Elementor layout animations to be visible by default on static PHP pages */
body .elementor-invisible,
body .elementor-element.elementor-invisible,
body [class*="elementor-invisible"],
body [data-settings*="animation"] {
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

/* Force all Grid Gallery items to be visible by default */
.grid-gallery li {
    opacity: 1 !important;
}

/* Premium Typography & Spacing Overrides */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #121212;
}

/* Center and align all main headings */
.headng-wrap,
.headng-wrap.center,
.headng-wrap.left,
.section-heading {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-heading h2 {
    font-family: 'Outfit', 'Playfair Display', sans-serif !important;
    font-size: 2.6rem !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    text-transform: capitalize !important;
    letter-spacing: 0.03em !important;
    color: var(--primary-dark) !important;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px;
    height: 2.5px;
    background-color: var(--primary-color);
}

@media (max-width: 991px) {
    .elementor-section-height-min-height,
    .elementor-section.elementor-top-section {
        min-height: auto !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    .headng-wrap,
    .headng-wrap.center,
    .section-heading {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
        padding: 0 !important;
    }
    .section-heading h2 {
        font-size: 1.55rem !important;
        padding-bottom: 8px !important;
        margin-bottom: 5px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 96vw !important;
    }
    .section-heading h2::after {
        width: 40px !important;
        height: 2px !important;
    }
}

.headng-wrap.left .section-heading h2::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Logo treatments — targeted class so nothing else interferes */
.site-branding {
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.site-logo-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: normal !important;
}

/* The PNG logo is 887×368 px (ratio ≈ 2.41). 
   At max-height: 72px the text row reads cleanly at all viewport sizes. */
.site-logo-img {
    height: auto !important;
    width: auto !important;
    max-height: 78px !important;
    max-width: 300px !important;
    object-fit: contain;
    display: block;
    margin: 0 !important;
}

/* Fallback for any stray .site-branding img not using the new class */
.site-branding img:not(.site-logo-img) {
    height: 50px !important;
    width: auto !important;
    object-fit: contain;
}

.widget-brand img {
    height: 110px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain;
}

/* Luxury Concierge Form Styling */
.wpforms-container {
    max-width: 650px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.wpforms-field-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wpforms-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wpforms-field-label {
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600 !important;
    color: #333333;
}

.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="tel"],
.wpforms-field textarea,
.wpforms-field select {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 6px !important;
    background-color: #fafafa !important;
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
    color: #121212 !important;
    transition: border-color var(--transition-speed), background-color var(--transition-speed);
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    background-color: #ffffff !important;
}

.wpforms-submit-container {
    margin-top: 30px;
    text-align: center;
}

.wpforms-submit {
    background-color: var(--primary-color) !important;
    color: #121212 !important;
    padding: 14px 36px !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.wpforms-submit:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* ============================================================
   OVERRIDE: Ensure white backgrounds are always applied
   These override any elementor/plugin CSS that might set
   transparent or dark backgrounds on body/sections.
   ============================================================ */

html, body {
    background-color: #ffffff !important;
    color: #121212;
}

/* Sections that should be white/light */
.elementor-section,
.elementor-top-section,
.e-con,
.e-parent,
section:not(.dark-section):not(.hero-section):not(.footer) {
    background-color: transparent;
}

/* Ensure page wrapper is white */
.elementor-inner,
.elementor-container {
    background-color: transparent;
}

/* Fix any dark body override from Elementor kit or theme */
body.elementor-page {
    background-color: #ffffff !important;
}

/* ============================================================
   CRITICAL FIX: Elementor sections with background_background:classic
   Previously set to white via WordPress dynamic CSS (now missing).
   These sections must explicitly be white.
   ============================================================ */

/* All elementor sections default to white background */
.elementor-section[data-settings*="background_background"],
.e-con[data-settings*="background_background"],
.elementor-element[data-settings*="background_background"] {
    background-color: #ffffff;
}

/* Except dark/hero sections which use their own backgrounds */
.elementor-section[data-settings*="background_background"].elementor-section-height-min-height:first-child {
    background-color: transparent;
}

/* General safety: all sections white unless they have explicit inline bg */
section.elementor-section:not([style*="background"]) {
    background-color: #ffffff;
}

/* The "Why Choose" and venue info sections - force white */
.elementor-section-content-middle,
.elementor-section-boxed {
    background-color: #ffffff;
}

/* ============================================================
   GUARD: Protect our custom dark/hero sections from being
   overridden by the white-background rules above.
   ============================================================ */

/* Homepage custom sections */
.about-stats-bar,
.video-banner-section,
.hero-slider {
    background-color: revert !important;
}

/* About page dark stats bar */
.about-stats-bar {
    background-color: #121212 !important;
}

/* Hero slides keep their own image backgrounds */
.hero-slider,
.about-hero {
    background-color: #111 !important;
}

/* Footer dark sections always dark */
.footer-widget-section {
    background-color: #1a1a1a !important;
}
.site-bottom-footer {
    background-color: #121212 !important;
}

/* ============================================================
   ACCESSIBILITY: Screen reader only utility class
   ============================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   PREMIUM UNIFORM GALLERY & LIGHTBOX POPUP SYSTEM
   ============================================================ */
.grid-gallery,
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 30px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.grid-gallery li,
.gallery-grid li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #f8f8f8 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
    aspect-ratio: 4 / 3 !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.grid-gallery li:hover,
.gallery-grid li:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 32px rgba(0,0,0,0.12) !important;
}

.grid-gallery li a,
.gallery-grid li a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    cursor: zoom-in !important;
}

.grid-gallery li img,
.gallery-grid li img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
    transition: transform 0.5s ease !important;
}

.grid-gallery li:hover img,
.gallery-grid li:hover img {
    transform: scale(1.05) !important;
}

@media (max-width: 991px) {
    .grid-gallery,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .grid-gallery,
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Lightbox popup styling */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 5, 0.95);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.custom-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.custom-lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    transform: scale(0.94);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: zoom-out;
}

.custom-lightbox.active .custom-lightbox-img {
    transform: scale(1);
}

.custom-lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    color: rgba(255,255,255,0.75);
    font-size: 44px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease;
    -webkit-user-select: none;
    user-select: none;
}

.custom-lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    color: #d4af37;
}

.custom-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 42px;
    padding: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: color 0.25s ease, transform 0.25s ease;
    z-index: 10;
}

.custom-lightbox-nav:hover {
    color: #d4af37;
    transform: translateY(-50%) scale(1.15);
}

.custom-lightbox-prev {
    left: 20px;
}

.custom-lightbox-next {
    right: 20px;
}

/* Style elementor video widget to render correctly with pure iframe & video elements in 16:9 format */
.elementor-widget-video {
    position: relative !important;
    width: 100% !important;
    max-width: 980px !important;
    margin: 35px auto !important;
    padding: 0 !important;
}

.elementor-widget-video .elementor-wrapper,
.video-banner-container,
.video-wrapper,
.e-hosted-video {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #000000 !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2) !important;
    margin: 0 auto !important;
}

.elementor-widget-video .elementor-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    aspect-ratio: 16 / 9 !important;
}

/* Fallback for aspect-ratio support */
@supports not (aspect-ratio: 16 / 9) {
    .elementor-wrapper,
    .video-banner-container,
    .video-wrapper,
    .e-hosted-video {
        padding-bottom: 56.25% !important;
        height: 0 !important;
    }
}

.elementor-widget-video iframe,
.elementor-wrapper iframe,
.elementor-wrapper video,
.elementor-video iframe,
.elementor-video video,
.video-banner-container iframe,
.video-banner-container video,
.video-wrapper iframe,
.video-wrapper video,
.e-hosted-video video,
video.elementor-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    object-fit: cover !important;
}

.video-section-header {
    text-align: center;
    margin: 45px 0 20px;
}
.video-section-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #121212;
    margin-bottom: 8px;
}
.video-section-header p {
    font-size: 0.98rem;
    color: #666;
}

/* ============================================================
   RESPONSIVE CONTAINER & PAGE HEADER FIXES
   ============================================================ */
.elementor-container,
.e-con-inner {
    width: 100% !important;
    max-width: 1200px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}

.elementor-section-height-min-height {
    min-height: 180px !important;
    padding: 40px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ============================================================
   CUSTOM PREMIUM VIDEO PLAYER STYLES
   ============================================================ */
.custom-video-card {
    position: relative !important;
    width: 100% !important;
    max-width: 1050px !important;
    aspect-ratio: 16 / 9 !important;
    margin: 35px auto !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #000000 !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.custom-video-card video {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    display: block !important;
}

/* Centered Overlay Play Button */
.custom-video-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: opacity 0.3s ease, background 0.3s ease !important;
    z-index: 2 !important;
}

.custom-video-card.is-playing:not(:hover) .custom-video-overlay {
    opacity: 0 !important;
    pointer-events: none !important;
}

.custom-video-card:hover .custom-video-overlay {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.custom-play-btn-large {
    width: 76px !important;
    height: 76px !important;
    background: rgba(184, 134, 11, 0.9) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5) !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
}

.custom-video-card:hover .custom-play-btn-large {
    transform: scale(1.1) !important;
    background: #b8860b !important;
}

.custom-play-btn-large svg {
    width: 32px !important;
    height: 32px !important;
    fill: currentColor !important;
    margin-left: 4px !important;
}

.custom-video-card.is-playing .custom-play-btn-large svg {
    margin-left: 0 !important;
}

/* Bottom Control Bar */
.custom-video-controls {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent) !important;
    padding: 16px 20px 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    box-sizing: border-box !important;
    z-index: 3 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.custom-video-card:hover .custom-video-controls,
.custom-video-card.is-paused .custom-video-controls {
    opacity: 1 !important;
}

.custom-ctrl-btn {
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    cursor: pointer !important;
    padding: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
}

.custom-ctrl-btn:hover {
    color: #d4af37 !important;
    transform: scale(1.1) !important;
}

.custom-ctrl-btn svg {
    width: 24px !important;
    height: 24px !important;
    fill: currentColor !important;
}

.custom-video-progress-wrap {
    flex: 1 !important;
    position: relative !important;
    height: 6px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    overflow: hidden !important;
}

.custom-video-progress-bar {
    height: 100% !important;
    width: 0% !important;
    background: #b8860b !important;
    border-radius: 3px !important;
    transition: width 0.1s linear !important;
}

.custom-video-time {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    white-space: nowrap !important;
}

/* ==========================================================================
   Golden Brand Theme Overrides (Eliminates Blue Accents on Dark/Black BG)
   ========================================================================== */
.footer-widget-section,
.dark-widget,
.dark-section,
#wrapper-footer,
.site-bottom-footer,
footer {
    background-color: #0d0d0d !important;
    color: #ffffff !important;
}

/* Widget title underlines & accent bars on dark backgrounds */
.widget h3::after,
.widget h3::before,
.widget-title::after,
.widget-title::before,
.widget-title h3::after,
.widget-title h3::before,
.footer-widget .widget-title::after,
.footer-widget .widget-title::before,
.headng-wrap h2::after,
.section-heading h2::after {
    background-color: #d4af37 !important;
    background: #d4af37 !important;
    border-color: #d4af37 !important;
}

/* Footer links and anchor text on dark backgrounds - Golden on hover, never blue */
.footer-widget-section a,
.footer-links-menu li a,
.footer-contact-list a,
.contact-text a,
.site-bottom-footer a,
.dark-widget a,
.dark-section a {
    color: #cccccc !important;
    text-decoration: none !important;
}

.footer-widget-section a:hover,
.footer-widget-section a:focus,
.footer-links-menu li a:hover,
.footer-contact-list a:hover,
.contact-text a:hover,
.site-bottom-footer a:hover,
.dark-widget a:hover,
.dark-section a:hover {
    color: #d4af37 !important;
}

.footer-widget-section a:visited,
.footer-links-menu li a:visited,
.footer-contact-list a:visited,
.contact-text a:visited,
.site-bottom-footer a:visited,
.dark-widget a:visited,
.dark-section a:visited {
    color: #cccccc !important;
}

.contact-icon-wrapper,
.site-bottom-footer span,
.widget-brand span {
    color: #d4af37 !important;
}

/* Button Center Alignment & Golden Styling Overrides */
.wt-button-wrap,
.wt-align-center,
.elementor-widget-wt_bs_button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 25px auto 0 !important;
    width: 100% !important;
}

a.wt-btn,
.wt-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #d4af37 0%, #aa841c 100%) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    border: none !important;
    padding: 14px 34px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

a.wt-btn:hover,
.wt-btn:hover {
    background: linear-gradient(135deg, #e5be48 0%, #bb9325 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5) !important;
    color: #ffffff !important;
}

a.wt-btn span,
.wt-btn span {
    color: #ffffff !important;
}

/* ==========================================================================
   Accordion / FAQ Interactive Styling
   ========================================================================== */
.elementor-accordion {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.elementor-tab-title {
    cursor: pointer !important;
    padding: 20px 24px !important;
    background: #ffffff !important;
    border: 1px solid #e8e8e8 !important;
    margin-bottom: -1px !important;
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.25s ease !important;
    user-select: none !important;
    text-align: left !important;
}

.elementor-tab-title:hover {
    background: #fafafa !important;
}

.elementor-tab-title.active,
.elementor-tab-title.elementor-active {
    background: #fdfbf5 !important;
    border-color: #d4af37 !important;
    z-index: 2;
    position: relative;
}

.elementor-tab-title .elementor-accordion-title {
    font-weight: 700 !important;
    color: #1f2937 !important;
    font-size: 1.02rem !important;
    text-decoration: none !important;
    cursor: pointer !important;
    text-align: left !important;
    flex-grow: 1 !important;
    display: block !important;
}

.elementor-tab-title.active .elementor-accordion-title,
.elementor-tab-title.elementor-active .elementor-accordion-title {
    color: #aa841c !important;
}

.elementor-tab-content {
    display: none;
    padding: 22px 26px !important;
    background: #fcfcfc !important;
    border: 1px solid #e8e8e8 !important;
    border-top: none !important;
    font-size: 0.96rem !important;
    line-height: 1.75 !important;
    color: #4b5563 !important;
}

.elementor-tab-content.active,
.elementor-tab-content.elementor-active {
    display: block !important;
}

.elementor-accordion-icon-opened {
    display: none !important;
}

.elementor-tab-title.active .elementor-accordion-icon-closed,
.elementor-tab-title.elementor-active .elementor-accordion-icon-closed {
    display: none !important;
}

.elementor-tab-title.active .elementor-accordion-icon-opened,
.elementor-tab-title.elementor-active .elementor-accordion-icon-opened {
    display: inline-block !important;
}

.elementor-accordion-icon svg {
    width: 16px !important;
    height: 16px !important;
    fill: #d4af37 !important;
}




