:root {
    /* Palette de couleurs principale */
    --teal-primary: #008080;
    --teal-dark: #006666;
    --teal-light: #00a3a3;
    --orange-primary: #FF5722;
    --orange-dark: #F4511E;
    --orange-light: #FF7043;
    
    /* Couleurs neutres */
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --black: #212529;

    /* Couleurs fonctionnelles */
    --primary-color: var(--teal-primary);
    --secondary-color: var(--orange-primary);
    --text-color: var(--gray-800);
    --background-color: var(--white);
    --border-color: var(--gray-300);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: var(--white);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 30px;
    width: auto;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--orange-primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--orange-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.cta-button {
    background: var(--orange-primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(255, 87, 34, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gray-100), var(--white));
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5% 60px;
    color: var(--teal-primary);
    position: relative;
    overflow: hidden;
}

/* Hero réduit pour la page produits */
.hero-small {
    min-height: 40vh;
    padding: 100px 5% 60px;
    text-align: center;
    justify-content: center;
}

.hero-small .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-small h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.hero-small .slogan {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hero-small p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-image {
    flex: 0 0 45%;
    max-width: 600px;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content .slogan {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Media queries for responsive design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 120px 5% 60px;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-image {
        max-width: 80%;
    }

    .stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .slogan {
        font-size: 1.4rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 90%;
    }
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--orange-primary);
    font-weight: 700;
}

.stat-item p {
    color: var(--orange-primary);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 5%;
    background: linear-gradient(to bottom right, var(--gray-100), var(--white));
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.2);
    border-color: var(--teal-light);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Expertise Section */
.expertise {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-primary));
    padding: 100px 5%;
    position: relative;
}

.expertise h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.expertise-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.expertise-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.expertise-icon i {
    font-size: 2.8rem;
    color: var(--teal-primary);
    position: relative;
    z-index: 2;
}

.expertise-icon .expertise-icon-secondary {
    position: absolute;
    font-size: 1.8rem;
    color: var(--orange-primary);
    opacity: 0.3;
    transform: translate(50%, 50%);
    transition: all 0.4s ease;
}

.expertise-card h3 {
    color: var(--teal-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.expertise-card:hover .expertise-icon i {
    color: var(--orange-primary);
}

.expertise-card:hover .expertise-icon .expertise-icon-secondary {
    color: var(--teal-primary);
    opacity: 0.5;
    transform: translate(40%, 40%);
}

/* Animation d'apparition au défilement */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expertise-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.expertise-card:nth-child(1) { animation-delay: 0.1s; }
.expertise-card:nth-child(2) { animation-delay: 0.2s; }
.expertise-card:nth-child(3) { animation-delay: 0.3s; }
.expertise-card:nth-child(4) { animation-delay: 0.4s; }
.expertise-card:nth-child(5) { animation-delay: 0.5s; }
.expertise-card:nth-child(6) { animation-delay: 0.6s; }
.expertise-card:nth-child(7) { animation-delay: 0.7s; }

@media (max-width: 768px) {
    .expertise {
        padding: 60px 5%;
    }

    .expertise h2 {
        font-size: 2.2rem;
    }

    .expertise-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .expertise-grid {
        gap: 1.5rem;
    }

    .expertise-card {
        padding: 2rem;
    }

    .expertise-icon {
        font-size: 3rem;
    }

    .expertise-card h3 {
        font-size: 1.3rem;
    }
}

/* Contact Section */
.contact {
    padding: 40px 5%;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact h2 {
    display: none;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Style commun pour les grands boutons */
.btn-large {
    font-size: 1.25rem;
    padding: 15px 40px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, var(--teal-primary), var(--teal-light));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.2);
    cursor: pointer;
    display: inline-block;
    margin: 0 auto;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.3);
    background: linear-gradient(45deg, var(--teal-dark), var(--teal-primary));
}

.btn-large:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 128, 128, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-primary));
    color: var(--white);
    padding: 60px 5% 20px;
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-links a:hover {
    color: var(--orange-primary);
    transform: translateX(5px);
}

.social-links a i.fa-linkedin {
    color: var(--white);
}

.social-links a:hover i.fa-linkedin {
    color: #0077B5;
}

.social-links a:hover i.fa-twitter {
    color: #1DA1F2;
}

.social-links a:hover i.fa-instagram {
    color: #E4405F;
}

.social-links a:hover i.fa-whatsapp {
    color: #25D366;
}

.social-links i {
    font-size: 1.2rem;
    width: 24px;
}

.social-links .fa-linkedin {
    color: #0077B5;
}

.social-links .fa-twitter {
    color: #1DA1F2;
}

