/* ZeroPoint IT - Service Pages Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #0f0f0f;
    padding: 20px;
    border-bottom: 3px solid #00d4ff;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 150px;
    height: auto;
}

nav a {
    color: #00d4ff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-service {
    background: linear-gradient(rgba(10, 10, 10, 0.65), rgba(26, 26, 46, 0.65)), url('../background.jpg') center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid #00d4ff;
}

.hero-service h1 {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.tagline {
    font-size: 1.3rem;
    color: #b0b0b0;
}

/* Service Detail Sections */
.service-detail {
    padding: 60px 20px;
    background: #0a0a0a;
}

.service-detail h2 {
    color: #00d4ff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-detail h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.service-detail p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.service-detail ul, .service-detail ol {
    color: #b0b0b0;
    margin: 20px 0 20px 40px;
    font-size: 1.1rem;
}

.service-detail li {
    margin-bottom: 15px;
}

.service-detail strong {
    color: #00d4ff;
}

.service-detail em {
    color: #fff;
}

.service-detail a {
    color: #00d4ff;
    text-decoration: none;
}

.service-detail a:hover {
    text-decoration: underline;
}

/* Content Sections */
.problem, .solution, .pricing, .included, .faq, .cta-section {
    margin-bottom: 60px;
}

/* Pricing Cards */
.price-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #222;
    margin-bottom: 20px;
}

.price-card.featured {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.price-card h3 {
    color: #00d4ff;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    color: #00d4ff;
    font-weight: bold;
    margin: 15px 0;
}

.pricing-note {
    color: #b0b0b0;
    font-style: italic;
    margin-top: 20px;
}

/* FAQ */
.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: #0f0f0f;
    padding: 50px 30px;
    border-radius: 8px;
    border: 2px solid #00d4ff;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary {
    background: #00d4ff;
    color: #0a0a0a !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    background: #00b8e6;
    color: #0a0a0a !important;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: #1a1a1a;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #222;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #00d4ff;
}

.footer-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav .btn {
    padding: 12px 30px;
    font-size: 1rem;
}

footer p {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-service h1 {
        font-size: 2rem;
    }
    
    .service-detail h2 {
        font-size: 1.7rem;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}
