/* assets/css/home.css */

/* What We Do Section */
.what-we-do {
    position: relative;
    background: transparent;
    padding-top: 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    transition: var(--transition-base);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--glow-blue);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue-light);
    font-weight: 600;
    transition: var(--transition-base);
}

.service-link:hover {
    gap: 12px;
    color: white;
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    background: transparent;
}

.features-grid {
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue-light), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.75);
}

/* CTA Section */
.cta-section {
    padding-bottom: 120px;
}

.cta-content {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(36, 132, 198, 0.15), rgba(45, 63, 148, 0.1));
    border: 1px solid rgba(36, 132, 198, 0.3);
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}





.screen-gallery .gallery-item {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.screen-gallery .gallery-item:hover {
    transform: scale(1.03);
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.screen-gallery .gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.screen-gallery .gallery-item:hover::after {
    opacity: 1;
}


/* Listen Button */
.listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(36, 132, 198, 0.12);
    border: 1px solid rgba(36, 132, 198, 0.3);
    border-radius: 40px;
    color: #6db3ff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.listen-btn:hover {
    background: rgba(36, 132, 198, 0.22);
    border-color: rgba(36, 132, 198, 0.5);
    color: white;
    transform: translateY(-1px);
}

.listen-btn i {
    font-size: 1rem;
}

.listen-btn.playing {
    background: #2484c6;
    border-color: #2484c6;
    color: white;
}

/* Green pulse dot */
.listen-pulse {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #4cd964;
    border-radius: 50%;
    display: none;
    animation: listenPulse 1s infinite;
}

.listen-btn.playing .listen-pulse {
    display: block;
}

.listen-btn.playing i {
    margin-left: 12px;
}

@keyframes listenPulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.8); }
}

/* Desktop - Side by side */
@media (min-width: 769px) {
    .about-text-content .content-badge {
        display: inline-flex;
    }
    
    .listen-btn {
        display: inline-flex;
    }
}

/* Mobile - Listen button BELOW Who We Are */
@media (max-width: 768px) {
    .about-text-content {
        text-align: center;
    }
    
    .content-badge {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }
    
    .listen-btn {
        display: flex;
        width: fit-content;
        margin: 0 auto 20px;
        justify-content: center;
    }
    
    .content-title {
        text-align: center;
    }
    
    .content-description {
        text-align: left;
    }
    
    .highlight-text {
        text-align: left;
    }
}