/* --- Buyers Page General Styling --- */
.buyers-page {
    background-color: #fff;
    color: #333;
}

.buyers-page .section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 20px;
}

.buyers-page .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* --- Hero Section --- */
.buyers-hero {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') no-repeat center center/cover;
}

.buyers-hero .container {
    position: relative;
    z-index: 2;
}

.buyers-hero .hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 800;
}

.buyers-hero .hero-subtitle {
    font-size: 1.4rem;
    color: #eee;
}

/* --- Intro Section --- */
.buyers-intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.intro-card {
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.intro-card .card-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.intro-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 15px;
}

.intro-card p {
    color: #555;
    line-height: 1.7;
}

/* --- Featured Properties Section --- */
.featured-properties-section {
    padding: 80px 0;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.property-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}

.property-card .card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.property-card .card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.property-card .property-info,
.property-card .card-content {
    padding: 25px;
}

.property-card h3 {
    font-size: 1.4rem;
    color: #343a40;
    margin-bottom: 10px;
}

.property-card .location {
    color: #777;
    margin-bottom: 15px;
}

.property-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.property-card .description {
    color: #555;
    margin-bottom: 20px;
}

.section-cta {
    text-align: center;
}

/* --- Buying Process Section --- */
.buying-process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--gold);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 10px;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .buyers-hero .hero-title {
        font-size: 3rem;
    }
    .buyers-page .section-title {
        font-size: 2.2rem;
    }
    .no-properties-message {
        word-wrap: break-word; /* Prevents overflow from long text strings */
    }
}
