/* =============================================

   STYLE.CSS - DIGIMATEC

   Version complète et corrigée

   ============================================= */



/* ===== VARIABLES GLOBALES ===== */

:root {

    --rexom-blue: #004687;

    --rexom-dark: #003366;

    --rexom-orange: #ff8a00;

    --whatsapp-green: #25d366;

    --transition: all 0.3s ease;

    --shadow: 0 10px 30px rgba(0,0,0,0.1);

    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);

}



/* ===== RESET & BASE ===== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html, body {

    max-width: 100%;

    overflow-x: hidden;

    width: 100%;

    position: relative;

}



body {

    font-family: 'Open Sans', sans-serif;

    color: #333;

    line-height: 1.6;

    overflow-x: hidden;

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

    width: 100%;

}



/* ===== HEADER & NAVIGATION ===== */

header {

    position: sticky;

    top: 0;

    background: white;

    box-shadow: 0 2px 15px rgba(0,0,0,0.1);

    z-index: 1000;

    width: 100%;

}



.top-bar {

    background: var(--rexom-dark);

    color: white;

    padding: 8px 0;

    font-size: 13px;

    width: 100%;

}



.top-bar .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.top-bar a {

    color: white;

    text-decoration: none;

    transition: var(--transition);

}



.top-bar a:hover {

    color: var(--rexom-orange);

}



.top-bar i {

    margin-right: 5px;

    color: var(--rexom-orange);

}



/* Icône WhatsApp dans la top-bar en vert */

.top-bar .whatsapp-icon i {

    color: var(--whatsapp-green) !important;

}



.main-nav {

    width: 100%;

    background: white;

}



.main-nav .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 10px 20px;

}



.logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}



.logo img {

    height: 70px;

    width: auto;

    max-width: 250px;

    object-fit: contain;

    transition: transform 0.3s ease;

}



.logo img:hover {

    transform: scale(1.05);

}



@media (min-width: 1200px) {

    .logo img {

        height: 60px;

        max-width: 500px;

    }

}



@media (max-width: 1199px) and (min-width: 993px) {

    .logo img {

        height: 70px;

        max-width: 250px;

    }

}



@media (max-width: 992px) {

    .logo img {

        height: 70px;

        max-width: 250px;

    }

}



@media (max-width: 768px) {

    .logo img {

        height: 70px !important;

        max-width: 250px !important;

    }

}



@media (max-width: 480px) {

    .logo img {

        height: 70px !important;

        max-width: 250px !important;

    }

}



@media (max-width: 360px) {

    .logo img {

        height: 70px !important;

        max-width: 250px !important;

    }

}



.menu-toggle {

    display: none;

    font-size: 28px;

    cursor: pointer;

    color: var(--rexom-dark);

    background: none;

    border: none;

    padding: 10px 15px;

    z-index: 1001;

    transition: color 0.3s ease;

}



.menu-toggle:hover {

    color: var(--rexom-orange);

}



.menu-toggle i {

    font-size: 28px;

    pointer-events: none;

}



.nav-links {

    list-style: none;

    display: flex;

    margin: 0;

    padding: 0;

    align-items: center;

    gap: 25px;

}



.nav-links li {

    margin: 0;

}



.nav-links a {

    text-decoration: none;

    color: #333;

    font-weight: 600;

    font-size: 15px;

    transition: var(--transition);

    position: relative;

    padding: 5px 0;

    white-space: nowrap;

}



.nav-links a:hover,

.nav-links a.active {

    color: var(--rexom-orange);

}



.nav-links a::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--rexom-orange);

    transition: width 0.3s ease;

}



.nav-links a:hover::after,

.nav-links a.active::after {

    width: 100%;

}



.btn-devis {

    background: var(--rexom-orange);

    color: white !important;

    padding: 10px 25px !important;

    border-radius: 50px;

    box-shadow: 0 4px 15px rgba(255,138,0,0.3);

    transition: var(--transition) !important;

    white-space: nowrap;

}



.btn-devis:hover {

    background: var(--rexom-dark) !important;

    transform: translateY(-2px);

    box-shadow: 0 6px 20px rgba(255,138,0,0.4);

}



.btn-devis::after {

    display: none;

}



