/* Karukera Expertise - Page Styles */

/* Logo navigation Karukera */
.logo-img {
    height: 30px;
    width: auto;
}

/* Navigation spécifique à Karukera */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8cc63f;
}

/* Mobile menu button styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 14px;
    height: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
}

.hamburger-line {
    width: 100%;
    height: 1.5px;
    background: #333;
    border-radius: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Responsive design for Karukera */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex !important;
    }

    .nav-menu {
        display: flex !important;
        position: fixed !important;
        top: 80px !important;
        left: 50% !important;
        width: calc(100% - 2rem) !important;
        max-width: 400px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
        flex-direction: column !important;
        padding: 1.5rem !important;
        gap: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(-50%) translateY(-20px) !important;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 999 !important;
        pointer-events: none !important;
    }

    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
        pointer-events: auto !important;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 500;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        color: #8cc63f;
        background: rgba(140, 198, 63, 0.1);
        border-radius: 8px;
        margin: 0 -0.5rem;
        padding: 1rem 0.5rem;
    }

    /* Mobile Header adjustments */
    .header {
        width: calc(100% - 1rem);
        margin-top: 0.5rem;
        border-radius: 25px;
    }

    .nav-container {
        height: 60px;
        padding: 0 1.5rem;
        justify-content: space-between;
    }

    .nav-left {
        flex: 1;
        justify-content: flex-start;
    }

    .logo-img {
        height: 40px;
    }

    .back-button {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        margin-right: 1rem;
    }

    .back-button span {
        display: none;
    }

    /* Mobile Hero section */
    .karukera-hero {
        padding-top: 100px;
        min-height: 90vh !important;
    }

    .hero-content {
        padding-bottom: 4rem;
    }

    .hero-cta {
        bottom: 1rem;
    }

    .karukera-hero h1 {
        font-size: 2.8rem;
        padding: 1.5rem 2rem;
        border-radius: 15px;
        margin-bottom: 3rem;
        line-height: 1.2;
    }

    .karukera-hero p {
        font-size: 1rem;
        max-width: 90%;
        line-height: 1.7;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
    }

    /* Mobile content adjustments */
    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screen navigation */
    .header {
        width: calc(100% - 0.5rem);
        margin-top: 0.25rem;
        border-radius: 20px;
    }

    .nav-container {
        height: 55px;
        padding: 0 1rem;
    }

    .logo-img {
        height: 35px;
    }

    .mobile-menu-btn {
        width: 20px;
        height: 20px;
    }

    .hamburger-line {
        height: 1.5px;
    }

    .nav-menu {
        top: 70px;
        width: calc(100% - 1rem);
        padding: 1rem;
        border-radius: 15px;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.8rem 0;
    }

    .back-button {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    /* Extra small hero section */
    .karukera-hero {
        padding-top: 80px;
        min-height: 85vh !important;
    }

    .hero-content {
        padding-bottom: 3rem;
    }

    .karukera-hero h1 {
        font-size: 2.2rem;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        margin-bottom: 2.5rem;
        line-height: 1.3;
    }

    .karukera-hero p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 95%;
    }

    .hero-cta {
        bottom: 0.8rem;
    }

    .scroll-arrow {
        width: 30px;
        height: 30px;
    }

    /* Extra small content */
    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 0.8rem;
    }

    h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-3px);
    color: #8cc63f;
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-2px);
}

/* Hero section Karukera */
.karukera-hero {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.karukera-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, rgba(140, 198, 63, 0.12) 0%, rgba(255, 193, 7, 0.08) 100%);
    border-radius: 0;
    clip-path: polygon(
        30% 0%,
        100% 0%,
        100% 100%,
        0% 100%,
        0% 99.5%,
        0.2% 98.5%,
        0.5% 97.5%,
        0.8% 96.8%,
        1% 96%,
        1.3% 95%,
        1.8% 94%,
        2.2% 93%,
        2.8% 91.5%,
        3.5% 90%,
        4.2% 88.5%,
        5% 87%,
        5.8% 85.5%,
        6.8% 84%,
        7.8% 82.5%,
        9% 81%,
        10.2% 79.5%,
        11.5% 78%,
        12.8% 76.5%,
        14% 75%,
        15% 73.5%,
        15.8% 72%,
        16.5% 70.5%,
        16.8% 69%,
        16.5% 67.5%,
        16.2% 66%,
        15.8% 64.5%,
        15.2% 63%,
        14.5% 61.5%,
        13.5% 60%,
        12.5% 58.5%,
        11.2% 57%,
        10% 55.5%,
        8.5% 54%,
        7.2% 52.5%,
        6% 51%,
        5.2% 49.5%,
        5.5% 48%,
        6% 46.5%,
        6.8% 45%,
        7.8% 43.5%,
        9% 42%,
        10.2% 40.5%,
        11.5% 39%,
        12.8% 37.5%,
        14% 36%,
        15% 34.5%,
        15.8% 33%,
        16.5% 31.5%,
        16.8% 30%,
        16.5% 28.5%,
        16.2% 27%,
        15.8% 25.5%,
        15.2% 24%,
        14.5% 22.5%,
        13.5% 21%,
        12.5% 19.5%,
        11.2% 18%,
        10% 16.5%,
        8.5% 15%,
        7.2% 13.5%,
        6% 12%,
        5.2% 10.5%,
        4.8% 9%,
        5.2% 7.5%,
        6% 6%,
        7.2% 4.8%,
        8.5% 3.8%,
        10% 3%,
        12% 2.2%,
        14.5% 1.5%,
        17.5% 1%,
        21% 0.6%,
        25% 0.3%,
        28.5% 0.1%,
        30% 0%
    );
    transform: translateX(100%);
    opacity: 0;
    animation: karukera-slideInWave 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
    box-shadow: none;
}

