/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Compatibilité navigateurs */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Couleurs de l'entreprise */
:root {
    --bleu-fonce: #1a365d;
    --bleu-medium: #2563eb;
    --orange: #ff6b35;
    --blanc: #ffffff;
    --gris-clair: #f8fafc;
    --gris-texte: #475569;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gris-texte);
    background-color: var(--blanc);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.logo h2 {
    color: var(--bleu-fonce);
    font-size: 2rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--bleu-fonce);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--orange);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid var(--orange);
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.menu-toggle span {
    width: 20px;
    height: 3px;
    background: var(--orange);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(37, 99, 235, 0.9) 100%), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--blanc);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--blanc);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: #f8fafc;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--blanc);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--blanc);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--orange);
    color: var(--blanc);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--blanc);
    border: 2px solid var(--blanc);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--blanc);
    color: var(--bleu-fonce);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.tech-icon {
    font-size: 8rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bleu-fonce);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 3rem;
}

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

.service-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--orange);
}

.service-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
    width: 100%;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bleu-fonce);
}

.service-card p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #475569;
}

.service-card li i {
    color: var(--orange);
    font-size: 0.9rem;
    min-width: 16px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--orange);
}

.price-info {
    font-size: 0.9rem;
    color: var(--bleu-fonce);
    font-weight: 600;
}

.service-process {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.service-process h4 {
    font-size: 1rem;
    color: var(--bleu-fonce);
    margin-bottom: 1rem;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.step {
    text-align: center;
    padding: 0.5rem;
}

.step-number {
    display: block;
    width: 24px;
    height: 24px;
    background: var(--orange);
    color: var(--blanc);
    border-radius: 50%;
    line-height: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 auto 0.25rem;
}

.step-text {
    font-size: 0.7rem;
    color: var(--gris-texte);
    line-height: 1.2;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--blanc);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--bleu-fonce);
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: pulse 2s infinite;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--bleu-fonce);
}

.value p {
    color: #64748b;
    font-size: 0.95rem;
}

.story-timeline {
    margin: 3rem 0;
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background: var(--orange);
}

.timeline-item:last-child::before {
    display: none;
}

.year {
    min-width: 120px;
    padding: 0.5rem 1rem;
    background: var(--orange);
    color: var(--blanc);
    border-radius: 20px;
    font-weight: 700;
    text-align: center;
    margin-right: 2rem;
}

.event {
    flex: 1;
    padding: 1rem;
    background: var(--gris-clair);
    border-radius: 8px;
    border-left: 4px solid var(--orange);
}

.event h4 {
    color: var(--bleu-fonce);
    margin-bottom: 0.5rem;
}

.event p {
    color: var(--gris-texte);
    font-size: 0.9rem;
}

.about-text h3 {
    color: var(--bleu-fonce);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gris-clair);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}

.company-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.company-stats .stat-label {
    font-size: 0.9rem;
    color: var(--bleu-fonce);
    font-weight: 600;
}

.certifications {
    margin-top: 3rem;
    text-align: center;
}

.certifications h3 {
    color: var(--bleu-fonce);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cert-badge {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--bleu-fonce), var(--bleu-medium));
    color: var(--blanc);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
    transition: transform 0.3s;
}

.cert-badge:hover {
    transform: translateY(-2px);
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: var(--gris-clair);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.advantage-card {
    background: var(--blanc);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.advantage-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse 3s infinite;
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--blanc);
}

.advantage-card h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--bleu-fonce);
    margin-bottom: 1.5rem;
}

.advantage-content h4 {
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.geo-coverage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.geo-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gris-clair);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.geo-item:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}

.geo-item i {
    font-size: 1.5rem;
    color: var(--orange);
    min-width: 24px;
}

.geo-item div h4 {
    font-size: 0.9rem;
    color: var(--bleu-fonce);
    margin-bottom: 0.25rem;
}

.geo-item div p {
    font-size: 0.8rem;
    color: var(--gris-texte);
    margin: 0;
}

