:root {
    --primary-color: #1f4f2f;   /* Luxury Deep Green */
    --accent-color: #d7a94b;    /* Premium Gold Accent */
    --dark-charcoal: #222222;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Custom Navigation UI Styling */
.navbar {
    background-color: var(--primary-color) !important;
    border-bottom: 3px solid var(--accent-color);
}
.navbar-brand, .nav-link {
    color: var(--white) !important;
    font-weight: 500;
}
.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Presentation Grid */
.hero-section {
    background: linear-gradient(rgba(31, 79, 47, 0.85), rgba(31, 79, 47, 0.9)), url('../../imgs/cado.png') no-repeat center center/cover;
    color: var(--white);
    padding: 100px 0;
}

/* UI Cards and Structural Accents */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
}
.btn-primary-custom:hover {
    background-color: var(--accent-color);
    color: var(--dark-charcoal);
}
.btn-accent {
    background-color: var(--accent-color);
    color: var(--dark-charcoal);
    font-weight: 600;
}
.btn-accent:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.text-primary-custom {
    color: var(--primary-color);
}
.text-accent {
    color: var(--accent-color);
}

/* Cookie Policy Consent Notice */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-charcoal);
    color: var(--white);
    z-index: 1050;
    display: none;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
}

/* Floating Real-time Consultation Widget */
.chat-widget-container {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 1000;
}

.chat-box {
    width: 320px;
    height: 400px;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    background: #e5ddd5;
}

/* Custom clean-ups for the integrated contact layout */
#location .ratio {
    max-height: 200px; /* Limits the vertical space of the map so it doesn't push down layout */
    background-color: #e9ecef; /* Clean fallback skeleton background while iframe loads */
}

/* Ensure the columns cleanly match up structural heights */
.align-items-stretch {
    align-items: stretch !important;
}