/* ── Page Hero ── */
.page-hero {
    background: linear-gradient(135deg, #161616 0%, #06060691 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(129, 95, 97, 0.39) 0%, transparent 40%);
    pointer-events: none;
}
.page-hero::after {
    content: 'PROPERTY';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(60px, 12vw, 120px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 10px;
    pointer-events: none;
    white-space: nowrap;
}
.page-hero h1 {
    font-size: clamp(36px, 6vw, 58px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(97, 85, 86, 0.4);
}
.page-hero p {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.page-hero h1::after {
    content: '';
    display: block;
    width: 90px;
    height: 4px;
    background: #ac232e;
    border-radius: 10px;
    margin-top: 12px;
}

/* ── Property Cards ── */
.cards-wrapper {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 40px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}
.property-card {
    flex: 1 1 340px;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.property-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
.property-content {
    padding: 22px;
}
.title {
    font-size: clamp(22px, 3vw, 28px);
    color: #111;
    margin-bottom: 8px;
}
.location {
    color: #e60c0c;
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.5;
}
.section {
    margin-bottom: 12px;
}
.section h2 {
    font-size: 18px;
    color: #e03b3b;
    margin-bottom: 8px;
    border-left: 4px solid #df3131;
    padding-left: 10px;
}
.section ul {
    padding-left: 20px;
    list-style: disc !important;
}
.property-card .section ul li::marker {
    color: #c1121f;
}
.section ul li {
    margin-bottom: 6px;
    color: #333;
    line-height: 1.5;
}
.services p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #222;
    font-weight: 500;
}

/* ── Why Invest Section ── */
.why-invest {
    padding: 40px 20px 70px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-heading {
    margin-bottom: 30px;
}
.section-heading h2 {
    font-size: clamp(26px, 4vw, 36px);
    color: #e44343;
    margin-bottom: 12px;
}
.invest-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.invest-card {
    flex: 1 1 240px;
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.invest-card h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    color: black;
    margin-bottom: 15px;
}
.invest-card p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* ── Tablet (≤ 768px) ── */
@media (max-width: 768px) {
    .cards-wrapper {
        padding: 30px 16px 16px;
        gap: 20px;
    }
    .property-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .invest-cards {
        flex-direction: column;
        gap: 20px;
    }
    .invest-card {
        flex: 1 1 auto;
    }
    .why-invest {
        padding: 30px 16px 50px;
    }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
    .page-hero {
        padding: 40px 16px;
    }
    .property-image img {
        height: 200px;
    }
    .property-content {
        padding: 16px;
    }
    .invest-card {
        padding: 24px 16px;
    }
}