/* Grabels 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(380px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

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

.location-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-area {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex: 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-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;
}

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

/* New SEO-Optimized Projects Showcase */
.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-nav {
    position: absolute;
    top: 50%;
    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;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
}

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

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

.slider-nav: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); }
}

/* Responsive Design */
@media (max-width: 968px) {
    .project-card {
        flex-direction: column;
    }
    
    .project-image {
        flex: 0 0 50%;
    }
    
    .project-info {
        padding: 1.5rem;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .slider-nav {
        display: none;
    }
}

@media (max-width: 600px) {
    .projects-showcase {
        padding: 4rem 1rem;
    }
    
    .project-slider {
        padding: 1.5rem;
        height: 480px;
    }
    
    .project-info {
        padding: 1.2rem;
    }
    
    .project-title {
        font-size: 1.4rem;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

/* Hero Image Section */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 21px;
    overflow: hidden;
}

.hero-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;
    aspect-ratio: 280/297;
}

.hero-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;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    z-index: 1;
}

.hero-image-container:hover .hero-about-image {
    transform: scale(1.03);
}

/* Image Overlay Functionality */
.hero-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);
}

.hero-image-container.show-overlay .hero-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;
}

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

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

.hero-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 .icon-arrow-right {
    transition: transform 0.3s ease;
}

.slick-button:hover .icon-arrow-right {
    transform: translateX(3px);
}

/* 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;
    }
    
    .hero-image-container {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
    
    .hero-about-image {
        border-radius: 17px;
    }
    
    .hero-image-frame {
        border-radius: 21px;
    }
    
    .image-overlay {
        border-radius: 21px;
    }
    
    .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;
    }
    
    .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-section {
        padding: 3rem 1rem;
    }
    
    .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;
    }
    
    .hero-image-container {
        max-width: 240px;
        margin-bottom: 1rem;
    }
    
    .hero-about-image {
        border-radius: 13px;
    }
    
    .hero-image-frame {
        border-radius: 17px;
    }
    
    .image-overlay {
        border-radius: 17px;
    }
    
    .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;
    }
    
    .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 3rem 1rem 1rem; /* Add extra right padding for the + icon */
        font-size: 1rem;
        line-height: 1.4;
        min-height: 3rem; /* Minimum height to accommodate icon */
        display: flex;
        align-items: flex-start;
        padding-top: 1rem;
    }
    
    .contact-faq-item summary::after {
        right: 1rem; /* Move icon closer to edge */
        top: 1rem; /* Position from top instead of center */
        transform: none; /* Remove center transform */
        font-size: 1.3rem; /* Slightly smaller on mobile */
        flex-shrink: 0; /* Prevent icon from shrinking */
    }
    
    .contact-faq-content {
        padding: 0 1rem 1rem;
    }
}

/* Mobile-only: Hide hero image on very small screens */
@media (max-width: 480px) {
    .hero-image-container {
        display: none !important;
    }
}

/* ===========================================
   MOBILE-SPECIFIC SLIDESHOW STYLES
   =========================================== */

/* Hide mobile slider by default (desktop-first) */
.mobile-projects-slider {
    display: none;
}

/* Hide desktop slider on mobile and show mobile slider */
@media (max-width: 768px) {
    .project-slider {
        display: none !important;
    }
    
    .mobile-projects-slider {
        display: block;
        margin-top: 2rem;
    }
}

/* Mobile Slider Container */
.mobile-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Mobile Slides Wrapper */
.mobile-slides-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 460px;
    overflow: hidden;
    border-radius: 12px;
}

/* Mobile Project Cards */
.mobile-project-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-project-card.active {
    opacity: 1;
    transform: translateX(0);
}

.mobile-project-card.prev {
    transform: translateX(-100%);
}

/* Mobile Project Image - Enhanced for Better Showcase */
.mobile-project-image {
    flex: 0 0 220px;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 10%;
    transition: transform 0.4s ease;
    filter: brightness(1.05) contrast(1.1);
}

/* Specific positioning for ambulance and stair camera images */
.mobile-project-card[data-slide="0"] .mobile-project-image img,
.mobile-project-card[data-slide="3"] .mobile-project-image img {
    object-position: 50% 30%;
}

.mobile-project-card.active .mobile-project-image img {
    animation: mobileImageZoom 0.8s ease-out;
}

.mobile-project-card:hover .mobile-project-image img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.15);
}

@keyframes mobileImageZoom {
    0% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Project Info - Optimized for Larger Images */
.mobile-project-info {
    flex: 1;
    padding: 1rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    min-height: 220px;
}

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

.mobile-project-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
    line-height: 1.25;
}

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

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

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

/* Mobile Navigation Dots */
.mobile-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 1rem 0;
}

.mobile-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.mobile-dot::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.mobile-dot.active {
    background: rgba(255, 51, 51, 0.3);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.4);
}

.mobile-dot.active::before {
    width: 12px;
    height: 12px;
    background: #FF3333;
}

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

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

/* Mobile Swipe Indicator */
.mobile-swipe-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    animation: swipeHint 2s ease-in-out infinite;
}

.mobile-swipe-indicator svg {
    width: 20px;
    height: 20px;
}

