/* --- Hizmetlerimiz Sayfası Stilleri --- */

/* Genel Sayfa Başlığı Alanı */
.page-header-section {
    background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    padding-top: calc(6rem + 118px);
    padding-bottom: 6rem;
    text-align: center;
    color: #ffffff;
}

.page-header-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.breadcrumb a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #f97116;
}

/* İçerik Alanı */
.services-content-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    display: inline-block;
    color: #f97116;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}


/* Hizmet Kartları Grid Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Mobilde tek sütun */
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: #f97116;
}

.service-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background-color: #fff1e6;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #f97116;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: #f97116;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Tablet (768px ve üstü) */
@media screen and (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Masaüstü (992px ve üstü) */
@media screen and (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

