/* Omnitech - Page Styles */

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

/* Navigation spécifique à Omnitech */
.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: #262626;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

/* 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 Omnitech */
@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: #f72f08;
        background: rgba(247, 47, 8, 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 */
    .omnitech-hero {
        padding-top: 100px;
        min-height: 90vh !important;
    }

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

    .hero-cta {
        bottom: 1rem;
    }

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

    .omnitech-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 */
    .omnitech-hero {
        padding-top: 80px;
        min-height: 85vh !important;
    }

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

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

    .omnitech-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: #262626;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(254, 249, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 249, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Hero section Omnitech */
.omnitech-hero {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 210, 210, 0) 100%);
    position: relative;
    overflow: hidden;
}

.omnitech-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, rgba(247, 47, 8, 0.12) 0%, rgba(38, 38, 38, 0.06) 100%);
    border-radius: 0;
    clip-path: polygon(
        20% 0%,
        100% 0%,
        100% 100%,
        60% 100%,
        60% 75%,
        40% 75%,
        40% 50%,
        20% 50%,
        20% 25%,
        0% 25%,
        0% 0%
    );
    transform: translateX(100%);
    opacity: 0;
    animation: omnitech-slideInShape 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
    box-shadow: none;
}

.omnitech-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;
}

.omnitech-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(254, 249, 255, 0.5);
    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: #262626;
}

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

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

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

.omnitech-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;
}

.omnitech-hero .scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(254, 249, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(247, 47, 8, 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: #f72f08;
    animation: omnitech-bounce 2s infinite;
}

.omnitech-hero .scroll-arrow:hover {
    background: rgba(254, 249, 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(247, 47, 8, 0.5);
    transform: translateY(-3px);
}

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

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

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


.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-omnitech {
    max-width: 300px;
    height: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0) saturate(0);
}

.logo-omnitech:hover {
    transform: scale(1.05);
    filter: brightness(0) saturate(0);
}

.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: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    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: #262626;
    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(247, 47, 8, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #262626;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-icon {
    background: rgba(247, 47, 8, 0.1);
    transform: scale(1.1);
    color: #262626;
    border-color: #f72f08;
}

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

/* Mission section */
.mission-section {
    background: url('assets/d-c-5tBvpnvUEHI-unsplash.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    position: relative;
    color: #FEF9FF;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(38, 38, 38, 0.8);
    z-index: 1;
    pointer-events: none;
}

.mission-section .container {
    position: relative;
    z-index: 2;
}

.mission-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;
}

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

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(254, 249, 255, 0.9);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 800px;
    margin: 3rem auto 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    position: relative;
}

.mission-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mission-column:nth-child(2) {
    margin-top: 4rem;
}

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

.mission-item {
    position: relative;
    text-align: center;
    background: rgba(254, 249, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(254, 249, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    z-index: 2;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Arrows removed for staggered layout */

.mission-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(247, 47, 8, 0.1);
    color: #f72f08;
    border: 2px solid #f72f08;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-item:hover .mission-step-icon {
    background: rgba(247, 47, 8, 0.2);
    transform: scale(1.1);
}

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

.mission-section.animate .mission-item:nth-child(1) {
    transition-delay: 0.5s;
}

.mission-section.animate .mission-item:nth-child(2) {
    transition-delay: 0.7s;
}

.mission-section.animate .mission-item:nth-child(3) {
    transition-delay: 0.9s;
}

.mission-section.animate .mission-item:nth-child(4) {
    transition-delay: 1.1s;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(254, 249, 255, 0.15);
}


.mission-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #FEF9FF;
    flex-shrink: 0;
}

.mission-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(254, 249, 255, 0.9);
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Services section */
.services-section {
    background: rgba(254, 249, 255, 0.05);
}

.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: #ffffff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    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: #ffffff;
}

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

.service-card:hover .service-icon {
    background: rgba(247, 47, 8, 0.1);
    transform: scale(1.1);
    color: #f72f08;
    border-color: #f72f08;
}

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

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

/* 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);
}

.mission-section h2 {
    color: #FEF9FF;
}

.services-section h2,
.why-choose-section h2 {
    color: #f72f08;
}

.guarantee-section h2 {
    color: #262626;
}

/* 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);
}

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

/* 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: #ffffff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    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;
}

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

.omnitech-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(0, 0, 0, 0.05);
}

.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: #262626;
}

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

.criteria {
    font-weight: 600;
    color: #262626;
    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 */
.guarantee-section {
    background: url('assets/yue-wu-gJ-PU9wNOM4-unsplash.jpg') center top/cover no-repeat;
    color: #262626;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.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: #262626;
    margin-bottom: 30px;
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: inline-block;
}

