.property-grid {
    background-color: #fff;
    padding: 60px 0;
}

.property-item {
    position: relative;
    display: block;
    background: #fff;
    margin-bottom: 30px;
    text-decoration: none;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 400px;
}

.property-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: white;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.property-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    padding: 0 10px;
}

.property-item:not(:has(img)) .property-content {
    position: relative;
    height: 180px;
    background: transparent;
    padding: 30px;
}

.property-info {
    color: #666;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.property-info span {
    display: block;
    font-size: 0.9rem;
    text-align: center;
}

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

.property-item:not(:has(img)) {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.property-item:not(:has(img))::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%);
    background-size: 20px 20px;
    animation: backgroundMove 30s linear infinite;
    opacity: 0.5;
}

.property-item:not(:has(img))::after {
    content: '\f1ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 20px;
    bottom: 20px;
}

@keyframes backgroundMove {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.property-item:not(:has(img)) .property-content {
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.property-item:not(:has(img)):hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
}

.projects-divider {
    width: 100%;
    margin: 60px 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
}

.projects-divider span {
    background: #fff;
    padding: 0 20px;
    color: #666;
    position: relative;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.property-item:not(:has(img)) {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
}

.property-item:not(:has(img))::before {
    content: '\f1ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: #adb5bd;
}

.property-content {
    padding: 25px;
    background: white;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.property-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
    max-height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.property-item:not(:has(img)) .property-content {
    padding: 30px;
    height: auto;
    min-height: 180px;
}

.property-info {
    color: #666;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.property-info span {
    display: block;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
}

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

.realisations-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.projects-section {
    width: 100%;
    padding: 60px 0;
    background-color: #f8f9fa;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 40px 0 60px 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.project-card {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 15px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    opacity: 0;
    transform: translateY(40px);
    overflow: hidden;
    border: none;
    animation: fadeInUp 0.8s forwards;
}

.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.project-card:nth-child(4) {
    animation-delay: 0.4s;
}

.project-card:nth-child(5) {
    animation-delay: 0.5s;
}

.project-card:nth-child(6) {
    animation-delay: 0.6s;
}

.project-card:nth-child(7) {
    animation-delay: 0.7s;
}

.project-card:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card:hover {
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.18);
    transform: translateY(-8px) scale(1.025);
}

.project-icon {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    transition: color 0.3s, transform 0.3s;
}

.project-card:hover .project-icon {
    color: #3498db;
    transform: scale(1.12) rotate(-6deg);
}

.project-category {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

.project-category i {
    color: #f1c40f;
    font-size: 1.1em;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: auto;
    text-align: center;
    letter-spacing: 0.3px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    padding: 0 15px;
}

.project-info {
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    justify-content: flex-end;
}

.info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #f8f9fa;
    border-radius: 0;
    padding: 15px 25px;
    margin-bottom: 2px;
    text-align: left;
    box-shadow: none;
    border: none;
}

.info-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5em;
    font-weight: 400;
    color: #3498db;
    font-size: 1em;
    text-transform: none;
    margin-bottom: 0;
    letter-spacing: 0;
    min-width: 130px;
    width: 130px;
}

.info-label i {
    color: #3498db;
    font-size: 1.1em;
    margin-right: 12px;
    width: 18px;
    text-align: center;
}

.info-value {
    color: #333;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    font-size: 1em;
    margin-left: 25px;
    flex: 1;
}

.page-title h2 {
    font-size: 2.7rem;
    font-weight: 700;
    color: #1a3552;
    letter-spacing: 2px;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0;
}

.page-title h2::after {
    display: none;
}

/* Amélioration de la responsivité mobile */
@media (max-width: 1200px) {
    .project-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
        padding: 25px 0 35px 0;
        max-width: 1200px;
    }

    .project-card {
        padding: 25px;
        min-height: 380px;
    }

    .project-title {
        font-size: 1.25rem;
        margin-bottom: auto;
    }

    .project-icon {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .main-title {
        font-size: 3rem;
        margin-bottom: 18px;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .info-item {
        padding: 12px 18px;
        margin-bottom: 2px;
    }

    .info-label {
        min-width: 120px;
        width: 120px;
        font-size: 0.95em;
    }

    .info-value {
        margin-left: 20px;
        font-size: 0.95em;
    }
}

@media (max-width: 900px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 20px 0 30px 0;
    }

    .project-card {
        min-height: 220px;
        padding: 1.2rem 0.7rem 1rem;
    }

    .project-title {
        font-size: 1.1rem;
        margin-bottom: auto;
    }

    .project-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .project-category {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .info-item {
        padding: 10px 15px;
        margin-bottom: 1px;
    }

    .info-label {
        min-width: 110px;
        width: 110px;
        font-size: 0.9em;
    }

    .info-value {
        margin-left: 18px;
        font-size: 0.9em;
    }

    .main-title {
        font-size: 2.8rem;
        margin-bottom: 16px;
    }

    .subtitle {
        font-size: 1.05rem;
    }

    .filter-section {
        padding: 25px 0;
    }

    .filter-buttons {
        gap: 12px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.95rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
        padding: 40px 0;
    }
}

.main-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.05rem;
}

.filter-section {
    padding: 25px 0;
}

.filter-buttons {
    gap: 12px;
}

.filter-btn {
    padding: 8px 18px;
    font-size: 0.95rem;
}

.projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 40px 0;
}


