/* ================================
   SERVICE DETAIL PAGE
================================ */

.service-detail {
    max-width: 1100px;
    margin: auto;
    padding: 4rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* ===== Page Title ===== */
.service-detail h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

/* ===== Content Wrapper ===== */
.service-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

/* ===== Description ===== */
.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
}

/* ===== Image ===== */
.service-content img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ===== Section Headings ===== */
.service-detail h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
    border-left: 5px solid #2563eb;
    padding-left: 12px;
}

/* ===== Features List ===== */
.service-detail ul {
    margin-top: 1rem;
    padding-left: 0;
    list-style: none;
}

.service-detail ul li {
    padding: 10px 14px;
    margin-bottom: 10px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
    font-size: 0.95rem;
    color: #374151;
}

/* ===== Benefits ===== */
.service-detail .benefits {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 14px;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Price Range ===== */
.price-box {
    margin-top: 2rem;
    padding: 18px 24px;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    color: #fff;
    border-radius: 16px;
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 600;
}

/* ===== Back Button ===== */
.back-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 12px 28px;
    border-radius: 30px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #1e40af;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .service-content {
        grid-template-columns: 1fr;
    }

    .service-content img {
        height: 260px;
    }

    .service-detail h1 {
        font-size: 2rem;
    }
}
