/* --- GLOBAL SECTION SETTINGS --- */
.service-detail-section {
    padding: 20px 0;
    position: relative;
    background: #ffffff; /* Body beyaz dedin, beyaz bıraktık */
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden; /* Taşmaları engellemek için */
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 ;
    position: relative;
}

/* --- FLEXBOX DÜZENİ (GÖRSEL - METİN DANS) --- */
.service-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Çift sayılı sectionlarda görseli sola, metni sağa al (Alternating) */
.service-detail-section:nth-child(even) .service-flex-container {
    flex-direction: row-reverse;
}

/* --- METİN KUTUSU VE GÖLGE (DEPTH STYLE) --- */
.service-content {
    flex: 1.2;
    padding: 50px;
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    z-index: 5;
    /* İstediğin o derin gölge etkisi */
    box-shadow: 0 40px 100px rgba(16, 59, 123, 0.08), 
                0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s ease;
}

.service-content:hover {
    transform: translateY(-8px);
}

/* --- ARKA PLANDAKİ DEV NUMARA (HOLLOW STYLE) --- */
.service-num {
    font-family: 'Expletus Sans', cursive;
    font-size: 8rem;
    font-weight: 900;
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(16, 59, 123, 0.1);
    pointer-events: none;
}

/* --- TİPOGRAFİ --- */
.service-content h2 {
    color: #103b7b;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-slogan {
    color: #ff6b00; /* Pars Orange */
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 1rem;
    color: #444;
}

.service-features i {
    color: #ff6b00;
    margin-right: 12px;
}

/* --- GÖRSEL ALANI --- */
.service-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-image-wrapper:hover img {
    transform: scale(1.05);
}

/* --- NAV-ARROW (ORANGE OUTLINE -> SOLID HOVER) --- */
.section-nav {
    position: absolute;
    right: -80px; /* Konteynırın dışına, sağa sabitle */
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #ff6b00; /* Başlangıç turuncu outline */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b00;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-arrow:hover {
    background: #ff6b00; /* Hoverda içi dolar */
    color: #ffffff;      /* Ok beyaz olur */
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}
/* --- BTN-MINIMAL (BLUE OUTLINE -> SOLID HOVER) --- */
.btn-minimal {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid #103b7b; /* Başlangıç Pars Mavisi Outline */
    border-radius: 4px;        /* Modern, hafif keskin köşeler */
    
    color: #103b7b;            /* Yazı rengi mavi */
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    margin-top: 20px;
}
/* --- SERVICE DESCRIPTION (METİN ALANI) --- */
.service-description {
    margin-bottom: 35px;
    position: relative;
    padding-left: 25px; /* Sol tarafa şık bir çizgi için yer açtık */
    border-left: 3px solid rgba(16, 59, 123, 0.1); /* Çok hafif bir ayrım çizgisi */
}

.service-description p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem; /* Biraz daha büyük, daha ferah */
    line-height: 1.8;   /* Satır aralarını açtık (Godly Style) */
    color: #4a4a4a;     /* Saf siyah yerine daha yumuşak, lüks bir gri */
    margin: 0;
}

/* Pars Personalservice isminin geçtiği güçlü vurgu */
.service-description p strong {
    color: #103b7b;     /* Pars Mavisi */
    font-weight: 800;
    position: relative;
    display: inline-block;
}

/* "Pars Personalservice" yazısının altına çok ince turuncu bir gölge hattı */
.service-description p strong::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 107, 0, 0.1); /* Çok şeffaf turuncu bir vurgu bandı */
    z-index: -1;
}

/* --- EKSTRA DOKUNUŞ: İlk Harf Vurgusu (Opsiyonel) --- */
/* Eğer çok daha artistik bir hava istersen: */
.service-description p::first-line {
    font-weight: 500;
    color: #333;
}

/* --- HOVER DURUMU: Mavi Dolgu & Beyaz Metin --- */
.btn-minimal:hover {
    background: #103b7b;       /* Arka plan maviye döner */
    color: #ffffff;            /* Yazı beyaza döner */
    transform: translateY(-3px); /* Hafif yukarı zıplama */
    box-shadow: 0 15px 30px rgba(16, 59, 123, 0.2); /* Mavi derinlik gölgesi */
}

