/*
Theme Name: Hello Biz Child - TechnoCity
Description: Thème enfant Hello Biz personnalisé pour TechnoCity avec charte graphique moderne
Author: TechnoCity
Template: hello-biz
Version: 1.0.0
*/

/* ==========================================================================
   TECHNOCITY - CSS PERSONNALISÉ POUR HELLO BIZ CHILD
   ========================================================================== */

/* Import des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ==========================================================================
   VARIABLES CSS PERSONNALISÉES
   ========================================================================== */
:root {
    /* Couleurs principales */
    --techno-primary: #7ED321;
    --techno-secondary: #2E86AB;
    --techno-accent: #FF6B35;

    /* Couleurs texte */
    --techno-text-primary: #1A1A1A;
    --techno-text-secondary: #6B7280;

    /* Couleurs backgrounds */
    --techno-bg-primary: #FFFFFF;
    --techno-bg-secondary: #F8FAFC;
    --techno-border: #E5E7EB;

    /* Couleurs d'état */
    --techno-success: #10B981;
    --techno-warning: #F59E0B;
    --techno-error: #EF4444;
    --techno-info: #3B82F6;

    /* Polices */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Espacements */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   TYPOGRAPHY GLOBALE
   ========================================================================== */

/* Headlines - Poppins */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title {
    font-family: var(--font-primary), sans-serif;
    font-weight: 600;
    color: var(--techno-text-primary);
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

/* ==========================================================================
   BOUTONS PERSONNALISÉS
   ========================================================================== */
.elementor-button,
.wp-block-button__link {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

/* Bouton primaire */

.techno-btn-primary,
.techno-btn-secondary {
    font-family: var(--font-primary), sans-serif !important;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bouton primaire */

.techno-btn-primary {
    background: var(--techno-primary) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(126, 211, 33, 0.3);
}


.techno-btn-primary:hover {
    background: #6BC91A !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(126, 211, 33, 0.4);
}


.elementor-button.elementor-button-primary,
.techno-btn-primary {
    background: var(--techno-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.elementor-button.elementor-button-primary:hover,
.techno-btn-primary:hover {
    background: #6BC91A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Bouton secondaire */
.elementor-button.elementor-button-secondary,
.techno-btn-secondary {
    background: var(--techno-secondary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.elementor-button.elementor-button-secondary:hover,
.techno-btn-secondary:hover {
    background: #256B8A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Bouton outline */
/*.techno-btn-outline {
    background: transparent;
    color: var(--techno-primary);
    border: 2px solid var(--techno-primary);
}

.techno-btn-outline:hover {
    background: var(--techno-primary);
    color: white;
}*/


/* ==========================================================================
   CARDS ET CONTENEURS
   ========================================================================== */
.techno-card,
.elementor-widget-container .card {
    background: var(--techno-bg-primary);
    border: 1px solid var(--techno-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.techno-card:hover,
.elementor-widget-container .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.techno-card-top-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--techno-primary), var(--techno-secondary));
}

.techno-card-top-border {
    position: relative;
    overflow: hidden;
}

.techno-card-top-border .elementor-icon-box-icon{
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--techno-primary), var(--techno-secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px 0!important;
    font-size: 2rem;
}


@media (max-width: 768px) {
    .techno-card-top-border .elementor-icon-box-icon{
        width: 50px;
        height: 50px;
    }
}

.techno-card-top-border-mini .elementor-icon-box-icon{
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--techno-primary), var(--techno-secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px 0!important;
    font-size: 2rem;
}

.techno-card-top-border-mini.center .elementor-icon-box-icon{
    margin: 0 auto 18px auto!important;
}
.techno-card-top-border-mini.bg-grey {
 background: #F8FAFC;
}
.techno-card-top-border-mini.bg-grey:hover {
    background: #FFF;
}

.techno-card-top-border-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--techno-primary), var(--techno-secondary));
}

.techno-card-top-border-mini {
    position: relative;
    overflow: hidden;
}



/* ==========================================================================
   FORM
   ========================================================================== */
/* Contact Form 7 - Style TechnoCity */
.techno-contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.techno-contact-form .form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.techno-contact-form .form-intro h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.techno-contact-form .form-intro p {
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.6;
}

.techno-contact-form .form-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.techno-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.techno-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.techno-contact-form .form-group.full-width {
    width: 100%;
}

.techno-contact-form .form-group.half-width {
    width: 100%;
}

.techno-contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
}

.techno-contact-form .wpcf7-form-control {
    width: 100% !important;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
    display: block;
}

.checkbox-group .wpcf7-form-control {
    width: 100% !important;
    padding: 0 16px!important;
    border: none!important;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
    display: block;
}

.techno-contact-form .wpcf7-form-control:focus {
    outline: none;
    border-color: #7ED321;
}

.techno-contact-form .wpcf7-textarea {
    min-height: 120px;
    resize: vertical;
}

.techno-contact-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.techno-contact-form .checkbox-group p{
   margin: 0;
}

.techno-contact-form .checkbox-group input[type="checkbox"] {
    width: auto !important;
    margin-top: 4px;
    margin-right: 10px;
}

.techno-contact-form .checkbox-group label,
.techno-contact-form .wpcf7-list-item-label {
    margin-bottom: 0 !important;
    font-weight: 400 !important;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

.techno-contact-form .checkbox-group.required label {
    font-weight: 500 !important;
}

.techno-contact-form .form-submit {
    text-align: center;
    margin-top: 20px;
}

.techno-contact-form .btn-primary {
    background: #7ED321 !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(126, 211, 33, 0.3);
    width: 100%;
    max-width: 300px;
}

.techno-contact-form .btn-primary:hover {
    background: #6BC91A !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(126, 211, 33, 0.4) !important;
}

/* Messages de validation */
.techno-contact-form .wpcf7-not-valid-tip {
    color: #EF4444;
    font-size: 14px;
    margin-top: 5px;
}

.techno-contact-form .wpcf7-validation-errors {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.techno-contact-form .wpcf7-mail-sent-ok {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #059669;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.techno-contact-form .wpcf7-mail-sent-ok::before {
    content: "✓";
    background: #10B981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Loading spinner */
.techno-contact-form .wpcf7-spinner {
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .techno-contact-form {
        padding: 30px 20px;
    }

    .techno-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .techno-contact-form .form-intro h3 {
        font-size: 1.6rem;
    }

    .techno-contact-form .btn-primary {
        width: 100% !important;
        max-width: none !important;
    }
}

/* Style pour les listes déroulantes */
.techno-contact-form .wpcf7-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 45px;
}

/* Style pour les checkboxes */
.techno-contact-form .wpcf7-checkbox .wpcf7-list-item,
.techno-contact-form .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.techno-contact-form .wpcf7-checkbox .wpcf7-list-item {
    /* Pour les checkbox simples sans label englobant */
    align-items: flex-start;
}

.techno-contact-form .wpcf7-checkbox input[type="checkbox"],
.techno-contact-form .wpcf7-acceptance input[type="checkbox"] {
    margin: 0 !important;
    margin-top: 4px !important;
    margin-right: 10px !important;
    width: auto !important;
    flex-shrink: 0;
}

/* Spécifique pour les checkbox sans label englobant */
.techno-contact-form .wpcf7-checkbox .wpcf7-list-item-label {
    margin: 0 !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: #6B7280 !important;
    line-height: 1.5 !important;
    flex: 1;
}

/* Spécifique pour les acceptance avec label englobant */
.techno-contact-form .wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 !important;
    cursor: pointer;
}

.techno-contact-form .wpcf7-acceptance .wpcf7-list-item-label {
    margin: 0 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    color: #6B7280 !important;
    line-height: 1.5 !important;
    flex: 1;
}


/* ==========================================================================
   SECTIONS AVEC DÉGRADÉS
   ========================================================================== */
.techno-gradient-primary,
.elementor-section.gradient-primary {
    background: linear-gradient(135deg, var(--techno-primary) 0%, var(--techno-secondary) 100%) !important;
    color: white;
}

.techno-gradient-secondary {
    background: linear-gradient(135deg, var(--techno-secondary) 0%, var(--techno-accent) 100%) !important;
    color: white;
}

.techno-gradient-subtle {
    background: linear-gradient(135deg, var(--techno-bg-secondary) 0%, #E5E7EB 100%) !important;
}

/* ==========================================================================
   CAROUSEL DE PRODUITS SHORTCODE
   ========================================================================== */
.techno-products-carousel {
    background: white;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.techno-carousel-container {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
}

.techno-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.techno-product-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.techno-product-content h3 {
    font-family: var(--font-primary), sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--techno-text-primary);
}

.techno-product-subtitle {
    font-size: 1.2rem;
    color: var(--techno-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.techno-product-description {
    color: var(--techno-text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.techno-product-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.techno-product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--techno-text-secondary);
}

.techno-product-features li::before {
    content: '✓';
    background: var(--techno-primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.techno-product-visual {
    background: linear-gradient(135deg, var(--techno-primary), var(--techno-secondary));
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.techno-product-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="60" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    z-index: 1;
}

.techno-product-visual .product-image {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.techno-product-visual:hover .product-image {
    transform: scale(1.05);
}

.techno-product-visual .product-icon-fallback {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Carousel Navigation */
.techno-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.techno-carousel-btn {
    background: var(--techno-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.techno-carousel-btn:hover {
    background: #6BC91A;
    transform: scale(1.1);
}

.techno-carousel-btn:disabled {
    background: var(--techno-text-secondary);
    cursor: not-allowed;
    transform: none;
}

/* Carousel Indicators */
.techno-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.techno-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--techno-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.techno-indicator.active {
    background: var(--techno-primary);
    transform: scale(1.2);
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

/* Mobile */
@media (max-width: 767px) {
    .techno-hide-mobile {
        display: none !important;
    }

    .techno-card {
        padding: var(--spacing-md);
    }

    .elementor-button,
    .techno-btn-primary,
    .techno-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .techno-product-slide {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .techno-product-visual {
        order: -1;
        height: 250px;
    }

    .techno-product-content h3 {
        font-size: 1.8rem;
    }

    .techno-carousel-nav {
        gap: 15px;
    }

    .techno-carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .techno-hide-tablet {
        display: none !important;
    }

    .techno-product-slide {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .techno-product-content {
        text-align: center;
    }

    .techno-product-visual {
        order: -1;
        height: 280px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .techno-hide-desktop {
        display: none !important;
    }
}

/* ==========================================================================
   CLASSES UTILITAIRES
   ========================================================================== */
.techno-text-center { text-align: center; }
.techno-text-left { text-align: left; }
.techno-text-right { text-align: right; }

.techno-mb-sm { margin-bottom: var(--spacing-sm); }
.techno-mb-md { margin-bottom: var(--spacing-md); }
.techno-mb-lg { margin-bottom: var(--spacing-lg); }

.techno-mt-sm { margin-top: var(--spacing-sm); }
.techno-mt-md { margin-top: var(--spacing-md); }
.techno-mt-lg { margin-top: var(--spacing-lg); }

.techno-p-sm { padding: var(--spacing-sm); }
.techno-p-md { padding: var(--spacing-md); }
.techno-p-lg { padding: var(--spacing-lg); }

/* ==========================================================================
   COULEURS D'ÉTAT POUR ÉLÉMENTS DYNAMIQUES
   ========================================================================== */
.techno-success { color: var(--techno-success); }
.techno-warning { color: var(--techno-warning); }
.techno-error { color: var(--techno-error); }
.techno-info { color: var(--techno-info); }

.techno-bg-success { background-color: var(--techno-success); color: white; }
.techno-bg-warning { background-color: var(--techno-warning); color: white; }
.techno-bg-error { background-color: var(--techno-error); color: white; }
.techno-bg-info { background-color: var(--techno-info); color: white; }




/* ==========================================================================
   CUSTOM
   ========================================================================== */

header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--techno-border);
    position: fixed!important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.admin-bar header {
    top: 32px!important; /* Hauteur de la barre admin sur desktop */
}


@media screen and (max-width: 782px) {
    body.admin-bar header {
        top: 46px!important;  /* Hauteur de la barre admin sur mobile */
    }
}

.hero-title .hero-highlight {
    color: white;
    font-weight: 700!important;
    display: inline-block!important;
    position: relative!important;
    font-size: 1.05em!important;
    background: rgba(255, 255, 255, 0.1)!important;
    padding: 5px 15px!important;
    border-radius: var(--radius-sm)!important;
    backdrop-filter: blur(10px)!important;
    border: 1px solid rgba(255, 255, 255, 0.2)!important;
    text-align : center;
    width:fit-content!important;
    margin-top: 10px;
}

.hero-title h1.elementor-heading-title{
    font-family: var(--font-primary), sans-serif !important;
    font-size: clamp(2.5rem, 6vw, 4rem)!important;
    font-weight: 700!important;
    margin-bottom: 30px!important;
    line-height: 1.1!important;
    color: white!important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2)!important;
}

@media (max-width: 767px) {
    .hero-title h1.elementor-heading-title{
        font-size: 20px!important;
        margin-bottom: 30px!important;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    background: url("/wp-content/uploads/2025/06/background-hero.svg");
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.hero-a-propos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background: url("/wp-content/themes/hello-biz-child/images/svg/svg_background_bis.svg");
}



.btn-primary.elementor-widget-button a.elementor-button:hover{
    background: #E55A2B;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-primary.elementor-widget-button a.elementor-button{
    background: var(--techno-accent);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary), sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    z-index: 1;
    position: relative;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline.elementor-widget-button a.elementor-button:hover{
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline.elementor-widget-button a.elementor-button{
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 16px 34px;
    border-radius: var(--radius-md);
    font-family: var(--font-primary), sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    z-index: 1;
    position: relative;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-features li {
    display: flex
;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '•';
    color: var(--techno-primary);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: -2px;
}

.techno-carousel-container {
    overflow: visible; /* Important pour voir les aperçus */
}

.swiper-slide:not(.swiper-slide-active) {
    opacity: 1.0; /* Slides non-actives moins visibles */
    transform: scale(0.95); /* Légèrement plus petites */
    transition: all 0.3s ease;
}

.swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}


.grid-engagement .elementor-icon-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--techno-primary), var(--techno-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr!important;
}

@media (max-width: 1024px) {
    .footer-content {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .elementor-element.elementor-element-d8aa00c, .elementor-element.elementor-element-17c2449 , .elementor-element.elementor-element-faca492{
        width: calc(33% - 20px)!important;
    }
}



h2.mission {
    font-family: var(--font-primary), sans-serif;
    color: var(--techno-text-primary);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
}


.elementor-element.methodology-steps .step > .elementor-widget-container {
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.elementor-element.methodology-steps .step > .elementor-widget-container:hover {
    border-color: var(--techno-primary);
    transform: translateY(-2px);
}

.tech-tag p {
    margin:0;
    background: var(--techno-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}


.partenariat.elementor-widget-image-carousel .swiper-slide{
    opacity: 1;
}

.partenariat.elementor-widget-image-carousel .swiper-slide img{
    height: 160px!important;
    width: 100%!important;
    object-fit: contain;
    opacity: 1;
}


.elementor-element.solution-card {
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--techno-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.elementor-element.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--techno-primary);
}

.elementor-element.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--techno-primary), var(--techno-secondary));
}

.elementor-element.solution-card .elementor-icon {
    background: linear-gradient(45deg, var(--techno-primary), var(--techno-secondary));
    border-radius: var(--radius-lg);
}

.elementor-element.solution-card li.elementor-icon-list-item::before, .elementor-element.avantages-product li.elementor-icon-list-item::before{
    content: '✓';
    background: var(--techno-primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;

}




.elementor-element.solution-card li.elementor-icon-list-item, .elementor-element.avantages-product li.elementor-icon-list-item{
    gap: 16px;
}

.elementor-element.solution-card span.elementor-icon-list-icon, .elementor-element.avantages-product span.elementor-icon-list-icon{
    display: none;
}

.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--techno-border);
    font-size: 0.9rem;
}

.specs-list li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: var(--techno-text-primary);
}

.spec-value {
    color: var(--techno-text-secondary);
    font-weight: 400;
}


.elementor-element.methodology-steps.step-inline .step > .elementor-widget-container {
    position: relative;
}

.elementor-element.methodology-steps.step-inline .elementor-icon-box-icon {
    position: absolute;
    top: -20px;
}

.elementor-element.methodology-steps.step-inline .elementor-icon-box-content p {
    font-size: 0.9rem;
    color: var(--techno-text-secondary);
    margin-top: var(--spacing-sm);
}

.elementor-element.methodology-steps.step-inline .step-details {
    list-style: none;
    padding: 0;
}

.elementor-element.methodology-steps.step-inline .step-details li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--techno-text-secondary);
}

.elementor-element.methodology-steps.step-inline .step-details li::before {
    content: '•';
    color: var(--techno-primary);
    font-weight: bold;
    margin-top: 2px;
}

.backdrop-filter {
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.cta-button {
    transition: all 0.3s ease;
}

.contact-info a {
    color: var(--techno-primary);
    text-decoration: none!important;
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--techno-primary);
    text-decoration: none!important;
    font-weight: 600;
}

.contact-info .elementor-icon-box-content p {
    margin: 0;
    font-family: var(--font-secondary), sans-serif;
    color: var(--techno-text-secondary);
}

.contact-info .elementor-widget.elementor-widget-icon-box .elementor-widget-container{
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    background: white;
}

.contact-info .elementor-widget.elementor-widget-icon-box .elementor-widget-container:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.contact-info .elementor-widget.elementor-widget-icon-box span.elementor-icon{
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--techno-primary), var(--techno-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}


@media (min-width: 1025px) {
    .elementor-element.sticky-col{
        position: sticky;
        top: 130px;
        height: fit-content;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
}

ul.hfe-breadcrumbs a {
    text-decoration: none;
}

.badges .badge p{
    background: var(--techno-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.badges .badge.secondary p{
    background: var(--techno-secondary);
}

.ref-product p{
    margin: 0;
}

.other-product span.elementor-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--techno-primary), var(--techno-secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.hero-highlight-iot .elementor-widget-container{
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: var(--radius-md);
    margin-top: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.solutions-intelligentes .elementor-widget-container{
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: #F8FAFC;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.solutions-intelligentes .elementor-widget-container:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.solutions-intelligentes .elementor-widget-container::before{
    content: '•';
    color: var(--techno-primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 2px;
}