.karukera-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 2.7s forwards;
}

.karukera-hero h1 {
    font-size: 4rem;
    font-weight: 200;
    line-height: 1.1;
    margin: 0 0 3rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: #333;
}

.karukera-hero h1:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.7);
}

.highlight-text {
    color: #8cc63f;
    font-weight: 300;
}

.karukera-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #666;
    text-align: center;
    max-width: 700px;
}

.karukera-hero .hero-cta {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 4.5s forwards;
}

.karukera-hero .scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(140, 198, 63, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #8cc63f;
    animation: karukera-bounce 2s infinite;
}

.karukera-hero .scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(140, 198, 63, 0.5);
    transform: translateY(-3px);
}

@keyframes karukera-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Nouvelles sections */
.services-section,
.why-choose-section,
.guarantee-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Presentation section */
.presentation-section {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.presentation-section::after {
    content: '';
    position: absolute;
    bottom: -400px;
    right: -300px;
    width: 1300px;
    height: 1300px;
    background-image: url('Logo & Charte Graphique Karukera/Logo/signe-karukera-noir.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

.presentation-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.presentation-section.animate .presentation-content {
    opacity: 1;
    transform: translateY(0);
}

.presentation-logo {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.presentation-section.animate .presentation-logo {
    opacity: 1;
    transform: translateY(0);
}

.logo-karukera {
    max-width: 300px;
    height: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-karukera:hover {
    transform: scale(1.05);
}

.presentation-text {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.presentation-section.animate .presentation-text {
    opacity: 1;
    transform: translateY(0);
}

.presentation-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.presentation-text strong {
    color: #333;
    font-weight: 600;
}

.values-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.presentation-section.animate .values-row {
    opacity: 1;
    transform: translateY(0);
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.presentation-section.animate .value-card {
    opacity: 1;
    transform: translateY(0);
}

.presentation-section.animate .value-card:nth-child(1) {
    transition-delay: 0.5s;
}

.presentation-section.animate .value-card:nth-child(2) {
    transition-delay: 0.6s;
}

.presentation-section.animate .value-card:nth-child(3) {
    transition-delay: 0.7s;
}

.presentation-section.animate .value-card:nth-child(4) {
    transition-delay: 0.8s;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    background: transparent;
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-icon {
    background: rgba(255, 193, 7, 0.1);
    transform: scale(1.1);
    color: #333;
    border-color: #ffc107;
}

.value-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.commitments-section {
    background: #5569ff;
    color: #FEF9FF;
}

.services-section {
    background: url('assets/codioful-formerly-gradienta-7EnMpaDE8bo-unsplash.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(248, 249, 250, 1) 7%, rgba(248, 249, 250, 0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.why-choose-section {
    background: rgba(255, 255, 255, 0.05);
}

.guarantee-section {
    background: url('assets/codioful-formerly-gradienta-7EnMpaDE8bo-unsplash-reverse.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 1;
    pointer-events: none;
}

.guarantee-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #f8f9fa 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}


/* Section titles */
.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.animate h2 {
    opacity: 1;
    transform: translateY(0);
}

.who-section h2 {
    color: #8cc63f;
}

.services-section h2 {
    color: #000000;
}

.commitments-section h2,
.guarantee-section h2 {
    color: #FEF9FF;
}

.why-choose-section h2 {
    color: #000000;
}

/* Section intro text */
.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.section.animate .section-intro {
    opacity: 1;
    transform: translateY(0);
}

.commitments-section .section-intro,
.guarantee-section .section-intro {
    color: rgba(254, 249, 255, 0.9);
}

/* Qui sommes-nous section */
.who-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.who-section.animate .who-content {
    opacity: 1;
    transform: translateY(0);
}

.who-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #666;
}

.promise-highlight,
.guarantee-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #009245 0%, #8cc63f 100%);
    color: #FEF9FF;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(45, 90, 65, 0.3);
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.promise-highlight:hover,
.guarantee-highlight:hover {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(45, 90, 65, 0.4);
}

.arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(5px);
    }
    60% {
        transform: translateX(3px);
    }
}

/* Engagements section */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.commitments-section.animate .commitments-grid {
    opacity: 1;
    transform: translateY(0);
}

.commitment-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.commitment-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.commitment-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(36,96%,61%);
}

.commitment-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(254, 249, 255, 0.9);
    margin: 0;
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    position: relative;
    z-index: 2;
}

.services-section.animate .services-grid {
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.services-section.animate .service-card {
    opacity: 1;
    transform: translateY(0);
}

.services-section.animate .service-card:nth-child(1) {
    transition-delay: 0.5s;
}

.services-section.animate .service-card:nth-child(2) {
    transition-delay: 0.6s;
}

.services-section.animate .service-card:nth-child(3) {
    transition-delay: 0.7s;
}

.services-section.animate .service-card:nth-child(4) {
    transition-delay: 0.8s;
}

.services-section.animate .service-card:nth-child(5) {
    transition-delay: 0.9s;
}

.services-section.animate .service-card:nth-child(6) {
    transition-delay: 1s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.services-section .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem auto;
    background: transparent;
    border: 2px solid rgba(85, 105, 255, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    background: rgba(85, 105, 255, 0.1);
    transform: scale(1.1);
    color: #000000;
    border-color: #5569ff;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Tableau de comparaison */
.comparison-table-wrapper {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    overflow-x: auto;
}

.why-choose-section.animate .comparison-table-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.comparison-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.comparison-table thead {
    background: transparent;
}

.comparison-table th {
    padding: 2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    font-weight: 600;
}

.comparison-table th:not(:last-child) {
    border-right: none;
}

.table-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-icon.negative {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #ef4444;
}

.header-icon.positive {
    background: rgba(140, 198, 63, 0.1);
    border: 2px solid #8cc63f;
    color: #8cc63f;
}

.karukera-logo-table {
    height: 60px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.karukera-logo-table:hover {
    transform: scale(1.05);
}

.comparison-table tbody tr {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-section.animate .comparison-table tbody tr:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.why-choose-section.animate .comparison-table tbody tr:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.why-choose-section.animate .comparison-table tbody tr:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.why-choose-section.animate .comparison-table tbody tr:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.5);
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: middle;
}

.comparison-table td:not(:last-child) {
    border-right: none;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.criteria-column {
    width: 25%;
    font-weight: 600;
    color: #333;
}

.others-column, .karukera-column {
    width: 37.5%;
}

.criteria {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.cell-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-icon.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-icon.positive {
    background: rgba(140, 198, 63, 0.1);
    color: #8cc63f;
}

.cell-content span {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Garantie section moderne */
.guarantee-content {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    position: relative;
    z-index: 2;
}

.guarantee-section.animate .guarantee-content {
    opacity: 1;
    transform: translateY(0);
}

.guarantee-section h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.guarantee-intro {
    color: #ffffff;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.guarantee-intro p {
    color: #ffffff;
}

.guarantee-section.animate .guarantee-intro {
    opacity: 1;
    transform: translateY(0);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.guarantee-section.animate .guarantee-grid {
    opacity: 1;
    transform: translateY(0);
}

.guarantee-left, .guarantee-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.guarantee-divider {
    width: 1px;
    height: 300px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 20%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.3) 80%, 
        transparent 100%);
    justify-self: center;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out forwards;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.guarantee-right .guarantee-item {
    flex-direction: row-reverse;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease-out forwards;
}

.guarantee-right .guarantee-item:hover {
    transform: translateY(-5px);
}

.guarantee-section.animate .guarantee-item:nth-child(1) { animation-delay: 0.8s; }
.guarantee-section.animate .guarantee-item:nth-child(2) { animation-delay: 1.0s; }
.guarantee-section.animate .guarantee-item:nth-child(3) { animation-delay: 1.2s; }

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.guarantee-icon svg {
    width: 24px;
    height: 24px;
    color: #333;
}

.guarantee-item:hover .guarantee-icon {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    transform: scale(1.1);
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.guarantee-text p {
    color: #666666;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.guarantee-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s;
}

.guarantee-section.animate .guarantee-cta {
    opacity: 1;
    transform: translateY(0);
}


.guarantee-cta-content {
    position: relative;
    z-index: 2;
}

.guarantee-cta h3 {
    color: #000000;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.guarantee-cta p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.guarantee-section.animate .guarantee-item:hover {
    transform: translateY(-5px);
}


@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guarantee-divider {
        width: 200px;
        height: 1px;
        background: linear-gradient(to right, 
            transparent 0%, 
            rgba(255, 255, 255, 0.3) 20%, 
            rgba(255, 255, 255, 0.6) 50%, 
            rgba(255, 255, 255, 0.3) 80%, 
            transparent 100%);
    }
    
    .guarantee-right .guarantee-item {
        flex-direction: row;
        transform: translateX(-30px);
        animation: slideInLeft 0.6s ease-out forwards;
    }
}



.promise-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffc107;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promise-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.guarantee-features-section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.guarantee-section.animate .guarantee-features-section {
    opacity: 1;
    transform: translateY(0);
}

.guarantee-features-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.guarantee-section.animate .feature-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.guarantee-section.animate .feature-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.guarantee-section.animate .feature-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.18);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem auto;
    background: transparent;
    border: 2px solid #ffc107;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    background: rgba(255, 193, 7, 0.1);
    transform: scale(1.1);
    color: #ffc107;
    border-color: #ffc107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffc107;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.final-message-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid #ffc107;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s;
}

.guarantee-section.animate .final-message-card {
    opacity: 1;
    transform: translateY(0);
}

.message-content strong {
    font-size: 1.4rem;
    color: #ffc107;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}


/* Contact CTA section */
.contact-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.karukera-contact-form-section {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.contact-cta-section.animate .karukera-contact-form-section {
    opacity: 1;
    transform: translateY(0);
}

.karukera-contact-form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: left;
}

.karukera-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
}

.karukera-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.karukera-form-group {
    position: relative;
}

.karukera-form-group input,
.karukera-form-group select,
.karukera-form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.karukera-form-group input::placeholder,
.karukera-form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.karukera-form-group input:focus,
.karukera-form-group select:focus,
.karukera-form-group textarea:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    background: rgba(255, 193, 7, 0.05);
}

.karukera-form-group select {
    cursor: pointer;
    color: #333;
}

.karukera-form-group select option {
    background: #fff;
    color: #333;
}

.karukera-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    background: rgba(255, 193, 7, 0.5);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.karukera-form-submit:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 179, 0, 0.7);
}

@media (max-width: 768px) {
    .karukera-form-row {
        grid-template-columns: 1fr;
    }
    
    .karukera-contact-form {
        max-width: 100%;
    }
}

.contact-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-cta-section.animate .contact-cta {
    opacity: 1;
    transform: translateY(0);
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #8cc63f;
}

.contact-cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
}

/* Responsive design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-left {
        gap: 1rem;
    }
    
    .back-button {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .back-button span {
        display: none;
    }
    
    .karukera-hero {
        padding-top: 100px;
    }
    
    .karukera-hero .hero-cta {
        bottom: 1rem;
    }
    
    .karukera-hero h1 {
        font-size: 3rem;
        padding: 1.5rem 2rem;
        border-radius: 15px;
    }
    
    .karukera-hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .presentation-section {
        padding: 4rem 0;
    }
    
    .values-row {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .commitments-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .commitment-item {
        padding: 2rem 1.5rem;
    }
    
    .comparison {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .promise-highlight,
    .guarantee-highlight {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .who-section,
    .commitments-section,
    .services-section,
    .why-choose-section,
    .guarantee-section,
    .contact-cta-section {
        padding: 3rem 0;
    }
    
    .karukera-hero {
        min-height: 60vh;
    }
    
    .karukera-hero h1 {
        font-size: 2.5rem;
        padding: 1rem 1.5rem;
        border-radius: 12px;
    }
    
    .karukera-hero .hero-cta {
        bottom: 1rem;
    }
    
    .karukera-hero .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .commitment-item {
        padding: 1.5rem 1rem;
    }
    
    .commitment-icon {
        font-size: 2.5rem;
    }
    
    .service-item {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .service-bullet {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .promise-highlight,
    .guarantee-highlight {
        font-size: 0.9rem;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comparison-item {
        padding: 1rem;
    }
}

/* Mobile accessibility and touch targets */
@media (max-width: 768px) {
    /* Ensure minimum 44px touch targets */
    .nav-menu a,
    .mobile-menu-btn,
    .scroll-arrow,
    .back-button {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-menu a {
        padding: 1rem;
        margin: 0.2rem 0;
    }

    /* Improve text contrast for mobile */
    .karukera-hero p {
        color: #444;
    }

    .presentation-content p,
    .service-card p,
    .commitment-item p {
        color: #555;
    }

    /* Focus styles for accessibility */
    .mobile-menu-btn:focus,
    .nav-menu a:focus,
    .back-button:focus {
        outline: 2px solid #8cc63f;
        outline-offset: 2px;
    }
}

/* Animation pour la forme de vague du hero */
@keyframes karukera-slideInWave {
    0% {
        transform: translateX(150%) scale(0.3);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}