/* ------------------------------------ */
/* 1. Variables & Global Setup */
/* ------------------------------------ */
:root {
    --color-primary: #1A237E; /* Deep Indigo Blue (Trust, Professionalism) */
    --color-secondary: #FF9800; /* Warm Orange (Energy, Warmth) */
    --color-text-dark: #2c3e50; /* Darker text for contrast */
    --color-text-light: #ffffff;
    --color-background-light: #f9f9fc; /* Very light background */
    --font-primary: 'Poppins', sans-serif;
    --max-width: 1250px;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    line-height: 1.7;
    background-color: var(--color-white);
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
    color: var(--color-primary);
    font-weight: 700;
}

/* ------------------------------------ */
/* 2. Header & Navigation */
/* ------------------------------------ */
.main-header {
    background-color: var(--color-white);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.9em;
    font-weight: 700;
    color: var(--color-primary);
}

.main-header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-header nav a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-header nav a:hover {
    color: var(--color-secondary);
}

.btn-nav {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-nav:hover {
    background-color: #e68a00;
}

/* ------------------------------------ */
/* 3. Hero Section (Immersive Design) */
/* ------------------------------------ */
.hero-section {
    background: url('path/to/bandung_scenic_view.jpg') no-repeat center center/cover; /* *** REPLACE THIS IMAGE *** */
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45); /* Slightly darker overlay for better text pop */
    z-index: 1;
}

.hero-content {
    z-index: 2;
    color: var(--color-text-light);
    max-width: 850px;
    padding: 20px;
}

.headline {
    font-size: 4em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.sub-headline {
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 300;
}

/* CTA Button Styling (Consistent) */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.primary {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

.primary:hover {
    background-color: #e68a00;
    transform: scale(1.05);
}

/* ------------------------------------ */
/* 4. About Us (Identity & Stats) */
/* ------------------------------------ */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.about-text {
    flex: 2;
}

.about-text h3 {
    font-size: 1.8em;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.about-stats {
    flex: 1;
    background: var(--color-background-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
}

.stat-item {
    margin-bottom: 20px;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-item p {
    margin-top: 5px;
    color: #666;
    font-size: 0.9em;
}

/* ------------------------------------ */
/* 5. Location Section (Map Focus) */
/* ------------------------------------ */
.location-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-map {
    flex: 1.5;
    background-color: #e0e0e0; /* Placeholder background for map */
    height: 450px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-style: italic;
}
.map-placeholder {
    padding: 20px;
    text-align: center;
}


/* ------------------------------------ */
/* 6. Services & Community (Value Proposition) */
/* ------------------------------------ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px;
    text-align: center;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.service-card h4 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

/* ------------------------------------ */
/* 7. Property Grid (CTA) */
/* ------------------------------------ */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.property-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-info {
    padding: 20px;
    text-align: center;
}

.card-info h3 {
    font-size: 1.4em;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.card-info p {
    margin-bottom: 10px;
    color: #666;
}

.card-info .price {
    display: block;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

/* ------------------------------------ */
/* 8. Footer */
/* ------------------------------------ */
.main-footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col {
    flex-basis: 30%;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-size: 1.2em;
}

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}


/* ------------------------------------ */
/* 9. Media Queries (Responsiveness) */
/* ------------------------------------ */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    .about-stats {
        border-left: none;
        border-top: 4px solid var(--color-secondary);
        padding-top: 20px;
    }
    .location-layout {
        flex-direction: column;
    }
    .location-map {
        height: 350px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5em;
    }
    .sub-headline {
        font-size: 1.1em;
    }
    .section-padding {
        padding: 60px 0;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-col {
        flex-basis: 100%;
        text-align: center;
    }
}
