body {
    background-color: #f4f4f4;
    font-family: 'Segoe UI', sans-serif;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
}

/* ===================== */
/* Cartes info */
/* ===================== */

.info-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: #fff;
    padding: 40px 30px;
    flex: 1;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #fff;
    font-size: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* ===================== */
/* Map + Form */
/* ===================== */

.bottom-section {
    display: flex;
    gap: 30px;
}

.map-container {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.form-container h2 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2e7d32;
    outline: none;
}

.btn-submit {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}
/* ===== Reviews Section ===== */

.reviews-section {
    margin-top: 80px;
}

.reviews-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.review-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stars {
    color: #f4b400;
    font-size: 14px;
}



.btn-submit:hover {
    background: #256628;
}

/* ===================== */
/* Responsive */
/* ===================== */

@media (max-width: 992px) {
    .info-cards {
        flex-direction: column;
    }

    .bottom-section {
        flex-direction: column;
    }

    .map-container {
        height: 350px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
