/* Service Detail Page Styles */
.service-hero {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.service-hero h1 {
    position: relative;
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.service-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
}

.service-intro {
    text-align: center;
    margin-bottom: 50px;
}

.service-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.service-section {
    margin: 50px 0;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.service-section h2 {
    color: #2d89ef;
    margin-bottom: 20px;
    font-size: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2.5px solid #517ddd;
}

.feature-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.whats-included ul {
    list-style: none;
    padding: 0;
}

.whats-included ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 1.1rem;
}

.whats-included ul li:before {
    content: "✓ ";
    color: #25D366;
    font-weight: bold;
    margin-right: 10px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #fcd34d;
    color: #2d89ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h3 {
    color: #333;
    margin-bottom: 10px;
}

.step p {
    color: #666;
}

.pricing-box {
    background: linear-gradient(135deg, #4b64d7 0%, #75baff 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.pricing-box h2 {
    color: white;
    margin-bottom: 20px;
}

.pricing-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #25D366;
    color: white;
}

.cta-primary:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-secondary {
    background-color: white;
    color: #2d89ef;
    border: 2px solid #2d89ef;
}

.cta-secondary:hover {
    background-color: #2d89ef;
    color: white;
    transform: translateY(-2px);
}

.back-link {
    display: inline-block;
    margin: 20px 0;
    color: #2d89ef;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 25px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}