:root {
    --primary: #c5a059; /* Gold accent */
    --dark: #111111;
    --light: #f9f9f9;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

.section-padding { 
    padding: 5rem 0; 
}

.bg-light { 
    background-color: var(--light); 
}

/* Base Responsive Grid Utility */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

/* Navigation */
header { 
    background: var(--dark); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1rem 0; 
    position: relative;
}

.logo img, .footer-logo img {
    height: 60px; 
    width: auto;
    display: block;
}

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

.nav-links li a { 
    text-decoration: none; 
    color: var(--white); 
    margin: 0 1rem; 
    font-weight: 600; 
    transition: 0.3s;
}

.nav-links li a:hover { 
    color: var(--primary); 
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    order: 3;
}

/* Hero Section */
.hero { 
    height: 70vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: var(--white); 
    background-size: cover !important; 
    background-position: center !important;
    padding: 0 1rem;
}

.hero h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 3.5rem; 
    margin-bottom: 1rem; 
    line-height: 1.2;
}

/* Buttons */
.btn-main { 
    background: var(--primary); 
    color: white; 
    padding: 1rem 2.5rem; 
    text-decoration: none; 
    font-weight: bold; 
    display: inline-block;
    transition: 0.3s ease;
}

.btn-main:hover {
    background: #b38f4b;
}

.btn-outline { 
    border: 2px solid var(--primary); 
    background: transparent; 
    padding: 0.6rem 1.2rem; 
    cursor: pointer; 
    transition: 0.3s; 
}

.btn-outline:hover { 
    background: var(--primary); 
    color: white; 
}

.btn-small { 
    background: var(--primary); 
    color: white; 
    padding: 0.5rem 1.2rem; 
    text-decoration: none; 
    border-radius: 4px; 
    font-size: 0.9rem; 
    font-weight: bold;
}

/* Premium Highlighted Read More Tabs */
.read-more {
    display: inline-block;
    text-decoration: none;
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--primary);
    background: rgba(197, 160, 89, 0.04); /* Subtle gold tint accent */
    margin-top: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 4px;
}

.read-more:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

/* Layout Component Grids */
.section-title { 
    text-align: center; 
    margin-bottom: 3rem; 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
}

.property-grid, .testimonial-grid, .blog-grid, .spotlight-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem; 
}

.card, .testimonial-card, .blog-card, .spotlight-card { 
    background: var(--white); 
    border-radius: 5px; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.card img { 
    width: 100%; 
    height: 250px; 
    object-fit: cover; 
}

.card-body { 
    padding: 1.5rem; 
}

/* About Section Global Sizing Constraints */
.sub-heading {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.about-features { 
    margin: 2rem 0; 
}

.feature-item { 
    display: flex; 
    gap: 1.5rem; 
    margin-bottom: 1.5rem; 
}

.feature-item i { 
    font-size: 1.5rem; 
    color: var(--primary); 
    margin-top: 5px; 
}

.about-image img {
    width: 100%;
    max-height: 400px; /* Constrains image height globally on large monitors */
    object-fit: cover; /* Prevents squishing or distortion patterns */
    border-radius: 10px;
    box-shadow: 20px 20px 0px var(--primary);
}

/* CTA Banner Section */
.cta-banner { 
    background: var(--dark); 
    color: white; 
    padding: 4rem 0; 
}

.flex-cta { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.cta-text h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2rem; 
    color: var(--primary); 
}

.cta-action { 
    text-align: right; 
}

.cta-action span { 
    display: block; 
    font-size: 0.8rem; 
    letter-spacing: 2px; 
    margin-bottom: 0.5rem; 
}

.cta-number { 
    font-size: 1.8rem; 
    color: white; 
    text-decoration: none; 
    font-weight: bold; 
}

/* Spotlight Card Elements */
.spotlight-card { 
    border: 1px solid #eee; 
    transition: 0.3s; 
}

.spotlight-img { 
    height: 300px; 
    background-size: cover; 
    background-position: center; 
}

.spotlight-info { 
    padding: 1.5rem; 
}

.spotlight-info h3 { 
    font-family: 'Playfair Display', serif; 
    margin-bottom: 1rem; 
}

/* Tour Frame */
.tour-section {
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.tour-box h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
}

.tour-box p { 
    max-width: 700px; 
    margin: 0 auto 2rem auto; 
}

/* Testimonials Layout */
.testimonial-card { 
    padding: 2rem; 
    border-bottom: 3px solid var(--primary); 
}

.client-info { 
    margin-top: 1.5rem; 
    border-top: 1px solid #eee; 
    padding-top: 1rem; 
}

.client-info strong { 
    display: block; 
    color: var(--dark); 
}

.client-info span { 
    font-size: 0.8rem; 
    color: var(--primary); 
}

/* Blogs Section */
.blog-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    margin-bottom: 2rem; 
}

.blog-image { 
    height: 200px; 
    background-size: cover; 
    background-position: center; 
}

.blog-content { 
    padding: 1.5rem; 
}

.blog-content h3 { 
    font-family: 'Playfair Display', serif; 
    margin-bottom: 1rem; 
}

/* Contact Page Form Fields */
.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-form-container input:focus, 
.contact-form-container textarea:focus {
    border-color: var(--primary) !important;
}

/* Main Global Footer Area */
.main-footer { 
    background: #111; 
    color: #bbb; 
    padding-top: 4rem; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 3rem; 
    padding-bottom: 3rem; 
}

.footer-col h3, .footer-col h4 { 
    color: white; 
    margin-bottom: 1.5rem; 
}

.footer-col ul { 
    list-style: none; 
}

.footer-col li { 
    margin-bottom: 0.8rem; 
}

.footer-col a { 
    color: #bbb; 
    text-decoration: none; 
    transition: 0.2s ease;
}

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

.footer-phone { 
    color: var(--primary); 
    font-size: 1.4rem; 
    font-weight: bold; 
    text-decoration: none; 
}

.contact-list li {
    display: flex;
    margin-bottom: 1rem;
}

.contact-list li i { 
    color: var(--primary); 
    margin-right: 12px;
    margin-top: 5px;
}

.footer-bottom { 
    background: #000; 
    text-align: center; 
    padding: 1.5rem 0; 
    border-top: 1px solid #222; 
}

/* ==========================================================================
   MEDIA QUERIES (Mobile-Friendly Breakpoints)
   ========================================================================== */

@media (max-width: 992px) {
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-padding {
        padding: 3.5rem 0;
    }

    /* Mobile Navigation Drawer System */
    .menu-toggle { 
        display: block; 
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111111;
        padding: 1.5rem 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.3);
        border-top: 1px solid #222;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 1rem 0;
    }

    .nav-links li a {
        margin: 0;
        font-size: 1.1rem;
        display: block;
    }

    .btn-small {
        order: 2;
        margin-left: auto;
        margin-right: 1.5rem;
    }

    /* Typography Scaling */
    .hero h1 { 
        font-size: 2.3rem; 
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    /* Section Component Layout adjustments */
    .flex-cta {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

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

    .blog-header { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 1rem; 
    }

    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 2rem;
    }

    .contact-list li {
        justify-content: center;
    }

    .about-image img {
        box-shadow: 12px 12px 0px var(--primary);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    .btn-main {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}