/* ===== HERO SMALL ===== */
.hero-small {
    background: linear-gradient(135deg, #1B2A4A 0%, #0F1A2E 100%);
    padding: 4rem 20px;
    text-align: center;
    color: white;
}

.hero-small h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #C5A55A;
}

.hero-small p {
    font-size: 1.2rem;
    color: #E8E4DF;
}

/* ===== COMMON PAGE ELEMENTS ===== */
.section-text {
    color: #4A4E50;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.image-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.value-card p {
    color: #4A4E50;
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, #1B2A4A 0%, #0F1A2E 100%);
    padding: 4rem 2rem;
    border-radius: 8px;
    text-align: center;
    color: white;
    margin: 3rem 0;
}

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

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

.cta-section .btn {
    background: #C5A55A;
    color: #1B2A4A;
}

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

.property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 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;
    position: relative;
}

.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;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1B2A4A;
    margin-bottom: 1rem;
}

.about-text p {
    color: #4A4E50;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2D3436;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #E8E4DF;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    color: #1B2A4A;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    font-size: 1.5rem;
}

.contact-item-text h4 {
    font-size: 1.1rem;
    color: #1B2A4A;
    margin-bottom: 0.3rem;
}

.contact-item-text p {
    color: #4A4E50;
}

/* ===== SERVICES PAGE ===== */
.services-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.service-text h2 {
    font-size: 2rem;
    color: #1B2A4A;
    margin-bottom: 1rem;
}

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

.service-text ul {
    list-style: none;
    margin-top: 1rem;
}

.service-text ul li {
    padding: 0.5rem 0;
    color: #4A4E50;
}

.service-text ul li::before {
    content: '✓';
    color: #C5A55A;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-grid,
    .services-detail {
        grid-template-columns: 1fr;
    }
    
    .hero-small h1 {
        font-size: 2rem;
    }
    
    .image-section,
    .values-grid {
        grid-template-columns: 1fr;
    }
}
