/* ===========================================
   HOME PAGE CSS - CLEAN VERSION
   =========================================== */

/* ===== HEADER ===== */
@media screen and (max-width: 768px) {
    .home #header {
        height: 670px !important;
    }

    .header-content {
        padding: 20px 5px !important;
    }
}

/* ===== ABOUT US SECTION ===== */
#about-us {
    padding: 80px 0;
}

.about-us-section-content {
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, #FFEFEC 0%, #fff5f3 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(237, 23, 10, 0.1);
}

.about-us-section-content h2 {
    font-weight: 600;
}

.about-us-section-content .col1 {
    width: 45%;
    overflow: hidden;
}

.about-us-section-content .col1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-us-section-content .col2 {
    width: 55%;
    padding: 50px 60px;
}

.about-us-section-content .col2 p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.about-us-section-content .col2 ul {
    margin-top: 25px;
    list-style: none;
    padding: 0;
}

.about-us-section-content .col2 ul li {
    font-size: 17px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #333;
}

.about-us-section-content .col2 ul li::before {
    content: "✓";
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
    background-color: var(--color-secondary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    #about-us {
        padding: 50px 15px;
    }

    .about-us-section-content {
        flex-direction: column;
        border-radius: 20px;
    }

    .about-us-section-content .col1 {
        order: 2;
        width: 100%;
        max-height: 300px;
    }

    .about-us-section-content .col2 {
        order: 1;
        width: 100%;
        text-align: center;
        padding: 30px 25px;
    }

    .about-us-section-content .col2 ul {
        text-align: left;
        display: inline-block;
    }

    .about-us-section-content .col2 p {
        font-size: 16px;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 70px;
    justify-content: center;
}

.service-card {
    width: 31%;
    min-width: 340px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-card a {
    color: var(--color-black);
    text-decoration: none;
    display: block;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

/* Surcharge pour enlever le grayscale */
.services-section .service-image img,
.services-section .service-card:hover .service-image img,
body.home .services-section .service-image img {
    filter: none !important;
    -webkit-filter: none !important;
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #333;
}

.service-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 18px;
}

.service-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a2e;
    transition: width 0.3s ease;
}

.service-card:hover .service-link::after {
    width: 100%;
}

.services-footer {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.see-all-btn {
    background: #1a1a2e;
    color: #ffffff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.25);
}

.see-all-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 26, 46, 0.35);
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }

    .services-section .container {
        margin: 0;
        width: 100%;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        gap: 20px;
        margin-bottom: 50px;
    }

    .service-card {
        width: 47%;
        min-width: auto;
        border-radius: 16px;
    }

    .service-image {
        height: 130px;
    }

    .service-content {
        padding: 15px;
    }

    .service-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .service-desc {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-link {
        font-size: 12px;
    }

    .see-all-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        width: 100%;
        max-width: 340px;
        border-radius: 18px;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 20px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-desc {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }

    .service-link {
        font-size: 14px;
    }
}

/* ===== ACHIEVEMENTS SECTION ===== */
section#our-achievements {
    padding-top: 60px;
    padding-bottom: 100px;
    background-color: var(--color-black);
}

section#our-achievements > div {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.achievements-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 54px;
    text-align: center;
    flex-wrap: wrap;
}

.achievement-item {
    padding: var(--space-xl) var(--space-lg);
    width: 20%;
    min-width: 200px;
    background-color: #191720;
    border: 1px solid #FFFFFF0A;
    border-radius: 11px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    height: 195px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.achievement-item:nth-child(2),
.achievement-item:nth-child(4) {
    margin-bottom: -80px;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.achievement-number.start {
    opacity: 1;
    transform: translateY(0);
}

.achievement-number.bounce {
    animation: numberBounce 0.45s ease-out forwards;
}

@keyframes numberBounce {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.25); }
    70%  { transform: scale(0.92); }
    100% { transform: scale(1); }
}

.achievement-text {
    font-weight: 400;
    color: #E5E5E5;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    section#our-achievements {
        padding-bottom: 60px;
    }

    .achievement-number {
        font-size: 28px;
    }

    .achievement-item {
        width: 43%;
        min-width: auto;
        height: auto;
        padding: 25px 15px;
    }

    .achievement-item:nth-child(2),
    .achievement-item:nth-child(4) {
        margin-bottom: 0;
    }

    .achievements-grid {
        gap: 20px;
    }
}

/* ===== FAQ SECTION ===== */
#faq h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}