/*
Theme Name:   BOLD PROPERTIES
Theme URI:    https://richardbold.com/
Description:  Premium Real Estate Child Theme for Richard Bold Real Estate
Author:       Richard Bold Developer
Author URI:   https://richardbold.com/
Template:     bold-properties-parent
Version:      1.0.3
Text Domain:  bold-properties
*/

/* ========================================
   LAYER 1: DESIGN TOKENS
   CSS custom properties — no specificity
   ======================================== */

/* --- GLOBAL TOKENS (COPIED FROM BRAND DESIGN SYSTEM) --- */
:root {
    /* Colors mapped to design_system_colors.md */
    --bg-canvas: #FDFBF7;
    --text-primary: #1E1C1C;
    --text-body: #1E1C1C; /* Darkened for enhanced readability */
    --text-muted: rgba(30, 28, 28, 0.8); /* Darkened from 0.7 */
    --text-light: rgba(30, 28, 28, 0.45);
    
    --accent-green-start: #4A5A4E; /* Sage Green support accent */
    --accent-terracotta: #A53F2B;
    --accent-sandstone: #D1A082;
    --input-bg: #F5F2EA;
    --border-warm: rgba(30, 28, 28, 0.08);
    
    --card-bg: #FFFFFF; /* Light Mode card background */
    --header-bg: #FFFFFF;
    --form-input-bg: #FFFFFF; /* Light Mode input background */

    /* WhatsApp Semantic Colors (Light Mode) */
    --whatsapp-text: #4A5A4E;
    --whatsapp-bg-hover: rgba(74, 90, 78, 0.05);
    --whatsapp-border-hover: rgba(74, 90, 78, 0.2);

    /* Fonts */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-tactile: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Spacing Tokens */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;

    /* Shadow Tokens */
    --shadow-soft: 0 10px 30px rgba(30, 28, 28, 0.02);
    --shadow-premium: 0 15px 40px rgba(30, 28, 28, 0.04);
    --shadow-hover: 0 20px 45px rgba(30, 28, 28, 0.08);
}

/* --- DARK THEME VARIABLES OVERRIDE --- */
body.dark-theme {
    --bg-canvas: #1E1C1C; /* Softer, warmer obsidian charcoal canvas background */
    --text-primary: #FAF7F2; /* Light cream plaster text */
    --text-body: #FAF7F2;
    --text-muted: rgba(250, 247, 242, 0.8);
    --text-light: rgba(250, 247, 242, 0.45); /* Clear placeholder opacity */
    
    --accent-green-start: #D1A082; /* Sage Green shifts to Sandstone Gold for dark mode contrast */
    --input-bg: #181616; /* Recessed well background */
    --border-warm: rgba(209, 160, 130, 0.28); /* Highly visible sandstone gold border */
    
    --card-bg: #262424; /* Elevated warm slate charcoal card */
    --header-bg: #262424;
    --form-input-bg: #181616; /* Recessed input background */

    /* WhatsApp Semantic Colors (Dark Mode Legible Green) */
    --whatsapp-text: #9AB2A1;
    --whatsapp-bg-hover: rgba(154, 178, 161, 0.08);
    --whatsapp-border-hover: rgba(154, 178, 161, 0.25);

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-premium: 0 15px 40px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* ========================================
   LAYER 2: BASE STYLES
   Element selectors — lowest specificity
   ======================================== */

/* --- SELECTION OVERRIDES --- */
::selection {
    background: rgba(209, 160, 130, 0.25);
    color: currentColor;
}
body.dark-theme ::selection {
    background: rgba(196, 90, 69, 0.3);
    color: #FAF7F2;
}

/* --- BASE STYLES --- */
body {
    background-color: var(--bg-canvas);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Typography Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--text-primary);
    line-height: 1.25;
    font-weight: 700;
}

/* --- KINETIC CONTRAST TYPOGRAPHY --- */
.weight-slim {
    font-weight: 300;
}
.weight-bold {
    font-weight: 800;
    text-transform: uppercase;
}
.heading-kinetic-hero {
    font-size: clamp(2.2rem, 6vw, 4rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}
.heading-kinetic-hero span {
    display: block;
}

/* ========================================
   LAYER 3: GLOBAL COMPONENTS
   Single-class selectors for shared UI
   ======================================== */

/* --- STICKY NAV HEADER --- */
.site-navigation-bar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--border-warm);
    padding: 20px 0;
    transition: var(--transition-smooth);
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}
.site-logo {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-logo .weight-slim {
    font-weight: 300;
    text-transform: uppercase;
}
.site-logo .weight-bold {
    font-weight: 800;
    text-transform: uppercase;
}

.desktop-menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}
.desktop-menu-list a {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}
.desktop-menu-list a:hover {
    color: var(--accent-terracotta);
}
.desktop-menu-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-terracotta);
    transition: var(--transition-smooth);
}
.desktop-menu-list a:hover::after {
    width: 100%;
}

