/* Variables globales */
:root {
    --primary-color: #00AEEF;
    --dark-color: #222;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --secondary-color: #FF5733; 
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "nexa-text", sans-serif;
    font-weight: 400;
    background-color: #ffffff;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header fixe */
.site-header {
    background: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Logo */
.site-header .logo-link img {
    height: 110px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-family: "nexa", sans-serif;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--dark-color);
    transition: all 0.3s ease-in-out;
}

/* Hero plein écran */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* E-shop flottant */
.eshop-buttons {
    position: absolute;
    top: 30px;
    right: 40px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.eshop-button {
    
    width: 46px;
    height: 46px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.eshop-button svg {
    width: 24px;
    height: 24px;
}

.eshop-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
    border-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    filter: blur(8px);
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

#hero .hidden-logo {
    width: 40vw;
    max-width: 450px;
    height: auto;
    opacity: 0;
    transform: scale(0.5) translateY(50px);
    transition: opacity 1.5s ease-out, transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(1);
}

#hero .visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: 40px;
    height: 40px;
    animation: bounce 2s infinite cubic-bezier(0.5, 0.05, 1, 0.5);
    transform-origin: center; 
}

.scroll-down-indicator .arrow {
    width: 100%;
    height: 100%;
    border: 4px solid #fff; 
    border-right: 0;
    border-top: 0;
    transform: rotate(-45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -20px); }
    60% { transform: translate(-50%, -10px); }
}

/* Layout */
.page-container,
.scroll-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    margin: 0 auto;
}

/* Conteneur */
.page-container {
    max-width: 1200px;
}

/* Sections */
.scroll-section {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
}

.scroll-section:nth-of-type(odd) {
    background-color: var(--light-gray);
}

/* En-tête de page */
.page-header {
    text-align: center;
    margin-bottom: 5rem;
}

/* Contenu centré */
.scroll-section .content,
.page-container .content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

/* Typographie principale */
.page-container h1 {
    font-size: 3.5rem;
    text-align: center;
}

.page-container h1,
.scroll-section h2,
.page-container h2 {
    font-family: "nexa", sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.scroll-section h2,
.page-container h2 {
    font-size: 2.8rem;
}

/* Texte introductif */
.page-container .intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Paragraphes généraux */
.scroll-section p,
.page-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.about-page .content {
    text-align: center;
}

/* Styles de base pour les boutons */
.cta-button,
.quick-contact-button {
    display: inline-block;
    text-decoration: none;
    font-family: "nexa", sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Style spécifique pour CTA */
.cta-button {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.4);
}

/* Page légale */
.legal-page .content {
    text-align: left;
}
.legal-page h2 {
    margin-top: 2rem;
    font-size: 1.8rem;
}

/* Section Services - Design en Cartes */
.services-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Cards */
.service-card-v2,
.value-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Service */
.service-card-v2 {
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Hover */
.service-card-v2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: translateY(4px);
    transition: transform 0.3s ease;
}

/* Effets de survol communs */
.service-card-v2:hover,
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card-v2:hover::before {
    transform: translateY(0);
}

/* Structure de la carte */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

/* Icône et image */
.card-icon-wrapper {
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.card-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Textes et éléments de la carte */
.card-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Flèche avec animation */
.card-arrow {
    font-size: 1.8rem;
    color: #d1d5db;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card-v2:hover .card-arrow {
    transform: translateX(5px) translateY(-5px);
    color: var(--primary-color);
}

/* Tags */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-tags span {
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    flex-grow: 1;
}

/* Style pour la page de sélection des services */
.choice-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

/* Taille maximale pour les cartes dans ce conteneur */
.choice-container .service-card-v2 {
    flex-basis: 400px;
    max-width: 420px;
}

/* Section Contact : Formulaire */
.quick-contact {
    max-width: 700px;
    margin: 3rem auto 3rem auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.quick-contact-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-contact-button svg {
    width: 24px;
    height: 24px;
}

.quick-contact-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.2);
}

/* Styles des formulaires */
.contact-form {
    --form-spacing: 1.5rem;
    --input-padding: 1rem;
    --input-border: 1px solid #ccc;
    --input-radius: 8px;
    --transition-speed: 0.3s;
    
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

/* Groupe de champs */
.form-group {
    margin-bottom: var(--form-spacing);
}

/* Labels */
.form-group label {
    display: block;
    margin-bottom: calc(var(--form-spacing) / 3);
    font-weight: 600;
}

/* Champs de saisie partagés */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--input-padding);
    border: var(--input-border);
    border-radius: var(--input-radius);
    font-family: "nexa-text", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: inherit;
    transition: border-color var(--transition-speed) ease;
    background-color: #fff;
}

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