.whatsapp-sticky {

    position: fixed;

    bottom: 30px;

    right: 30px;

    background: var(--whatsapp-green);

    color: white;

    padding: 12px 25px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: bold;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 10px;

    box-shadow: 0 10px 25px rgba(37,211,102,0.3);

    transition: all 0.3s ease;

    border: 2px solid transparent;

    max-width: calc(100vw - 60px);

}



.whatsapp-sticky:hover {

    transform: scale(1.08);

    background: #128c7e;

    border-color: white;

}



.whatsapp-sticky i {

    font-size: 20px;

    flex-shrink: 0;

}



.hero-section {

    background: linear-gradient(rgba(0,51,102,0.85), rgba(0,51,102,0.85)), url('/images/hero-bg.webp');

    background-size: cover;

    background-position: center;

    color: white;

    padding: 100px 15px;

    text-align: center;

    border-bottom: 5px solid var(--rexom-orange);

    width: 100%;

}



.hero-section h1 {

    font-size: clamp(1.8rem, 5vw, 3.5rem);

    font-family: 'Montserrat', sans-serif;

    font-weight: 800;

    margin-bottom: 20px;

    line-height: 1.2;

}



.hero-section .divider {

    width: 80px;

    height: 4px;

    background: var(--rexom-orange);

    margin: 20px auto;

    border-radius: 2px;

}



.hero-section p {

    font-size: clamp(1rem, 3vw, 1.3rem);

    max-width: 800px;

    margin: 0 auto;

    opacity: 0.9;

}



.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 30px;

}



.btn-primary {

    background: var(--rexom-orange);

    color: white;

    padding: 16px 35px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: bold;

    transition: var(--transition);

    border: 2px solid transparent;

    display: inline-block;

}



.btn-primary:hover {

    background: transparent;

    border-color: var(--rexom-orange);

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(255,138,0,0.3);

}



.btn-secondary {

    background: white;

    color: var(--rexom-blue);

    padding: 16px 35px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: bold;

    transition: var(--transition);

    border: 2px solid white;

    display: inline-block;

}



.btn-secondary:hover {

    background: transparent;

    color: white;

    transform: translateY(-3px);

}



.services-grid,

.services-cards-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    margin: 40px 0;

    width: 100%;

}



.service-card {

    background: white;

    padding: 10px 30px;

    border-radius: 12px;

    box-shadow: var(--shadow);

    transition: var(--transition);

    border: 1px solid #eee;

    text-align: center;

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

    width: 100%;

}



.service-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 4px;

    background: var(--rexom-orange);

    transform: scaleX(0);

    transition: transform 0.3s ease;

}



.service-card:hover::before {

    transform: scaleX(1);

}



.service-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-hover);

    border-color: var(--rexom-orange);

}



.service-card i {

    font-size: 3rem;

    color: var(--rexom-orange);

    margin-bottom: 20px;

    transition: transform 0.3s ease;

}



.service-card:hover i {

    transform: scale(1.1);

}



.service-card h3 {

    color: var(--rexom-dark);

    margin-bottom: 15px;

    font-size: 1.25rem;

    font-weight: 700;

}



.service-card p {

    color: #666;

    line-height: 1.6;

    font-size: 0.95rem;

}



.services-icons-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 20px;

    margin: 30px 0;

}



.service-circle {

    text-align: center;

    text-decoration: none;

    display: block;

    transition: transform 0.3s ease;

}



.service-circle:hover {

    transform: translateY(-5px);

}



.circle-icon {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: #f8fafd;

    border: 2px solid #eee;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 12px;

    font-size: 1.8rem;

    color: var(--rexom-blue);

    transition: all 0.3s ease;

}



.service-circle:hover .circle-icon {

    background: var(--rexom-orange);

    border-color: var(--rexom-orange);

    color: white;

    transform: scale(1.1);

    box-shadow: 0 10px 20px rgba(255,138,0,0.3);

}



.service-circle h3 {

    color: var(--rexom-blue);

    font-size: 14px;

    margin: 0;

    font-weight: 600;

    transition: color 0.3s ease;

    text-transform: uppercase;

}



.service-circle:hover h3 {

    color: var(--rexom-orange);

}



.why-us-section {

    background: var(--rexom-blue);

    color: white;

    padding: 80px 20px;

}



.why-us-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;

}



.why-us-card {

    text-align: center;

    padding: 40px 25px;

    border-radius: 15px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.1);

    transition: var(--transition);

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}