/* Hamburger Button */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    outline: none;
}
.hamburger-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
    transform-origin: center;
}
.hamburger-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Language Switcher Styling */
.lang-switcher-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    user-select: none;
}
.lang-link {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition-smooth);
    cursor: pointer;
}
.lang-link:hover {
    color: var(--accent-terracotta);
}
.lang-link.is-active {
    color: var(--text-primary);
}
.lang-divider {
    color: var(--border-warm);
}

/* --- MOBILE OVERLAY NAVIGATION DRAWER --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-canvas);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.mobile-menu-overlay.is-active {
    transform: translateY(0);
}
.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
}
.mobile-menu-list a {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}
.mobile-menu-list a:hover {
    color: var(--accent-terracotta);
    font-weight: 700;
}

/* --- PREMIUM BUTTON STATES --- */
.btn-terracotta, .btn-community-light, .btn-charcoal-primary, .btn-whatsapp-subtle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-tactile);
}

/* 1. Terracotta CTA */
.btn-terracotta {
    background-color: var(--accent-terracotta);
    color: #FFFFFF;
    border-color: var(--accent-terracotta);
}
.btn-terracotta:hover {
    background-color: transparent;
    color: var(--accent-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(165, 63, 43, 0.12);
}
body.dark-theme .btn-terracotta:hover {
    background-color: #B94B35;
    border-color: #B94B35;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(165, 63, 43, 0.3);
}
.btn-terracotta:active {
    transform: translateY(0);
    background-color: #8c3020;
    border-color: #8c3020;
    color: #FFFFFF;
}

/* 2. Light Community CTA */
.btn-community-light {
    background-color: #FAF7F2;
    color: var(--accent-terracotta);
    border-color: #FAF7F2;
}
.btn-community-light:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 28, 28, 0.08);
}
.btn-community-light:active {
    transform: translateY(0);
    background-color: #eae6df;
    border-color: #eae6df;
}

/* 3. Charcoal Primary CTA */
.btn-charcoal-primary {
    background-color: var(--text-primary);
    color: var(--bg-canvas);
    border-color: var(--text-primary);
}
.btn-charcoal-primary:hover {
    background-color: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(165, 63, 43, 0.2);
    color: #FFFFFF;
}
.btn-charcoal-primary:active {
    transform: translateY(0);
    background-color: #000000;
    border-color: #000000;
}
body.dark-theme .btn-charcoal-primary:active {
    background-color: #E2DDD3;
    border-color: #E2DDD3;
    color: #1E1C1C;
}

/* 4. WhatsApp CTA */
.btn-whatsapp-subtle {
    background-color: var(--input-bg);
    color: var(--whatsapp-text);
    border: 1px solid var(--border-warm);
    font-size: 1.02rem;
    text-transform: none;
    font-weight: 600;
    padding: 12px 24px;
}
.btn-whatsapp-subtle:hover {
    background-color: var(--whatsapp-bg-hover);
    border-color: var(--whatsapp-border-hover);
    color: var(--whatsapp-text);
    transform: translateY(-2px);
}
.btn-whatsapp-subtle:active {
    transform: translateY(0);
    background-color: var(--whatsapp-bg-hover);
    opacity: 0.8;
}
.btn-whatsapp-subtle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ========================================
   LAYER 4: PLUGIN OVERRIDES
   !important is JUSTIFIED here — Forminator
   and Elementor inject their own CSS that
   must be overridden for brand consistency.
   ======================================== */

