/* HİZMET SAYFALARI */
.hizmet-main {
    background: #fff;
}

.hizmet-hero {
    padding: 56px 0;
    border-bottom: 1px solid #e8e8e8;
}

.hizmet-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hizmet-hero-title {
    font-size: 36px;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    margin: 10px 0 18px;
}

.hizmet-hero-desc {
    font-size: 14.5px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 24px;
}

.hizmet-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-bottom: 28px;
}

.hhf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.hhf-item svg {
    width: 16px;
    height: 16px;
    stroke: #4a7c59;
    flex-shrink: 0;
}

.hizmet-hero-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(27, 43, 94, .12);
}

.hizmet-hero-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* DETAY */
.hizmet-detail {
    padding: 64px 0;
    border-bottom: 1px solid #e8e8e8;
}

.hizmet-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
}

.hizmet-detail-text h2 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0 0 14px;
    line-height: 1.3;
}

.hizmet-detail-text h2+h2,
.hizmet-detail-text p+h2 {
    margin-top: 32px;
}

.hizmet-detail-text p {
    font-size: 14px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 16px;
}

.hizmet-detail-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.hizmet-detail-text ul li {
    font-size: 14px;
    color: #444;
    padding-left: 18px;
    position: relative;
    line-height: 1.7;
}

.hizmet-detail-text ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #bbb;
}

.hizmet-info-card {
    background: #F7F7F7;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 28px 24px;
    position: sticky;
    top: 120px;
}

.hizmet-info-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e8e8e8;
}

.hizmet-info-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hizmet-info-card ul li {
    font-size: 13px;
    color: #555;
    display: flex;
    gap: 8px;
}

.hizmet-info-card ul li strong {
    color: #111;
    min-width: 90px;
    flex-shrink: 0;
}

.hizmet-cta-btn {
    display: block;
    text-align: center;
    background: #111;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 20px;
    transition: background .2s;
    text-decoration: none;
}

.hizmet-cta-btn:hover {
    background: #333;
}

/* NEDEN BİZ */
.hizmet-why {
    padding: 64px 0;
    background: #F7F7F7;
    border-bottom: 1px solid #e8e8e8;
}

.hizmet-why .section-title {
    margin-bottom: 36px;
}

.hizmet-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hwy-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 28px 22px;
    transition: box-shadow .25s, transform .25s;
}

.hwy-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.hwy-icon {
    width: 44px;
    height: 44px;
    background: #111;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hwy-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
}

.hwy-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.hwy-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
}

/* DİĞER HİZMETLER */
.hizmet-others {
    padding: 64px 0;
}

.hizmet-others .section-title {
    margin-bottom: 32px;
}

.hizmet-others-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hother-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
    transition: all .2s;
}

.hother-card:hover {
    border-color: #111;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.hother-card-icon {
    width: 40px;
    height: 40px;
    background: #F7F7F7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.hother-card:hover .hother-card-icon {
    background: #111;
}

.hother-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: #111;
    fill: none;
    transition: stroke .2s;
}

.hother-card:hover .hother-card-icon svg {
    stroke: #fff;
}

.hother-card span {
    font-size: 13px;
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hizmet-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hizmet-hero-title {
        font-size: 28px;
    }

    .hizmet-detail-grid {
        grid-template-columns: 1fr;
    }

    .hizmet-info-card {
        position: static;
    }

    .hizmet-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hizmet-others-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .hizmet-why-grid {
        grid-template-columns: 1fr;
    }

    .hizmet-others-grid {
        grid-template-columns: 1fr;
    }
}