/* Montpellier Videosurveillance Page Specific Styles */

/* Include all necessary styles from contact.css and google-reviews.css for this page */

/* UserGems-Inspired Split Layout Styles */
.contact-split-layout {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: stretch;
    background: #000;
    padding-top: 0;
}

.split-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    min-height: 100%;
}

/* Left Column - Value Proposition */
.split-left {
    width: 50%;
    background: #0a0a0a;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 8rem 4rem 5rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.split-left-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    padding-top: 0;
}

.split-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: -1px;
}

.gradient-text {
    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;
}

.split-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 4rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.benefits-list li:nth-child(1) { animation-delay: 0.1s; }
.benefits-list li:nth-child(2) { animation-delay: 0.2s; }
.benefits-list li:nth-child(3) { animation-delay: 0.3s; }
.benefits-list li:nth-child(4) { animation-delay: 0.4s; }
.benefits-list li:nth-child(5) { animation-delay: 0.5s; }

.checkmark {
    flex-shrink: 0;
    color: #FFD700;
    stroke-width: 3;
}

/* Google Reviews Summary Styles */
.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 24px 40px;
    margin: 0 auto;
    max-width: 550px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInScale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s backwards;
}

.google-rating-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.05) 0%, transparent 50%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.google-rating-summary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 51, 51, 0.1);
}

.google-rating-summary:hover::before {
    opacity: 1;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #ffffff;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
}

.google-logo svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.star {
    width: 26px;
    height: 26px;
    fill: #FFD700;
    filter: 
        drop-shadow(0 0 12px rgba(255, 215, 0, 0.6))
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: starGlow 3s ease-in-out infinite;
}