/* --- FORMS & INPUT WELLS (Forminator Styles Overrides) --- */
/* !important required: Forminator plugin loads its own scoped CSS dynamically */
.forminator-custom-form,
.forminator-custom-form *,
.forminator-ui,
.forminator-ui *,
.form-input,
.form-textarea,
.form-select,
.forminator-input,
.forminator-textarea,
.forminator-select {
    box-sizing: border-box !important;
}
/* Hide form field labels (rely on placeholder texts instead) */
.form-label, 
.forminator-label, 
.single-bold_property .inquiry-form label {
    display: none !important;
}
.form-input, .form-textarea, .form-select,
.forminator-input, .forminator-textarea, .forminator-select {
    width: 100%;
    background-color: var(--form-input-bg) !important;
    border: 1px solid rgba(30, 28, 28, 0.12) !important;
    border-radius: 8px !important;
    padding: 16px 20px !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    outline: none !important;
    box-shadow: none !important;
    transition: var(--transition-smooth) !important;
}
body.dark-theme .form-input, 
body.dark-theme .form-textarea, 
body.dark-theme .form-select,
body.dark-theme .forminator-input, 
body.dark-theme .forminator-textarea, 
body.dark-theme .forminator-select {
    border-color: var(--border-warm) !important;
}
.form-select, .forminator-select {
    appearance: none !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23A53F2B' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    background-size: 16px !important;
    cursor: pointer !important;
}
.form-input::placeholder, .form-textarea::placeholder,
.forminator-input::placeholder, .forminator-textarea::placeholder {
    color: var(--text-light) !important;
    opacity: 1 !important;
}
.form-input:focus, .form-textarea:focus, .form-select:focus,
.forminator-input:focus, .forminator-textarea:focus, .forminator-select:focus {
    border-color: var(--accent-terracotta) !important;
    box-shadow: 0 0 0 3px rgba(165, 63, 43, 0.08) !important;
    background-color: var(--form-input-bg) !important;
}
.forminator-row.forminator-row-last {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 0 !important;
}
.forminator-button-submit {
    background-color: var(--accent-terracotta) !important;
    background-image: none !important;
    text-shadow: none !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 18px !important;
    font-family: var(--font-headings) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-shadow: 0 8px 24px rgba(165, 63, 43, 0.15) !important;
    display: block !important;
    height: auto !important;
    line-height: 1.2 !important;
    box-sizing: border-box !important;
}
.forminator-button-submit:hover {
    background-color: #8A3524 !important;
    background-image: none !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 28px rgba(165, 63, 43, 0.25) !important;
}
body.dark-theme .forminator-button-submit:hover {
    background-color: #B94B35 !important;
    background-image: none !important;
    color: #FFFFFF !important;
    box-shadow: 0 12px 28px rgba(165, 63, 43, 0.35) !important;
}
.forminator-button-submit:focus,
.forminator-button-submit:active {
    outline: none !important;
    border: none !important;
    background-image: none !important;
    box-shadow: 0 8px 24px rgba(165, 63, 43, 0.15) !important;
}

/* Hide Forminator Character Limit / Count Counters */
.forminator-character-limit,
.forminator-counter,
.forminator-textarea-limit,
.forminator-description {
    display: none !important;
}

/* Forces columns to stay side-by-side on desktop if preset disables CSS grid */
/* NOTE: display must NOT use !important — Forminator applies inline display:none  */
/*       after successful submit; !important would block that native hide behavior */
.forminator-custom-form .forminator-row:not(.forminator-hidden) {
    display: flex;
    flex-wrap: wrap !important;
    margin-right: -10px !important;
    margin-left: -10px !important;
}
.forminator-col {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
    box-sizing: border-box !important;
    margin-bottom: 15px !important;
}
.forminator-col-1 { width: 8.33% !important; flex: 0 0 8.33% !important; max-width: 8.33% !important; }
.forminator-col-2 { width: 16.66% !important; flex: 0 0 16.66% !important; max-width: 16.66% !important; }
.forminator-col-3 { width: 25% !important; flex: 0 0 25% !important; max-width: 25% !important; }
.forminator-col-4 { width: 33.33% !important; flex: 0 0 33.33% !important; max-width: 33.33% !important; }
.forminator-col-5 { width: 41.66% !important; flex: 0 0 41.66% !important; max-width: 41.66% !important; }
.forminator-col-6 { width: 50% !important; flex: 0 0 50% !important; max-width: 50% !important; }
.forminator-col-7 { width: 58.33% !important; flex: 0 0 58.33% !important; max-width: 58.33% !important; }
.forminator-col-8 { width: 66.66% !important; flex: 0 0 66.66% !important; max-width: 66.66% !important; }
.forminator-col-9 { width: 75% !important; flex: 0 0 75% !important; max-width: 75% !important; }
.forminator-col-10 { width: 83.33% !important; flex: 0 0 83.33% !important; max-width: 83.33% !important; }
.forminator-col-11 { width: 91.66% !important; flex: 0 0 91.66% !important; max-width: 91.66% !important; }
.forminator-col-12 { width: 100% !important; flex: 0 0 100% !important; max-width: 100% !important; }