/* Aktif (Tıklama) Anı */
.btn-minimal:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(16, 59, 123, 0.2);
}
/* ============================================================
   RESPONSIVE DESIGN - ADAPTIVE SYSTEM
   ============================================================ */
/* ============================================================
   PARS MASTER RESPONSIVE LAYER (FULL ADAPTIVE)
   ============================================================ */

/* 1. GENİŞ EKRANLAR VE LAPTOPLAR (1025px - 1440px) */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
    .section-nav {
        right: 20px; 
    }
}

/* 2. TABLETLER VE KÜÇÜK LAPTOPLAR (768px - 1024px) */
@media (max-width: 1024px) {
    .service-detail-section {
        padding: 80px 0;
    }
    .service-flex-container {
        gap: 40px;
    }
    .service-content h2 {
        font-size: 2.4rem;
    }
    .service-image-wrapper img {
        height: 380px;
    }
    .section-nav {
        top: 85%; 
        transform: scale(0.9);
    }
}

/* 3. CEP TELEFONLARI VE MOBİL CİHAZLAR (Max 767px) */
@media (max-width: 767px) {
    .service-detail-section {
        padding: 50px 0;
        min-height: auto;
    }

    .container {
        padding: 0 20px;
    }

    /* Tüm İçeriği Ortala */
    .service-flex-container, 
    .service-detail-section:nth-child(even) .service-flex-container {
        flex-direction: column !important; 
        text-align: center !important; /* TÜM TEXTLER ORTALANDI */
        gap: 25px;
    }

    .service-content {
        padding: 30px 20px;
        flex: none;
        width: 100%;
        box-shadow: 0 15px 40px rgba(16, 59, 123, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center; /* Flex elemanlarını (buton vs) ortalar */
    }

    /* Başlık ve Slogan Ortalama */
    .service-content h2, 
    .service-slogan {
        text-align: center;
        width: 100%;
    }

    /* Arka Plan Numarası (Mobilde Ortalanmış) */
    .service-num {
        font-size: 4.5rem;
        left: 50%;
        transform: translateX(-50%);
        top: -25px;
    }

    /* Description - Çizgiyi kaldırıp ortaladık */
    .service-description {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(16, 59, 123, 0.1);
        padding-top: 15px;
        margin-top: 10px;
        text-align: center;
        width: 100%;
    }

    /* --- LİSTE ORTALAMA (Kritik Nokta) --- */
    .service-features {
        padding: 0;
        list-style-position: inside;
        text-align: center;
        width: 100%;
    }

    .service-features li {
        text-align: center; /* Listeyi de ortaladık */
        font-size: 0.95rem;
        display: block; /* Veya yan yana istersen inline-block */
        margin-bottom: 8px;
    }

    /* --- BUTON AYARI --- */
    .btn-minimal {
        width: 80% !important; 
        display: inline-block !important; /* Block yerine inline-block daha sağlıklı ortalanır */
        margin: 25px auto !important; 
        text-align: center;
        padding: 12px 0;
    }

    /* --- OKLAR --- */
    .section-nav {
        display: flex !important; 
        position: relative !important; 
        right: auto !important; 
        top: auto !important;
        transform: none !important;
        flex-direction: row !important; 
        justify-content: center; 
        gap: 40px; 
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .nav-arrow {
        width: 48px;
        height: 48px;
        border-width: 1px;
    }

    /* Görsel Alanı */
    .service-image-wrapper {
        width: 100%;
        flex: none;
        order: 2; 
    }

    .service-image-wrapper img {
        height: 260px;
        border-radius: 10px;
    }
}

/* 4. ÇOK KÜÇÜK EKRANLAR (Max 480px) */
@media (max-width: 480px) {
    .service-content h2 {
        font-size: 1.8rem;
    }
    .service-slogan {
        font-size: 1rem;
    }
    .btn-minimal {
        width: 95% !important; 
    }
}