@charset "UTF-8";

/* =========================================
   H�ZMETLER SAYFASI STILLERI
   ========================================= */

.services-page {
    background-color: var(--bg-warm, #FAF7F2);
    color: var(--text-dark, #2E3330);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.title-line {
    width: 300px; /* Çizginin uzunluğunu artırır (İsteğe göre 80px - 110px arası yapabilirsiniz) */
    height: 2px;
    background-color: #55755d; /* Sitenizin renk paletine uyumlu yeşil/gri ton */
    margin: 12px auto 30px auto; /* 'auto' değerleri sayesinde çizgi her zaman başlığın tam ortasında hizalanır */
    border-radius: 2px;
}

/* Ba�l�k Alan� */
.services-hero {
    padding: 70px 0 35px;
    text-align: center;
}

.page-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #55755d;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.page-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark, #2E3330);
    margin-bottom: 15px;
}

.page-desc {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted, #6B726F);
}

.center-line {
    margin: 15px auto 25px !important;
}

/* 1. Hizmet Kartlar� Grid */
.services-list-section {
    padding: 30px 0 80px;
}

.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Kart�n Genel Yap�s� */
.service-box {
    background-color: #ffffff;
    border: 1px solid rgba(220, 205, 190, 0.55);
    border-radius: 28px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .service-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 38px rgba(46, 51, 48, 0.08);
        border-color: rgba(180, 160, 140, 0.6);
    }


/* Kart �konu */


/* Hizmet Kartı Üst Görsel Alanı */
.box-image-wrapper {
    width: 100%;
    height: 250px; /* Görsel yüksekliği */
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #FAF7F2;
    border: 1px solid rgba(220, 205, 190, 0.4);
}

.service-box-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görselin orantılı bir şekilde alanı doldurmasını sağlar */
    display: block;
    transition: transform 0.3s ease;
}

/* Kartın üzerine gelindiğinde görselin hafifçe büyümesi */
.service-box:hover .service-box-img {
    transform: scale(1.05);
}
.box-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 22px;
}

.box-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark, #2E3330);
    margin-bottom: 14px;
    line-height: 1.25;
}

.box-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted, #6B726F);
    margin-bottom: 20px;
    flex-grow: 1; /* Buton ve etiketleri her zaman tabana hizalar */
}

/* K���k Etiketler (Tags) */
.box-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

    .box-tags span {
        background-color: var(--bg-warm, #FAF7F2);
        color: #4a5a52;
        font-size: 0.78rem;
        font-weight: 500;
        padding: 4px 10px;
        border-radius: 12px;
        border: 1px solid rgba(220, 205, 190, 0.4);
    }

/* Y�nlendirme Linki */
.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--btn-color, #21352F);
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

    .service-link:hover {
        color: #3b5f44;
        transform: translateX(4px);
    }

/* =========================================
   2. TERAP� S�REC� NASIL �LERLER?
   ========================================= */

.process-section {
    background-color: #F4EFEB;
    padding: 85px 0 95px;
    border-radius: 50px 50px 0 0;
}

.process-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.process-main-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--text-dark, #2E3330);
    margin: 8px 0 14px;
}

.process-main-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted, #6B726F);
}

/* 3 Ad�ml� S�re� Grid'i */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    position: relative;
    border-top: 4px solid var(--btn-color, #21352F);
}

.step-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(59, 95, 68, 0.25);
    line-height: 1;
    margin-bottom: 14px;
}

.step-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text-dark, #2E3330);
    margin-bottom: 14px;
}

.step-desc {
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--text-muted, #6B726F);
    margin: 0;
}

/* Kapan�� Eyleme �a�r� Alan� */
.process-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark, #2E3330);
    margin-bottom: 18px;
}

/* =========================================
   RESPONSIVE (MOB�L VE TABLET)
   ========================================= */

@media (max-width: 992px) {
    .services-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .process-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .services-hero {
        padding: 50px 0 25px;
    }

    .services-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-box {
        padding: 28px 22px;
    }

    .process-section {
        padding: 60px 0;
        border-radius: 35px 35px 0 0;
    }

    .step-card {
        padding: 30px 22px;
    }
}