@media (max-width: 767px) {
    .forminator-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* --- Forminator validation and submit alerts --- */
/* Sleek, premium inline helper alerts that do not push fields apart */
.forminator-error-message {
    color: var(--accent-terracotta) !important;
    font-size: 0.75rem !important;
    font-family: var(--font-body) !important;
    margin-top: 5px !important;
    margin-left: 15px !important; /* Indent to align with curved input texts */
    margin-bottom: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    display: block !important;
}

/* Hide all general response message summaries (errors/submitting) above the form inputs */
/* We keep it in document flow with visibility and 0 height to prevent scroll-to-top (0 offset) jumps */
.forminator-response-message {
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    pointer-events: none !important;
}
/* Only display and style the response banner on successful form submission */
.forminator-response-message.forminator-success {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    pointer-events: auto !important;
    border-radius: 12px !important;
    padding: 24px 30px !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    margin-bottom: 25px !important;
    font-family: var(--font-body) !important;
    line-height: 1.6 !important;
    border: 1px solid rgba(74, 90, 78, 0.3) !important;
    background-color: rgba(74, 90, 78, 0.08) !important;
    color: #2E4D37 !important; /* Rich readable forest green */
    box-sizing: border-box !important;
    text-align: center !important;
}
body.dark-theme .forminator-response-message.forminator-success {
    background-color: rgba(154, 178, 161, 0.1) !important;
    border-color: rgba(154, 178, 161, 0.3) !important;
    color: #A3CBB3 !important; /* High contrast green for dark mode */
}

/* ========================================
   LAYER 3 (continued): SHARED COMPONENTS
   No !important — scoped selectors win by
   specificity + cascade order (priority 25)
   ======================================== */

/* --- WHATSAPP PRE-FOOTER QUICK CTA BANNER --- */
.whatsapp-prefooter-banner {
    background-color: var(--accent-terracotta);
    border-top: none;
    padding: 80px 0;
    width: 100%;
    color: #FAF7F2;
    position: relative;
    overflow: hidden;
}
.whatsapp-prefooter-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.whatsapp-prefooter-banner .prefooter-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}
.whatsapp-prefooter-banner .prefooter-container h2 {
    font-family: var(--font-headings);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 12px;
    font-weight: 700;
    color: #FAF7F2;
    letter-spacing: -0.01em;
}
.whatsapp-prefooter-banner .prefooter-container p {
    color: rgba(250, 247, 242, 0.85);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-weight: 300;
    line-height: 1.7;
}
.whatsapp-prefooter-banner .prefooter-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.whatsapp-prefooter-banner .prefooter-ctas .btn-terracotta {
    background: #FAF7F2;
    color: var(--accent-terracotta);
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.whatsapp-prefooter-banner .prefooter-ctas .btn-terracotta:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
}
.whatsapp-prefooter-banner .tea-link {
    font-family: var(--font-headings);
    color: #FAF7F2;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid rgba(250, 247, 242, 0.4);
    padding-bottom: 4px;
    transition: var(--transition-smooth);
}
.whatsapp-prefooter-banner .tea-link:hover {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
}

/* --- 4-COLUMN PREMIUM FOOTER --- */
.site-footer-premium {
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-warm);
    padding: 80px 0 30px 0;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}
.site-footer-premium .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-grid-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-column h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 25px;
    color: var(--text-primary);
}
.footer-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu-links li {
    margin-bottom: 12px;
}
.footer-menu-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}
.footer-menu-links a:hover {
    color: var(--accent-terracotta);
    padding-left: 4px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-warm);
    color: var(--text-muted);
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.footer-social-icon:hover {
    background-color: var(--accent-terracotta);
    color: #FFFFFF;
    border-color: var(--accent-terracotta);
}
.footer-newsletter-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.footer-newsletter-row {
    display: flex;
    gap: 10px;
}
.footer-newsletter-row input {
    background-color: var(--form-input-bg);
    border: 1px solid var(--border-warm);
    flex-grow: 1;
    outline: none;
    color: var(--text-primary);
    font-size: 0.9rem;
}
.footer-newsletter-row button {
    flex-shrink: 0;
}
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-warm);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-light);
    flex-wrap: wrap;
    gap: 20px;
}

