/* === Hero Header === */
.hero-header {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #2c6e49;
    background: #f0f7f4;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
}
.hero-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1e293b;
}
.hero-subtitle {
    font-family: "Crimson Text", serif;
    font-size: 1.2rem;
    color: #555;
}

/* === Gallery === */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
.gallery-image img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* === Tabs === */
.nav-container {
    margin-bottom: 1.5rem;
}
.nav-tabs {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.nav-tab {
    background: #a8c7b4;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
}
.nav-tab.active {
    background: #2c6e49;
}
.nav-tab:hover:not(.active) {
    background: #8db49d;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

/* === Property Grid === */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.property-card {
    background: #fff;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}
.property-card:hover {
    transform: translateY(-3px);
}
.property-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}
.property-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
}
.property-value.highlight {
    font-size: 1.3rem;
    color: #2c6e49;
}

/* === Description === */
.description-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    line-height: 1.7;
    font-family: "Crimson Text", serif;
    margin-bottom: 2rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    color: #333;
}

/* === Sidebar === */
.sidebar {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.sidebar-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.agent-hero {
    text-align: center;
    margin-bottom: 1rem;
}
.agent-avatar {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.agent-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e293b;
}
.agent-title {
    font-size: 0.9rem;
    color: #666;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.contact-icon {
    font-size: 1.2rem;
    color: #2c6e49;
}
.contact-value {
    font-weight: 500;
    color: #333;
}
.cta-button {
    display: block;
    background: #2c6e49;
    color: #fff;
    text-align: center;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    margin-top: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.cta-button:hover {
    background: #24563a;
}

/* === Layout Wrapper === */
.main-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.content-area {
    flex: 1;
    min-width: 0;
}

/* === Responsive === */
@media (max-width: 992px) {
    .main-layout {
        flex-direction: column;
    }
    .sidebar {
        max-width: 100%;
    }
}
