/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(27, 42, 74, 0.7), rgba(27, 42, 74, 0.7)), 
                url('../images/hero-banner.webp') center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #FAF8F5;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #E8E4DF;
    font-weight: 300;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1B2A4A;
}

.service-card p {
    color: #4A4E50;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== PROPERTIES GRID ===== */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.property-image {
    height: 250px;
    background: #E8E4DF;
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #C5A55A;
    color: #1B2A4A;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.property-content {
    padding: 1.5rem;
}

.property-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 0.5rem;
}

.property-address {
    color: #4A4E50;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.property-meta {
    display: flex;
    gap: 1.5rem;
    color: #4A4E50;
    font-size: 0.9rem;
}

.property-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ===== WHY US SECTION ===== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.why-us-item {
    text-align: center;
}

.why-us-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #C5A55A;
}

.why-us-item p {
    color: #4A4E50;
    line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    color: #4A4E50;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #1B2A4A;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #4A4E50;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #1B2A4A 0%, #0F1A2E 100%);
    padding: 5rem 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: #C5A55A;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #E8E4DF;
    margin-bottom: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .properties-grid,
    .why-us-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .area-guides-grid {
        grid-template-columns: 1fr !important;
    }
}