/* --- THEME CUSTOMIZER CUSTOM STYLES --- */
.site-logo.compact-logo span:nth-child(2) {
    display: none;
}

@media (max-width: 991px) {
    .footer-grid-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .site-navigation-bar {
        padding: 15px 0;
    }
    .desktop-menu-list, .lang-switcher-wrapper {
        display: none;
    }
    .hamburger-toggle {
        display: flex;
    }
    .footer-grid-columns {
        grid-template-columns: 1fr;
    }
    .footer-newsletter-row {
        flex-direction: column;
    }
}

/* --- THEME SWITCHER STYLING --- */
/* Scoped under .site-navigation-bar for specificity over Elementor */
.site-navigation-bar .theme-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--input-bg);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid var(--border-warm);
    transition: var(--transition-smooth);
}
.site-navigation-bar .theme-switch-label {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    user-select: none;
}
.site-navigation-bar .theme-switch-btn {
    width: 50px;
    height: 26px;
    border-radius: 15px;
    background-color: var(--border-warm);
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    outline: none;
    transition: var(--transition-smooth);
    box-shadow: none;
    line-height: 1;
    display: inline-block;
}
.site-navigation-bar .theme-switch-handle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-terracotta);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
body.dark-theme .site-navigation-bar .theme-switch-btn {
    background-color: var(--accent-green-start);
}
body.dark-theme .site-navigation-bar .theme-switch-handle {
    transform: translateX(24px);
    background-color: var(--bg-canvas);
}

/* --- LOGO STYLING --- */
/* Scoped under .site-navigation-bar for specificity */
.site-navigation-bar .site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0px;
    font-family: var(--font-headings);
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

/* --- GLOBAL CONTAINER CONSTRAINTS --- */
/* !important required: Fights Elementor's .elementor-section container system */
.container {
    width: 90% !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
/* Force parent theme wrappers to go edge-to-edge for property page template */
.page-template-property-detail #content,
.page-template-property-detail .site-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Boxed Layout Core Styles */
html {
    background-color: var(--input-bg);
    transition: background-color 0.4s ease;
}
body.layout-boxed {
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--bg-canvas);
    box-shadow: 0 0 50px rgba(30, 28, 28, 0.05);
    position: relative;
}
body.layout-boxed .site-navigation-bar {
    max-width: 1400px;
    width: 100%;
    left: auto;
    right: auto;
}
.site-navigation-bar .site-logo .weight-slim {
    font-weight: 300;
    color: var(--text-primary);
}
.cell-map-pin:hover .map-cell-overlay {
    opacity: 1;
}

/* ========================================
   LAYER 5: PROPERTY DETAIL PAGE COMPONENTS
   Scoped under .single-bold_property body
   class for specificity over Elementor.
   No !important needed.
   ======================================== */

/* --- PROPERTY DETAIL FULL-WIDTH TEMPLATE OVERRIDES --- */
/* Replaces inline style="" attributes from single-bold_property.php */
.single-bold_property .property-detail-fw-page {
    margin-top: 0;
    padding-top: 0;
}
.single-bold_property .property-detail-fw-page > .container-fluid {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

/* --- NEW HERO TOPBAR GRID (Map as Square, height 500px) --- */
.single-bold_property .hero-media-grid {
    display: grid;
    grid-template-columns: 1fr 500px; /* Map is 500px wide (perfect square) */
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.single-bold_property .hero-media-image-wrapper {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-warm);
}
.single-bold_property .hero-media-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.single-bold_property .hero-media-map-card {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-warm);
    height: 500px;
    position: relative;
}
@media (max-width: 1199px) {
    .single-bold_property .hero-media-grid {
        grid-template-columns: 1fr 400px;
    }
    .single-bold_property .hero-media-image-wrapper,
    .single-bold_property .hero-media-map-card {
        height: 400px;
    }
}
@media (max-width: 991px) {
    .single-bold_property .hero-media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .single-bold_property .hero-media-image-wrapper,
    .single-bold_property .hero-media-map-card {
        height: 350px;
    }
}
@media (max-width: 767px) {
    .single-bold_property .hero-media-image-wrapper,
    .single-bold_property .hero-media-map-card {
        height: 280px;
    }
}