.guarantee-intro {
    color: #262626;
    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;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 12px;
}

.guarantee-intro p {
    color: #262626;
    margin: 0;
}

.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(38, 38, 38, 0.2) 20%, 
        rgba(38, 38, 38, 0.4) 50%, 
        rgba(38, 38, 38, 0.2) 80%, 
        transparent 100%);
    justify-self: center;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    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.95);
    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(38, 38, 38, 0.3);
    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: #262626;
}

.guarantee-item:hover .guarantee-icon {
    background: rgba(38, 38, 38, 0.1);
    border-color: #262626;
    transform: scale(1.1);
}

.guarantee-text {
    flex: 1;
}

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

.guarantee-text p {
    color: rgba(38, 38, 38, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.guarantee-cta {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    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: #262626;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.guarantee-cta p {
    color: rgba(38, 38, 38, 0.9);
    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);
    }
}

@media (max-width: 768px) {
    .guarantee-section h2 {
        font-size: 2rem;
        padding: 1rem 1.5rem;
    }
    
    .guarantee-intro {
        padding: 1.5rem;
        max-width: 90%;
        font-size: 1.1rem;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guarantee-divider {
        width: 200px;
        height: 1px;
        background: linear-gradient(to right, 
            transparent 0%, 
            rgba(38, 38, 38, 0.2) 20%, 
            rgba(38, 38, 38, 0.4) 50%, 
            rgba(38, 38, 38, 0.2) 80%, 
            transparent 100%);
    }
    
    .guarantee-right .guarantee-item {
        flex-direction: row;
        transform: translateX(-30px);
        animation: slideInLeft 0.6s ease-out forwards;
    }
}

/* Contact CTA section */
.contact-cta-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 1);
}

.omnitech-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 .omnitech-contact-form-section {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

.omnitech-form-group input,
.omnitech-form-group select,
.omnitech-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: #262626;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.omnitech-form-group input:focus,
.omnitech-form-group select:focus,
.omnitech-form-group textarea:focus {
    outline: none;
    border-color: #f72f08;
    box-shadow: 0 0 0 3px rgba(247, 47, 8, 0.2);
    background: rgba(247, 47, 8, 0.05);
}

.omnitech-form-group select {
    cursor: pointer;
    color: #262626;
}

.omnitech-form-group select option {
    background: #FEF9FF;
    color: #262626;
}

.omnitech-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    background: rgba(247, 47, 8, 0.9);
    border: 1px solid rgba(247, 47, 8, 0.3);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.omnitech-form-submit:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(247, 47, 8, 0.7);
}

/* Mission vertical staggered layout responsive */
@media (max-width: 768px) {
    .mission-grid {
        max-width: 500px;
        gap: 2rem;
    }
    
    .mission-column:nth-child(2) {
        margin-top: 2.5rem;
    }
    
    .mission-column {
        gap: 2rem;
    }
    
    .mission-item {
        min-height: 240px;
    }
    
    .mission-step-icon {
        width: 50px;
        height: 50px;
    }
    
    .mission-item h4 {
        font-size: 1.1rem;
    }
    
    .mission-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 320px;
    }
    
    .mission-column:nth-child(2) {
        margin-top: 0;
    }
    
    .mission-column {
        gap: 2rem;
    }
    
    .mission-item {
        padding: 1.8rem 1.5rem;
        min-height: 220px;
    }
    
    .mission-step-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }
    
    .mission-item h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .mission-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

.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: #f72f08;
}

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

/* Responsive design - Desktop navigation hidden on mobile */
@media (max-width: 768px) {
    .nav-menu:not(.active) {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .nav-left {
        gap: 1rem;
    }
    
    .back-button {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .back-button span {
        display: none;
    }
    
    .omnitech-hero {
        padding-top: 100px;
    }
    
    .omnitech-hero .hero-cta {
        bottom: 1rem;
    }
    
    .omnitech-hero h1 {
        font-size: 3rem;
        padding: 1.5rem 2rem;
        border-radius: 15px;
    }
    
    .omnitech-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;
    }
    
    .mission-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .mission-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .presentation-section,
    .mission-section,
    .services-section,
    .why-choose-section,
    .guarantee-section,
    .contact-cta-section {
        padding: 3rem 0;
    }
    
    .omnitech-hero {
        min-height: 60vh;
    }
    
    .omnitech-hero h1 {
        font-size: 2.5rem;
        padding: 1rem 1.5rem;
        border-radius: 12px;
    }
    
    .omnitech-hero .hero-cta {
        bottom: 1rem;
    }
    
    .omnitech-hero .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-item {
        padding: 1.5rem 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 */
    .omnitech-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 #f72f08;
        outline-offset: 2px;
    }
}

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