@media (max-width: 600px) {
    .project-card {
        min-height: 260px;
        padding: 1.2rem 0.7rem 1rem;
    }

    .project-title {
        font-size: 1.05rem;
        margin-bottom: auto;
    }

    .project-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .project-category {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .info-item {
        padding: 10px 15px;
        margin-bottom: 1px;
    }

    .info-label {
        min-width: 100px;
        width: 100px;
        font-size: 0.85em;
    }

    .info-value {
        margin-left: 15px;
        font-size: 0.85em;
    }
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 20px 0 30px 0;
        max-width: 550px;
        margin: 0 auto;
    }

    .project-card {
        padding: 1.8rem 1.5rem 0 1.5rem;
        min-height: 350px;
        margin: 0 15px;
    }

    .project-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .project-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .info-item {
        padding: 15px 20px;
        margin-bottom: 2px;
        border-radius: 0;
    }

    .info-label {
        min-width: 115px;
        width: 115px;
        font-size: 1em;
    }

    .info-value {
        font-size: 1em;
        margin-left: 18px;
    }

    .main-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .subtitle {
        font-size: 1rem;
    }

    .filter-section {
        padding: 20px 0;
    }

    .filter-buttons {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 7px 16px;
        font-size: 0.9rem;
        border-radius: 25px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .project-card {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .project-image {
        height: 200px;
    }

    .project-content h3 {
        font-size: 1.2rem;
        min-height: auto;
        white-space: normal;
        line-height: 1.3;
    }

    .project-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-section {
        padding: 40px 0;
    }

    .footer-brand,
    .footer-contact,
    .footer-links {
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-logo-img {
        width: 70px;
        margin-bottom: 10px;
    }

    .footer-company-name h4 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .footer-company-name p {
        font-size: 0.9rem;
    }

    .footer-contact h5,
    .footer-links h5,
    .footer-social h6 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .contact-item {
        font-size: 0.9rem;
        margin-bottom: 12px;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        gap: 12px;
    }

    .social-links .social-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 600px) {
    .project-grid {
        gap: 1.2rem;
        padding: 18px 0 25px 0;
        max-width: 450px;
    }

    .project-card {
        padding: 1.2rem 0.7rem 0.9rem 0.7rem;
        min-height: 200px;
        margin: 0 12px;
    }

    .project-title {
        font-size: 1.05rem;
    }

    .project-icon {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .main-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .filter-section {
        padding: 18px 0;
    }

    .filter-buttons {
        gap: 8px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.85rem;
        border-radius: 20px;
    }

    .projects-grid {
        gap: 18px;
        padding: 25px 0;
        max-width: 450px;
    }

    .project-card {
        padding: 22px 18px;
        margin: 0 12px;
    }

    .project-image {
        height: 180px;
    }

    .project-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .project-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .project-grid {
        gap: 1rem;
        padding: 15px 0 20px 0;
        max-width: 400px;
    }

    .project-card {
        padding: 1rem 0.6rem 0.8rem 0.6rem;
        min-height: 180px;
        margin: 0 10px;
    }

    .project-title {
        font-size: 1rem;
    }

    .project-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .filter-section {
        padding: 15px 0;
    }

    .filter-buttons {
        gap: 6px;
    }

    .filter-btn {
        padding: 5px 12px;
        font-size: 0.8rem;
        border-radius: 18px;
    }

    .projects-grid {
        gap: 15px;
        padding: 20px 0;
        max-width: 400px;
    }

    .project-card {
        padding: 20px 15px;
        margin: 0 10px;
    }

    .project-image {
        height: 160px;
    }

    .project-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .project-content p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }

    .featured-project-image {
        height: 180px;
    }

    .btn-back,
    .btn-next {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .footer-section {
        padding: 30px 0;
    }

    .footer-brand,
    .footer-contact,
    .footer-links {
        margin-bottom: 18px;
    }

    .footer-logo-img {
        width: 55px;
        margin-bottom: 6px;
    }

    .footer-company-name h4 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .footer-company-name p {
        font-size: 0.85rem;
    }

    .footer-contact h5,
    .footer-links h5,
    .footer-social h6 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .contact-item {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .social-links .social-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 360px) {
    .project-grid {
        gap: 0.8rem;
        padding: 12px 0 18px 0;
        max-width: 350px;
    }

    .project-card {
        padding: 0.8rem 0.5rem 0.6rem 0.5rem;
        min-height: 160px;
        margin: 0 8px;
    }

    .project-title {
        font-size: 0.95rem;
    }

    .project-icon {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }

    .main-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .filter-section {
        padding: 12px 0;
    }

    .filter-buttons {
        gap: 5px;
    }

    .filter-btn {
        padding: 4px 10px;
        font-size: 0.75rem;
        border-radius: 15px;
    }

    .projects-grid {
        gap: 12px;
        padding: 15px 0;
        max-width: 350px;
    }

    .project-card {
        padding: 18px 12px;
        margin: 0 8px;
    }

    .project-image {
        height: 140px;
    }

    .project-content h3 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .project-content p {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .featured-project-image {
        height: 160px;
    }

    .btn-back,
    .btn-next {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .footer-section {
        padding: 25px 0;
    }

    .footer-brand,
    .footer-contact,
    .footer-links {
        margin-bottom: 18px;
    }

    .footer-logo-img {
        width: 55px;
        margin-bottom: 6px;
    }

    .footer-company-name h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .footer-company-name p {
        font-size: 0.8rem;
    }

    .footer-contact h5,
    .footer-links h5,
    .footer-social h6 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .contact-item {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .social-links .social-icon {
        width: 28px;
        height: 28px;
    }
}

/* ===== STYLES POUR LES PAGES DE PROJETS INDIVIDUELS ===== */

/* Header du projet */
.project-header {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.project-intro h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.project-intro h1::after {
    display: none;
}

.project-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    min-width: 200px;
    justify-content: center;
}

.detail-item i {
    color: #007bff;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.detail-item span {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
}

/* Section des projets principaux avec images */
.featured-projects {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-subtitle {
    font-size: 1.8rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 30px;
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.featured-project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.featured-project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-project-content {
    padding: 30px;
}

.featured-project-content h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
}

.featured-project-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
    min-height: 4rem;
    display: flex;
    align-items: center;
}

.project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.project-type,
.project-mission {
    background: #f8f9fa;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-view-project {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    position: relative;
}

.btn-view-project:hover {
    color: #000;
}

.btn-view-project i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    top: -1px;
    margin-left: 8px;
}

.btn-view-project:hover i {
    transform: translateX(5px);
}

.btn-back,
.btn-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-align: center;
}

.btn-back {
    background-color: white;
    color: #333;
    border: 2px solid #e9ecef;
}

.btn-next {
    background-color: white;
    color: #333;
    border: 2px solid #e9ecef;
}

.btn-back:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateX(-3px);
}

.btn-next:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateX(3px);
}

/* Responsive pour les projets principaux */
@media (max-width: 991px) {
    .featured-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .featured-projects {
        padding: 60px 0;
    }

    .featured-projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .featured-project-content {
        padding: 25px 20px;
    }

    .featured-project-content h4 {
        font-size: 1.3rem;
    }

    .btn-view-project {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
    }

    .btn-back,
    .btn-next {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .project-details {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .detail-item {
        min-width: 250px;
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 1.5rem;
    }

    .featured-project-image {
        height: 200px;
    }

    .btn-back,
    .btn-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Footer spécifique pour la page realisation - Background et largeur complète */
.footer-section {
    background-color: var(--bg-color-1) !important;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Styles du footer - Commentés pour utiliser les styles globaux */
/*
.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 80px;
    height: auto;
    filter: none;
}

.footer-company-name h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.footer-company-name p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.footer-contact h5,
.footer-links h5,
.footer-social h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-item i {
    color: #333;
    width: 16px;
    text-align: center;
    font-size: 1rem;
}

.contact-item span {
    color: #555;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
*/

/*
.footer-links ul li a:hover {
    color: #333;
}

.footer-social h6 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}
*/

/*
.social-links .social-icon:hover {
    background: #000;
    transform: translateY(-2px);
}
*/