.social-links .fa-instagram {
    color: #E4405F;
}

.social-links .fa-whatsapp {
    color: #25D366;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-card {
        margin-bottom: 1rem;
    }
}

/* Formation Section */
.formation {
    padding: 100px 5%;
    background: linear-gradient(to bottom right, var(--white), var(--gray-100));
}

.formation h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.formation-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.formation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.2);
    border-color: var(--teal-light);
}

.formation-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.formation-card:hover .formation-icon {
    transform: scale(1.1);
}

.formation-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.formation-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 2;
}

.formation-details li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.formation-details li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.formation-card:hover .formation-details li {
    transform: translateX(5px);
    opacity: 1;
}

.formation-card:hover .formation-details li:before {
    transform: translateX(3px);
}

.formation-card .cta-button {
    width: 100%;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.formation-card:hover .cta-button {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Ajout de l'animation de défilement doux */
html {
    scroll-behavior: smooth;
}

/* Animation d'apparition au défilement */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.formation-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.formation-card:nth-child(1) { animation-delay: 0.1s; }
.formation-card:nth-child(2) { animation-delay: 0.2s; }
.formation-card:nth-child(3) { animation-delay: 0.3s; }
.formation-card:nth-child(4) { animation-delay: 0.4s; }
.formation-card:nth-child(5) { animation-delay: 0.5s; }
.formation-card:nth-child(6) { animation-delay: 0.6s; }

.duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.formation-price {
    text-align: center;
    margin: 1.5rem 0;
}

.formation-price span {
    color: #666;
    font-size: 0.9rem;
}

.formation-price h4 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 0.5rem;
}

/* Partenaires Section */
.partenaires {
    padding: 5rem 5%;
    background-color: var(--white);
}

.partenaires h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

.partenaire-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 155, 155, 0.1);
}

.partenaire-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 155, 155, 0.2);
}

.partenaire-logo {
    margin-bottom: 1.5rem;
}

.partenaire-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.partenaire-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.partenaire-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partenaire-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .partenaires-grid {
        grid-template-columns: 1fr;
    }
    
    .partenaire-card {
        padding: 2rem;
    }
}

/* Modal Inscription */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.inscription-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: var(--light-bg);
    cursor: not-allowed;
}

/* Style pour la checkbox personnalisée */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Responsive Design pour le modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Évite le zoom sur mobile */
    }
}

.form-group select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-6-6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select:hover {
    border-color: var(--primary-color);
}

.form-group select option {
    padding: 0.5rem;
}

/* Style pour les options désactivées */
.form-group select option:disabled {
    color: #999;
    background-color: #f5f5f5;
}

/* Animation pour le changement d'options */
.form-group select {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .form-group select {
        font-size: 16px; /* Évite le zoom sur mobile */
    }
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.07;
    z-index: 1;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.services-hero-content {
    max-width: 1000px;
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.services-hero-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-hero-separator {
    width: 80px;
    height: 4px;
    background: var(--white);
    margin: 1.5rem auto;
    border-radius: 2px;
    position: relative;
}

.services-hero-separator::before,
.services-hero-separator::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    top: -2px;
}

.services-hero-separator::before {
    left: -4px;
}

.services-hero-separator::after {
    right: -4px;
}

.services-hero-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-hero-breadcrumb {
    position: absolute;
    top: 30px;
    left: 5%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.services-hero-breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.services-hero-breadcrumb a:hover {
    opacity: 1;
}

.services-hero-breadcrumb span {
    opacity: 0.7;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .services-hero {
        min-height: 60vh;
        padding: 80px 5% 60px;
    }
    
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-content .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .services-hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .services-hero-breadcrumb {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Products Section */
.products {
    padding: 40px 5%;
    background: var(--light-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.product-description {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 0.85rem;
    line-height: 1.3;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    text-align: left;
}

.product-features li {
    padding: 3px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 18px;
    font-size: 0.8rem;
    line-height: 1.2;
}

.product-features li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 0.9rem;
}

.product-card .cta-button {
    width: 100%;
    padding: 6px 15px;
    font-size: 0.85rem;
    margin-top: auto;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 12px;
    }
    
    .product-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Form Messages */
.success-message, .error-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.success-content, .error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.success-content i, .error-content i {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.success-content h3, .error-content h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.success-content p, .error-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.inscription-container, .contact-container {
    text-align: center;
    padding: 40px 0;
    margin: 20px 0;
    background: linear-gradient(to right, rgba(0, 128, 128, 0.05), rgba(0, 128, 128, 0.1), rgba(0, 128, 128, 0.05));
} 