@keyframes starGlow {
    0%, 100% {
        filter: 
            drop-shadow(0 0 12px rgba(255, 215, 0, 0.6))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    50% {
        filter: 
            drop-shadow(0 0 18px rgba(255, 215, 0, 0.8))
            drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    }
}

.google-rating-summary:hover .star {
    filter: 
        drop-shadow(0 0 20px rgba(255, 215, 0, 0.9))
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transform: scale(1.1);
}

.rating-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.review-count {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

/* Social Proof Section */
.social-proof {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-proof h3 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.partner-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo {
    height: 35px;
    width: auto;
    filter: brightness(0.9);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Right Column - Contact Form */
.split-right {
    width: 50%;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 6rem 3rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.original-form-container {
    width: 100%;
    max-width: 650px;
    padding-top: 0;
}

.original-contact-form {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.original-contact-form::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;
    z-index: -1;
}

.original-contact-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.original-contact-form .form-group {
    margin-bottom: 1.2rem;
    width: 100%;
}

.original-contact-form .form-group.half-width {
    width: 50%;
}

.original-contact-form label {
    display: block;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.original-contact-form input[type="text"],
.original-contact-form input[type="email"],
.original-contact-form input[type="tel"],
.original-contact-form select,
.original-contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.original-contact-form input[type="text"]::placeholder,
.original-contact-form input[type="email"]::placeholder,
.original-contact-form input[type="tel"]::placeholder,
.original-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.original-contact-form input:focus,
.original-contact-form select:focus,
.original-contact-form textarea:focus {
    outline: none;
    border-color: #FF3333;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.2);
}

.original-contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6,9 12,15 18,9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.original-contact-form select option {
    background: #000;
    color: white;
}

.original-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.original-contact-form .form-group.submit-group {
    text-align: center;
    margin-top: 2rem;
}

.original-contact-form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 2.5rem;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    color: white;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    position: relative;
    overflow: hidden;
}

.original-contact-form-submit-btn::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;
}

.original-contact-form-submit-btn:hover {
    transform: translateY(-2px);
    border-color: #FF3333;
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.3);
}

.original-contact-form-submit-btn:hover::before {
    width: 100%;
}

.original-contact-form .form-status {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    min-height: 1.3em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Progressive Disclosure - Hide conditional fields initially */
.original-contact-form .conditional-field {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    margin-bottom: 0 !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    visibility: hidden !important;
}

.original-contact-form .conditional-field.show {
    max-height: 200px !important;
    opacity: 1 !important;
    margin-bottom: 1.2rem !important;
    visibility: visible !important;
}

/* Special handling for the conditional form row */
.original-contact-form .form-row.conditional-fields {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    margin-bottom: 0 !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    visibility: hidden !important;
}

.original-contact-form .form-row.conditional-fields.show {
    max-height: 200px !important;
    opacity: 1 !important;
    margin-bottom: 1.2rem !important;
    visibility: visible !important;
}

.original-contact-form .form-row.conditional-fields.show .conditional-field {
    max-height: none !important;
    opacity: 1 !important;
    margin-bottom: 0 !important;
    visibility: visible !important;
}

/* Hide budget field initially */
.original-contact-form .form-group.budget-field {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    margin-bottom: 0 !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    visibility: hidden !important;
}

.original-contact-form .form-group.budget-field.show {
    max-height: 200px !important;
    opacity: 1 !important;
    margin-bottom: 1.2rem !important;
    visibility: visible !important;
}

/* Desktop social proof - show on desktop/tablet, hide on mobile */
.desktop-social-proof {
    display: block;
}

/* Mobile social proof - hide on desktop/tablet, show on mobile */
.mobile-social-proof {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-social-proof h3 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.mobile-social-proof .partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mobile-social-proof .partner-logo {
    height: 32px;
    filter: brightness(0.9);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.mobile-social-proof .partner-logo:hover {
    filter: brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Location & Hours Section */
.location-hours-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

.location-hours-container {
    max-width: 1000px;
    margin: 0 auto;
}

.location-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.location-info-card,
.hours-info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.location-info-card:hover,
.hours-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 51, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.15);
}

.location-info-card h3,
.hours-info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.location-info-card h3 svg,
.hours-info-card h3 svg {
    color: #FF3333;
}

.location-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.location-details strong {
    color: white;
    font-weight: 600;
}

.service-area {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-area h4 {
    color: #FF3333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.service-area ul {
    list-style: none;
    padding: 0;
}

.service-area li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-area li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FF3333;
    font-weight: bold;
}

.hours-schedule {
    margin-bottom: 2rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hour-item .time {
    color: white;
    font-weight: 600;
}

.emergency-info {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.emergency-info h4 {
    color: #FF3333;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

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

/* FAQ Section */
.contact-faq-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.contact-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.highlight-text {
    color: #FF3333;
}

.contact-faq-grid {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.contact-faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-faq-item:hover {
    border-color: rgba(255, 51, 51, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.15);
}

.contact-faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.contact-faq-item summary:hover {
    background: rgba(255, 51, 51, 0.05);
}

.contact-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FF3333;
    transition: transform 0.3s ease;
}

.contact-faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.contact-faq-content {
    padding: 0 1.5rem 1.5rem;
}

.contact-faq-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Dark details summary fix for browsers */
.contact-faq-item summary::-webkit-details-marker {
    display: none;
}

.contact-faq-item summary::-moz-list-bullet {
    list-style-type: none;
}

/* Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .split-left {
        padding: 4rem 3rem;
    }
    
    .split-headline {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .split-container {
        flex-direction: column;
    }
    
    .split-left,
    .split-right {
        width: 100%;
    }
    
    .split-left {
        padding: 4rem 2rem;
        min-height: auto;
    }
    
    .split-right {
        padding: 3rem 2rem 5rem;
    }
    
    .original-form-container {
        max-width: 650px;
    }
    
    .partner-logos {
        justify-content: center;
    }
    
    .original-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .original-contact-form .form-group.half-width {
        width: 100%;
    }
    
    .split-subtitle {
        display: none;
    }
    
    /* Hide desktop social proof and show mobile version on mobile */
    .desktop-social-proof {
        display: none;
    }
    
    .mobile-social-proof {
        display: block;
    }

    .location-hours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info-card,
    .hours-info-card {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .contact-split-layout {
        padding-top: 60px;
    }
    
    .split-headline {
        font-size: 2.5rem;
    }
    
    .split-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .original-contact-form {
        padding: 2rem;
    }
    
    .partner-logo {
        height: 28px;
    }
    
    .mobile-social-proof .partner-logo {
        height: 28px;
    }
    
    .mobile-social-proof {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .mobile-social-proof h3 {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .mobile-social-proof .partner-logos {
        gap: 0.8rem;
    }
    
    .split-left {
        padding: 3rem 1.5rem;
    }
    
    .split-right {
        padding: 2rem 1.5rem 4rem;
    }

    .contact-faq-section {
        padding: 4rem 1rem;
    }
    
    .contact-faq-item summary {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .contact-faq-content {
        padding: 0 1rem 1rem;
    }
}

/* ===== PROJECTS SHOWCASE SECTION ===== */

.projects-showcase {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

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

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -1px;
}

.showcase-title .highlight {
    color: #FF3333;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.showcase-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Fixed-Height Slider Container */
.project-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 550px; /* Fixed height - never changes */
}

.slider-viewport {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.slider-track {
    position: relative;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Project Cards - Fixed Height */
.project-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card.active {
    opacity: 1;
}

/* Fixed Image Dimensions */
.project-image {
    flex: 0 0 50%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.02);
}

/* Fixed Info Section */
.project-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    height: 100%;
    overflow: hidden;
}

.project-category {
    display: inline-block;
    background: rgba(255, 51, 51, 0.2);
    color: #FF3333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    width: fit-content;
    border: 1px solid rgba(255, 51, 51, 0.3);
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    flex: 1;
}

.project-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.spec {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.spec:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Navigation Buttons */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(255, 51, 51, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
    pointer-events: all;
}

.slider-btn.prev-btn {
    left: -25px;
}

.slider-btn.next-btn {
    right: -25px;
}

.slider-btn:hover {
    background: #FF3333;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.5);
}

/* Dots Indicators */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: #FF3333;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.6);
}

.dot.active::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #FFD700;
    animation: autoSlideProgress 5s linear infinite;
}

@keyframes autoSlideProgress {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Projects Showcase Mobile Responsive */
@media (max-width: 968px) {
    .projects-showcase {
        padding: 3rem 1rem;
    }
    
    .project-slider {
        height: auto;
        min-height: 500px;
        padding: 1.5rem;
    }
    
    .project-card {
        flex-direction: column;
        position: static;
        height: auto;
        min-height: 450px;
    }
    
    .project-image {
        flex: 0 0 200px;
        width: 100%;
    }
    
    .project-info {
        padding: 1.5rem;
        height: auto;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .slider-btn {
        display: none;
    }
}

/* ===== WHY CHOOSE REDESIGNED SECTION ===== */

.why-choose-redesigned {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-split-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.why-choose-left {
    flex: 0 0 45%;
    position: relative;
}

.camera-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-camera-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.4s ease;
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    opacity: 0.8;
}

.why-choose-right {
    flex: 1;
    padding: 0 0 0 4rem;
}

.why-choose-content {
    max-width: 600px;
}

.why-choose-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.highlight-text {
    color: #FF3333;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 51, 51, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.15);
}

.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 12px;
    color: #FF3333;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-icon {
    background: rgba(255, 51, 51, 0.2);
    border-color: #FF3333;
    transform: scale(1.1);
}

.why-choose-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.why-choose-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.why-choose-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 51, 51, 0.1);
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    border-color: #FF3333;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 51, 51, 0.3);
}

.cta-button:hover::before {
    left: 0;
}

/* Why Choose Mobile Responsive */
@media (max-width: 968px) {
    .why-choose-split-container {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-left {
        flex: none;
        margin-bottom: 3rem;
        width: 100%;
    }
    
    .camera-image-wrapper {
        height: 300px;
    }
    
    .why-choose-right {
        padding: 0;
    }
    
    .why-choose-title {
        font-size: 2.2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .why-choose-redesigned {
        padding: 3rem 0;
    }
    
    .why-choose-split-container {
        padding: 0 1rem;
    }
    
    .camera-image-wrapper {
        height: 250px;
    }
    
    .why-choose-title {
        font-size: 1.9rem;
    }
    
    .why-choose-item {
        padding: 1.2rem;
    }
    
    .why-icon {
        width: 40px;
        height: 40px;
    }
}

/* ===== VISUAL SERVICES SECTION ===== */

.visual-services-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

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

.visual-services-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.services-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    text-align: center;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}

.gradient-text {
    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;
}

/* Visual Services Grid */
.visual-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Grid Layout Positioning - Alternating Image Pattern */
.visual-service-item:nth-child(1) { /* Image - Top Left */
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.visual-service-item:nth-child(2) { /* Text - Top Center */
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.visual-service-item:nth-child(3) { /* Image - Top Right */
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.visual-service-item:nth-child(4) { /* Text - Top Far Right */
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.visual-service-item:nth-child(5) { /* Text - Bottom Left */
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.visual-service-item:nth-child(6) { /* Image - Bottom Center */
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.visual-service-item:nth-child(7) { /* Text - Bottom Right */
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.visual-service-item:nth-child(8) { /* Image - Bottom Far Right */
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* Service Items */
.visual-service-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.visual-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Image Items */
.image-item .service-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

/* Specific styling for comparison images to show complete image */
.comparison-image {
    object-fit: contain !important;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(25, 25, 25, 0.9) 100%);
    padding: 0.5rem;
}

.technician-image {
    object-fit: cover;
}

.image-item:hover .service-image {
    transform: scale(1.05);
}

.image-item:hover .comparison-image {
    transform: scale(1.02);
}

/* Text Items Base Style */
.text-item {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Text Items - Purple Background */
.purple-bg {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-color: rgba(255, 51, 51, 0.2);
}

.purple-bg:hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(10, 10, 10, 1) 100%);
    border-color: rgba(255, 51, 51, 0.4);
}

.service-visual-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-visual-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Visual Service Stats */
.visual-service-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-visual-item {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-visual-item:hover {
    transform: translateY(-3px);
}

.stat-visual-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF3333;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
}

.stat-visual-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    white-space: nowrap;
}

/* Visual Services Mobile Responsive */
@media (max-width: 1200px) {
    .visual-services-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 280px);
    }
    
    .visual-service-item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    
    .visual-service-item:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .visual-service-item:nth-child(3) {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }
    
    .visual-service-item:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .visual-service-item:nth-child(5) {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }
    
    .visual-service-item:nth-child(6) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .visual-service-item:nth-child(7) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .visual-service-item:nth-child(8) {
        grid-column: 3 / 4;
        grid-row: 3 / 4;
    }
}

@media (max-width: 768px) {
    .visual-services-section {
        padding: 4rem 1.5rem;
    }
    
    .services-main-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .visual-services-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 250px);
        gap: 1rem;
    }
    
    .visual-service-item:nth-child(1),
    .visual-service-item:nth-child(2),
    .visual-service-item:nth-child(3),
    .visual-service-item:nth-child(4),
    .visual-service-item:nth-child(5),
    .visual-service-item:nth-child(6),
    .visual-service-item:nth-child(7),
    .visual-service-item:nth-child(8) {
        grid-column: auto;
        grid-row: auto;
    }
    
    .purple-bg {
        padding: 1.5rem;
    }
    
    .service-visual-title {
        font-size: 1.1rem;
    }
    
    .service-visual-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .visual-services-section {
        padding: 3rem 1rem;
    }
    
    .services-main-title {
        font-size: 2rem;
    }
    
    .visual-services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 200px);
        gap: 1rem;
    }
    
    .purple-bg {
        padding: 1.2rem;
    }
    
    .service-visual-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .service-visual-desc {
        font-size: 0.85rem;
    }
}

/* ===== NAVIGATION & FOOTER STYLES ===== */

/* ===== LOGO STYLES ===== */
.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;
}

.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;
}

/* ===== NAVIGATION STYLES ===== */
.desktop-nav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 1.5rem 2rem;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF3333;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-contact-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: flashNavContact 8s infinite ease-in-out;
    /* Enhanced Visibility */
    color: #FFFF00;       /* Bright Yellow for high visibility */
    font-size: 1.05rem;   /* Slightly increased font size */
    font-weight: 700;     /* Bolder text */
    letter-spacing: 0.2px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6); /* Subtle dark shadow for definition */
}

.nav-contact:hover {
    background: #FF3333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 51, 51, 0.3);
}

@keyframes flashNavContact {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 51, 51, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 51, 51, 0.5);
        transform: scale(1.03);
    }
}

.nav-contact-form {
    display: flex;
    gap: 1rem;
}

.nav-contact-form .contact-form-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 51, 51, 0.15);
    color: #FF3333;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 51, 0.3);
    text-decoration: none;
}

.nav-contact-form .contact-form-link:hover {
    background: #FF3333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4);
    border-color: #FF3333;
}

.desktop-nav.scrolled {
    background: rgba(30, 30, 30, 0.95);
    padding: 1rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 51, 51, 0.6);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu-btn:hover {
    background: rgba(255, 51, 51, 0.2);
    border-color: rgba(255, 51, 51, 0.8);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.4);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu-btn.active {
    background: rgba(255, 51, 51, 0.3);
    border-color: #FF3333;
}

.mobile-menu-btn.active svg {
    transform: rotate(90deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem 2rem;
    transition: right 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 8rem;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .nav-link {
    display: block;
    font-size: 1.5rem;
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-nav.active .nav-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav .nav-link::after {
    display: none;
}

.mobile-contact-form {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    bottom: auto;
    z-index: 1002;
}

.mobile-nav.active .mobile-contact-form {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.mobile-contact-form .mobile-contact-link {
    color: #FF3333;
    padding: 0.8rem;
    border-radius: 50%;
    background: rgba(255, 51, 51, 0.15);
    border: 1px solid rgba(255, 51, 51, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-contact-form .mobile-contact-link:hover {
    background: #FF3333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4);
}

/* ===== FLOATING CTA BUTTON ===== */
.floating-cta-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #FF3333;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.2rem;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1000;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(255, 51, 51, 0.4);
    animation: floatingPulse 3s infinite ease-in-out;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.floating-cta-btn:hover {
    background: #E02D2D;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 51, 51, 0.6);
}

.floating-cta-btn:active {
    transform: translateY(-1px);
}

@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 51, 51, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 51, 51, 0.7);
        transform: scale(1.02);
    }
}

/* ===== 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;
}

.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-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.contact-item .icon {
    color: #FF3333;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item a {
    color: inherit;
    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;
}

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

.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 {
    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;
}

/* ===== HOURS DETAILS ===== */
.hours-details {
    display: flex;
    flex-direction: column;
}

.hours-schedule {
    margin-bottom: 0;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hour-item .time {
    color: white;
    font-weight: 600;
}

/* ===== MISSING WHY CHOOSE CLASSES ===== */
.under-image-content {
    padding: 2rem 3rem;
    text-align: center;
}

.mobile-alert-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-alert-text strong {
    color: #FF3333;
    font-weight: 700;
    font-size: 1.2rem;
}

.devis-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 51, 51, 0.1);
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

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

.devis-button:hover {
    border-color: #FF3333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
}

.devis-button:hover::before {
    left: 0;
}

.why-choose-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.brand-highlight {
    color: #FF3333;
    display: block;
    margin-top: 0.2rem;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

.why-choose-tagline {
    margin-bottom: 2.5rem;
}

.why-choose-tagline p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.benefit-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 51, 51, 0.3);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 10px;
    color: #FF3333;
    transition: all 0.3s ease;
}

.benefit-box:hover .benefit-icon {
    background: rgba(255, 51, 51, 0.2);
    border-color: #FF3333;
    transform: scale(1.05);
}

.benefit-text {
    flex: 1;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* ===== RESPONSIVE STYLES ===== */

/* Mobile Navigation Responsive */
@media (max-width: 767px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 100%;
    }
    
    .mobile-menu-btn {
        top: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }
    
    .mobile-nav .nav-link {
        font-size: 1.3rem;
        margin: 1.2rem 0;
    }
    
    .mobile-contact-form {
        gap: 1.2rem;
    }
    
    .mobile-contact-form .mobile-contact-link {
        padding: 0.6rem;
    }
    
    /* Site logo on small screens */
    .site-logo {
        padding: 0.4rem 0.7rem;
    }
    
    .logo-zozo {
        font-size: 1rem;
    }
    
    .logo-securite {
        font-size: 0.7rem;
    }
}

/* Why Choose Responsive */
@media (max-width: 1200px) {
    .why-choose-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 968px) {
    .why-choose-split-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .why-choose-left {
        flex: none;
        height: 350px;
    }
    
    .camera-image-wrapper {
        height: 60%;
        max-height: 200px;
        margin: 1.5rem auto 0 auto;
    }
    
    .under-image-content {
        padding: 1.5rem 2rem;
    }
    
    .mobile-alert-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 280px;
    }
    
    .mobile-alert-text strong {
        font-size: 1.1rem;
    }
    
    .devis-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .security-camera-img {
        width: 100%;
        max-width: 350px;
        border-radius: 12px;
    }
    
    .image-gradient-overlay {
        border-radius: 12px;
    }
    
    .why-choose-right {
        padding: 3rem 2rem;
    }
    
    .why-choose-heading {
        font-size: 2rem;
    }
    
    .benefit-box {
        padding: 1rem 1.2rem;
    }
    
    .benefit-icon {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 600px) {
    .why-choose-left {
        height: 250px;
    }
    
    .camera-image-wrapper {
        height: 50%;
        max-height: 150px;
        margin: 1rem auto 0 auto;
    }
    
    .under-image-content {
        padding: 1rem 1.5rem;
    }
    
    .mobile-alert-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 250px;
    }
    
    .mobile-alert-text strong {
        font-size: 1rem;
    }
    
    .devis-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .security-camera-img {
        width: 100%;
        max-width: 280px;
        border-radius: 10px;
    }
    
    .image-gradient-overlay {
        border-radius: 10px;
    }
    
    .why-choose-right {
        padding: 2.5rem 1.5rem;
    }
    
    .why-choose-heading {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .why-choose-tagline p {
        font-size: 1rem;
    }
    
    .benefits-grid {
        gap: 0.8rem;
    }
    
    .benefit-box {
        padding: 0.9rem 1rem;
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 38px;
        height: 38px;
    }
    
    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
}

/* Show floating CTA on mobile and laptop screens */
@media (max-width: 1024px) {
    .floating-cta-btn {
        display: flex;
    }
}

@media (max-width: 480px) {
    .floating-cta-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Footer Mobile Responsive */
@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;
    }
}

/* Large screen logo adjustments */
@media (max-width: 900px) {
    .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;
    }
}

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