/* Genel Reset ve Çalışma Alanı */
.services-section {
    background-color: #f7f6f2;
    padding: 6rem 0;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    overflow: hidden;
}

.container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Üst Başlık ve Açıklama Alanı */
.services-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 4rem;
}

.services-title-area {
    flex: 1;
    max-width: 700px;
}

.services-desc-area {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 1.5rem;
}

/* Badge (Hizmetlerimiz Etiketi) */
.badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.badge-light .dot {
    width: 8px;
    height: 8px;
    background-color: #226671;
    border-radius: 50%;
}

/* Premium ve Zarif Başlık */
.services-title-area h2 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #111;
}

.services-title-area h2 span {
    color: #e58810;
    font-weight: 700;
    font-style: italic;
}

.services-desc-area p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* Premium Buton */
.btn-dark-outline {
    background-color: #4a544c;
    color: #ffffff;
    padding: 0.6rem 1.5rem 0.6rem 0.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.btn-dark-outline:hover {
    background-color: #226671;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 102, 113, 0.2);
}

.btn-dark-outline .icon-circle {
    background-color: #ffffff;
    color: #111;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

/* Swiper Slider Kapsayıcısı */
.servicesSwiper {
    padding-bottom: 4rem !important; 
    padding-top: 1rem !important;
}

/* Kart Genel Özellikleri */
.service-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px; 
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(34, 102, 113, 0.15);
}

.card-number {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
}

.card-icon {
    margin-top: auto;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

/* Tam Ekran Görsel Kart Yapısı (Tüm kartlara uygulandı) */
.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.service-card:hover .card-bg-image { 
    transform: scale(1.1); 
}

/* Koyu Katman (Overlay) - Yazıların okunaklı olması için */
.card-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

/* Kart içindeki ince premium çizgi */
.card-full-bg::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: rgba(255,255,255,0.4);
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    z-index: 2;
}

/* Swiper Pagination (Slider Noktaları) */
.swiper-pagination-bullet {
    background-color: #ccc !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background-color: #e58810 !important; 
    width: 25px !important;
    border-radius: 5px !important;
}

/* =========================================================
   MOBİL UYUMLULUK
   ========================================================= */
@media (max-width: 1024px) {
    .services-header-row {
        flex-direction: column;
        gap: 2rem;
    }
    .services-title-area h2 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .services-section { padding: 4rem 0; }
    .services-title-area h2 { font-size: 2.2rem; }

    .service-card {
        height: 440px;
        padding: 2rem;
    }

    .service-card h3 { font-size: 1.35rem; }
    .service-card p { font-size: 0.9rem; }
    
    .card-full-bg::before {
        top: 4.2rem;
        left: 2rem;
    }
}

@media (max-width: 400px) {
    .service-card {
        height: 420px;
        padding: 1.75rem;
    }

    .service-card h3 { font-size: 1.2rem; }
    .card-icon { font-size: 2rem; }
}