/* --- TITLE & QUESTION CTA --- */
.single-bold_property .property-main-title {
    font-family: var(--font-headings);
    font-size: clamp(1.8rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
    margin-bottom: 10px;
}
.single-bold_property .property-main-title span {
    font-weight: 800; /* Bold inside span */
    text-transform: uppercase;
}
.single-bold_property .property-main-title .weight-slim {
    font-weight: 300;
    text-transform: none;
}
.single-bold_property .property-main-title .weight-bold {
    font-weight: 800;
    text-transform: uppercase;
}
.single-bold_property .btn-question-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-terracotta);
    color: #FFFFFF;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    margin-left: auto; /* Align to the far right on specs row */
    box-shadow: 0 8px 24px rgba(165, 63, 43, 0.15);
}
.single-bold_property .btn-question-cta:hover {
    background-color: #863020; /* Muted terracotta hover */
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(165, 63, 43, 0.25);
}

/* --- SPECS DASHBOARD --- */
.single-bold_property .specs-dashboard-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 45px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-warm);
    flex-wrap: wrap;
}
.single-bold_property .spec-dashboard-item {
    display: flex;
    flex-direction: column;
}
.single-bold_property .spec-dashboard-value {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.single-bold_property .spec-dashboard-value.highlight-green {
    color: var(--accent-terracotta); /* Premium brand terracotta instead of cheap green */
}
.single-bold_property .spec-dashboard-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* --- GALLERY BELOW HERO --- */
.single-bold_property .masonry-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.single-bold_property .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: var(--input-bg);
    border: 1px solid var(--border-warm);
    cursor: pointer;
    aspect-ratio: 1 / 1;
}
.single-bold_property .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}
.single-bold_property .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}
.single-bold_property .gallery-item:hover img {
    transform: scale(1.04);
}
.single-bold_property .gallery-overlay-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 28, 28, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
@media (max-width: 767px) {
    .single-bold_property .masonry-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .single-bold_property .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* --- SPLIT LAYOUT & TABLES --- */
.single-bold_property .detail-split-container {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: start;
    box-sizing: border-box;
}
.single-bold_property .detail-split-left {
    width: 100%;
    box-sizing: border-box;
}
.single-bold_property .inquiry-sidebar {
    width: 100%;
    position: sticky;
    top: 100px;
    background-color: var(--input-bg);
    border: 1px solid var(--border-warm);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(30, 28, 28, 0.06), 0 2px 8px rgba(30, 28, 28, 0.04);
    overflow: hidden; /* Force zero leakage */
    box-sizing: border-box; /* Force padding inward, not expanding width */
}
.single-bold_property .agent-profile-card {
    display: flex;
    align-items: center;
    gap: 30px; /* Increased spacing between image and text */
    border-bottom: 1px solid var(--border-warm);
    padding-bottom: 24px;
    margin-bottom: 30px;
    box-sizing: border-box;
}
.single-bold_property .agent-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Circle shape as requested */
    object-fit: cover;
    border: 2px solid var(--bg-canvas);
    box-shadow: 0 4px 12px rgba(30, 28, 28, 0.08);
    flex-shrink: 0;
}
.single-bold_property .agent-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
}
.single-bold_property .agent-title {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    text-transform: uppercase;
    font-family: var(--font-headings);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
    line-height: 1;
}
.single-bold_property .agent-info h4 {
    font-family: var(--font-headings);
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.1;
}
.single-bold_property .agent-contact-details {
    margin-top: 10px; /* Distinct spacing between name and contacts */
}
.single-bold_property .agent-contact-details a {
    display: block;
    font-size: 1.05rem; /* Larger and easily readable */
    font-family: var(--font-body);
    font-weight: 500; /* Medium weight as requested */
    color: var(--text-primary) !important; /* Premium high-contrast charcoal */
    text-decoration: none;
    margin-top: 6px;
    transition: var(--transition-smooth);
    line-height: 1.3;
}
.single-bold_property .agent-contact-details a strong {
    color: var(--text-light); /* Soft uppercase labels */
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 4px;
    font-family: var(--font-headings);
}
.single-bold_property .agent-contact-details a:hover {
    color: var(--accent-terracotta) !important; /* Elegant brand highlight */
}

