/* ===================== */
/* HERO - SERVICE PAGE   */
/* ===================== */

.hero-service {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #3d1445, #2b0f2f);
    padding: 20px;
}

.hero-service-content h1 {
    font-size: 52px;
    color: #f5c542;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-service-content p {
    font-size: 20px;
    color: #d0d0d0;
    margin-bottom: 30px;
}

.hero-service-content button {
    padding: 14px 40px;
    background: #f5c542;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #2b0f2f;
}

.hero-service-content button:hover {
    background: #ffd86b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}

/* ===================== */
/* SERVICE IMAGE        */
/* ===================== */

.service-image {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.service-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(245, 197, 66, 0.15);
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.02);
}

/* ===================== */
/* SERVICE DESCRIPTION  */
/* ===================== */

.service-description {
    padding: 80px 20px;
    background: #ffffff;
    color: #2b0f2f;
}

.service-container {
    max-width: 900px;
    margin: 0 auto;
}

.service-description h2 {
    font-size: 40px;
    color: #67047a;
    margin-bottom: 30px;
    text-align: center;
}

.service-description h3 {
    font-size: 28px;
    color: #67047a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-description p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-description strong {
    color: #f5c542;
}

/* ===================== */
/* BENEFITS LIST        */
/* ===================== */

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    background: #f9f7f3;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #f5c542;
}

.benefits-list li {
    font-size: 16px;
    color: #2b0f2f;
    margin: 15px 0;
    line-height: 1.6;
}

.benefits-list strong {
    color: #f5c542;
}

/* ===================== */
/* RESULTS GRID        */
/* ===================== */

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.result-card {
    background: #f9f7f3;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #f5c542;
    transition: all 0.3s ease;
}

.result-card:hover {
    background: #f0ede7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 197, 66, 0.2);
}

.result-card h4 {
    font-size: 20px;
    color: #67047a;
    margin-bottom: 15px;
}

.result-card p {
    font-size: 15px;
    color: #666666;
    margin: 0;
}

/* ===================== */
/* IDEAL FOR LIST       */
/* ===================== */

.ideal-for {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ideal-for li {
    font-size: 15px;
    color: #666666;
    margin: 12px 0;
    padding-left: 30px;
    position: relative;
}

.ideal-for li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f5c542;
    font-weight: bold;
}

/* ===================== */
/* CTA BOX              */
/* ===================== */

.cta-box {
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.1), rgba(61, 20, 69, 0.05));
    border: 2px solid #f5c542;
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.cta-box h3 {
    font-size: 28px;
    color: #67047a;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
}

.cta-button {
    padding: 14px 40px;
    background: #f5c542;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #2b0f2f;
}

.cta-button:hover {
    background: #ffd86b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}

/* ===================== */
/* RESPONSIVE           */
/* ===================== */

@media (max-width: 768px) {

    .hero-service {
        height: 50vh;
    }

    .hero-service-content h1 {
        font-size: 36px;
    }

    .hero-service-content p {
        font-size: 16px;
    }

    .service-image {
        padding: 40px 15px;
    }

    .service-image img {
        max-width: 100%;
    }

    .service-description {
        padding: 60px 15px;
    }

    .service-description h2 {
        font-size: 32px;
    }

    .service-description h3 {
        font-size: 22px;
        margin-top: 30px;
    }

    .service-description p {
        font-size: 15px;
    }

    .benefits-list {
        padding: 20px;
    }

    .benefits-list li {
        font-size: 14px;
        margin: 10px 0;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta-box {
        padding: 25px;
    }

    .cta-box h3 {
        font-size: 22px;
    }

}

@media (max-width: 480px) {

    .hero-service {
        height: 40vh;
    }

    .hero-service-content h1 {
        font-size: 26px;
    }

    .hero-service-content p {
        font-size: 14px;
    }

    .service-image {
        padding: 30px 10px;
    }

    .service-description {
        padding: 40px 10px;
    }

    .service-description h2 {
        font-size: 24px;
    }

    .service-description h3 {
        font-size: 18px;
    }

    .service-description p {
        font-size: 13px;
    }

    .cta-box {
        padding: 20px;
    }

    .cta-box h3 {
        font-size: 18px;
    }

}
    