        /*styles.css, i want every css code to be stored here and not in the html or js*/

        /* Font import removed - handled in HTML for better performance */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        .hero {
            min-height: 100vh;
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 10%;
            /* background: linear-gradient(45deg, #000000, #1a1a1a); */ /* Removed gradient */
            padding-bottom: 0; /* Remove extra padding that was for the indicator */
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); /* Reduced opacity for lighter overlay */
            z-index: 0; /* Ensure it's above the video but below the content */
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the video covers the area, cropping if necessary */
            z-index: -1; /* Places the video behind the content */
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 900px;
            position: relative;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.2s;
        }       

        .highlight-montpellier {
            color: #FFFF00; /* Bright yellow */
            font-weight: bold; /* Optional: if you want it to be bold */
        }

        /* Scroll down indicator styles removed - was unused/hidden */

        /* First bounce keyframe removed - was overridden by later definition */

        .highlight-word {
            color: #FF3333;
            font-weight: 800;
            position: relative;
            display: inline-block;
            text-shadow: 
                0 0 3px rgba(255, 51, 51, 0.6),
                0 0 6px rgba(255, 51, 51, 0.4),
                0 0 10px rgba(255, 51, 51, 0.2);
            transition: all 0.4s ease;
            background: none;
            border: none;
            outline: none;
        }

        .highlight-word::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #FF3333, transparent);
            opacity: 1;
            transition: all 0.4s ease;
        }

        .highlight-word:hover {
            text-shadow: 
                0 0 5px rgba(255, 51, 51, 0.8),
                0 0 10px rgba(255, 51, 51, 0.5),
                0 0 15px rgba(255, 51, 51, 0.3);
            transform: scale(1.02);
        }

        .highlight-word:hover::after {
            opacity: 1;
            box-shadow: 0 0 3px rgba(255, 51, 51, 0.5);
        }

        /* Style for highlighting specific text spans */
        .highlight-text {
            color: #FF3333; /* Red color */
            font-weight: bold; /* Make it bold */
            -webkit-text-fill-color: #FF3333; /* Override transparent fill from parent */
            background-clip: initial; /* Reset background clipping */
            -webkit-background-clip: initial; /* Reset background clipping for webkit */
            background: transparent; /* Ensure no conflicting background */
            text-shadow: 0 0 8px rgba(255, 51, 51, 0.7); /* Added LED-like glow */
        }

        .underline-serious {
            text-decoration: underline;
            text-decoration-thickness: 1.5px;
            text-underline-offset: 3px; /* Adjust space between text and underline */
            text-decoration-color: #FF3333; /* Ensure underline matches text color */
        }

        /* Enhanced animation for the highlighted words */
        @keyframes glowPulse {
            0%, 100% {
                text-shadow: 
                    0 0 3px rgba(255, 51, 51, 0.6),
                    0 0 6px rgba(255, 51, 51, 0.4),
                    0 0 10px rgba(255, 51, 51, 0.2);
            }
            50% {
                text-shadow: 
                    0 0 5px rgba(255, 51, 51, 0.8),
                    0 0 10px rgba(255, 51, 51, 0.5),
                    0 0 15px rgba(255, 51, 51, 0.3);
            }
        }

        .hero:hover .highlight-word {
            animation: glowPulse 3s ease-in-out infinite;
        }

        .security-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            animation: securityAppear 0.5s ease-out 0.9s forwards;
        }
        
        /* Camera lens elements */
        .lens-outer, .lens-middle, .lens-inner {
            position: absolute;
            border-radius: 50%;
            border: 2px solid #FF3333;
            opacity: 0;
        }
        
        .lens-outer {
            width: 140px;
            height: 140px;
            animation: lensAppear 0.4s ease-out 1.0s forwards,
                    lensRotate 8s linear infinite;
        }
        
        .lens-middle {
            width: 110px;
            height: 110px;
            animation: lensAppear 0.4s ease-out 1.2s forwards,
                    lensRotateReverse 6s linear infinite;
        }
        
        .lens-inner {
            width: 80px;
            height: 80px;
            animation: lensAppear 0.4s ease-out 1.4s forwards,
                    lensPulse 2s ease-in-out infinite;
        }
        
        /* Security scan lines */
        .scan-line {
            position: absolute;
            width: 160px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #FF3333, #FF3333, transparent);
            opacity: 0;
            animation: scanLine 2s ease-in-out 1.4s infinite;
        }
        
        .scan-line.delayed {
            animation: scanLine 2s ease-in-out 1.9s infinite;
            transform: rotate(90deg);
        }
        
        /* Animation keyframes */
        @keyframes securityAppear {
            0% {
            opacity: 0;
            }
            100% {
            opacity: 1;
            }
        }
        
        @keyframes lensAppear {
            0% {
            transform: scale(1.5);
            opacity: 0;
            }
            100% {
            transform: scale(1);
            opacity: 0.8;
            }
        }
        
        @keyframes lensRotate {
            0% {
            transform: rotate(0deg);
            }
            100% {
            transform: rotate(360deg);
            }
        }
        
        @keyframes lensRotateReverse {
            0% {
            transform: rotate(0deg);
            }
            100% {
            transform: rotate(-360deg);
            }
        }
        
        @keyframes lensPulse {
            0%, 100% {
            transform: scale(1);
            opacity: 0.8;
            }
            50% {
            transform: scale(1.1);
            opacity: 1;
            }
        }
        
        @keyframes scanLine {
            0% {
            opacity: 0;
            transform: translateY(-40px) rotate(0deg);
            }
            25% {
            opacity: 1;
            }
            50% {
            opacity: 0;
            transform: translateY(40px) rotate(0deg);
            }
            51%, 100% {
            opacity: 0;
            transform: translateY(-40px) rotate(0deg);
            }
        }
        


        /* Site Logo */
        .site-logo {
            display: block;
            position: fixed;
            top: 1.5rem;
            left: 2rem;
            z-index: 101;
            text-decoration: none;
            transform: translateZ(0); 
            backface-visibility: hidden;
            -webkit-font-smoothing: subpixel-antialiased; 
            -webkit-tap-highlight-color: transparent; 
            -webkit-touch-callout: none; 
            user-select: none; 
            touch-action: manipulation;
            outline: none;
        }

        .site-logo:active,
        .site-logo:focus {
            transform: translateZ(0); /* Prevent movement on click */
            outline: none;
            transform: none !important;
        }

        .site-logo:hover {
            background: rgba(0, 0, 0, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            pointer-events: none;
            user-select: none;
        }

        /* Additional fix for iOS Safari */
        * {
            -webkit-tap-highlight-color: rgba(0,0,0,0);
        }

        .logo-zozo {
            color: #FF3333;
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: 1px;
            line-height: 1;
            pointer-events: none;
        }

        .logo-securite {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            opacity: 0.9;
            pointer-events: none;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 1.2rem 2.5rem;
            background: rgba(255, 51, 51, 0.1);
            border: 1px solid rgba(255, 51, 51, 0.3);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.4s;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #FF3333;
            transition: width 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            z-index: -1;
        }

        @media (hover: hover) and (pointer: fine) {
            .cta-button:hover {
                transform: translateY(-2px);
                border-color: #FF3333;
            }

            .cta-button:hover::before {
                width: 100%;
            }
        }

        .menu-container {
            position: relative;
        }

        .menu-button {
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: white;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            position: relative;
            overflow: hidden;
        }

        .menu-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: width 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            z-index: -1;
        }

        .menu-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1rem;
            min-width: 200px;
            opacity: 0;
            transform: translateY(-10px);
            pointer-events: none;
            transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
        }

        .menu-container:hover .menu-button {
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .menu-container:hover .menu-button::before {
            width: 100%;
        }

        .menu-container:hover .menu-dropdown {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .menu-item {
            display: block;
            padding: 0.8rem 1.5rem;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-10px);
        }

        .menu-container:hover .menu-item {
            opacity: 1;
            transform: translateX(0);
        }

        .menu-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px) !important;
        }

        .menu-container:hover .menu-item:nth-child(1) { transition-delay: 0.1s; }
        .menu-container:hover .menu-item:nth-child(2) { transition-delay: 0.15s; }
        .menu-container:hover .menu-item:nth-child(3) { transition-delay: 0.2s; }
        .menu-container:hover .menu-item:nth-child(4) { transition-delay: 0.25s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        .select-wrapper {
            position: relative;
        }

        .select-wrapper::after {
            content: '↓';
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.5);
            pointer-events: none;
        }

        .submit-button {
            width: 100%;
            padding: 1.2rem;
            background: rgba(255, 51, 51, 0.1);
            border: 1px solid rgba(255, 51, 51, 0.3);
            color: white;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            position: relative;
            overflow: hidden;
        }

        .submit-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #FF3333;
            transition: width 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            z-index: -1;
        }

        @media (hover: hover) and (pointer: fine) {
            .submit-button:hover {
                transform: translateY(-2px);
                border-color: #FF3333;
            }

            .submit-button:hover::before {
                width: 100%;
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        .services-section {
            min-height: 100vh;
            background: linear-gradient(45deg, #000000, #1a1a1a);
            padding: 8rem 2rem;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 4rem;
            background: linear-gradient(to right, #fff, #ccc);
            -webkit-background-clip: text;
            background-clip: text; /* Added standard property */
            -webkit-text-fill-color: transparent;
        }
            
        /* Style for the "CONTACTEZ" part of the section title */
        .section-title .highlight-contactez {
            color: #FF3333; /* Set color to red */
            -webkit-text-fill-color: #FF3333; /* Ensure red fill for WebKit */
            background: transparent;          /* Remove any background from parent */
            background-clip: initial;         /* Reset background-clip */
            -webkit-background-clip: initial; /* Reset background-clip for WebKit */
            animation: none; /* Remove RGB animation */
        }

        /* Keyframes for RGB text animation - can be removed if not used elsewhere, but left for now */
        @keyframes rgbText {
            0% { color: #FF3333; } /* Red */
            17% { color: #FFFF33; } /* Yellow */
            33% { color: #33FF33; } /* Green */
            50% { color: #33FFFF; } /* Cyan */
            67% { color: #3333FF; } /* Blue */
            83% { color: #FF33FF; } /* Magenta */
            100% { color: #FF3333; } /* Back to Red */
        }

        .services-grid {
            display: grid; /* Restore grid display for desktop */
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Restore grid columns */
            gap: 2rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.08);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            position: relative; /* Added for ::before positioning */
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                rgba(255, 51, 51, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 25%,
                rgba(255, 51, 51, 0.05) 50%,
                rgba(255, 255, 255, 0.05) 75%,
                rgba(255, 51, 51, 0.1) 100%);
            border-radius: 17px; /* Adjusted to match the main card's border-radius + border width */
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 51, 51, 0.3);
        }

        .service-image {
            width: 90%;
            height: 200px;
            margin: 0 auto 2rem;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(255, 51, 51, 0.3);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-image {
            transform: scale(1.05);
            border-color: rgba(255, 51, 51, 0.6);
            box-shadow: 0 6px 20px rgba(255, 51, 51, 0.3);
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .card-button {
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.5rem;
            background: rgba(255, 51, 51, 0.1);
            border: 1px solid rgba(255, 51, 51, 0.3);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .card-button:hover {
            background: #FF3333;
            transform: translateY(-2px);
        }

        /* Service Filter Buttons */
        .service-filters {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            width: 100%;
            margin-top: 1rem;
        }

        .filter-btn {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.8rem 1.2rem;
            border-radius: 25px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-family: inherit;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .filter-btn:hover {
            background: rgba(255, 51, 51, 0.1);
            border-color: rgba(255, 51, 51, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 51, 51, 0.2);
        }

        .filter-btn:hover::before {
            left: 100%;
        }

        .filter-btn.urgent {
            background: rgba(255, 51, 51, 0.2);
            border-color: rgba(255, 51, 51, 0.6);
            color: #ff4444;
        }

        .filter-btn.urgent:hover {
            background: rgba(255, 51, 51, 0.3);
            border-color: rgba(255, 51, 51, 0.8);
            box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4);
            color: #fff;
        }

        .filter-btn.install:hover {
            border-color: rgba(255, 51, 51, 0.5);
        }

        .filter-btn.repair:hover {
            border-color: rgba(255, 51, 51, 0.5);
        }

        /* Services CTA Section */
        .services-cta {
            text-align: center;
            margin-top: 4rem;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, rgba(255, 51, 51, 0.05), rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(255, 51, 51, 0.15);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .services-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 51, 51, 0.03) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.1; }
        }

        .cta-content {
            position: relative;
            z-index: 2;
            margin-bottom: 2rem;
        }

        .cta-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
        }

        .cta-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .feature-item {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .services-cta .cta-button {
            position: relative;
            z-index: 2;
            font-size: 1.1rem;
            padding: 1rem 2.5rem;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .cta-features {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            
            .cta-title {
                font-size: 1.5rem;
            }
            
            .cta-description {
                font-size: 1rem;
            }
        }


        .service-details {
            min-height: 100vh;
            background: linear-gradient(45deg, #000000, #1a1a1a);
            padding: 8rem 2rem;
        }

        .service-details-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .service-title {
            font-size: 3.5rem;
            background: linear-gradient(to right, #fff, #ccc);
            -webkit-background-clip: text;
            background-clip: text; /* Added standard property */
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .service-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
        }

        /* Features Grid */
        .features-grid {
            display: grid; /* Restore grid display for desktop */
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Restore grid columns */
            gap: 2rem;
            margin-bottom: 6rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            position: relative; /* Added for ::before positioning */
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                rgba(255, 51, 51, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 25%,
                rgba(255, 51, 51, 0.05) 50%,
                rgba(255, 255, 255, 0.05) 75%,
                rgba(255, 51, 51, 0.1) 100%);
            border-radius: 22px; /* Adjusted to match the main card's border-radius + border width */
            z-index: -1;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 51, 51, 0.3);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: rgba(255, 51, 51, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #FF3333;
            font-weight: bold;
        }

        .feature-card h3 {
            color: white;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }




        /* Brands Section */
        .brands-section {
            margin-bottom: 6rem;
            text-align: center;
        }

        .brands-section h3 {
            font-size: 2rem;
            margin-bottom: 3rem;
            color: white;
        }

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

        .brand-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            position: relative; /* Added for ::before positioning */
        }

        .brand-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                rgba(255, 51, 51, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 25%,
                rgba(255, 51, 51, 0.05) 50%,
                rgba(255, 255, 255, 0.05) 75%,
                rgba(255, 51, 51, 0.1) 100%);
            border-radius: 17px; /* Adjusted to match the main card's border-radius + border width */
            z-index: -1;
        }

        .brand-card:hover {
            background: rgba(255, 51, 51, 0.1);
            transform: translateY(-3px);
        }

        .brand-logo {
            /* max-width: 130px; */ /* Updated to match Hikvision size */
            /* max-height: 85px; */ /* Updated to match Hikvision size */
            width: 130px;            /* Set fixed width to match Hikvision */
            height: 85px;           /* Set fixed height to match Hikvision */
            object-fit: contain;
            filter: brightness(1.1); /* Slightly increased default brightness */
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.05); /* Subtle background to lift logos */
            border-radius: 8px; /* Optional: adds rounded corners if logos are square */
            padding: 10px; /* Increased padding for more internal space */
            box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.3); /* Added light glow */
        }



        .brand-card:hover .brand-logo {
            filter: brightness(1.3); /* Further increase brightness on hover */
            transform: scale(1.1); /* Slightly larger scale on hover */
            background-color: rgba(255, 255, 255, 0.1); /* Brighter background on hover */
            box-shadow: 0 0 18px 5px rgba(255, 255, 255, 0.5); /* Enhanced light glow on hover */
        }

        .brand-card span {
            font-weight: 500;
            font-size: 1.1rem;
        }

        /* Experience Section */
        .experience-section {
            margin-bottom: 6rem;
            text-align: center;
        }

        .experience-section h3 {
            font-size: 2rem;
            margin-bottom: 3rem;
            color: white;
        }

        .stats-container {
            display: flex;
            justify-content: center;
            gap: 4rem;
        }

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

        .exp-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #FF3333 0%, #FF6B33 25%, #FFFF00 50%, #FF8C00 75%, #FF4500 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
            transition: all 0.5s ease;
            will-change: contents;
            text-shadow: 0 0 20px rgba(255, 51, 51, 0.3), 0 0 40px rgba(255, 255, 0, 0.2);
            animation: gradientShift 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
            position: relative;
        }

        .exp-number::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #FF3333 0%, #FF6B33 25%, #FFFF00 50%, #FF8C00 75%, #FF4500 100%);
            background-size: 200% 200%;
            border-radius: 10px;
            filter: blur(20px);
            opacity: 0.2;
            z-index: -1;
            animation: gradientShift 3s ease-in-out infinite;
        }

        .exp-number.animated {
            animation: gradientShift 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate, pulse 1s ease-in-out;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 20px rgba(255, 51, 51, 0.3), 0 0 40px rgba(255, 255, 0, 0.2), 0 0 60px rgba(255, 140, 0, 0.1);
            }
            to {
                text-shadow: 0 0 30px rgba(255, 51, 51, 0.5), 0 0 60px rgba(255, 255, 0, 0.3), 0 0 90px rgba(255, 140, 0, 0.2);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        .exp-stat p {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Projects Section */
        .projects-section {
            margin-bottom: 6rem;
            text-align: center;
        }

        .projects-section h3 {
            font-size: 2rem;
            margin-bottom: 3rem;
            color: white;
        }

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

        .project-type {
            background: rgba(255, 255, 255, 0.03);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative; /* Added for ::before positioning */
        }

        .project-type::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                rgba(255, 51, 51, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 25%,
                rgba(255, 51, 51, 0.05) 50%,
                rgba(255, 255, 255, 0.05) 75%,
                rgba(255, 51, 51, 0.1) 100%);
            border-radius: 17px; /* Adjusted to match the main card's border-radius + border width */
            z-index: -1;
        }

        .project-type h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .project-type ul {
            list-style: none;
            color: rgba(255, 255, 255, 0.7);
        }

        .project-type li {
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .project-type li:hover {
            color: #FF3333;
        }

        /* Social Container for Mobile */
        .social-container {
            position: fixed;
            top: 2rem;
            left: 2rem;
            z-index: 1000;
            display: none;
        }



        /* Call to Action */
        .service-cta {
            text-align: center;
            background: rgba(255, 51, 51, 0.05);
            border-radius: 20px;
            padding: 4rem 2rem;
            margin-top: 4rem;
        }

        .service-cta h3 {
            font-size: 2rem;
            color: white;
            margin-bottom: 1rem;
        }

        .service-cta p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        .locations-section {
            margin: 6rem auto;
            text-align: center;
            max-width: 1200px;
        }

        .locations-section h3 {
            font-size: 2rem;
            color: white;
            margin-bottom: 3rem;
        }

        .locations-container {
            display: flex;
            justify-content: center;
            gap: 4rem;
        }

        .location-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 51, 51, 0.4);
            border-radius: 20px;
            padding: 2rem 3rem;
            transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            min-height: 120px; /* Ensure consistent height for both cards */
            position: relative;
            box-shadow: 0 0 30px rgba(255, 51, 51, 0.3);
        }

        /* Special red glow effect for Castelnau location */
        #castelnau-location {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 20px rgba(255, 51, 51, 0.8);
        }

        /* Same styling for Montpellier location to match size */
        #montpellier-location {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 20px rgba(255, 51, 51, 0.8);
        }

        .location-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                rgba(255, 51, 51, 0.6) 0%,
                rgba(255, 51, 51, 0.3) 25%,
                rgba(255, 51, 51, 0.1) 50%,
                rgba(255, 51, 51, 0.3) 75%,
                rgba(255, 51, 51, 0.6) 100%);
            border-radius: 22px;
            z-index: -1;
            animation: redGlow 3s ease-in-out infinite;
        }

        @keyframes redGlow {
            0% {
                opacity: 0.5;
                filter: blur(1px);
            }
            100% {
                opacity: 0.8;
                filter: blur(2px);
            }
        }

        .location-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 51, 51, 0.6);
            box-shadow: 0 10px 40px rgba(255, 51, 51, 0.5);
        }

        .location-icon {
            color: #FF3333;
            margin-bottom: 1rem;
        }

        .location-card h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .location-card p {
            color: rgba(255, 255, 255, 0.7);
        }

        .section-transition {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .section-transition.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Partners section styles moved to css/partners.css */

        .scroll-top {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            background: rgba(255, 51, 51, 0.15);
            border: 1px solid rgba(255, 51, 51, 0.4);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: rgba(255, 51, 51, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 51, 51, 0.4);
        }

        /* floating contact number / icon */
        .contact-button {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            display: none; /* Hide by default */
            align-items: center;
            flex-direction: row-reverse; /* Reverse the order of elements */
            text-decoration: none;
            z-index: 1000;
            overflow: hidden;
            transform: translateZ(0);
        }

        .contact-circle {
            width: 3rem;
            height: 3rem;
            background: #FF3333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transform: translateZ(0);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                        box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
        }

        .contact-circle svg {
            color: white;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .contact-text {
            background: #FF3333;
            color: white;
            font-weight: 500;
            padding: 0 2.5rem 0 1.2rem; /* Reverse padding */
            height: 3rem;
            line-height: 3rem;
            border-radius: 1.75rem;
            margin-right: -2rem; /* Change from margin-left to margin-right */
            opacity: 0;
            transform: translateX(-1rem); /* Reverse translation direction */
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
        }

        .contact-button:hover .contact-circle {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 51, 51, 0.4);
        }

        .contact-button:hover .contact-circle svg {
            transform: scale(0.9) rotate(-15deg); /* Reverse rotation direction */
        }

        .contact-button:hover .contact-text {
            opacity: 1;
            transform: translateX(0);
        }

        /*banner buttons*/
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        /* Main CTA button (Discutons de votre projet) */
        .main-cta {
            display: inline-flex;
            align-items: center;
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
            text-align: center;
            justify-content: center;
            width: fit-content;
            background: rgba(255, 51, 51, 0.15); /* Slightly more opaque background */
            border: 1px solid rgba(255, 51, 51, 0.6); /* Brighter border */
            color: white;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            text-shadow: 0 0 8px rgba(255, 51, 51, 0.5); /* Add a subtle glow */
        }

        @media (hover: hover) and (pointer: fine) {
            .main-cta:hover {
                background: #FF3333;
                transform: translateY(-2px);
                border-color: #FF3333;
                box-shadow: 0 0 15px rgba(255, 51, 51, 0.7); /* Enhance glow on hover */
            }
        }


        /* SEO Optimized Footer Styles */
        .site-footer {
            margin-top: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            padding-top: 3rem;
            padding-bottom: 2rem;
        }

        .footer-section {
            min-width: 0; /* Prevents grid overflow */
        }

        .footer-title {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #FF3333;
            border-radius: 1px;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .footer-contact {
            space-y: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .contact-item svg {
            color: #FF3333;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #FF3333;
        }

        .footer-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav li {
            margin-bottom: 0.75rem;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        /* Hover effects only for devices with precise pointers (desktop/laptop) */
        @media (hover: hover) and (pointer: fine) {
            .footer-nav a:hover {
                color: #FF3333;
                padding-left: 5px;
            }

            .footer-services .footer-nav a:hover::before {
                content: '→';
                position: absolute;
                left: -15px;
                color: #FF3333;
            }
        }

        /* Service areas styling */
        .footer-areas ul li {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            position: relative;
            padding-left: 15px;
        }

        .footer-areas ul li::before {
            content: '•';
            color: #FF3333;
            position: absolute;
            left: 0;
        }

        /* Footer Bottom Section */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem 0 1.5rem 0;
            text-align: center;
            background: rgba(5, 5, 5, 0.8);
        }

        .footer-bottom .footer-container {
            grid-template-columns: 1fr;
            gap: 1rem;
            padding-top: 0;
            padding-bottom: 0;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            margin: 0.5rem 0;
            line-height: 1.6;
        }

        .footer-bottom .footer-description {
            max-width: 600px;
            margin: 0.5rem auto 0 auto !important;
            text-align: center !important;
            display: block;
            padding: 0 1rem;
        }

        .footer-description strong {
            color: #FF3333;
            font-weight: 600;
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem 1rem;
            }
            
            .footer-title {
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }
            
            .contact-item {
                font-size: 0.85rem;
            }
            
            .footer-nav a {
                font-size: 0.85rem;
            }
            
            .footer-areas ul li {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .site-footer {
                margin-top: 2rem;
            }
            
            .footer-container {
                padding: 1.5rem 1rem;
                gap: 1.5rem;
            }
            
            .footer-bottom {
                padding: 1.5rem 0 1rem 0;
            }
        }

        /* Legacy footer link styles for compatibility */
        .site-footer p a {
            color: inherit;
            text-decoration: underline;
        }

        @media (hover: hover) and (pointer: fine) {
            .site-footer p a:hover {
                color: #fff;
            }
        }

        /* Simple Scroll Arrow */
        .scroll-arrow {
            position: absolute;
            bottom: 2rem;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 10;
            animation: bounce 2s infinite;
        }

        .scroll-arrow a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 51, 51, 0.2);
            border: 1px solid rgba(255, 51, 51, 0.3);
            transition: all 0.3s ease;
        }

        .scroll-arrow a:hover {
            background: rgba(255, 51, 51, 0.4);
            transform: translateY(3px);
        }

        .scroll-arrow svg {
            stroke: #fff;
        }

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

        /* Media query for the arrow on mobile */
        @media (max-width: 768px) {
            .scroll-arrow {
                display: none; /* Hide the arrow on mobile */
            }
        }

        /* RESPONSIVE STYLES */
        @media (max-width: 480px) {
            .contact-display {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
                bottom: 1rem;
                right: 1rem;
            }
            
            .contact-display svg {
                width: 20px;
                height: 20px;
            }

            .contact-button {
                bottom: 1.5rem;
                right: 1.5rem;
            }
            
            .contact-circle {
                width: 3rem;
                height: 3rem;
            }
            
            .contact-text {
                height: 3rem;
                line-height: 3rem;
                font-size: 0.9rem;
                margin-right: -2rem; /* Adjust margin for smaller screens */
                padding: 0 2.5rem 0 1.2rem; /* Adjust padding for smaller screens */
            }
            
            .contact-button {
                bottom: 1rem;
                right: 1rem;
            }
            
            .contact-circle {
                width: 2.8rem;
                height: 2.8rem;
            }
            
            .contact-circle svg {
                width: 20px;
                height: 20px;
            }
            
            .contact-text {
                height: 2.8rem;
                line-height: 2.8rem;
                padding: 0 1.2rem 0 2.5rem;
                margin-left: -1.8rem;
            }
            
            /* Site logo on small screens */
            .site-logo {
                padding: 0.4rem 0.7rem;
            }
            
            .logo-zozo {
                font-size: 1rem;
            }
            
            .logo-securite {
                font-size: 0.7rem;
            }
            
            .hero-title {
                font-size: 2.2rem;
                margin-top: 5.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
        }

        /* All Media Queries */
        @media (max-width: 900px) {
            .hero {
                min-height: 50vh;
            }
        }

        @media (max-width: 767px) { /* Adjusted from 768px if needed, check original query */
            /* Hero Section */
            .hero {
                padding: 0 5%;
                min-height: 50vh;
                padding-top: 2.5rem; /* Reduced padding-top to move content up further */
            }
            
            .hero-title {
                font-size: 2.5rem; /* Reduced font size */
                margin-top: 3rem;
                letter-spacing: -0.3px;
                color: #ffffff;
            }

            .hero-subtitle {
                margin-bottom: 1rem; /* Reduced space below subtitle */
            }

            /* Services & Content */
            .services-grid {
                display: flex; /* Use flexbox for horizontal layout on mobile */
                overflow-x: auto; /* Enable horizontal scrolling on mobile */
                flex-wrap: nowrap; /* Prevent items from wrapping on mobile */
                gap: 1.5rem;
                padding: 0 1rem 1rem 1rem; /* Add padding for scrollbar on mobile */
                scrollbar-width: thin; /* Firefox */
                scrollbar-color: #FF3333 rgba(255, 255, 255, 0.1); /* Firefox */
            }

            /* Style Webkit scrollbars for services on mobile */
            .services-grid::-webkit-scrollbar {
                height: 8px;
            }
            .services-grid::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.1);
                border-radius: 4px;
            }
            .services-grid::-webkit-scrollbar-thumb {
                background-color: #FF3333;
                border-radius: 4px;
            }
            .services-grid::-webkit-scrollbar-thumb:hover {
                background-color: #cc0000;
            }

            .service-card {
                flex-shrink: 0; /* Prevent cards from shrinking on mobile */
                width: 280px; /* Set a fixed width for each card on mobile */
            }

            .service-image {
                height: 160px; /* Smaller height on mobile */
                width: 95%; /* Full width on mobile */
                margin-bottom: 1.5rem;
                border-radius: 15px;
            }

            /* Duplicate services-grid definition removed */

            .section-title {
                font-size: 2.5rem;
            }
            
            .features-grid {
                display: flex; /* Use flexbox for horizontal layout on mobile */
                overflow-x: auto; /* Enable horizontal scrolling on mobile */
                flex-wrap: nowrap; /* Prevent items from wrapping on mobile */
                gap: 1.5rem;
                padding-bottom: 1rem; /* Add padding for scrollbar on mobile */
                scrollbar-width: thin; /* Firefox */
                scrollbar-color: #FF3333 rgba(255, 255, 255, 0.1); /* Firefox */
            }

            /* Style Webkit scrollbars for features on mobile */
            .features-grid::-webkit-scrollbar {
                height: 8px;
            }
            .features-grid::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.1);
                border-radius: 4px;
            }
            .features-grid::-webkit-scrollbar-thumb {
                background-color: #FF3333;
                border-radius: 4px;
            }
            .features-grid::-webkit-scrollbar-thumb:hover {
                background-color: #cc0000;
            }

            .feature-card {
                flex-shrink: 0; /* Prevent cards from shrinking on mobile */
                width: 250px; /* Set a fixed width for each card on mobile */
            }

            .service-cta {
                padding: 2rem 1rem;
            }
            
            .locations-container {
                flex-direction: column;
                gap: 2rem;
            }
            
            /* Contact & Layout */
            .contact-container {
                padding: 2rem 1.5rem;
            }
            
            .form-title {
                font-size: 2rem;
            }
            
            .contact-display {
                padding: 1rem 1.8rem;
                font-size: 1.1rem;
                bottom: 1.5rem;
                right: 1.5rem;
            }

            /* Components */

            /* Stats & Section Titles */
            .stats-container {
                flex-direction: column;
                gap: 2rem;
            }
            
            .service-title {
                font-size: 2.5rem;
            }

            /* Logo mobile adjustments */
            .site-logo {
                position: absolute;
                top: 1rem;
                left: 50%;
                transform: translateX(-50%);
                padding: 0.6rem 1rem;
                width: auto;
                display: inline-block;
                text-align: center;
            }
            
            .logo-text {
                align-items: center;
            }
            
            .logo-zozo {
                font-size: 1.3rem;
            }
            
            .logo-securite {
                font-size: 0.9rem;
            }

            .hero-content {
                padding-bottom: 0; /* Remove extra padding that was for the indicator */
            }

            .cta-buttons {
                display: flex;
                flex-direction: column; /* Ensure vertical stacking */
                align-items: flex-start; /* Align buttons to the start (left) */
                gap: 0.8rem; /* Slightly reduced gap */
                margin-top: 0.5rem; /* Move buttons closer to subtitle */
            }

            .main-cta {
                width: auto; /* Ensure buttons are not full width */
                text-align: center;
                padding: 0.6rem 1rem; /* Original padding */
                font-size: 0.8rem; /* Original font size */
            }
        }

        /* About Section Styles */
        .about-section,
        #qui-sommes-nous.about-section {
            padding: 100px 0 !important;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 51, 51, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-content,
        .about-section .about-content {
            display: grid !important;
            grid-template-columns: 2fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .about-text .section-title {
            margin-bottom: 2rem;
            font-size: 3.5rem;
        }

        .about-intro {
            margin-bottom: 3rem;
        }

        .about-lead {
            font-size: 1.4rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
        }

        .about-lead strong {
            color: #ff3333;
            font-weight: 600;
        }

        .about-details {
            margin-bottom: 3rem;
        }

        .about-item,
        .about-section .about-item {
            display: flex !important;
            gap: 20px;
            margin-bottom: 2.5rem;
            padding: 25px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .about-item:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 51, 51, 0.2);
        }

        /* Enhanced About Section Icons - Red and Yellow Glow Theme */
        .about-icon,
        .about-section .about-icon {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            background: linear-gradient(135deg, rgba(255, 51, 51, 0.2), rgba(255, 215, 0, 0.2));
            border: 2px solid rgba(255, 51, 51, 0.4);
            backdrop-filter: blur(10px);
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
        }

        .about-icon::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #FF3333, #FFD700, #FF6600, #FFD700, #FF3333);
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: all 0.4s ease;
            filter: blur(2px);
        }

        .about-item:hover .about-icon::before {
            opacity: 1;
            animation: pulse-glow 2s infinite;
        }

        .about-item:hover .about-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(255, 51, 51, 0.5), 0 0 30px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 165, 0, 0.3);
            border-color: rgba(255, 215, 0, 0.8);
        }

        .icon-inner {
            position: relative;
            z-index: 2;
            color: #FFD700;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(255, 51, 51, 0.4));
        }

        .about-item:hover .icon-inner {
            color: #FFFF88;
            transform: scale(1.1);
            filter: drop-shadow(0 3px 6px rgba(255, 51, 51, 0.6)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
        }

        .icon-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 60px;
            height: 60px;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 51, 51, 0.2) 50%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .about-item:hover .icon-glow {
            opacity: 1;
            animation: glow-pulse 2s infinite;
        }

        /* Individual Security-themed Icon Styles - Red & Yellow Glow */
        .security-badge {
            background: linear-gradient(135deg, rgba(255, 51, 51, 0.3), rgba(255, 215, 0, 0.2));
            border-color: rgba(255, 215, 0, 0.6);
        }

        .security-badge::before {
            background: linear-gradient(135deg, #FF3333, #FFD700, #FF6600, #FFD700);
        }

        .security-badge .icon-inner {
            color: #FFD700;
        }

        .security-shield {
            background: linear-gradient(135deg, rgba(255, 51, 51, 0.3), rgba(255, 215, 0, 0.2));
            border-color: rgba(255, 51, 51, 0.6);
        }

        .security-shield::before {
            background: linear-gradient(135deg, #FF3333, #FFD700, #FF6600, #FFD700);
        }

        .security-shield .icon-inner {
            color: #FFD700;
        }

        .security-support {
            background: linear-gradient(135deg, rgba(255, 51, 51, 0.3), rgba(255, 215, 0, 0.2));
            border-color: rgba(255, 215, 0, 0.6);
        }

        .security-support::before {
            background: linear-gradient(135deg, #FF3333, #FFD700, #FF6600, #FFD700);
        }

        .security-support .icon-inner {
            color: #FFD700;
        }

        /* Hover Effects - Red & Yellow Glow */
        .about-icon:hover {
            transform: translateY(-5px) scale(1.05);
            border-color: rgba(255, 215, 0, 0.8);
            box-shadow: 
                0 15px 40px rgba(255, 51, 51, 0.4),
                0 0 30px rgba(255, 215, 0, 0.6),
                0 0 50px rgba(255, 165, 0, 0.3);
        }

        .security-badge:hover {
            border-color: rgba(255, 215, 0, 1);
            box-shadow: 
                0 15px 40px rgba(255, 51, 51, 0.5),
                0 0 35px rgba(255, 215, 0, 0.8);
        }

        .security-shield:hover {
            border-color: rgba(255, 51, 51, 1);
            box-shadow: 
                0 15px 40px rgba(255, 51, 51, 0.6),
                0 0 35px rgba(255, 215, 0, 0.5);
        }

        .security-support:hover {
            border-color: rgba(255, 215, 0, 1);
            box-shadow: 
                0 15px 40px rgba(255, 51, 51, 0.5),
                0 0 35px rgba(255, 215, 0, 0.8);
        }

        .about-icon:hover .icon-glow {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.2);
        }

        .about-icon:hover .icon-inner {
            transform: scale(1.1);
        }

        /* Animations */
        /* Red and Yellow Glow Animations for About Icons */
        @keyframes pulse-glow {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        @keyframes glow-pulse {
            0%, 100% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.3);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        @keyframes supportPulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(1.2);
            }
        }

        .about-text-block h3 {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .about-text-block p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
            font-size: 1rem;
        }

        .about-cta {
            text-align: center;
            padding: 2rem 0;
        }

        .about-promise {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            font-style: italic;
            line-height: 1.5;
        }

        .about-button {
            display: inline-flex;
            align-items: center;
            padding: 15px 35px;
            font-size: 1.1rem;
            text-align: center;
            justify-content: center;
            width: fit-content;
            background: rgba(255, 51, 51, 0.15);
            border: 1px solid rgba(255, 51, 51, 0.6);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
        }

        .about-button:hover {
            background: #FF3333;
            transform: translateY(-2px);
            border-color: #FF3333;
            box-shadow: 0 0 15px rgba(255, 51, 51, 0.7);
        }

        .about-stats {
            border-radius: 25px;
            height: fit-content;
            position: sticky;
            top: 120px;
            overflow: hidden;
        }

        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            background: linear-gradient(45deg, #ff3333, #ff6b6b, #4ecdc4, #45b7d1);
            background-size: 400% 400%;
            animation: gradientShift 8s ease-in-out infinite;
            padding: 4px;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(255, 51, 51, 0.2);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .image-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            animation: rotate 4s linear infinite;
            z-index: 1;
        }

        .about-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 21px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            z-index: 2;
            object-fit: cover;
        }

        .image-container.show-overlay {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 50px rgba(255, 51, 51, 0.4);
        }

        .image-container.show-overlay .about-image {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.3) 50%,
                transparent 100%
            );
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 3;
            border-radius: 21px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-container.show-overlay .image-overlay {
            opacity: 1;
        }

        .overlay-content {
            text-align: center;
            color: white;
            transform: translateY(20px);
            transition: all 0.4s ease;
            padding: 20px;
            max-width: 280px;
        }

        .image-container.show-overlay .overlay-content {
            transform: translateY(0);
        }

        .overlay-content h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .overlay-content p {
            font-size: 1rem;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            margin-bottom: 20px;
        }

        .slick-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 51, 51, 0.15);
            border: 1px solid rgba(255, 51, 51, 0.6);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
            position: relative;
            overflow: hidden;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.4s ease 0.2s;
        }

        .image-container.show-overlay .slick-button {
            transform: translateY(0);
            opacity: 1;
        }

        .slick-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .slick-button:hover::before {
            left: 100%;
        }

        .slick-button:hover {
            background: #FF3333;
            transform: translateY(-2px);
            border-color: #FF3333;
            box-shadow: 0 0 15px rgba(255, 51, 51, 0.7);
        }

        .slick-button:active {
            transform: translateY(0) scale(0.98);
        }

        .slick-button i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .slick-button:hover i {
            transform: translateX(3px);
        }

        .floating-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ff3333, #ff6b6b);
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4);
            z-index: 4;
            animation: pulse 2s ease-in-out infinite;
        }

        .floating-badge i {
            font-size: 0.9rem;
        }

        .image-frame {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border: 2px solid transparent;
            border-radius: 25px;
            background: linear-gradient(45deg, #ff3333, #ff6b6b, #4ecdc4, #45b7d1) border-box;
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            pointer-events: none;
            z-index: 1;
        }

        /* Duplicate keyframes removed - gradientShift, rotate, and pulse already defined earlier */

        /* Mobile Responsive - REBUILT MOBILE VERSION */
        @media (max-width: 768px) {
            /* Hide existing broken mobile version */
            .about-section {
                padding: 80px 0;
                background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
                position: relative;
            }
            
            .about-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(circle at 30% 50%, rgba(255, 51, 51, 0.05) 0%, transparent 50%);
                pointer-events: none;
            }
            
            /* NEW MOBILE VERSION - Built from scratch to match desktop */
            .about-content {
                display: block !important;
                grid-template-columns: none !important;
                gap: 0;
            }
            
            /* Mobile Title */
            .about-text .section-title {
                font-size: 2.8rem;
                text-align: center;
                margin-bottom: 2rem;
                line-height: 1.2;
            }
            
            /* Mobile Lead Text */
            .about-lead {
                font-size: 1.3rem;
                text-align: center;
                margin-bottom: 3rem;
                line-height: 1.6;
                padding: 0 10px;
            }
            
            /* Mobile Feature Items - Rebuilt to match desktop design */
            .about-item {
                display: flex !important;
                flex-direction: row;
                align-items: center;
                gap: 20px;
                padding: 25px 20px;
                margin-bottom: 2rem;
                background: rgba(255, 255, 255, 0.02);
                border-radius: 15px;
                border: 1px solid rgba(255, 255, 255, 0.05);
                transition: all 0.3s ease;
            }
            
            .about-item:hover {
                transform: translateY(-2px);
                background: rgba(255, 255, 255, 0.04);
                border-color: rgba(255, 51, 51, 0.2);
            }
            
            /* Mobile Icons - Enhanced for mobile */
            .about-icon {
                flex-shrink: 0;
                width: 70px;
                height: 70px;
                border-radius: 18px;
                display: flex !important;
                align-items: center;
                justify-content: center;
                position: relative;
                background: linear-gradient(135deg, rgba(255, 51, 51, 0.2), rgba(255, 215, 0, 0.2));
                border: 2px solid rgba(255, 51, 51, 0.4);
                backdrop-filter: blur(10px);
                overflow: hidden;
                box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
            }
            
            .about-icon::before {
                content: '';
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(135deg, #FF3333, #FFD700, #FF6600, #FFD700, #FF3333);
                border-radius: 20px;
                z-index: -1;
                opacity: 0;
                transition: all 0.4s ease;
                filter: blur(2px);
            }
            
            .about-item:hover .about-icon::before {
                opacity: 1;
                animation: pulse-glow 2s infinite;
            }
            
            .about-item:hover .about-icon {
                transform: scale(1.05) rotate(2deg);
                box-shadow: 0 15px 40px rgba(255, 51, 51, 0.5), 0 0 30px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 165, 0, 0.3);
                border-color: rgba(255, 215, 0, 0.8);
            }
            
            .icon-inner {
                position: relative;
                z-index: 2;
                color: #FFD700;
                transition: all 0.3s ease;
                filter: drop-shadow(0 2px 4px rgba(255, 51, 51, 0.4));
            }
            
            .icon-inner svg {
                width: 26px;
                height: 26px;
            }
            
            .about-item:hover .icon-inner {
                color: #FFFF88;
                transform: scale(1.1);
                filter: drop-shadow(0 3px 6px rgba(255, 51, 51, 0.6)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
            }
            
            .icon-glow {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 50px;
                height: 50px;
                transform: translate(-50%, -50%);
                background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 51, 51, 0.2) 50%, transparent 70%);
                border-radius: 50%;
                opacity: 0;
                transition: all 0.3s ease;
                z-index: 1;
            }
            
            .about-item:hover .icon-glow {
                opacity: 1;
                animation: glow-pulse 2s infinite;
            }
            
            /* Mobile Text Block */
            .about-text-block {
                flex: 1;
            }
            
            .about-text-block h3 {
                font-size: 1.3rem;
                color: #ffffff;
                margin-bottom: 10px;
                font-weight: 600;
                line-height: 1.3;
            }

            .about-text-block p {
                color: rgba(255, 255, 255, 0.8);
                line-height: 1.6;
                font-size: 1.05rem;
            }

            /* Mobile Quote and CTA */
            .about-cta {
                text-align: center;
                padding: 3rem 0 2rem 0;
                margin-top: 2rem;
            }

            .about-promise {
                font-size: 1.2rem;
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 2.5rem;
                font-style: italic;
                line-height: 1.6;
                padding: 0 10px;
            }

            .about-button {
                display: inline-flex;
                align-items: center;
                padding: 18px 40px;
                font-size: 1.15rem;
                text-align: center;
                justify-content: center;
                width: fit-content;
                background: rgba(255, 51, 51, 0.15);
                border: 1px solid rgba(255, 51, 51, 0.6);
                color: white;
                text-decoration: none;
                border-radius: 50px;
                font-weight: 600;
                transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
                text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
            }

            .about-button:hover {
                background: #FF3333;
                transform: translateY(-2px);
                border-color: #FF3333;
                box-shadow: 0 0 15px rgba(255, 51, 51, 0.7);
            }
            
            /* Mobile Image Section - Rebuilt */
            .about-stats {
                position: static;
                margin-top: 40px;
                order: -1; /* Move image to top on mobile to match desktop layout flow */
            }
            
            .image-container {
                border-radius: 20px;
                padding: 3px;
                max-width: 300px;
                margin: 0 auto 40px auto;
            }
            
            .about-image {
                border-radius: 17px;
                width: 100%;
                height: auto;
            }
            
            .image-overlay {
                border-radius: 17px;
            }
            
            .floating-badge {
                top: 10px;
                right: 10px;
                padding: 6px 10px;
                font-size: 0.75rem;
            }
            
            .overlay-content {
                padding: 15px;
                max-width: 240px;
            }
            
            .overlay-content h4 {
                font-size: 1.2rem;
            }
            
            .overlay-content p {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }
            
            .slick-button {
                padding: 10px 20px;
                font-size: 0.85rem;
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            /* Extra small mobile - Keep layout but adjust sizes */
            .about-section {
                padding: 60px 0;
            }
            
            .about-text .section-title {
                font-size: 2.2rem;
                margin-bottom: 1.5rem;
            }
            
            .about-lead {
                font-size: 1.15rem;
                margin-bottom: 2.5rem;
                padding: 0 5px;
            }
            
            .about-item {
                padding: 20px 15px;
                gap: 18px;
                margin-bottom: 1.5rem;
            }
            
            .about-icon {
                width: 60px;
                height: 60px;
                border-radius: 15px;
            }
            
            .icon-inner svg {
                width: 22px;
                height: 22px;
            }
            
            .about-text-block h3 {
                font-size: 1.15rem;
                margin-bottom: 8px;
            }

            .about-text-block p {
                font-size: 0.95rem;
                line-height: 1.5;
            }

            .about-promise {
                font-size: 1.05rem;
                padding: 0 5px;
                margin-bottom: 2rem;
            }

            .about-button {
                display: inline-flex;
                align-items: center;
                padding: 15px 30px;
                font-size: 1.05rem;
            }
            
            .image-container {
                max-width: 280px;
                margin-bottom: 30px;
                border-radius: 15px;
                padding: 2px;
            }
            
            .about-image {
                border-radius: 13px;
            }
            
            .image-overlay {
                border-radius: 13px;
            }
            
            .floating-badge {
                top: 8px;
                right: 8px;
                padding: 5px 8px;
                font-size: 0.7rem;
                gap: 4px;
            }
            
            .overlay-content {
                padding: 12px;
                max-width: 200px;
            }
            
            .overlay-content h4 {
                font-size: 1.1rem;
            }
            
            .overlay-content p {
                font-size: 0.85rem;
                margin-bottom: 12px;
            }
            
            .slick-button {
                padding: 8px 16px;
                font-size: 0.8rem;
                gap: 6px;
            }
        }