/* Mobile responsiveness for agent profile card */
@media (max-width: 575px) {
    .single-bold_property .agent-profile-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .single-bold_property .agent-info {
        min-height: auto;
        align-items: center;
    }
}
.single-bold_property .inquiry-sidebar h5 {
    font-family: var(--font-headings);
    font-size: 1.4rem; /* Prominent headline */
    font-weight: 700;
    margin: 0 0 30px 5px; /* 5px left margin, 30px bottom margin */
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: normal;
}
.single-bold_property .specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 48px;
}
.single-bold_property .specs-table tr {
    border-bottom: 1px solid var(--border-warm);
    transition: var(--transition-smooth);
}
.single-bold_property .specs-table tr:hover {
    background-color: rgba(30, 28, 28, 0.01);
}
.single-bold_property .specs-table td {
    padding: 20px 10px;
    font-size: 1.05rem;
}
.single-bold_property .specs-table td.label {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    width: 35%;
    text-align: left;
}
.single-bold_property .specs-table td.value {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    text-align: left;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.single-bold_property .detail-split-left h3 {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.single-bold_property .detail-split-left h3:first-of-type {
    margin-top: 0;
}
.single-bold_property .detail-text {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.7;
}
.single-bold_property .detail-text p:first-of-type {
    margin-bottom: 20px;
    font-size: 1.2rem;
    line-height: 1.6;
}
.single-bold_property .detail-text p strong {
    color: var(--text-primary);
    font-weight: 700;
}
.single-bold_property .specs-section {
    margin-bottom: 40px;
}
.single-bold_property .specs-section h4 {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--accent-terracotta);
    display: inline-block;
    padding-bottom: 4px;
}
.single-bold_property .spec-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.4;
}
@media (max-width: 1199px) {
    .single-bold_property .detail-split-container {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }
}
@media (max-width: 991px) {
    .single-bold_property .detail-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .single-bold_property .inquiry-sidebar {
        position: relative;
        top: 0;
    }
}

/* --- FAQ SECTION --- */
.single-bold_property .faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-warm);
}
.single-bold_property .faq-title {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.single-bold_property .accordion-item {
    border-bottom: 1px solid var(--border-warm);
    padding: 20px 0;
}
.single-bold_property .accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px 0;
    outline: none;
}
.single-bold_property .accordion-icon {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition-smooth);
}
.single-bold_property .accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--accent-terracotta);
}

/* --- TERRACOTTA BOTTOM CTA BANNER --- */
.community-banner-full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: var(--accent-terracotta);
    color: #FAF7F2;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}
.community-banner-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.community-banner-full .community-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 50px;
    align-items: center;
}
.community-banner-full .community-banner-text h3 {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #FAF7F2;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.community-banner-full .community-banner-text .community-tagline {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 247, 242, 0.6);
    margin-bottom: 16px;
    display: block;
}
.community-banner-full .community-banner-text p {
    font-size: 1.05rem;
    color: rgba(250, 247, 242, 0.85);
    margin: 0 0 28px;
    line-height: 1.7;
    font-weight: 300;
}
.community-banner-full .btn-light-community {
    background-color: #FAF7F2;
    color: var(--accent-terracotta);
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
}
.community-banner-full .btn-light-community:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: #FFFFFF;
}
.community-banner-full .community-banner-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(250, 247, 242, 0.15);
}
@media (max-width: 768px) {
    .community-banner-full .community-banner-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 24px;
    }
    .community-banner-full {
        padding: 50px 0;
    }
}


/* --- GALLERY MAP PIN STYLING --- */
.single-bold_property .cell-map-pin {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}
.single-bold_property .cell-map-pin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.single-bold_property .cell-map-pin:hover img {
    transform: scale(1.05);
}
.single-bold_property .cell-map-pin:hover .map-cell-overlay {
    opacity: 1;
}

/* --- HIGHLIGHTS ICONS ROW --- */
.single-bold_property .highlights-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    padding: 24px 0;
    border-top: 1px solid var(--border-warm);
    border-bottom: 1px solid var(--border-warm);
}
.single-bold_property .highlight-icon-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.single-bold_property .highlight-icon-badge svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--accent-terracotta); /* Premium brand terracotta */
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Responsive layout for floor plan grid on mobile devices */
@media (max-width: 767px) {
    .single-bold_property .floor-plan-grid-w {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- PREMIUM LIGHTBOX SYSTEM --- */
.bold-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 28, 28, 0.95); /* Dark charcoal backdrop */
    z-index: 999999; /* High enough to overlay navigation bars */
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 20px 0;
    box-sizing: border-box;
    user-select: none;
}