@keyframes swipeHint {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

/* Hide swipe indicator after first interaction */
.mobile-projects-slider.interacted .mobile-swipe-indicator {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* ===========================================
   NEW SEO SECTIONS STYLES
   =========================================== */

/* Why Choose Us Section - REDESIGNED */
.why-choose-redesigned {
    padding: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.why-choose-split-container {
    display: flex;
    height: 100%;
    min-height: 600px;
}

/* Left Side - Camera Image */
.why-choose-left {
    flex: 0 0 40%;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.camera-image-wrapper {
    position: relative;
    width: 100%;
    height: 70%;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem auto 0 auto;
    background: transparent;
}

.security-camera-img {
    width: 95%;
    height: 95%;
    max-width: 420px;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.1) brightness(0.9);
    border-radius: 15px;
    background: transparent;
    border: none;
    outline: none;
}

.image-gradient-overlay {
    display: none;
}

/* Under Image Content */
.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;
}

/* Right Side - Content */
.why-choose-right {
    flex: 1;
    padding: 4rem 5rem;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
}

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

.why-choose-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

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

/* CTA Button */
.cta-wrapper {
    margin-top: 2rem;
}

.why-choose-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 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: 1.05rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.why-choose-cta::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;
}

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

.why-choose-cta:hover::before {
    left: 0;
}

.why-choose-cta .arrow-icon {
    transition: transform 0.3s ease;
}

.why-choose-cta:hover .arrow-icon {
    transform: rotate(45deg);
}

/* Responsive Design for Why Choose Redesigned */
@media (max-width: 1200px) {
    .why-choose-right {
        padding: 3rem 3rem;
    }
    
    .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;
    }
    
    .why-choose-cta {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

/* Old Why Choose Us Section - HIDDEN */
.why-choose-section {
    display: none;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

/* Statistics Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 51, 51, 0.3);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.2);
}

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

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

/* Differentiators Grid */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.differentiator-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 51, 51, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.differentiator-card:hover::before {
    opacity: 1;
}

.differentiator-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 51, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(255, 51, 51, 0.2);
}

.diff-icon {
    color: #FF3333;
    margin-bottom: 1.5rem;
}

.differentiator-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.differentiator-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-indicators h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
}

.certifications-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.cert-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.cert-badge {
    color: #FFD700;
}

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


/* Mobile Responsive Adjustments for New Sections */
@media (max-width: 968px) {
    .why-choose-section {
        padding: 4rem 1.5rem;
    }
    
    .why-choose-title {
        font-size: 2.2rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .differentiator-card {
        padding: 2rem;
    }
    
    .location-hours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info-card,
    .hours-info-card {
        padding: 2.5rem;
    }
}

@media (max-width: 600px) {
    .why-choose-section {
        padding: 3rem 1rem;
    }
    
    .why-choose-title {
        font-size: 1.8rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .differentiator-card {
        padding: 1.5rem;
    }
    
    .differentiator-card h3 {
        font-size: 1.1rem;
    }
    
    .certifications-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cert-item {
        justify-content: center;
        min-width: 200px;
    }
}

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

/* 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-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    text-align: center;
    letter-spacing: -1px;
    margin-bottom: 4rem;
}

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

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

.image-item:hover .comparison-image {
    transform: scale(1.02); /* Subtle hover effect for comparison images */
}

/* Text Items - Purple Background */
.purple-bg {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    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, 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;
}

/* Responsive Design */
@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;
        height: auto;
    }
    
    .purple-bg {
        padding: 1.5rem;
    }
    
    .service-visual-title {
        font-size: 1.1rem;
    }
    
    .service-visual-desc {
        font-size: 0.9rem;
    }
    
    .visual-service-stats {
        gap: 2rem;
    }
    
    .stat-visual-number {
        font-size: 2rem;
    }
    
    .stat-visual-label {
        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;
    }
    
    .visual-service-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* OLD MODERN SERVICES SECTION - HIDDEN */
.services-modern-section {
    display: none;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.services-modern-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.08) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.services-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.gradient-highlight {
    background: linear-gradient(135deg, #FF3333 0%, #FFD700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.services-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Interactive Flip Cards */
.service-card {
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-front,
.service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-back {
    transform: rotateY(180deg);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 51, 51, 0.3);
}

/* Service Card Front */
.service-icon {
    color: #FF3333;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.3));
    transition: all 0.3s ease;
}

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

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

.service-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    background: rgba(255, 51, 51, 0.2);
    color: #FF3333;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 51, 51, 0.3);
    transition: all 0.3s ease;
}

/* Service Card Back */
.service-back h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #FF3333;
    padding-bottom: 0.5rem;
}

.service-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.service-details-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-details-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.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: 0.9rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-cta-btn::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;
}

.service-cta-btn:hover {
    border-color: #FF3333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.4);
}

.service-cta-btn:hover::before {
    left: 0;
}

/* Service Coverage */
.service-coverage {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.coverage-info h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.coverage-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 500px;
}

.coverage-stats {
    display: flex;
    gap: 2rem;
}

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

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

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .service-coverage {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .coverage-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-modern-section {
        padding: 4rem 1.5rem;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        height: 350px;
    }
    
    .service-front,
    .service-back {
        padding: 2rem;
    }
    
    .service-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .coverage-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-modern-section {
        padding: 3rem 1rem;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        height: 320px;
    }
    
    .service-front,
    .service-back {
        padding: 1.5rem;
    }
    
    .service-coverage {
        padding: 2rem;
    }
    
    .coverage-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
    .mobile-slider-container {
        padding: 1rem;
        border-radius: 12px;
        margin: 0 0.5rem;
    }
    
    .mobile-slides-wrapper {
        min-height: 420px;
        border-radius: 8px;
    }
    
    .mobile-project-card {
        min-height: 420px;
        border-radius: 8px;
    }
    
    .mobile-project-image {
        flex: 0 0 180px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    }
    
    .mobile-project-info {
        padding: 0.9rem 1rem 1rem 1rem;
        min-height: 200px;
    }
    
    .mobile-project-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .mobile-project-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.7rem;
    }
    
    .mobile-project-category {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .mobile-spec {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .mobile-dot {
        width: 28px;
        height: 28px;
    }
    
    .mobile-swipe-indicator {
        font-size: 0.75rem;
    }
}