.why-us-card:hover {

    transform: translateY(-10px);

    background: rgba(255,255,255,0.1);

    border-color: var(--rexom-orange);

}



.why-us-card i {

    font-size: 2.5rem;

    color: var(--rexom-orange);

    margin-bottom: 20px;

}



.why-us-card h3 {

    margin-bottom: 15px;

    font-size: 1.3rem;

    color: white;

}



.why-us-card p {

    color: rgba(255,255,255,0.8);

    font-size: 0.95rem;

    line-height: 1.6;

}



.stats-section {

    padding: 60px 20px;

    background: white;

}



.stats-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 30px;

}



.stat-item {

    text-align: center;

}



.stat-number {

    font-size: 2.5rem;

    font-weight: 800;

    color: var(--rexom-orange);

    margin-bottom: 5px;

}



.stat-label {

    text-transform: uppercase;

    color: #666;

    font-size: 0.9rem;

    font-weight: 600;

}



.section-title {

    color: var(--rexom-blue);

    border-left: 6px solid var(--rexom-orange);

    padding-left: 20px;

    margin-bottom: 40px;

    font-family: 'Montserrat', sans-serif;

    font-weight: 800;

    text-transform: uppercase;

    font-size: 1.8rem;

    line-height: 1.3;

}



.form-container {

    background: white;

    padding: 40px;

    border-radius: 12px;

    box-shadow: var(--shadow);

    width: 100%;

}



.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-bottom: 20px;

}



.form-group {

    margin-bottom: 20px;

    width: 100%;

}



.form-group label {

    display: block;

    margin-bottom: 8px;

    font-weight: 600;

    color: var(--rexom-dark);

    font-size: 14px;

}



.form-control {

    width: 100%;

    padding: 12px 15px;

    border: 1px solid #ddd;

    border-radius: 6px;

    font-size: 15px;

    font-family: 'Open Sans', sans-serif;

    transition: var(--transition);

    background: #fff;

}



.form-control:focus {

    border-color: var(--rexom-orange);

    outline: none;

    box-shadow: 0 0 0 3px rgba(255,138,0,0.1);

}



textarea.form-control {

    resize: vertical;

    min-height: 120px;

}



.btn-submit {

    background: var(--rexom-orange);

    color: white;

    border: none;

    padding: 16px 30px;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 700;

    width: 100%;

    font-size: 1rem;

    text-transform: uppercase;

    transition: var(--transition);

    box-shadow: 0 4px 15px rgba(255,138,0,0.3);

}



.btn-submit:hover {

    background: var(--rexom-dark);

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(255,138,0,0.4);

}



.alert-error {

    background: #f8d7da;

    color: #721c24;

    padding: 15px 20px;

    border-radius: 8px;

    margin-bottom: 20px;

    border: 1px solid #f5c6cb;

}



.alert-error ul {

    margin: 10px 0 0 20px;

}



.alert-success {

    background: #d4edda;

    color: #155724;

    padding: 15px 20px;

    border-radius: 8px;

    margin-bottom: 20px;

    border: 1px solid #c3e6cb;

}



.site-footer {

    background: var(--rexom-dark);

    color: white;

    padding: 60px 0 20px;

    margin-top: 60px;

    width: 100%;

}



.footer-container {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 40px;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



.footer-logo {

    font-size: 24px;

    font-weight: 800;

    margin-bottom: 20px;

    font-family: 'Montserrat', sans-serif;

}



.logo-highlight {

    color: var(--rexom-orange);

}



.footer-description {

    font-size: 14px;

    color: #cbd5e0;

    line-height: 1.8;

    max-width: 300px;

}



.footer-title {

    border-bottom: 2px solid var(--rexom-orange);

    display: inline-block;

    padding-bottom: 10px;

    margin-bottom: 20px;

    font-weight: 600;

    font-size: 1.2rem;

    font-family: 'Montserrat', sans-serif;

    color: white;

}



.footer-links, .contact-info {

    list-style: none;

    padding: 0;

}



.footer-links li, .contact-info li {

    margin-bottom: 12px;

    display: flex;

    align-items: center;

    gap: 8px;

}



.footer-links a, .contact-info a {

    color: #cbd5e0;

    text-decoration: none;

    transition: var(--transition);

}



.footer-links a:hover, .contact-info a:hover {

    color: var(--rexom-orange);

    transform: translateX(5px);

}



.footer-links i {

    color: var(--rexom-orange);

    font-size: 10px;

}



.contact-info i {

    color: var(--rexom-orange);

    width: 16px;

}



/* Icône WhatsApp dans le footer en vert */

.contact-info .fa-whatsapp {

    color: var(--whatsapp-green) !important;

}



.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.1);

    margin-top: 40px;

    padding: 20px 0;

}