/* Zone de texte */
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Animations d'apparition */
.hidden-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    visibility: hidden;
}
.section-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Formes décoratives */
.decorative-shape {
    position: absolute;
    display: block;
    z-index: -1;
    opacity: 0.15;
}
.shape-1 {
    width: 150px; height: 150px; background: var(--primary-color);
    top: 15%; left: 10%; border-radius: 50%;
    animation: float-ascend 20s infinite linear alternate;
}
.shape-2 {
    width: 80px; height: 80px; background: var(--secondary-color);
    bottom: 20%; right: 15%;
    animation: float-rotate 15s infinite ease-in-out alternate;
}
.shape-3 {
    width: 200px; height: 10px; background: var(--primary-color);
    top: 25%; right: 5%;
    animation: float-ascend 18s infinite linear alternate;
}
.shape-4 {
    width: 120px; height: 120px; border: 10px solid var(--secondary-color);
    bottom: 15%; left: 12%; border-radius: 50%;
    animation: float-rotate 22s infinite ease-in-out alternate;
}
.shape-5 {
    width: 100px; height: 100px; background: var(--primary-color);
    top: 20%; right: 10%; clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float-rotate 16s infinite ease-in-out alternate;
}
.shape-6 {
    width: 180px; height: 180px; border: 8px solid var(--secondary-color);
    bottom: 25%; left: 8%;
    animation: float-ascend 25s infinite linear alternate;
}

@keyframes float-rotate {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(-20px) rotate(180deg); }
}
@keyframes float-ascend {
    from { transform: translateY(0) translateX(0); }
    to { transform: translateY(-30px) translateX(20px); }
}

/* Pied de page */
.site-footer {
    background-color: var(--dark-color);
    color: #a0a0a0;
    padding: 3rem 2rem;
    text-align: center;
}
.site-footer .footer-content { max-width: 800px; margin: 0 auto; }
.site-footer .footer-socials { margin-bottom: 1.5rem; display: flex; justify-content: center; gap: 20px; }
.site-footer .footer-socials a { color: #ffffff; text-decoration: none; transition: color 0.3s ease; }
.site-footer .footer-socials a:hover { color: var(--primary-color); }
.site-footer .copyright { font-size: 0.9rem; margin-bottom: 1.5rem; }
.site-footer .footer-links { display: flex; justify-content: center; align-items: center; gap: 15px; }
.site-footer .footer-links a { color: #a0a0a0; text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.site-footer .footer-links a:hover { color: #ffffff; }
.site-footer .footer-links span { color: #555; }

/* Cookies */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    backdrop-filter: blur(4px);
}

#cookie-consent-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: #fff;
    color: var(--text-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 2000;
    text-align: center;
}

#cookie-consent-modal h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

#cookie-consent-modal p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

#cookie-consent-modal a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#cookie-consent-modal button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: "nexa", sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-grow: 1;
}

#cookie-accept-btn {
    background-color: var(--primary-color);
    color: #fff;
}
#cookie-accept-btn:hover {
    background-color: #0095c7;
    transform: translateY(-2px);
}

#cookie-decline-btn {
    background-color: #ddd;
    color: #333;
}
#cookie-decline-btn:hover {
    background-color: #ccc;
}

.hidden {
    display: none;
}

/* Messages form */
.form-message {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid transparent;
    text-align: center;
    font-weight: 600;
}

