.elementor-40 .elementor-element.elementor-element-866c751{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-40 .elementor-element.elementor-element-5e51f9d{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-40 .elementor-element.elementor-element-5e51f9d > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}body.elementor-page-40{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-40 .elementor-element.elementor-element-866c751{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-5e51f9d *//* --- Variables & Base Styles --- */
:root {
    --color-black: #1A1A1A; /* A deep, rich black */
    --color-white: #F8F8F8; /* Off-white for readability */
    --color-gold: #DAA520; /* Goldenrod - a rich gold */
    --color-dark-gold: #B8860B; /* Darker gold for hover states */
    --color-light-gold: #FFEBCD; /* Blanched Almond - very light gold */

    --font-family-primary: 'Poppins', sans-serif; /* Modern, clean font */
    --font-family-secondary: 'Open Sans', sans-serif; /* Good for body text */
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for rem units */
}

body {
    font-family: var(--font-family-secondary);
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black);
    overflow-x: hidden; /* Prevent horizontal scroll due to padding/margin issues */
}

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

h1, h2, h3 {
    font-family: var(--font-family-primary);
    color: var(--color-white);
    margin-bottom: 0.8em;
}

h1 {
    font-size: 3.5rem; /* ~56px */
    line-height: 1.1;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem; /* ~40px */
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5em;
    padding-top: 1em;
}

h3 {
    font-size: 1.6rem; /* ~26px */
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: var(--color-gold);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-light-gold);
}

.highlight {
    color: var(--color-gold);
    font-weight: 700;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.primary-btn:hover {
    background-color: var(--color-dark-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.secondary-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

.large-btn {
    padding: 18px 36px;
    font-size: 1.3rem;
}

/* --- Header / Navigation --- */
.main-header {
    background-color: rgba(0, 0, 0, 0.9); /* Slightly transparent black */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-family: var(--font-family-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}
/* Style for the active/current page link */
.main-nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none; /* Hidden by default for desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-gold);
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 80vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--color-white);
    background-color: var(--color-black); /* Fallback */
}

.hero-image-placeholder,
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4; /* Darken the image/video */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.hero-content .subheadline {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* --- Section Styling (General) --- */
section {
    padding: 80px 0; /* Default padding for most sections */
}

/* --- About Us Section --- */
.about-us-section {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 100px 20px;
    background-color: var(--color-black);
}

.about-content {
    flex: 2;
    text-align: left;
}

.about-content h2 {
    text-align: left;
    padding-top: 0;
}

.about-content .local-presence {
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.1em;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 50%;
    border: 5px solid var(--color-gold);
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.about-image .image-caption {
    margin-top: 15px;
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 600;
}


/* --- Services Section --- */
.services-section {
    background-color: #222; /* Slightly lighter black */
    color: var(--color-white);
    padding: 50px 0; /* Vertical padding adjusted */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Forces 2 columns for larger screens */
    gap: 30px;
    padding: 0 20px;
}

.service-item {
    background-color: var(--color-black);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.service-item .service-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.service-item h3 {
    margin-top: 0;
    color: var(--color-gold);
}

.service-item p {
    font-size: 0.95rem;
    color: var(--color-white);
}

.service-item a { /* For "Learn more" link in property management */
    font-weight: 600;
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
    background-color: var(--color-black);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.usp-item {
    background-color: #222; /* Slightly lighter black */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--color-gold); /* Add a subtle gold line */
}

.usp-item:hover {
    transform: translateY(-5px);
}

.usp-item .usp-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.usp-item h3 {
    margin-top: 0;
    color: var(--color-gold);
}

.usp-item p {
    font-size: 0.95rem;
    color: var(--color-white);
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: #222; /* Slightly lighter black */
    color: var(--color-white);
    padding: 80px 0; /* Default section padding */
    margin-top: 60px; /* Space from the Why Choose Us section */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.testimonial-item {
    background-color: var(--color-black);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-item .quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.testimonial-item .client-name {
    font-weight: 600;
    color: var(--color-gold);
    text-align: right;
    margin-top: auto; /* Push name to bottom */
}

/* --- Bottom CTA Section --- */
.bottom-cta-section {
    background-color: var(--color-black); /* Changed from var(--color-gold) */
    padding: 40px 0; /* Adjusted top padding to bring it closer */
    text-align: center;
    color: var(--color-gold); /* Changed from var(--color-black) for contrast */
}

.bottom-cta-section h2 {
    color: var(--color-gold); /* Changed from var(--color-black) for contrast */
    margin-bottom: 40px;
    font-size: 2.8rem;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer .footer-links a {
    color: var(--color-white);
    margin: 0 15px;
    transition: color 0.3s ease;
}

.main-footer .footer-links a:hover {
    color: var(--color-gold);
}

/* --- Disclaimer Section --- */
#disclaimer-section {
    padding: 40px 20px;
    background-color: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 60px;
}

#disclaimer-section h2 {
    color: var(--color-black);
    margin-bottom: 1em;
}

#disclaimer-section p {
    color: var(--color-black);
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 1em auto;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-content .subheadline {
        font-size: 1.2rem;
    }

    .main-nav ul {
        margin-left: 0;
    }
    .main-nav ul li {
        margin-left: 20px;
    }

    .about-us-section {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-image img {
        max-width: 250px;
    }

    .bottom-cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .main-header .main-nav {
        display: none; /* Hide nav by default on small screens */
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.3);
        z-index: 999;
        max-height: 0; /* Initially collapsed */
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }

    .main-nav.active {
        display: flex; /* Show nav when active */
        max-height: 300px; /* Adjust as needed to fit all links */
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav ul li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: flex; /* Show hamburger icon */
    }

    /* Hamburger animation */
    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subheadline {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 80%; /* Make buttons full width on small screens */
        margin: 0 auto;
    }

    .about-us-section,
    .usp-grid,
    .testimonials-grid,
    .team-grid, /* Ensure team grid stacks on mobile */
    .values-grid { /* Ensure values grid stacks on mobile */
        grid-template-columns: 1fr;
        padding: 0 15px; /* More padding on very small screens */
    }
    /* Explicitly make services-grid 1 column on mobile (same as it was before) */
    .services-grid {
        grid-template-columns: 1fr;
    }


    .service-item, .usp-item, .testimonial-item {
        padding: 25px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .bottom-cta-section h2 {
        font-size: 1.8rem;
    }

    .large-btn {
        font-size: 1.1rem;
        padding: 15px 30px;
    }

    .main-footer .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content .subheadline {
        font-size: 0.9rem;
    }
    .btn {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
    .large-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
    .service-item h3, .usp-item h3 {
        font-size: 1.4rem;
    }
}


/* --- ADDITIONS FOR ABOUT PAGE STYLING --- */

/* Smaller Hero for internal pages */
.hero-section.small-hero {
    height: 40vh; /* Shorter height than homepage hero */
    min-height: 300px;
}

.hero-section.small-hero .hero-content h1 {
    font-size: 3rem; /* Smaller headline for internal hero */
}

.hero-section.small-hero .hero-content .subheadline {
    font-size: 1.1rem; /* Smaller subheadline */
}

/* Specific styling for the Meet the Team section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
    margin-top: 30px; /* Space from H2 */
}

.team-member {
    /* Reuses usp-item styling but can be overridden */
    background-color: var(--color-black); /* Darker background for team member cards */
}

.team-member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--color-gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.team-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0 auto;
    font-size: 1.1rem;
    color: var(--color-white);
}

/* Adjustments for the values grid (using .service-item styling) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
    margin-top: 30px; /* Space from H2 */
}/* End custom CSS */