.footer-bottom-container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    font-size: 13px;

    color: #a0aec0;

}



.footer-legal {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}



.footer-legal a {

    color: #a0aec0;

    text-decoration: none;

    transition: var(--transition);

}



.footer-legal a:hover {

    color: var(--rexom-orange);

}



@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



@keyframes slideDown {

    from {

        opacity: 0;

        transform: translateY(-20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.fadeInUp {

    animation: fadeInUp 0.5s ease;

}



@media (max-width: 992px) {

    .top-bar {

        display: none;

    }

    .menu-toggle {

        display: block !important;

    }

    .nav-links {

        display: none;

        flex-direction: column;

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        background: white;

        padding: 20px;

        box-shadow: 0 10px 20px rgba(0,0,0,0.1);

        border-top: 3px solid var(--rexom-orange);

        gap: 0;

        z-index: 1000;

    }

    .nav-links.active {

        display: flex !important;

    }

    .nav-links li {

        margin: 12px 0;

        width: 100%;

        text-align: center;

    }

    .nav-links a {

        display: block;

        padding: 10px;

        font-size: 16px;

    }

    .btn-devis {

        display: inline-block;

        max-width: 200px;

        margin: 5px auto;

    }

    .services-icons-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}



@media (max-width: 768px) {

    .main-nav .container {

        padding: 8px 15px;

    }

    .menu-toggle {

        font-size: 26px;

        padding: 8px 12px;

    }

    .services-icons-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

    }

    .circle-icon {

        width: 70px;

        height: 70px;

        font-size: 1.6rem;

    }

    .service-circle h3 {

        font-size: 12px;

    }

    .hero-section {

        padding: 60px 15px;

    }

    .hero-section h1 {

        font-size: 1.8rem;

    }

    .hero-buttons {

        flex-direction: column;

        gap: 15px;

    }

    .hero-buttons a {

        width: 100%;

    }

    .service-card {

        padding: 25px 20px;

    }

    .service-card i {

        font-size: 2.2rem;

    }

    .service-card h3 {

        font-size: 1.1rem;

    }

    .service-card p {

        font-size: 0.9rem;

    }

    .why-us-card {

        padding: 25px 20px;

    }

    .why-us-card i {

        font-size: 2rem;

    }

    .why-us-card h3 {

        font-size: 1.1rem;

    }

    .form-container {

        padding: 25px 20px;

    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 0;

    }

    .form-group {

        margin-bottom: 15px;

    }

    .footer-container {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .footer-description {

        max-width: 100%;

        margin: 0 auto;

    }

    .footer-title {

        font-size: 1.1rem;

    }

    .contact-info li {

        justify-content: center;

    }

    .footer-bottom-container {

        flex-direction: column;

        text-align: center;

    }

}



@media (max-width: 480px) {

    .menu-toggle {

        font-size: 24px;

        padding: 5px 10px;

    }

    .circle-icon {

        width: 65px;

        height: 65px;

        font-size: 1.5rem;

    }

    .service-circle h3 {

        font-size: 11px;

    }

    .service-card {

        padding: 20px 15px;

    }

    .service-card i {

        font-size: 2rem;

    }

    .service-card h3 {

        font-size: 1rem;

    }

    .service-card p {

        font-size: 0.85rem;

    }

    .stat-number {

        font-size: 2rem;

    }

    .stat-label {

        font-size: 0.8rem;

    }

    .form-container {

        padding: 20px 15px;

    }

    .btn-submit {

        padding: 14px 20px;

        font-size: 14px;

    }

}



@media (max-width: 360px) {

    .circle-icon {

        width: 60px;

        height: 60px;

        font-size: 1.4rem;

    }

    .service-circle h3 {

        font-size: 10px;

    }

}



.text-center { text-align: center; }

.text-left { text-align: left; }

.text-right { text-align: right; }



.mt-1 { margin-top: 10px; }

.mt-2 { margin-top: 20px; }

.mt-3 { margin-top: 30px; }

.mt-4 { margin-top: 40px; }

.mt-5 { margin-top: 50px; }



.mb-1 { margin-bottom: 10px; }

.mb-2 { margin-bottom: 20px; }

.mb-3 { margin-bottom: 30px; }

.mb-4 { margin-bottom: 40px; }

.mb-5 { margin-bottom: 50px; }



.hidden { display: none; }

.visible { display: block; }



section {

    transition: background-color 0.3s ease;

    scroll-margin-top: 100px;

}



.history-mobile {

    display: flex;

    flex-direction: column;

    align-items: center;

    width: 100%;

}



.history-year-mobile {

    font-size: 4rem;

    font-weight: 800;

    color: var(--rexom-orange);

    margin-bottom: 15px;

    text-align: center;

}



.history-text-mobile {

    width: 100%;

}



.history-text-mobile p {

    font-size: 1rem;

    line-height: 1.7;

    color: #555;

    margin-bottom: 15px;

    text-align: left;

}



.history-text-mobile p strong {

    color: var(--rexom-dark);

}



.history-stats-mobile {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-top: 30px;

    width: 100%;

}



.history-stat-mobile {

    background: #f0f3f7;

    padding: 15px;

    border-radius: 10px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;

}



.stat-number-mobile {

    font-size: 1.5rem;

    font-weight: 800;

    color: var(--rexom-orange);

}



.stat-label-mobile {

    font-size: 0.95rem;

    color: #555;

}



@media (max-width: 480px) {

    .history-year-mobile {

        font-size: 3.5rem;

    }

    .history-text-mobile p {

        font-size: 0.95rem;

        line-height: 1.6;

    }

    .history-stat-mobile {

        padding: 12px;

    }

    .stat-number-mobile {

        font-size: 1.3rem;

    }

    .stat-label-mobile {

        font-size: 0.85rem;

    }

}



@media (max-width: 360px) {

    .history-year-mobile {

        font-size: 3rem;

    }

    .history-text-mobile p {

        font-size: 0.9rem;

    }

    .history-stat-mobile {

        flex-direction: column;

        gap: 5px;

        text-align: center;

    }

}



.logo img {

    height: 70px;

    width: auto;

    max-width: 250px;

    object-fit: contain;

}



@media (min-width: 993px) {

    .logo img {

        height: 70px !important;

        max-width: 250px !important;

    }

    .main-nav .container {

        padding-top: 0px !important;

        padding-bottom: 0px !important;

    }

}



@media (max-width: 992px) {

    .logo img {

        height: 70px !important;

        max-width: 250px !important;

    }

}



header {

    position: fixed !important;

    top: 0 !important;

    left: 0 !important;

    right: 0 !important;

    width: 100% !important;

    z-index: 9999 !important;

    background: white !important;

    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;

}



main {

    margin-top: 120px;

}



@media (max-width: 992px) {

    main {

        margin-top: 100px !important;

    }

}



@media (max-width: 768px) {

    main {

        margin-top: 80px !important;

    }

}



@media (max-width: 480px) {

    main {

        margin-top: 80px !important;

    }

}



@media (max-width: 360px) {

    main {

        margin-top: 75px !important;

    }

}



@media (max-width: 992px) {

    header {

        position: fixed !important;

        top: 0 !important;

        left: 0 !important;

        right: 0 !important;

        width: 100% !important;

        z-index: 9999 !important;

        background: white !important;

    }

    main {

        margin-top: 100px !important;

    }

    .nav-links.active {

        position: fixed !important;

        top: 100px !important;

        left: 0 !important;

        width: 100% !important;

        background: white !important;

        z-index: 9998 !important;

        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;

    }

}



@media (max-width: 768px) {

    main {

        margin-top: 90px !important;

    }

    .nav-links.active {

        top: 90px !important;

    }

}



@media (max-width: 480px) {

    main {

        margin-top: 80px !important;

    }

    .nav-links.active {

        top: 80px !important;

    }

}



@media (max-width: 360px) {

    main {

        margin-top: 75px !important;

    }

    .nav-links.active {

        top: 75px !important;

    }

}



@media (min-width: 993px) {

    .whatsapp-sticky {

        width: auto !important;

        height: auto !important;

        padding: 15px 30px !important;

        border-radius: 50px !important;

        background: #25d366 !important;

        color: white !important;

        font-size: 18px !important;

        gap: 12px !important;

        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;

        bottom: 30px !important;

        right: 30px !important;

        text-decoration: none !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

    }

    .whatsapp-sticky i {

        font-size: 24px !important;

        margin: 0 !important;

    }

    .whatsapp-sticky span {

        display: inline !important;

        font-weight: bold !important;

    }

}



@media (max-width: 992px) {

    .whatsapp-sticky {

        width: 50px !important;

        height: 50px !important;

        border-radius: 50% !important;

        padding: 0 !important;

        font-size: 0 !important;

    }

    .whatsapp-sticky i {

        font-size: 24px !important;

        margin: 0 !important;

    }

    .whatsapp-sticky span {

        display: none !important;

    }

}



.hero-section {

    min-height: 45vh !important;

    padding: 50px 15px !important;

    background-size: cover !important;

    background-position: center 35% !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

}



@media (min-width: 1200px) {

    .hero-section {

        min-height: 45vh !important;

        background-position: center 40% !important;

    }

}



@media (max-width: 992px) {

    .hero-section {

        min-height: 42vh !important;

        padding: 45px 15px !important;

        background-position: center 35% !important;

    }

}



@media (max-width: 768px) {

    .hero-section {

        min-height: 38vh !important;

        padding: 40px 15px !important;

        background-position: center 30% !important;

    }

}



@media (max-width: 480px) {

    .hero-section {

        min-height: 35vh !important;

        padding: 35px 15px !important;

        background-position: center 25% !important;

    }

}



@media (max-width: 360px) {

    .hero-section {

        min-height: 32vh !important;

        padding: 30px 15px !important;

        background-position: center 20% !important;

    }

}



.hero-section {

    margin-top: -10px !important;

    padding-top: 30px !important;

}



.hero-section {

    background-position: center 25% !important;

}



.fade-in {

    opacity: 0;

    transform: translateY(30px);

    transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.6s ease;

}



.fade-in.visible {

    opacity: 1;

    transform: translateY(0);

}



.service-card {

    transition-delay: calc(var(--order, 0) * 0.1s);

}



.hero-section h1,

.hero-section p,

.hero-buttons a {

    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5) !important;

}



@media (max-width: 768px) {

    .hero-section h1,

    .hero-section p,

    .hero-buttons a {

        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6) !important;

    }

}



.contact-container {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    align-items: center;

}



.contact-container i {

    font-size: 1.2em;

    margin-right: 5px;

}



/* Icône WhatsApp dans le contact-container en vert */

.contact-container .fa-whatsapp {

    color: var(--whatsapp-green) !important;

}









/* ===== CORRECTION WHATSAPP MOBILE ===== */

@media (max-width: 992px) {

    .whatsapp-sticky {

        width: 55px !important;

        height: 55px !important;

        border-radius: 50% !important;

        padding: 0 !important;

        background: #25d366 !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        bottom: 20px !important;

        right: 20px !important;

        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;

    }

    

    .whatsapp-sticky i {

        font-size: 28px !important;

        margin: 0 !important;

        color: white !important;

    }

    

    .whatsapp-sticky span {

        display: none !important;

    }

    

    .whatsapp-sticky:hover {

        transform: scale(1.1) !important;

        background: #128c7e !important;

    }

}











/* ===== CORRECTION WHATSAPP STICKY POUR MOBILE ===== */

@media (max-width: 992px) {

    .whatsapp-sticky {

        width: 55px !important;

        height: 55px !important;

        border-radius: 50% !important;

        padding: 0 !important;

        background: #25d366 !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        bottom: 20px !important;

        right: 20px !important;

        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;

        z-index: 9999 !important;

    }

    

    .whatsapp-sticky i {

        font-size: 28px !important;

        margin: 0 !important;

        color: white !important;

    }

    

    .whatsapp-sticky span {

        display: none !important;

    }

    

    .whatsapp-sticky:hover {

        transform: scale(1.1) !important;

        background: #128c7e !important;

    }

}



/* ===== CORRECTION POUR TRÈS PETITS MOBILES ===== */

@media (max-width: 480px) {

    .whatsapp-sticky {

        width: 50px !important;

        height: 50px !important;

        bottom: 15px !important;

        right: 15px !important;

    }

    

    .whatsapp-sticky i {

        font-size: 24px !important;

    }

}