/* États */
.form-message.success,
.form-message.error {
    background-color: #f8d7da;
    border-style: solid;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.form-message.error {
    color: #721c24;
    border-color: #f5c6cb;
}

/* Conteneur principal de la page "À Propos" */
.about-page .page-header {
    margin-bottom: 4rem; /* Espace supplémentaire après l'en-tête */
}

/* Section d'introduction avec photo */
.about-intro {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

/* Conteneur de la photo */
.about-photo {
    flex-shrink: 0; /* Empêche l'image de se réduire */
    width: 280px;
    height: 280px;
    border-radius: 50%; /* Cadre circulaire */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 6px solid #fff;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Assure que l'image remplit le cercle sans être déformée */
}

/* Bloc de texte à côté de la photo */
.about-text {
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    text-align: left;
    margin-bottom: 1.5rem; /* Espace entre les paragraphes */
    line-height: 1.8;
}

.about-text .cta-button {
    margin-top: 1rem;
}

/* Section des valeurs */
.about-values {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.about-values h2 {
    margin-bottom: 3rem;
    font-size: 2.8rem;
}

/* Grille pour les cartes de valeur */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.value-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem auto;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Certificats */
.about-certificates {
    padding-top: 4rem;
}
.about-certificates .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Slider */
.certificate-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.certificate-slider {
    padding: 1rem 0 3rem 0;
}
.certificate-slider .swiper-slide {
    height: auto;
}
.certificate-slider .certificate-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.certificate-slider .certificate-card .card-content {
    flex-grow: 1;
}

.swiper-wrapper {
    display: flex;
    flex-direction: row;
}

.swiper-slide {
    flex-shrink: 0;
    width: auto;
    height: 100%;
}

.certificate-slider-container {
    position: relative; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Nav boutons */
.certificate-slider-container .swiper-button-next,
.certificate-slider-container .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-80%);
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--primary-color) !important; /* Couleur de la flèche */
    transition: all 0.2s ease-in-out;
    display: flex; /* Permet de centrer la flèche à l'intérieur */
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.certificate-slider-container .swiper-button-prev {
    left: 0px; 
}
.certificate-slider-container .swiper-button-next {
    right: 0px; 
}

/* Flèches */
.certificate-slider-container .swiper-button-next::after,
.certificate-slider-container .swiper-button-prev::after {
    content: '';
    border: solid var(--primary-color);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    transition: border-color 0.2s ease-in-out;
}

.certificate-slider-container .swiper-button-prev::after {
    transform: rotate(135deg);
    margin-left: 4px;
}

.certificate-slider-container .swiper-button-next::after {
    transform: rotate(-45deg);
    margin-right: 4px;
}

/* Effet au survol des boutons */
.certificate-slider-container .swiper-button-next:hover,
.certificate-slider-container .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: #ffffff !important;
}

/* On change aussi la couleur de la flèche au survol */
.certificate-slider-container .swiper-button-next:hover::after,
.certificate-slider-container .swiper-button-prev:hover::after {
    border-color: #ffffff;
}

/* Section Réseaux Sociaux Design */
.about-socials {
    padding: 5rem 0;
    text-align: center;
}
.social-links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.social-icon-link {
    display: inline-block;
}

.social-icon-link img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

/* Effet de zoom au survol */
.social-icon-link:hover img {
    transform: scale(1.15);
}

/* Media Queries Regroupées */
@media (max-width: 768px) {
    /* Navigation */
    .site-header {
        padding: 0.5rem 1rem;
    }
    
    /* Menu mobile */
    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: rgba(255, 255, 255, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease-in-out;
        backdrop-filter: blur(5px);
    }
    .nav-menu.active { left: 0; }
    .nav-menu ul {
        flex-direction: column;
        gap: 3rem;
    }
    
    /* Hamburger */
    .hamburger { display: block; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    
    /* Contenu */
    #hero .hidden-logo { width: 70vw; }
    .scroll-section h2, 
    .page-container h1 { font-size: 2.2rem; }
    .scroll-section p, 
    .page-container p { font-size: 1rem; }
    .decorative-shape { display: none; }
    
    /* Page À propos */
    .about-intro {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .about-photo {
        width: 200px;
        height: 200px;
    }
    .about-text,
    .about-text h2,
    .about-text p { text-align: center; }
    .about-values h2 { font-size: 2.2rem; }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    .footer-links span { display: none; }
    
    /* Boutons e-shop */
    .eshop-button {
        width: 36px;
        height: 36px;
    }
    .eshop-button svg {
        width: 18px;
        height: 18px;
    }
    
    /* Boutons de contact rapide */
    .quick-contact-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    .quick-contact-button svg {
        width: 20px;
        height: 20px;
    }
    .quick-contact { gap: 1rem; }
}

/* Slider sur petits écrans */
@media (max-width: 767px) {
    .certificate-slider-container {
        padding: 0 15px;
    }
    .certificate-slider-container .swiper-button-next,
    .certificate-slider-container .swiper-button-prev {
        display: none;
    }
}

/* Animation de transition de page */

/* Animation pages */
main.page-container {
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

main.page-container.is-leaving {
    opacity: 0;
    transform: translateY(20px);
}

/* Responsive */
@media (max-width: 900px) {
    .service-entry,
    .service-entry.reverse {
        flex-direction: column;
    }
}

/* Ajustements pour les boutons de contact rapide sur mobile */
@media (max-width: 768px) {
    .quick-contact-button svg {
        width: 20px;
        height: 20px;
    }
    .quick-contact-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem; 
    }
    .quick-contact {
        gap: 1rem; 
    }

    .site-header {
        padding: 0.5rem 1rem;
    }
    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: rgba(255, 255, 255, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease-in-out;
        backdrop-filter: blur(5px);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 3rem;
    }
    .hamburger {
        display: block;
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    #hero .hidden-logo { width: 70vw; }
    .scroll-section h2, .page-container h1 { font-size: 2.2rem; }
    .scroll-section p, .page-container p { font-size: 1rem; }
    .decorative-shape { display: none; }

    .service-entry-text {
        text-align: center;
    }
    .service-checklist {
        text-align: left;
        display: inline-block;
    }

    .footer-links { flex-direction: column; gap: 10px; }
    .footer-links span { display: none; }

    .eshop-button {
    width: 36px;
    height: 36px;
    }

    .eshop-button svg {
    width: 18px;
    height: 18px;
    }
}
