/* Tech Page Specific Styles */

.tech-page {
    background: #000000;
}

/* Tech Hero */
.tech-hero {
    position: relative;
}

.tech-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 119, 182, 0.3) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(255, 215, 0, 0.2) 100%);
}

.hero-title.tech-title {
    color: #ffffff !important;
    text-shadow: 
        0 0 20px rgba(0, 119, 182, 0.8),
        0 0 40px rgba(0, 119, 182, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3);
    opacity: 1 !important;
    visibility: visible !important;
}

/* Tech Grid Background */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 119, 182, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 119, 182, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Light Beams */
.light-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.beam {
    position: absolute;
    width: 150px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 119, 182, 0.3) 30%,
        rgba(0, 119, 182, 0.1) 70%,
        transparent 100%);
    filter: blur(20px);
    animation: beamSweep 8s ease-in-out infinite;
    transform-origin: top center;
}

.beam-1 {
    left: 20%;
    animation-delay: 0s;
}

.beam-2 {
    left: 50%;
    animation-delay: 2.5s;
}

.beam-3 {
    left: 75%;
    animation-delay: 5s;
}

@keyframes beamSweep {
    0%, 100% {
        transform: rotate(-15deg);
        opacity: 0.5;
    }
    50% {
        transform: rotate(15deg);
        opacity: 0.8;
    }
}

/* Tech Buttons */
.btn-tech {
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-tech:hover::before {
    left: 100%;
}

.btn-tech:hover {
    background: linear-gradient(135deg, #0096c7 0%, #48cae4 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 119, 182, 0.6);
}

/* Tech Stats */
.tech-stats {
    background: linear-gradient(135deg, #000000 0%, #001219 50%, #000000 100%);
    position: relative;
}

.tech-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 119, 182, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.tech-stat {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 2px solid rgba(0, 119, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.tech-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.8), transparent);
    transition: left 0.6s ease;
}

.tech-stat:hover::after {
    left: 100%;
}

.tech-stat:hover {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-color: rgba(0, 119, 182, 0.6);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 119, 182, 0.3);
}

.tech-icon {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.2) 0%, rgba(0, 180, 216, 0.2) 100%);
    border: 2px solid rgba(0, 119, 182, 0.4);
}

.tech-stat:hover .tech-icon {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.3) 0%, rgba(0, 180, 216, 0.3) 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.4);
}

/* Tech Services Section */
.tech-services {
    background: linear-gradient(180deg, #000000 0%, #001219 50%, #000000 100%);
    padding: 120px 0;
}

.tech-subtitle {
    color: #00b4d8;
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
}

/* Tech Categories */
.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.tech-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 119, 182, 0.2);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 119, 182, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-category:hover::before {
    opacity: 1;
}

.tech-category:hover {
    border-color: rgba(0, 119, 182, 0.4);
    box-shadow: 0 20px 60px rgba(0, 119, 182, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.category-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.sound-icon {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.2) 0%, rgba(0, 180, 216, 0.1) 100%);
    border: 2px solid rgba(0, 119, 182, 0.4);
    color: #00b4d8;
}

.light-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
}

.screen-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(124, 58, 237, 0.4);
    color: #a78bfa;
}

.category-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.4);
}

.category-title {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.category-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0077b6, #00b4d8);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.tech-item:hover::before {
    transform: translateX(0);
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 119, 182, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.2);
}

.tech-service-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.tech-service-description {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-badge {
    padding: 6px 14px;
    background: rgba(0, 119, 182, 0.2);
    border: 1px solid rgba(0, 119, 182, 0.4);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #00b4d8;
    transition: all 0.3s ease;
}

.spec-badge:hover {
    background: rgba(0, 119, 182, 0.3);
    border-color: rgba(0, 119, 182, 0.6);
    transform: scale(1.05);
}

/* Brands Section */
.brands-section {
    background: #000000;
    padding: 100px 0;
    position: relative;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.brand-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 119, 182, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.3);
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Tech CTA */
.tech-cta {
    background: linear-gradient(135deg, 
        rgba(0, 119, 182, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(255, 215, 0, 0.1) 100%);
}

.tech-cta-content {
    background: linear-gradient(135deg, 
        rgba(0, 119, 182, 0.1) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 180, 216, 0.1) 100%);
    border: 3px solid rgba(0, 119, 182, 0.3);
}

.tech-cta-content::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0077b6, #00b4d8, #0077b6);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tech-cta-content:hover::after {
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .category-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .tech-category {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .tech-hero {
        min-height: 70vh;
    }
    
    .light-beams {
        display: none;
    }
    
    .tech-grid {
        background-size: 30px 30px;
    }
    
    .tech-services {
        padding: 80px 0;
    }
    
    .tech-categories {
        gap: 40px;
    }
    
    .tech-category {
        padding: 30px 25px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .category-content {
        grid-template-columns: 1fr;
    }
    
    .tech-item {
        padding: 25px;
    }
    
    .tech-service-title {
        font-size: 18px;
    }
    
    .tech-service-description {
        font-size: 14px;
    }
    
    .tech-specs {
        gap: 6px;
    }
    
    .spec-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .brands-section {
        padding: 80px 0;
    }
    
    .brands-container {
        padding: 0 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .brand-card {
        padding: 30px 20px;
    }
    
    .brand-logo {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .tech-category {
        padding: 25px 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .tech-item {
        padding: 20px;
    }
    
    .tech-specs {
        flex-direction: column;
    }
    
    .spec-badge {
        text-align: center;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* Pulse animation for tech elements */
@keyframes techPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 119, 182, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 119, 182, 0.8);
    }
}