:root {     /* Variables CSS */
            --primary-blue: #00b4d8;
            --dark-blue: #0a1628;
            --medium-blue: #1a2d4a;
            --light-blue: #48cae4;
            --white: #ffffff;
            --gray: #e5e5e5;
        }
        
        *   { /* Reset CSS */
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } 
        
        html { /* SCROLL SITE */
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-blue);
            color: var(--white);
            overflow-x: hidden;
        }
        
        
        /* ========== HEADER ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
            box-shadow: 0 2px 20px rgba(0, 180, 216, 0.3);
            animation: slideDown 0.8s ease-out;
        }
        
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar .container {
            position: relative;
        }
     
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            animation: fadeInLeft 1s ease-out;
        }
        
        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            animation: pulse 2s infinite;
            box-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
        }
            
        
        .logo-icon i {
            font-size: 28px;
            color: var(--white);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text .brand {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
        }
        
        .logo-text .brand span {
            color: var(--primary-blue);
        }
        
        .logo-text .tagline {
            font-size: 12px;
            color: var(--gray);
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .nav-menu li {
            margin: 0 5px;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }
        
        .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
        .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
        .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
        .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
        .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
        
        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-weight: 500;
        }
        
        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-menu a:hover::before {
            width: 80%;
        }
        
        .nav-menu a:hover {
            color: var(--primary-blue);
            transform: translateY(-2px);
        }
        
        .nav-menu .btn-contact {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            border: none;
            animation: borderGlow 2s infinite;
        }
        
        .nav-menu .btn-contact:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(0, 180, 216, 0.5);
        }
        
        /* ========== MOBILE MENU ========== */
        .menu-toggle {
            display: none;
            cursor: pointer;
            z-index: 1002;
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
        }
        
        .menu-checkbox {
            display: none;
        }
        
        .hamburger {
            width: 30px;
            height: 24px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .menu-checkbox:checked ~ .menu-toggle .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
            background: var(--primary-blue);
        }
        
        .menu-checkbox:checked ~ .menu-toggle .hamburger span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }
        
        .menu-checkbox:checked ~ .menu-toggle .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
            background: var(--primary-blue);
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: linear-gradient(180deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
            z-index: 1001;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            padding: 100px 30px 30px;
            display: flex;
            flex-direction: column;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        }
        
        .menu-checkbox:checked ~ .mobile-menu {
            right: 0;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 22, 40, 0.9);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .menu-checkbox:checked ~ .overlay {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-nav li {
            margin: 15px 0;
            transform: translateX(50px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .menu-checkbox:checked ~ .mobile-menu .mobile-nav li {
            transform: translateX(0);
            opacity: 1;
        }
        
        .menu-checkbox:checked ~ .mobile-menu .mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
        .menu-checkbox:checked ~ .mobile-menu .mobile-nav li:nth-child(2) { transition-delay: 0.2s; }
        .menu-checkbox:checked ~ .mobile-menu .mobile-nav li:nth-child(3) { transition-delay: 0.3s; }
        .menu-checkbox:checked ~ .mobile-menu .mobile-nav li:nth-child(4) { transition-delay: 0.4s; }
        .menu-checkbox:checked ~ .mobile-menu .mobile-nav li:nth-child(5) { transition-delay: 0.5s; }
        
        .mobile-nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 20px;
            font-weight: 500;
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .mobile-nav a i {
            margin-right: 15px;
            color: var(--primary-blue);
            font-size: 24px;
        }
        
        .mobile-nav a:hover {
            color: var(--primary-blue);
            padding-left: 10px;
        }
        
        .mobile-social {
            margin-top: auto;
            display: flex;
            justify-content: center;
            gap: 20px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mobile-social a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(0, 180, 216, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 22px;
            transition: all 0.3s ease;
        }
        
        .mobile-social a:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: scale(1.1) rotate(360deg);
        }
        
        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 50%, var(--dark-blue) 100%);
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?w=1920') center/cover;
            opacity: 0.3;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 45, 74, 0.7) 100%);
        }
        /*
        .water-drops {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .drop {
            position: absolute;
            width: 10px;
            height: 10px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.8) 0%, transparent 70%);
            border-radius: 50%;
            animation: droplet 3s linear infinite;
        }
        
        .drop:nth-child(1) { left: 10%; animation-delay: 0s; }
        .drop:nth-child(2) { left: 25%; animation-delay: 0.5s; }
        .drop:nth-child(3) { left: 40%; animation-delay: 1s; }
        .drop:nth-child(4) { left: 55%; animation-delay: 1.5s; }
        .drop:nth-child(5) { left: 70%; animation-delay: 2s; }
        .drop:nth-child(6) { left: 85%; animation-delay: 2.5s; }
        
        */

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
        }
        
        .hero-logo {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 120px auto 120px;
            animation: float 3s ease-in-out infinite, scaleIn 1s ease-out;
            box-shadow: 0 0 50px rgba(0, 180, 216, 0.5);
        }

        .hero-logo img {
            height: 400px;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out 0.3s both;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
        }
        
        .hero h1 span {
            color: var(--primary-blue);
            position: relative;
        }
        
        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
            border-radius: 2px;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--gray);
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.5s both;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.7s both;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 180, 216, 0.5);
            color: var(--white);
        }
        
        .btn-secondary-custom {
            background: transparent;
            color: var(--white);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid var(--primary-blue);
            transition: all 0.3s ease;
        }
        
        .btn-secondary-custom:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: float 2s ease-in-out infinite;
        }
        
        .scroll-indicator a {
            color: var(--primary-blue);
            font-size: 30px;
        }

        /* ========== QR CODE SECTION ========== */
        .qr-code-container {
            position: absolute;
            top: 120px;
            right: 30px;
            z-index: 500;
            animation: fadeInRight 1s ease-out;
        }

        .qr-code-wrapper {
            background: var(--primary-blue);
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 180, 216, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .qr-code-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 180, 216, 0.5);
        }

        .qr-code-image {
            display: block;
            width: 150px;
            height: 150px;
            border-radius: 10px;
            background: var(--white);
            padding: 8px;
        }

        .qr-code-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
            margin: 8px 0 0 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ========== SECTION STYLES ========== */
        section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2 span {
            color: var(--primary-blue);
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 30px auto 0;
        }
        
        /* ========== SERVICES SECTION ========== */
        .services {
            background: linear-gradient(180deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
        }
        
        .service-card {
            background: linear-gradient(145deg, rgba(26, 45, 74, 0.8), rgba(10, 22, 40, 0.9));
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 1px solid rgba(0, 180, 216, 0.2);
            height: 100%;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.1), transparent);
            transition: all 0.5s ease;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 180, 216, 0.3);
            border-color: var(--primary-blue);
        }
        /* icone carte services */
        .service-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.5s ease;
        }
        
        .service-card:hover .service-icon {
            transform: rotateY(360deg);
            box-shadow: 0 0 30px rgba(0, 180, 216, 0.6);
        }
        
        .service-icon i {
            font-size: 45px;
            color: var(--white);
        }
        /* icone carte services */
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--white);
        }
        
        .service-card p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .service-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .service-price span {
            font-size: 1rem;
            color: var(--gray);
        }
        /* ============================*/
        /*       SECTION GALLERIE      */
        /* ============================*/
        .gallery {
            background: var(--dark-blue);
        }
        
        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            margin-bottom: 30px;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(0, 180, 216, 0.9) 0%, rgba(10, 22, 40, 0.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .gallery-item:hover .gallery-overlay {
            bottom: 0;
        }
        
        .gallery-item:hover img {
            transform: scale(1.2);
        }
        
        .gallery-overlay h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.4s ease 0.1s;
        }
        
        .gallery-overlay p {
            color: var(--white);
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.4s ease 0.2s;
        }
        
        .gallery-overlay i {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            color: var(--white);
            transform: scale(0);
            transition: all 0.4s ease 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay h4,
        .gallery-item:hover .gallery-overlay p {
            transform: translateY(0);
            opacity: 1;
        }
        
        .gallery-item:hover .gallery-overlay i {
            transform: scale(1);
        }
        /* ===================================== */
        /*            SECTION CONTACT            */
        /* ===================================== */
        .contact {
            background: linear-gradient(180deg, var(--medium-blue) 0%, var(--dark-blue) 100%);
        }
        
        .contact-form {
            background: linear-gradient(145deg, rgba(26, 45, 74, 0.9), rgba(10, 22, 40, 0.95));
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(0, 180, 216, 0.2);
            transition: all 0.3s ease;
        }
        
        .contact-form:hover {
            box-shadow: 0 20px 50px rgba(0, 180, 216, 0.2);
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--white);
            font-weight: 500;
        }
        
        .form-group label i {
            color: var(--primary-blue);
            margin-right: 10px;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(0, 180, 216, 0.2);
            border-radius: 10px;
            background: rgba(10, 22, 40, 0.8);
            color: var(--white);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /*================*/
        /* BOUTON ENVOYER */
        /*================*/
        .btn-submit {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border: none;
            border-radius: 10px;
            color: var(--white);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 180, 216, 0.5);
        }
        /*================*/
        /* BOUTON ENVOYER */
        /*================*/
        
        .contact-info {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
            padding: 25px;
            background: rgba(26, 45, 74, 0.5);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .contact-info-item:hover {
            transform: translateX(10px);
            cursor: pointer;
            border-color: var(--primary-blue);
            box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
        }
        
        .contact-info-item .icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .contact-info-item:hover .icon {
            transform: rotate(360deg);
        }
        
        .contact-info-item .icon i {
            font-size: 25px;
            color: var(--white);
        }
        
        .contact-info-item .content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--white);
        }
        
        .contact-info-item .content p {
            color: var(--gray);
            margin: 0;
        }
        
        .contact-info-item .content a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .contact-info-item .content a:hover {
            color: var(--light-blue);
        }
        /*==============================*/
        /*         MAP SECTION          */
        /*==============================*/
        .map-section {
            padding: 0;
        }
        
        .map-container {
            position: relative;
            height: 400px;
            border-radius: 0;
            overflow: hidden;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(50%) contrast(1.1);
            transition: all 0.3s ease;
        }
        
        .map-container:hover iframe {
            filter: grayscale(0%) contrast(1);
        }
        
        .map-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(145deg, rgba(10, 22, 40, 0.95), rgba(26, 45, 74, 0.95));
            padding: 30px 50px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid var(--primary-blue);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            animation: pulse 2s infinite;
        }
        
        .map-overlay h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .map-overlay p {
            color: var(--gray);
            margin: 0;
        }
        
        .map-overlay i {
            font-size: 40px;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        /*==============================*/
        /*            FOOTER            */
        /*==============================*/
        .footer {
            background: linear-gradient(180deg, var(--dark-blue) 0%, #050d18 100%);
            padding: 80px 0 30px;
        }
        
        .footer-brand {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .footer-brand .logo-icon {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            animation: none;
        }
        
        .footer-brand .logo-icon i {
            font-size: 24px;
        }
        
        .footer-brand h3 {
            font-size: 1.5rem;
            margin: 0;
        }
        
        .footer-brand h3 span {
            color: var(--primary-blue);
        }
        
        .footer p {
            color: var(--gray);
            line-height: 1.8;
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-blue);
            border-radius: 2px;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links ul li a i {
            margin-right: 10px;
            color: var(--primary-blue);
            font-size: 12px;
        }
        
        .footer-links ul li a:hover {
            color: var(--primary-blue);
            padding-left: 10px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(0, 180, 216, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 20px;
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 180, 216, 0.3);
        }
        
        .footer-social a:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 5px 20px rgba(0, 180, 216, 0.5);
        }
        
        .footer-bottom {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        
        .footer-bottom p {
            margin: 0;
            color: var(--gray);
        }
        
        .footer-bottom a {
            color: var(--primary-blue);
            text-decoration: none;
        }
        /*==================================*/
        /*            RESPONSIVE            */
        /*==================================*/
        @media (max-width: 991px) {
            .nav-menu {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }

            /* QR CODE */
            .qr-code-container {
                display: none;
            }

            .qr-code-image {
                width: 130px;
                height: 130px;
            }
            /* QR CODE */
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .contact-form {
                padding: 30px;
                margin-bottom: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .hero {
                padding-top: 100px;
            }
            
            .hero-content {
                padding-top: 80px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-logo {
                width: 70px;
                height: 70px;
                margin: 90px auto 100px;
            }

            .hero-logo img{
                height: 300px;
                margin: 10px auto 100px;
            }
            
                       
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            /* QR CODE */
            .qr-code-container {
                display: none;
            }

            .qr-code-image {
                width: 120px;
                height: 120px;
            }

            .qr-code-label {
                font-size: 11px;
            }
            /* QR CODE */
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .gallery-item {
                height: 250px;
            }
            
            .contact-form {
                padding: 25px 20px;
            }
            
            .map-overlay {
                padding: 20px 30px;
            }
            
            .map-overlay h4 {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {

            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }

            /* QR CODE */
            .qr-code-container {
                display: none;
            }

            .qr-code-image {
                width: 100px;
                height: 100px;
            }

            .qr-code-label {
                font-size: 10px;
            }
            /* QR CODE */
            
            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 12px 30px;
                font-size: 16px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .contact-info-item {
                padding: 20px 15px;
            }
            
            .contact-info-item .icon {
                width: 50px;
                height: 50px;
            }
            
            .contact-info-item .icon i {
                font-size: 20px;
            }
        }
        
        /* FLECHE RETOUR EN HAUT */
        .retour-haut {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .retour-haut a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }

        .retour-haut a i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            width: 100%;
            height: 100%;
            font-size: 38px;
            line-height: 1;
            margin: 0;
        }
        /* FLECHE RETOUR EN HAUT */