/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #1b2735 0%, #090a0f 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(25, 25, 112, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.services-hero-content {
    position: relative;
    z-index: 1;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFD700; /* Gold color to match home page */
    margin-bottom: 1rem;
    position: relative;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-shadow: 
        /* Clean shadow for depth */
        0 4px 12px rgba(0, 0, 0, 0.4),
        /* Gold glow for visibility */
        0 0 30px rgba(255, 215, 0, 0.5);
    transform: translateZ(20px); /* Stronger pop out for hero */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.services-hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    z-index: -1;
    transition: all 0.4s ease;
}

.services-hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
    border-radius: 12px;
    z-index: -1;
    transition: left 2s ease;
}

.services-hero-title:hover {
    color: #FFA500; /* Orange-gold for hover effect */
    transform: scale(1.02) translateZ(20px);
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 165, 0, 0.7);
}

.services-hero-title:hover::after {
    left: 100%;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.services-hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    border: 1px solid rgba(139, 0, 0, 0.3);
}

/* Hero Actions */
.hero-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.pdf-download-btn {
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.pdf-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, #A00000 0%, #CD5C5C 100%);
}

.pdf-download-btn:active {
    transform: translateY(0);
}

.pdf-download-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
    background: #0f1419;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #8B0000, #191970);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

/* Service Cards */
.service-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(25, 25, 112, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 0, 0, 0.5);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

.service-card.featured {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.1));
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-name {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-price {
    margin-bottom: 1.5rem;
}

.price-from {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.2rem;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD700;
}

.price-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.service-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.feature::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #8B0000;
    border-radius: 50%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, #8B0000, #191970);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
    background: linear-gradient(135deg, #A00000, #1F1F70);
}

.cta-button.primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 700;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #8B0000;
    color: white;
}

.cta-button.secondary:hover {
    background: rgba(139, 0, 0, 0.1);
    border-color: #FFD700;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #1b2735 0%, #090a0f 100%);
}

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

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

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8) !important;
}

.benefit-card p {
    color: #ffffff !important;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7) !important;
}

/* Services CTA Section */
.services-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(25, 25, 112, 0.2));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    width: auto;
    min-width: 200px;
}

/* Navigation Active State */
.nav-link.active {
    color: #FFD700 !important;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .pdf-download-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .services-row {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 100px 0 60px;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .pdf-download-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 320px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .services-hero,
    .services-cta,
    .nav,
    .footer {
        display: none;
    }
    
    .service-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        background: white;
        color: black;
    }
}

/* Z7 TV Subscribe Button */
.z7tv-subscribe-btn {
    background: linear-gradient(135deg, #191970 0%, #4169E1 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(25, 25, 112, 0.3);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.z7tv-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 25, 112, 0.4);
    background: linear-gradient(135deg, #1E1E8F 0%, #4682B4 100%);
    text-decoration: none;
}

.z7tv-subscribe-btn:active {
    transform: translateY(0);
}

.z7tv-subscribe-btn:visited {
    color: white;
    text-decoration: none;
}

@keyframes heroNeonGlow {
    from {
        text-shadow: 
            /* White outline for contrast */
            -3px -3px 0 #ffffff,
            3px -3px 0 #ffffff,
            -3px 3px 0 #ffffff,
            3px 3px 0 #ffffff,
            /* Black shadow for depth */
            -4px -4px 0 #000000,
            4px 4px 0 #000000,
            /* Neon glow layers */
            0 0 10px #191970,
            0 0 20px #191970,
            0 0 30px #191970,
            0 0 40px #191970;
    }
    to {
        text-shadow: 
            /* White outline for contrast */
            -3px -3px 0 #ffffff,
            3px -3px 0 #ffffff,
            -3px 3px 0 #ffffff,
            3px 3px 0 #ffffff,
            /* Black shadow for depth */
            -4px -4px 0 #000000,
            4px 4px 0 #000000,
            /* Enhanced neon glow */
            0 0 20px #191970,
            0 0 30px #191970,
            0 0 40px #191970,
            0 0 50px #191970,
            0 0 60px #4169E1,
            0 0 70px #4169E1;
    }
}