.bold-lightbox .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.bold-lightbox .lightbox-content img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(253, 251, 247, 0.1);
}

.bold-lightbox .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: opacity 0.2s;
    z-index: 1000000;
}

.bold-lightbox .lightbox-close:hover {
    color: var(--accent-terracotta);
}

.bold-lightbox .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(253, 251, 247, 0.05);
    border: 1px solid rgba(253, 251, 247, 0.1);
    color: #fff;
    padding: 18px 24px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1000000;
}

.bold-lightbox .lightbox-nav:hover {
    background: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    transform: translateY(-50%) scale(1.1);
}

.bold-lightbox .lightbox-prev {
    left: 40px;
}

.bold-lightbox .lightbox-next {
    right: 40px;
}

.bold-lightbox .lightbox-caption {
    color: #fff;
    margin-top: 15px;
    font-family: var(--font-headings);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Lightbox Thumbnails styling */
.bold-lightbox .lightbox-thumbnails {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    overflow-x: auto;
    box-sizing: border-box;
    margin-top: 20px;
    scrollbar-width: none; /* Firefox */
}

.bold-lightbox .lightbox-thumbnails::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.bold-lightbox .lightbox-thumb-item {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.bold-lightbox .lightbox-thumb-item:hover {
    opacity: 0.8;
}

.bold-lightbox .lightbox-thumb-item.active {
    opacity: 1;
    border-color: var(--accent-terracotta);
}

.bold-lightbox .lightbox-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .bold-lightbox .lightbox-nav {
        padding: 10px 16px;
        font-size: 18px;
    }
    .bold-lightbox .lightbox-prev {
        left: 10px;
    }
    .bold-lightbox .lightbox-next {
        right: 10px;
    }
    .bold-lightbox .lightbox-close {
        top: 20px;
        right: 20px;
    }
    .bold-lightbox .lightbox-content img {
        max-height: 50vh;
    }
    .bold-lightbox .lightbox-thumbnails {
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .bold-lightbox .lightbox-thumb-item {
        width: 60px;
        height: 45px;
        scroll-snap-align: center;
        border-radius: 8px; /* Slightly smaller border radius for tiny mobile thumbs */
    }
}

/* --- NATIVE INQUIRY FORM FALLBACK STYLES --- */
/* Custom fallback form (not Forminator) — no plugin CSS to fight */
.single-bold_property .inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}
.single-bold_property .inquiry-form div {
    display: flex;
    flex-direction: column;
}
.single-bold_property .inquiry-form label {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.single-bold_property .inquiry-input,
.single-bold_property .inquiry-textarea {
    width: 100%;
    background-color: var(--form-input-bg);
    border: 1px solid var(--border-warm);
    border-radius: 8px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}
.single-bold_property .inquiry-input::placeholder,
.single-bold_property .inquiry-textarea::placeholder {
    color: var(--text-light);
    opacity: 1;
}
.single-bold_property .inquiry-input:focus,
.single-bold_property .inquiry-textarea:focus {
    border-color: var(--accent-terracotta);
    background-color: var(--form-input-bg);
    box-shadow: 0 0 0 3px rgba(165, 63, 43, 0.08);
}
.single-bold_property .inquiry-textarea {
    resize: vertical;
    min-height: 100px;
}
.single-bold_property .submit-btn {
    background: var(--accent-terracotta);
    color: #FFFFFF;
    border: none;
    padding: 18px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(165, 63, 43, 0.15);
    width: 100%;
}
.single-bold_property .submit-btn:hover {
    background: #8A3524;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(165, 63, 43, 0.25);
}
body.dark-theme .single-bold_property .submit-btn:hover {
    background: #B94B35;
}
.single-bold_property .inquiry-success {
    display: none;
    text-align: center;
    padding: 40px 0;
    box-sizing: border-box;
}
.single-bold_property .inquiry-success svg {
    width: 48px;
    height: 48px;
    color: var(--accent-green-start);
    margin-bottom: 20px;
}
body.dark-theme .single-bold_property .inquiry-success svg {
    color: #9AB2A1; /* Sage green tone for dark mode */
}