.advantage-content p {
    color: var(--gris-texte);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.comparison-table {
    margin-top: 3rem;
}

.comparison-table h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--bleu-fonce);
    margin-bottom: 2rem;
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    background: var(--blanc);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.comparison th {
    background: linear-gradient(135deg, var(--bleu-fonce), var(--bleu-medium));
    color: var(--blanc);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison td {
    padding: 1rem;
    border-bottom: 1px solid var(--gris-clair);
}

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

.comparison .advantage {
    color: #16a34a;
    font-weight: 600;
}

.comparison .disadvantage {
    color: #dc2626;
    font-weight: 600;
}

/* Resources Section */
.resources {
    padding: 80px 0;
    background: var(--blanc);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-card {
    background: var(--blanc);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.resource-card.guide {
    border-color: rgba(37, 99, 235, 0.3);
}

.resource-card.guide:hover {
    border-color: var(--bleu-medium);
}

.resource-card.project {
    border-color: rgba(255, 107, 53, 0.3);
}

.resource-card.project:hover {
    border-color: var(--orange);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bleu-fonce), var(--bleu-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.project .resource-icon {
    background: linear-gradient(135deg, var(--orange), #e55a2b);
}

.resource-icon i {
    font-size: 1.5rem;
    color: var(--blanc);
}

.resource-card h3 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--bleu-fonce);
    margin-bottom: 0.5rem;
}

.resource-card h4 {
    text-align: center;
    font-size: 1.1rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.resource-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.resource-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gris-texte);
    font-size: 0.9rem;
}

.resource-card li i {
    color: var(--orange);
    font-size: 0.8rem;
}

.resource-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--bleu-fonce), var(--bleu-medium));
    color: var(--blanc);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.case-study .resource-link {
    background: linear-gradient(135deg, var(--orange), #e55a2b);
}

.resource-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.project-summary {
    background: var(--gris-clair);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.project-summary p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.project-highlights,
.project-result {
    margin-bottom: 1.5rem;
}

.project-highlights h5,
.project-result h5 {
    color: var(--bleu-fonce);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
}

.project-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0;
    color: var(--gris-texte);
    font-size: 0.9rem;
}

.project-highlights li i {
    color: var(--orange);
    font-size: 0.8rem;
}

.case-challenge,
.case-achievements,
.case-next,
.case-impact {
    margin-bottom: 1.5rem;
}

.case-challenge h5,
.case-achievements h5,
.case-next h5,
.case-impact h5 {
    color: var(--bleu-fonce);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.case-achievements ul,
.case-next ul {
    list-style: none;
    padding: 0;
}

.case-achievements li,
.case-next li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.25rem 0;
    color: var(--gris-texte);
    font-size: 0.85rem;
    line-height: 1.4;
}

.case-achievements li i {
    color: var(--orange);
    font-size: 0.8rem;
    margin-top: 0.1rem;
}

.case-achievements li strong {
    color: var(--bleu-fonce);
    font-weight: 600;
}

.resources-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bleu-fonce), var(--bleu-medium));
    border-radius: 16px;
    color: var(--blanc);
}

.resources-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.resources-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.resources-cta .btn-primary {
    background: var(--orange);
    color: var(--blanc);
}

.resources-cta .btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--blanc);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    transform: translateX(20px);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--bleu-fonce);
}

.contact-channels {
    margin-bottom: 2rem;
}

.contact-category {
    margin-bottom: 2rem;
}

.contact-category h4 {
    font-size: 1.1rem;
    color: var(--orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-category h4 i {
    font-size: 1rem;
}

.contact-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gris-clair);
    border-radius: 16px;
    border: 2px solid var(--orange);
}

.contact-horizontal-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 250px;
    max-width: 300px;
    text-align: left;
}

.contact-horizontal-item i {
    font-size: 1.2rem;
    color: var(--orange);
    min-width: 20px;
    margin-top: 2px;
}

.contact-horizontal-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-horizontal-item strong {
    color: var(--bleu-fonce);
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-horizontal-item span {
    color: var(--gris-texte);
    font-size: 0.8rem;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-icons i {
    font-size: 1.5rem;
    color: var(--orange);
    transition: all 0.3s;
    cursor: pointer;
}

.social-icons i:hover {
    color: var(--bleu-fonce);
    transform: translateY(-2px);
}

.social-name {
    text-align: center;
    color: var(--bleu-fonce);
    font-size: 1.1rem;
}

.contact-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--orange);
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--orange);
}

