/* ============================ */
/*   SERVICE DETAIL — PREMIUM   */
/* ============================ */

.service-detail-section {
    padding: 80px 20px;
    background: #f5f8fb;
}

/* Ana Kart */
.service-detail-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 35px;

    border: 4px solid transparent;
    background-image:
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(90deg, #00c6ff, #0072ff);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;

    box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

/* Büyük hero görsel */
.service-hero-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 25px;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    transition: 0.4s ease;
}

.service-hero-image img:hover {
    transform: scale(1.03);
}

/* Başlık */
.service-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #002b5c;
    text-align: center;
    margin-bottom: 18px;
}

/* Kısa açıklama */
.service-short {
    text-align: center;
    font-size: 1.1rem;
    color: #3b4a5a;
    margin-bottom: 25px;
    line-height: 1.65;
}

/* Uzun açıklama */
.service-description {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-top: 10px;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero-image {
        height: 240px;
    }
    .service-title {
        font-size: 1.7rem;
    }
}
