/* --- DEĞİŞKENLER --- */
:root {
    --primary-orange: #FF5722;
    --primary-black: #111111;
    --primary-white: #FFFFFF;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- ANA SECTION (ORTALAMA VE İZOLASYON) --- */
.golden-section {
    width: 68%;
    margin: 50px auto;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    /* Hafif kontrast arka plan */
    position: relative;
    clear: both;
}

/* --- KART YAPISI --- */
.h-card {
    display: flex;
    width: 100%;
    min-height: 500px;
    background: var(--primary-white);
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

/* --- GÖRSEL --- */
.h-img {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.h-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* --- İÇERİK --- */
.h-content {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-white);
}

.h-tag {
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.h-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-black);
    text-transform: uppercase;
}

.h-title .highlight {
    color: var(--primary-orange);
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin-bottom: 25px;
}

.h-desc {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* --- AKSİYON ALANI (BUTON VE OKLAR) --- */
.action-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.anfragen-btn {
    text-decoration: none;
    background: var(--primary-orange);
    color: white;
    padding: 14px 28px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border-radius: 4px;
}

.anfragen-btn:hover {
    background: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

/* --- MİNİMAL NAVİGASYON OKLARI --- */
.card-nav-minimal {
    display: flex;
    gap: 10px;
}

.nav-arrow-btn {
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
    color: #bbb;
    border: 1px solid #eee;
    border-radius: 50%;
    font-size: 14px;
    transition: 0.3s ease;
}

.nav-arrow-btn:hover {
    background: white;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* --- HOVER EFEKTLERİ --- */
.h-card:hover {
    border-left: 10px solid var(--primary-orange);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.15);
}

.h-card:hover .h-img img {
    transform: scale(1.05);
}

/* --- RESPONSIVE (MOBİL UYUMLULUK) --- */
@media (max-width: 1200px) {
    .golden-section {
        width: 85%;
    }
}

@media (max-width: 992px) {
    .h-content {
        padding: 40px;
    }

    .h-img {
        flex: 0 0 40%;
    }
}

@media (max-width: 768px) {
    .golden-section {
        width: 95%;
        margin: 30px auto;
    }

    .h-card {
        flex-direction: column;
        min-height: auto;
    }

    .h-img {
        flex: 0 0 300px;
    }

    .action-area {
        flex-direction: row;
    }

    /* Buton ve oklar yan yana kalsın */
}

@media (max-width: 480px) {
    .action-area {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-nav-minimal {
        align-self: flex-end;
    }
}

/* Mevcut CSS'ine ek olarak bu teknik liste stilini ekle */
.tech-spec-grid {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-item strong {
    color: var(--primary-black);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-item strong i {
    color: var(--primary-orange);
    font-size: 16px;
}

.spec-item span {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 24px;
    /* İkonun altını boş bırakmak için */
}

/* Başlık için ufak bir ayar */
.h-title {
    letter-spacing: -1px;
}
/* --- REVERSE VARYASYONU (Resim Sağda) --- */
.h-card.reverse {
    flex-direction: row-reverse;
}

/* Hover durumunda turuncu çizgi sağda değil solda kalsın istersen (opsiyonel) 
   Ya da sağ tarafa almak istersen border-left yerine border-right yapabilirsin: */
.h-card.reverse:hover {
    border-left: none;
    border-right: 10px solid var(--primary-orange);
}

/* Mobilde (768px altı) her zaman resim üstte kalsın diye düzenleme */
@media (max-width: 768px) {
    .h-card.reverse {
        flex-direction: column; /* Mobilde görsel yine üste çıkar */
    }
}
.spec-item strong {
    display: flex;
    align-items: center;
    gap: 10px; /* İkon ile yazı arasındaki boşluk */
    color: var(--primary-black);
}

.spec-item strong i {
    color: var(--primary-orange); /* İkonlar turuncu */
    font-size: 16px;
    width: 20px; /* İkonların hizalı durması için sabit genişlik */
    text-align: center;
}

.spec-item span {
    padding-left: 30px; /* İkonun altının boş kalması için metni kaydırdık */
    display: block;
}
/* --- REVERSE VARYASYONU (Resim Sağda) --- */
.h-card.reverse {
    flex-direction: row-reverse;
}

/* Hover durumunda turuncu çizgi sağda değil solda kalsın istersen (opsiyonel) 
   Ya da sağ tarafa almak istersen border-left yerine border-right yapabilirsin: */
.h-card.reverse:hover {
    border-left: none;
    border-right: 10px solid var(--primary-orange);
}

/* Mobilde (768px altı) her zaman resim üstte kalsın diye düzenleme */
@media (max-width: 768px) {
    .h-card.reverse {
        flex-direction: column; /* Mobilde görsel yine üste çıkar */
    }
}
/* Slogan için ufak dokunuş */
.sub-slogan-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

/* Meslek Listesi Düzeni */
.management-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Çift sütun yaparak dikey alanı küçülttük */
    gap: 12px 25px;
    margin-bottom: 35px;
}

.m-item {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0f0f0;
    cursor: default;
    transition: 0.3s ease;
}

/* Sağa Hareket Eden Turuncu Ok */
.m-arrow {
    color: var(--primary-orange);
    font-weight: 900;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* Hover Efekti: Yazı turuncu olur, ok sağa fırlar */
.m-item:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.m-item:hover .m-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Modal Buton Ayarı (Link yerine Button kullanımı daha doğru olur) */
.anfragen-btn {
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}