/* ===================================
   HİZMETLER - SERVICES
=================================== */

/* ── Liste Sayfa ── */
.srv-list-section {
    padding: 80px 0 100px;
    background: #fff;
}

.srv-section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 50px;
}

.srv-section-header .section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e63946;
    margin-bottom: 10px;
}

.srv-section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 14px;
}

.srv-section-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

/* ── Grid ── */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ── Kart ── */
.srv-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid #f1f5f9;
}

.srv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

/* ── Kart Görsel ── */
.srv-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.srv-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.srv-card:hover .srv-card-img img {
    transform: scale(1.08);
}

.srv-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.srv-card-img-placeholder i {
    font-size: 56px;
    color: rgba(255, 255, 255, .2);
}

.srv-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 41, 59, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.srv-card:hover .srv-card-overlay {
    opacity: 1;
}

.srv-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #e63946;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(10px);
    transition: transform .3s ease, background .2s;
}

.srv-card:hover .srv-card-btn {
    transform: translateY(0);
}

.srv-card-btn:hover {
    background: #c8102e;
    color: #fff;
}

/* ── Kart Body ── */
.srv-card-body {
    padding: 24px;
    position: relative;
}

.srv-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e63946, #c8102e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -48px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(230, 57, 70, .3);
}

.srv-card-icon i {
    font-size: 22px;
    color: #fff;
}

.srv-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.srv-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.srv-card-title a:hover {
    color: #e63946;
}

.srv-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.srv-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #e63946;
    text-decoration: none;
    transition: gap .2s;
}

.srv-card-link:hover {
    gap: 10px;
    color: #c8102e;
}

/* ── CTA Section ── */
.srv-cta-section {
    padding: 0 0 100px;
    background: #fff;
}

.srv-cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.srv-cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.srv-cta-content p {
    font-size: 16px;
    color: #94a3b8;
    margin: 0;
}

/* ===================================
   HİZMET DETAY
=================================== */

.srv-detail-section {
    padding: 80px 0 100px;
    background: #f8fafc;
}

.srv-detail-hero-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

.srv-detail-hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

.srv-detail-body {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
    border: 1px solid #f1f5f9;
}

.srv-detail-body h2,
.srv-detail-body h3,
.srv-detail-body h4 {
    color: #1e293b;
    font-weight: 700;
    margin: 24px 0 12px;
}

.srv-detail-body h2 { font-size: 26px; }
.srv-detail-body h3 { font-size: 22px; }
.srv-detail-body h4 { font-size: 18px; }

.srv-detail-body p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.srv-detail-body ul,
.srv-detail-body ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.srv-detail-body li {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 6px;
}

.srv-detail-body img {
    max-width: 100%;
    border-radius: 12px;
    margin: 16px 0;
}

/* ── Sidebar ── */
.srv-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.srv-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
    border: 1px solid #f1f5f9;
}

.srv-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e63946, #c8102e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.srv-info-icon i {
    font-size: 28px;
    color: #fff;
}

.srv-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.srv-info-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── Sidebar CTA ── */
.srv-sidebar-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.srv-sidebar-cta h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.srv-sidebar-cta p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.srv-sidebar-cta .btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #e63946;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
    width: 100%;
    justify-content: center;
}

.srv-sidebar-cta .btn-about-primary:hover {
    background: #c8102e;
    color: #fff;
}

.srv-sidebar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: border-color .2s, color .2s;
}

.srv-sidebar-phone:hover {
    border-color: #e63946;
    color: #fff;
}

/* ── Diğer Hizmetler ── */
.srv-other-list {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
    border: 1px solid #f1f5f9;
}

.srv-other-list h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.srv-other-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.srv-other-list li {
    margin-bottom: 4px;
}

.srv-other-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: background .2s, color .2s;
}

.srv-other-list li a:hover {
    background: #fef2f2;
    color: #e63946;
}

.srv-other-list li a i {
    font-size: 16px;
    color: #e63946;
    flex-shrink: 0;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 991.98px) {
    .srv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .srv-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .srv-detail-body {
        padding: 28px;
    }

    .srv-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 575.98px) {
    .srv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .srv-list-section {
        padding: 50px 0 70px;
    }

    .srv-section-header h2 {
        font-size: 28px;
    }

    .srv-cta-content h2 {
        font-size: 22px;
    }

    .srv-detail-body {
        padding: 20px;
    }
}