.cta-item i {
    font-size: 1.5rem;
    color: var(--orange);
    min-width: 24px;
}

.cta-item div {
    flex: 1;
}

.cta-item strong {
    display: block;
    color: var(--bleu-fonce);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cta-item span {
    color: var(--gris-texte);
    font-size: 0.9rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gris-clair);
    border-radius: 8px;
    border-left: 4px solid var(--orange);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--orange);
    min-width: 20px;
}

.contact-item strong {
    color: var(--bleu-fonce);
    margin-right: 0.5rem;
}

.contact-form {
    background: var(--gris-clair);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bleu-fonce);
    color: var(--blanc);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem 15px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Menu latéral professionnel */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--bleu-fonce) 0%, var(--bleu-medium) 100%);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.2);
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    .hero {
        background-attachment: scroll !important;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Overlay sombre */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
    
    .nav-links li {
        margin: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    
    .nav-links a {
        padding: 1.25rem 1.5rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        display: block;
        color: var(--blanc);
        font-weight: 600;
        font-size: 1.1rem;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        margin-bottom: 0.75rem;
        border: 2px solid transparent;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.3s ease;
    }
    
    .nav-links a:hover::before {
        left: 0;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateX(-5px);
        color: var(--orange);
    }
    
    .nav-links a:active {
        transform: translateX(-3px) scale(0.98);
    }
    
    /* Logo dans le menu */
    .nav-links::after {
        content: 'Fuchs Technology';
        position: absolute;
        top: 2rem;
        left: 2rem;
        color: var(--orange);
        font-size: 1.5rem;
        font-weight: 900;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        width: 35px;
        height: 35px;
        justify-content: center;
        align-items: center;
        background: rgba(37, 99, 235, 0.1);
        border: 2px solid var(--orange);
        border-radius: 8px;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .menu-toggle.active {
        background: rgba(255, 107, 53, 0.3);
        border-color: var(--blanc);
    }
    
    .menu-toggle:hover {
        transform: scale(1.05);
    }
    
    .menu-toggle span {
        width: 20px;
        height: 3px;
        background: var(--orange);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
        
    /* Animation hamburger en X */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--blanc);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--blanc);
    }
    
    .logo h2 {
        font-size: 1.4rem;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 15px;
        gap: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .stat {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        min-width: 250px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tech-icon {
        font-size: 6rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-image {
        height: 160px;
        width: 100%;
        overflow: hidden;
        border-radius: 8px;
    }
    
    .service-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .service-card li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem;
    }
    
    .story-timeline {
        margin: 2rem 0;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .year {
        margin-right: 0;
        margin-bottom: 1rem;
        min-width: auto;
        width: fit-content;
    }
    
    .event {
        text-align: center;
    }
    
    .company-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .value {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.2rem;
    }
    
    .cert-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .cert-badge {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .advantages {
        padding: 60px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
    
    .advantage-card h3 {
        font-size: 1.3rem;
    }
    
    .geo-coverage {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .geo-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .geo-item i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .geo-item div h4 {
        font-size: 1rem;
    }
    
    .geo-item div p {
        font-size: 0.9rem;
    }
    
    .comparison {
        font-size: 0.85rem;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    .comparison th,
    .comparison td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        min-width: 120px;
    }
    
    .resources {
        padding: 60px 0;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resource-card {
        padding: 1.5rem;
    }
    
    .resource-card h3 {
        font-size: 1.2rem;
    }
    
    .resource-card h4 {
        font-size: 1rem;
    }
    
    .resource-card li {
        font-size: 0.85rem;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 15px;
        transform: translateX(10px);
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-category {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .contact-category h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-item {
        padding: 1rem;
        font-size: 0.85rem;
        white-space: normal;
        word-break: break-word;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
        line-height: 1.3;
    }
    
    .contact-item i {
        font-size: 1.5rem;
        margin-bottom: 0;
        min-width: 20px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .social-icons i {
        font-size: 2rem;
    }
    
    .social-name {
        font-size: 1rem;
        text-align: center;
    }
    
    .contact-horizontal {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-horizontal-item {
        min-width: 100%;
        max-width: 100%;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-horizontal-item i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-horizontal-item div {
        align-items: center;
        text-align: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .btn-primary {
        width: 100%;
    }
    
    .footer {
        padding: 30px 15px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
        padding-left: 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section ul {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav {
        padding: 0.75rem 10px;
    }
    
    .hero {
        background-attachment: scroll !important;
    }
    
    .logo h2 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        min-width: 200px;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .services,
    .about,
    .contact,
    .advantages,
    .resources {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-image {
        height: 140px;
        width: 100%;
        overflow: hidden;
        border-radius: 8px;
    }
    
    .service-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-card li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .company-stats .stat-number {
        font-size: 2rem;
    }
    
    .company-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .value {
        padding: 1rem;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
    }
    
    .advantage-card {
        padding: 1rem;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
    }
    
    .advantage-icon i {
        font-size: 1.2rem;
    }
    
    .advantage-card h3 {
        font-size: 1.2rem;
    }
    
    .advantage-content h4 {
        font-size: 0.9rem;
    }
    
    .advantage-content p {
        font-size: 0.85rem;
    }
    
    .geo-item {
        padding: 1rem;
    }
    
    .geo-item i {
        font-size: 1.8rem;
    }
    
    .geo-item div h4 {
        font-size: 0.9rem;
    }
    
    .geo-item div p {
        font-size: 0.8rem;
    }
    
    .resource-card {
        padding: 1rem;
    }
    
    .resource-card h3 {
        font-size: 1.1rem;
    }
    
    .resource-card h4 {
        font-size: 0.95rem;
    }
    
    .resource-card li {
        font-size: 0.8rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-category h4 {
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .contact-horizontal {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .contact-horizontal-item i {
        font-size: 1.5rem;
    }
    
    .contact-horizontal-item strong {
        font-size: 0.85rem;
    }
    
    .contact-horizontal-item span {
        font-size: 0.75rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .comparison th,
    .comparison td {
        padding: 0.5rem 0.3rem;
        font-size: 0.75rem;
        min-width: 100px;
    }

    .tech-icon {
        font-size: 5rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
}

/* Optimisations pour appareils tactiles */
.touch-device .btn,
.touch-device .service-card,
.touch-device .advantage-card,
.touch-device .resource-card {
    transition: transform 0.1s ease;
}

.touch-device .btn:hover,
.touch-device .service-card:hover,
.touch-device .advantage-card:hover,
.touch-device .resource-card:hover {
    transform: scale(1.02);
}

.touch-device .btn:active,
.touch-device .service-card:active,
.touch-device .advantage-card:active,
.touch-device .resource-card:active {
    transform: scale(0.98);
}

/* Amélioration des zones tactiles */
.touch-device .nav-links a {
    padding: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.touch-device .menu-toggle {
    min-width: 40px;
    min-height: 40px;
    padding: 10px;
}

.touch-device .social-icons i {
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Améliorations responsive globales */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services,
    .about,
    .contact,
    .advantages,
    .resources {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 12px;
    }
    
    .nav {
        padding: 0.75rem 12px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services,
    .about,
    .contact,
    .advantages,
    .resources {
        padding: 50px 0;
    }
    
    .logo h2 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
}

/* Animations pour le menu latéral */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Animations avancées */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-30px);
    }
    70% {
        transform: translateY(-15px);
    }
    90% {
        transform: translateY(-4px);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.scale-in {
    opacity: 0;
    animation: scaleIn 0.6s ease forwards;
}

.slide-in-down {
    opacity: 0;
    animation: slideInDown 0.6s ease forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.bounce {
    animation: bounce 2s infinite;
}

/* Animations spécifiques */
.hero-title {
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.8s both;
}

.tech-icon {
    animation: bounce 2s infinite;
}

.service-card:nth-child(1) {
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.service-card:nth-child(2) {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.service-card:nth-child(3) {
    animation: fadeInRight 0.8s ease 0.6s both;
}

.service-card:nth-child(4) {
    animation: fadeInLeft 0.8s ease 0.8s both;
}

.service-card:nth-child(5) {
    animation: fadeInUp 0.8s ease 1s both;
}

.service-card:nth-child(6) {
    animation: fadeInRight 0.8s ease 1.2s both;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}
