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