/* Genel Stil */
.services-page { padding: 80px 0; background: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 1. Üst Bölüm */
.service-main-header { text-align: center; margin-bottom: 60px; }
.service-title { font-size: 44px; font-weight: 800; margin-bottom: 20px; }
.gold-text { color: var(--gold); }
.full-description { max-width: 950px; margin: 0 auto; color: #555; line-height: 1.8; text-align: justify; }

/* 2. Orta Bölüm */
.service-middle-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.main-image-wrapper { border-radius: 30px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.main-image-wrapper img { width: 100%; height: auto; display: block; }

.thumbnail-list { display: flex !important; gap: 15px; margin-top: 15px; }
.thumbnail-list img { width: 90px; height: 60px; border-radius: 12px; cursor: pointer; object-fit: cover; }
.thumbnail-list img.active { border: 2px solid var(--gold); }

/* Sağdaki Özel Kartlar (Görseldeki gibi) */
.service-features-side { display: grid; gap: 15px; }
.feature-card-v2 {
    display: flex; align-items: center; gap: 20px;
    padding: 25px; background: #fcfcfc; border-radius: 20px;
    border: 1px solid #f0f0f0; transition: all 0.3s ease;
}
.feature-card-v2:hover { background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.04); transform: translateY(-3px); }
.icon-box-v2 { font-size: 28px; color: #111; }
.f-text strong { display: block; font-size: 16px; margin-bottom: 3px; }
.f-text span { font-size: 13px; color: #888; }

/* 3. Alt Bölüm */
.service-bottom-action { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.info-block-black-v2 {
    background: #111; color: #fff; padding: 40px; border-radius: 25px;
    display: flex; flex-direction: column; justify-content: center;
}
.info-block-black-v2 h4 { font-size: 22px; margin-bottom: 15px; }
.info-block-black-v2 p { color: #ccc; font-size: 14px; line-height: 1.6; }

.service-checklist-box { padding: 40px; border: 1px solid #eee; border-radius: 25px; background: #fff; }
.service-checklist-box h3 { font-size: 20px; margin-bottom: 25px; }
.v-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.v-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; }
.v-item i { color: #111; border: 1.5px solid #111; border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 10px; }

/* Mobil */
@media (max-width: 992px) {
    .service-middle-wrapper, .service-bottom-action { grid-template-columns: 1fr; }
}