/* Video Surveillance Service Page Styles */

/* Expertise Grid */
.expertise-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.expertise-card {
    background: rgba(255, 51, 51, 0.1);
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.2);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 51, 51, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #FF3333;
}

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

.expertise-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Specialized Section */
.specialized-section {
    margin-bottom: 4rem;
}

.specialized-section h3 {
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

.optic-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.optic-card.featured {
    border-color: rgba(255, 51, 51, 0.5);
    background: rgba(255, 51, 51, 0.05);
}

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

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

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

.popular-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.feature-tag {
    background: rgba(255, 51, 51, 0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 51, 51, 0.3);
}

/* AI Section */
.ai-section {
    background: rgba(255, 51, 51, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.ai-highlight h4 {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-feature.hoverable {
    cursor: pointer;
}

.ai-feature.hoverable:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 51, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ai-icon {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ai-feature.hoverable:hover .ai-icon {
    transform: scale(1.2);
}

.ai-feature strong {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.ai-feature.hoverable:hover strong {
    color: #FF3333;
}

.ai-feature p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    transition: color 0.3s ease;
}

.ai-feature.hoverable:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.ai-feature-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
    opacity: 0;
    margin-top: 0.8rem;
}

.ai-feature.hoverable:hover .ai-feature-details {
    max-height: 200px;
    opacity: 1;
}

.ai-feature-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Clients Section */
.clients-section {
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
    padding: 8rem 2rem;
}

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

.client-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.client-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.problems-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.problem-tag {
    background: rgba(255, 51, 51, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 51, 51, 0.2);
}

/* USP Section */
.usp-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

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

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

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

.usp-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: #FF3333;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.usp-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

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

/* Brands & Technology Section */
.brands-tech-section {
    padding: 8rem 2rem;
    background: #000;
}

.tech-content {
    max-width: 1000px;
    margin: 0 auto;
}

.preferred-partners {
    margin-bottom: 4rem;
}

.preferred-partners h3 {
    color: white;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

.brands-tech-section .partner-logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
    filter: brightness(1.2);
}

.partner-info h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.partner-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.ecosystem-info {
    text-align: center;
}

.ecosystem-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.ecosystem-info h4 {
    color: white;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.ecosystem-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.avoid-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.avoid-tag {
    background: rgba(255, 100, 100, 0.1);
    color: rgba(255, 150, 150, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 100, 100, 0.2);
}

.avoid-reason {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

/* Process Section */
.process-section {
    padding: 8rem 2rem;
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
}

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

.process-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.process-category:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 51, 51, 0.3);
}

.process-category h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Timeline Items */
.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
}

.timeline-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.timeline-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Guarantee Items */
.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
}

.guarantee-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.guarantee-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

/* Maintenance Features */
.maintenance-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.maintenance-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 10px;
}

.feature-bullet {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.maintenance-feature span:last-child {
    color: rgba(255, 255, 255, 0.8);
}

.maintenance-pricing {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.maintenance-pricing p {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
    padding: 6rem 2rem;
    background: rgba(255, 51, 51, 0.05);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

/* Mobile Responsive */
@media (max-width: 767px) {
    .expertise-card {
        padding: 2rem;
    }
    
    .optics-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .partner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .brands-tech-section .partner-logo {
        width: 120px;
        height: 75px;
    }
}