:root {
    --primary-navy: #2A3B52;
    --primary-gold: #C09A6A;
    --bg-color: #F9F8F5;
    --text-dark: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --whatsapp-green: #4A6E59;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Header & Logo --- */
header {
    background-color: var(--bg-color);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 70px; /* Adjust this to make your logo smaller or bigger */
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu-container { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 25px; font-size: 0.9rem; color: var(--text-light); }
.nav-links a:hover { color: var(--primary-gold); }
.contact-info { display: flex; align-items: center; gap: 15px; color: var(--text-light); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-navy);
    cursor: pointer;
}

/* --- Hero --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('hero1.jpg');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
}

.hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; margin: 0 auto 30px; }

/* --- Buttons --- */
.btn { padding: 12px 28px; border-radius: 4px; font-weight: 700; cursor: pointer; border: none; transition: 0.3s; display: inline-block; font-size: 0.85rem; text-transform: uppercase; }
.btn-gold { background: var(--primary-gold); color: white; }
.btn-navy { background: var(--primary-navy); color: white; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* --- Features Bar --- */
.features-bar { padding: 25px 0; border-bottom: 1px solid #eee; }
.features-list { display: flex; justify-content: space-around; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.feature-item { display: flex; flex-direction: column; align-items: center; font-size: 0.8rem; font-weight: 700; color: var(--primary-navy); gap: 8px; }
.feature-item i { color: var(--primary-gold); font-size: 1.4rem; }

.whatsapp-float {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    background: var(--whatsapp-green); color: white; padding: 10px 18px; border-radius: 5px; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 8px;
}

/* --- Cards --- */
.signature-properties { padding: 60px 0; text-align: center; }
.value-props { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; color: var(--text-light); font-size: 0.9rem; flex-wrap: wrap; }
.value-props i { color: var(--primary-gold); margin-right: 5px; }
.cards-container { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }

.card { background: white; border-radius: 12px; overflow: hidden; width: 100%; max-width: 500px; text-align: left; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.card:hover { transform: translateY(-5px); }
.card img { width: 100%; height: 300px; object-fit: cover; }
.card-body { padding: 30px; }
.card-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; font-size: 0.85rem; color: var(--text-light); }
.card-features i { color: var(--primary-gold); margin-right: 5px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; border-top: 1px solid #eee; padding-top: 20px; }





/* --- Bottom CTA --- */
.bottom-cta { height: 350px; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }

/* --- Responsive Fixes --- */
@media (max-width: 992px) {
    .mobile-menu-btn { display: block; }
    .nav-menu-container {
        position: absolute; top: 100%; left: 0; width: 100%; background: white;
        flex-direction: column; gap: 0; max-height: 0; overflow: hidden; transition: 0.4s; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-menu-container.active { max-height: 500px; }
    .nav-links { flex-direction: column; width: 100%; text-align: center; padding: 20px 0; border-bottom: 1px solid #eee; }
    .contact-info { padding: 20px 0; justify-content: center; }
    .logo-img { height: 50px; }
    .whatsapp-float { position: static; margin: 20px auto 0; transform: none; width: max-content; }
}