/* Google Maps Integration with Liquid Glass Styling */
        .locations-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-bottom: 3rem;
            margin-top: 1rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.3s;
        }

        .map-container-wrapper {
            margin-top: 4rem;
            padding: 0 2rem;
            display: flex;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.5s;
        }

        .map-glass-container {
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            padding: 20px;
            overflow: hidden;
            width: 100%;
            max-width: 800px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: pointer;
        }

        .map-glass-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 50%, 
                rgba(255, 255, 255, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 24px;
            pointer-events: none;
            z-index: 1;
        }

        .map-glass-container:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .map-glass-container:hover::before {
            opacity: 1;
        }

        .map-glass-container iframe {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            border: 0;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .map-glass-container:hover iframe {
            transform: scale(1.02);
        }

        /* Map Loading State */
        .map-loading-state {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            z-index: 3;
            background: rgba(0, 0, 0, 0.8);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .map-loading-state.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-top: 3px solid #FF3333;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .map-loading-state p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin: 0;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Design for Map */
        @media (max-width: 768px) {
            .map-container-wrapper {
                margin-top: 3rem;
                padding: 0 1rem;
            }
            
            .map-glass-container {
                padding: 15px;
                border-radius: 20px;
            }
            
            .map-glass-container iframe {
                height: 300px;
                border-radius: 12px;
            }
            
            .map-glass-container:hover {
                transform: translateY(-4px);
            }
            
            .map-glass-container:hover iframe {
                transform: scale(1.01);
            }
            
            .locations-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 480px) {
            .map-container-wrapper {
                margin-top: 2rem;
                padding: 0 0.5rem;
            }
            
            .map-glass-container {
                padding: 12px;
                border-radius: 16px;
            }
            
            .map-glass-container iframe {
                height: 250px;
                border-radius: 10px;
            }
            
            .map-loading-state {
                padding: 1.5rem;
            }
            
            .loading-spinner {
                width: 30px;
                height: 30px;
            }
            
            .locations-subtitle {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }
        }

        /* Enhanced Glass Effect Animation */
        @keyframes glassShimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        .map-glass-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            background-size: 200% 100%;
            animation: glassShimmer 3s ease-in-out infinite;
            border-radius: 24px;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 1;
        }

        .map-glass-container:hover::after {
            opacity: 1;
            animation-duration: 1.5s;
        }

        /* Hide browser accessibility buttons */
        [aria-label*="accessibility"],
        [aria-label*="Accessibility"],
        [aria-label*="contrast"],
        [aria-label*="font"],
        [aria-label*="theme"],
        [aria-label*="mode"],
        [title*="accessibility"],
        [title*="Accessibility"],
        [title*="contrast"],
        [title*="font"],
        [title*="theme"],
        [title*="mode"],
        button[style*="position: fixed"][style*="top"],
        button[style*="position:fixed"][style*="top"],
        div[style*="position: fixed"][style*="top"],
        div[style*="position:fixed"][style*="top"] {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        /* Hide specific accessibility button patterns */
        button[aria-label*="A"],
        button[title*="A"] {
            display: none !important;
        }

        /* Hide fixed positioned elements in top right that might be accessibility buttons */
        *[style*="position: fixed"][style*="right: 0"][style*="top: 0"],
        *[style*="position:fixed"][style*="right:0"][style*="top:0"] {
            display: none !important;
        }

