/* --- HİZMETLERİMİZ SAYFASI TÜM STİLLER --- */
:root {
    --alfa-blue: #063970;
    --alfa-orange: #ff8a42;
    --text-muted: #64748b;
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* --- 1. HERO BANNER BÖLÜMÜ --- */
.services-hero {
    position: relative;
    height: 250px;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(6, 57, 112, 0.95) 30%, rgba(6, 57, 112, 0.4) 100%);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content { max-width: 650px; }

.hero-subtitle {
    display: inline-block;
    background: var(--alfa-orange);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span { color: var(--alfa-orange); }

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-features { display: flex; gap: 30px; }

.h-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.h-feat i { color: var(--alfa-orange); }

/* --- 2. HİZMET KARTLARI BÖLÜMÜ --- */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 60px auto;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--alfa-blue);
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(6, 57, 112, 0.12);
}

.service-icon-box {
    width: 70px; height: 70px;
    background: #f8fafc;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-icon-box i { font-size: 32px; }

.service-card:hover .service-icon-box {
    background: var(--alfa-blue);
}

.service-card:hover .service-icon-box i { color: #fff !important; }

.service-card h3 {
    font-size: 1.25rem; font-weight: 700;
    color: var(--alfa-blue); margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem; color: var(--text-muted);
    line-height: 1.6; margin-bottom: 25px;
}

.read-more-btn {
    margin-top: auto;
    font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .services-hero { height: auto; padding: 100px 0; }
    .hero-title { font-size: 2.2rem; }
    .services-intro h2 { font-size: 1.8rem; }
    .hero-features { flex-direction: column; gap: 10px; }
}