.realisations-page {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.realisations-header {
    text-align: center;
    margin-bottom: 60px;
}

.realisations-header h1 {
    margin-bottom: 15px;
    color: #333;
}

.city-name {
    color: #111111; /* à adapter selon votre charte graphique */
}

.realisations-intro {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

/* Grid */
.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.realisation-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.realisation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.realisation-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.realisation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.realisation-card:hover .realisation-image img {
    transform: scale(1.05);
}

.realisation-content {
    padding: 30px;
    flex: 1;
}

.realisation-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f5f5f5; /* à adapter selon votre charte graphique */
    color: #111111;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.realisation-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.4rem;
}

.realisation-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.realisation-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.realisation-features li {
    display: flex;
    align-items: center;
    color: #555;
    margin-bottom: 10px;
}

.realisation-features li i {
    color: #111111; /* à adapter selon votre charte graphique */
    margin-right: 10px;
}

/* CTA */
.realisations-cta {
    background-color: #111111; /* à adapter selon votre charte graphique */
    color: white;
    text-align: center;
    padding: 60px 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.realisations-cta h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: white;
}

.realisations-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn i {
    margin-right: 10px;
}

.btn-primary {
    background-color: white;
    color: #111111; /* à adapter selon votre charte graphique */
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .realisations-page {
        padding: 60px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .realisations-cta {
        padding: 40px 20px;
    }
}
