/* ==========================================
   LIGHT MODE BRAND COLOR VARIABLES
   ========================================== */
:root {
    --gold: #C5A028;               /* Richer gold for high contrast on light backgrounds */
    --gold-dark: #99781B;
    --onyx: #121212;               /* Deep charcoal/black for readable text */
    --charcoal: #F0EDE6;           /* Soft warm gray for alternate sections */
    --pure-white: #FFFFFF;         /* Cards and container background */
    --alabaster: #FAFAFA;          /* Global light background */
    --slate: #666666;              /* Secondary muted label text */
    --border-color: #E2DDD5;       /* Subtle luxury borders */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--alabaster);
    color: var(--onyx);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--onyx);
    letter-spacing: 0.5px;
}

.brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.py-section {
    padding: 80px 0;
}

.bg-alt {
    background-color: var(--charcoal);
}

.text-center {
    text-align: center;
}

.mt-2 { margin-top: 15px; }
.mt-3 { margin-top: 25px; }
.w-100 { width: 100%; }

.sub-heading {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Header Styles */
.site-header {
    background: rgba(250, 250, 250, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(8px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: var(--onyx);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.main-nav a:hover {
    color: var(--gold-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn-gold-solid {
    background-color: var(--gold);
    color: var(--pure-white);
    padding: 12px 24px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(197, 160, 40, 0.2);
}

.btn-gold-solid:hover {
    background-color: var(--gold-dark);
}

.btn-gold-outline {
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    padding: 8px 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-gold-outline:hover {
    background-color: var(--gold);
    color: var(--pure-white);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75); /* Light overlay for video integration */
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--onyx);
}

.hero-text p {
    color: var(--slate);
    font-size: 1.1rem;
}

.hero-form-card {
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.hero-form-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: var(--slate);
    font-weight: 500;
}

.form-group select, .form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    background: var(--alabaster);
    border: 1px solid var(--border-color);
    color: var(--onyx);
    border-radius: 0;
}

/* About Section */
.about-image-wrapper img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.about-text p {
    color: var(--slate);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-box h3 {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.85rem;
    color: var(--slate);
}

/* Grid Layout Helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Property Cards */
.property-card {
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.card-img {
    position: relative;
    height: 240px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-gold {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--pure-white);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-body {
    padding: 20px;
}

.card-body h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.location {
    color: var(--slate);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.prop-specs {
    list-style: none;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--slate);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    margin-bottom: 15px;
}

.card-footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.btn-text {
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Partners */
.partners-title {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--slate);
    margin-bottom: 30px;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.6;
}

.partners-logos img {
    max-height: 40px;
    filter: grayscale(100%);
}

/* Services */
.service-card {
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--slate);
    font-size: 0.95rem;
}

/* Testimonials / Success Stories */
.testimonial-card {
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--onyx);
}

.client-info h5 {
    color: var(--gold-dark);
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--slate);
}

/* Process Section */
.process-grid .process-step {
    background: var(--pure-white);
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.step-num {
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.process-step h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--slate);
    font-size: 0.9rem;
}

/* Markets Section */
.market-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.market-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.market-card:hover img {
    transform: scale(1.08);
}

.market-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(20,20,20,0.9), transparent);
}

.market-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--pure-white);
}

.market-overlay p {
    font-size: 0.85rem;
    color: #E2DDD5;
}

/* CTA Banner */
.cta-banner-section {
    background: linear-gradient(rgba(20,20,20,0.85), rgba(20,20,20,0.85)), url('../assets/images/cta-bg.jpg') center/cover;
    padding: 90px 0;
    text-align: center;
    color: var(--pure-white);
}

.cta-banner-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.cta-banner-section p {
    margin-bottom: 30px;
    color: #E2DDD5;
}

/* Contact Section */
.contact-details-list {
    list-style: none;
    margin-top: 20px;
}

.contact-details-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--slate);
}

.contact-details-list strong {
    color: var(--onyx);
}

.contact-details-list i {
    color: var(--gold-dark);
    width: 20px;
}

.contact-info p {
    color: var(--slate);
}

.contact-form-wrapper {
    background: var(--pure-white);
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--onyx);
    color: var(--pure-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer .brand-title {
    color: var(--gold);
}

.site-footer p {
    color: #A0A0A0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--onyx);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    padding: 10px;
    background: #1E1E1E;
    border: 1px solid #333333;
    color: var(--pure-white);
    flex-grow: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.85rem;
    color: #888888;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .hero-form-card {
        max-width: 500px;
        margin: 0 auto;
        text-align: left;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(250, 250, 250, 0.99);
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .main-nav.active {
        max-height: 400px;
    }
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        align-items: flex-start;
    }
    .grid-2, .grid-3, .grid-4, .stats-row {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 2.3rem;
    }
    .py-section {
        padding: 50px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}