/*
    -------------------------------------------------
    9. TÜM MAKALELER SAYFASI (ARTICLES.HTML) STİLLERİ
    -------------------------------------------------
*/

.list-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.page-title {
    font-size: 2.2em;
    color: var(--color-primary);
    margin: 0;
}

.list-summary {
    color: var(--color-text-light);
    font-size: 0.9em;
    margin-top: 5px;
}

.article-list-area {
    flex: 3;
}

/* Yan Çubuk Filtre ve Etiket Stilleri */

.list-sidebar {
    flex: 1;
    padding-top: 0; /* Sayfa başlığı ile hizalamak için */
}

.list-sidebar .widget ul {
    list-style: none;
    padding-left: 0;
}

.list-sidebar .widget ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}

/* Etiket Bulutu Stili */
.tag-cloud {
    margin-top: 15px;
}

.tag {
    display: inline-block;
    background-color: var(--color-secondary);
    color: #ffffff;
    font-size: 0.8em;
    padding: 5px 10px;
    margin: 5px 5px 5px 0;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.tag:hover {
    opacity: 0.8;
}

/* Sayfalandırma Stili */
.pagination {
    text-align: center;
    margin: 40px 0 20px 0;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--color-primary);
    transition: background-color 0.3s, color 0.3s;
}

.page-link.active {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.page-link:not(.active):hover {
    background-color: #f5f5f5;
}

.page-link.disabled {
    color: #ccc;
    cursor: default;
    border-color: #f0f0f0;
}

/* RESPONSIVE AYARLARI (Mobil Uyum) */
@media (max-width: 900px) {
    .article-list-area {
        /* Tüm alanı kapla */
        flex: 1; 
    }

    .list-sidebar {
        /* Mobil altta kalacak */
        flex: 1;
    }
}

/*
    -------------------------------------------------
    1. GENEL AYARLAR VE SIFIRLAMA
    -------------------------------------------------
*/
:root {
    /* Renk Paleti */
    --color-background: #FAFAFA; /* Açık Gri/Neredeyse Beyaz */
    --color-primary: #0A2A5B;    /* Koyu Mavi/Lacivert (Vurgu) */
    --color-secondary: #4ECDC4;  /* Teal/Turkuaz (İkincil Vurgu) */
    --color-text-dark: #333333;  /* Koyu Metin */
    --color-text-light: #555555; /* Açık Metin */

    /* Fontlar */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', 'Lato', sans-serif;
    --font-code: 'Fira Code', 'Source Code Pro', monospace;
}

/* Google Fonts'ları sayfa başına eklemeyi unutmayın */
/* Örn: <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet"> */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-secondary);
}

/* Başlık Stilleri */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin: 1.5em 0 0.5em;
    line-height: 1.2;
    color: var(--color-primary);
}

h1.article-title {
    color: var(--color-primary);
    font-size: 2.5em;
}

/*
    -------------------------------------------------
    2. HEADER VE NAVİGASYON
    -------------------------------------------------
*/
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-text-dark);
}

/*
    -------------------------------------------------
    3. MAKALE VE İÇERİK ALANI (LAYOUT)
    -------------------------------------------------
*/
.content-wrapper {
    display: flex;
    padding-top: 40px;
    gap: 40px; /* Sütunlar arası boşluk */
}

.main-article {
    flex: 3; /* Ana içerik, yan çubuğa göre daha geniş */
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sidebar {
    flex: 1; /* Yan çubuk */
    padding-top: 50px; /* Makale başlığı hizasına gelmesi için */
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
}

/*
    -------------------------------------------------
    4. MAKALE META VE İÇERİK STİLLERİ
    -------------------------------------------------
*/
.article-meta span {
    display: inline-block;
    color: var(--color-text-light);
    font-size: 0.9em;
    margin-right: 15px;
}

.intro-paragraph {
    font-size: 1.15em;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--color-text-dark);
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    margin: 15px 0 25px 20px;
    padding-left: 20px;
    list-style-type: square;
}

/*
    -------------------------------------------------
    5. KOD BLOKLARI VE UYARI KUTULARI (TEKNİK VURGU)
    -------------------------------------------------
*/

/* KOD BLOKU STİLİ */
.code-block {
    background-color: #2D2D2D; /* Koyu arka plan */
    color: #F8F8F2;          /* Açık metin */
    padding: 15px;
    margin: 25px 0;
    border-radius: 6px;
    overflow-x: auto; /* Yatay kaydırma çubuğu */
    font-family: var(--font-code);
    font-size: 0.9em;
    line-height: 1.4;
    border: 1px solid #1c1c1c;
}

/* UYARI KUTUSU GENEL STİLİ */
.alert-box {
    padding: 15px 20px;
    border-left: 5px solid;
    margin: 25px 0;
    border-radius: 4px;
    font-size: 0.95em;
}

/* Hata/Önemli Uyarı Stili */
.alert-box.error {
    background-color: #fcebeb; /* Çok açık kırmızı */
    border-left-color: #e57373; /* Kırmızı vurgu */
    color: #c0392b;
}

/* İpucu/Not Stili */
.alert-box.tip {
    background-color: #e9faf7; /* Çok açık teal */
    border-left-color: var(--color-secondary); /* Teal vurgu */
    color: #0d877f;
}

.alert-box strong {
    font-weight: 700;
}

/*
    -------------------------------------------------
    6. YAN ÇUBUK (SIDEBAR) VE FOOTER
    -------------------------------------------------
*/
.widget {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.widget h2 {
    font-size: 1.2em;
    color: var(--color-primary);
    margin-top: 0;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    margin-bottom: 10px;
}

.main-footer {
    background-color: var(--color-primary);
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/*
    -------------------------------------------------
    7. RESPONSIVE (MOBİL UYUMLULUK) AYARLARI
    -------------------------------------------------
*/
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column; /* Küçük ekranlarda sütunları alt alta diz */
        padding-top: 20px;
        gap: 20px;
    }

    .main-article {
        padding: 20px;
    }

    .sidebar {
        padding-top: 0;
    }
}



/*
    -------------------------------------------------
    8. ANA SAYFA STİLLERİ (ANASAYFA.HTML)
    -------------------------------------------------
*/

.homepage-content {
    padding-top: 40px;
    padding-bottom: 50px;
}

/* --- HERO ALANI --- */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-text-content {
    flex: 1.5;
}

.hero-text-content h2 {
    font-size: 2.5em;
    margin-top: 0;
    color: var(--color-primary);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-secondary); /* Teal Vurgu */
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--color-primary);
}

/* --- MAKALE GRID/IZGARA STİLİ --- */
.section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--color-secondary);
    display: inline-block;
    padding-bottom: 5px;
    color: var(--color-primary);
}

.latest-articles {
    text-align: center; /* Başlık ortalamak için */
    margin-bottom: 60px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 sütun için otomatik ayar */
    gap: 30px;
    text-align: left;
}

.article-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px); /* Hafifçe yukarı kayar */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.3em;
    margin: 0 0 10px 0;
}

.card-excerpt {
    color: var(--color-text-light);
    font-size: 0.95em;
    margin-bottom: 10px;
}

.card-meta {
    display: block;
    font-size: 0.8em;
    color: var(--color-secondary);
    font-weight: 600;
}

/* --- UZMANLIK ALANLARI --- */
.expertise-areas {
    text-align: center;
    padding: 40px 0;
    background-color: #f0f0f0; /* Hafif bir arka plan */
    border-radius: 8px;
}

.area-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.area-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.area-card .icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 10px;
}

.area-card h3 {
    font-size: 1.1em;
    margin: 0;
    color: var(--color-primary);
}

/* --- RESPONSIVE AYARLARI --- */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        order: -1; /* Görseli mobil görünümde üste taşır */
        margin-bottom: 20px;
    }

    .area-grid {
        flex-wrap: wrap;
    }
}


/*
    -------------------------------------------------
    10. ÇÖZÜMLER SAYFASI (SOLUTION-CARD VURGUSU)
    -------------------------------------------------
*/

/* Çözüm kartı özel stilleri */
.solution-card {
    /* Resim kullanmadığımız için arka planı daha belirgin yapabiliriz */
    min-height: 180px; 
    border: 1px solid #f0f0f0; 
}

.solution-card .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* İkon yerleşimi ve stili (görsel yerine) */
.solution-icon-wrap {
    background-color: var(--color-primary);
    padding: 15px 20px;
    border-bottom: 3px solid var(--color-secondary);
    text-align: center;
}

.solution-icon-wrap .icon {
    font-size: 2em;
    color: #ffffff;
    display: block;
}

.solution-card .card-title {
    margin-top: 10px;
    font-size: 1.25em;
    flex-grow: 1; /* Başlığın içeriği itmesini sağlar */
}

.solution-card .card-meta {
    /* Çözüm süresini/adım sayısını vurgulamak için */
    font-size: 0.9em;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: 10px;
}/*
    -------------------------------------------------
    11. YENİ ANA SAYFA (HOMEPAGE) EKLERİ
    -------------------------------------------------
*/

/* --- GÜVEN İSTATİSTİKLERİ BÖLÜMÜ --- */
.stats-section {
    background-color: var(--color-primary); /* Lacivert Arka Plan */
    color: #ffffff;
    padding: 30px 0;
    margin-bottom: 60px;
    border-radius: 12px;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    padding: 10px 20px;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-secondary); /* Teal Vurgu */
}

.stat-label {
    font-size: 1.1em;
    margin-top: 5px;
    opacity: 0.8;
}

.hidden-title {
    /* Görsel olarak gizle, ancak ekran okuyucular için kalsın */
    display: none;
}

/* --- ÖNE ÇIKAN ÇÖZÜMLER (PROMO) BÖLÜMÜ --- */
.featured-solutions {
    margin-bottom: 60px;
    text-align: center;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.solution-promo-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--color-secondary);
    transition: transform 0.3s;
}

.solution-promo-card:hover {
    transform: translateY(-5px);
}

.solution-promo-card .icon {
    font-size: 1.8em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.solution-promo-card h3 {
    font-size: 1.2em;
    margin: 0 0 10px 0;
    color: var(--color-primary);
}

.solution-promo-card p {
    color: var(--color-text-light);
    font-size: 0.95em;
    flex-grow: 1;
}

.solution-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-secondary);
    font-weight: 600;
}

.primary-cta {
    background-color: var(--color-primary); /* Ana butonu daha belirgin yapalım */
}

.primary-cta:hover {
    background-color: #2a4970;
}

/* --- RESPONSIVE AYARLARI --- */
@media (max-width: 768px) {
    .stats-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        width: 50%; /* Mobil görünümde yan yana 2 istatistik */
        margin: 15px 0;
        border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    }
    .stat-item:nth-last-child(-n+2) {
        border-bottom: none; /* Son iki istatistikte alt çizgi olmasın */
    }
}

/*
    -------------------------------------------------
    12. ZENGİNLEŞTİRİLMİŞ FOOTER (ALT KISIM)
    -------------------------------------------------
*/

.main-footer.large-footer {
    background-color: var(--color-primary); 
    padding: 50px 0 20px 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 sütunlu yapı */
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget h3 {
    color: var(--color-secondary); /* Teal Başlık */
    font-size: 1.2em;
    margin: 0 0 20px 0;
    font-family: var(--font-heading);
}

.footer-widget p, .footer-widget a {
    color: #cccccc;
    font-size: 0.9em;
    line-height: 1.8;
}

.footer-widget a:hover {
    color: #ffffff;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget li {
    margin-bottom: 10px;
}

/* Abonelik Formu Stilleri */
.newsletter-form input[type="email"] {
    padding: 10px;
    width: calc(100% - 10px);
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

.subscribe-button {
    background-color: var(--color-secondary);
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.subscribe-button:hover {
    background-color: #3BB7B0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.8em;
    color: #999999;
}

/* --- KATEGORİ BAŞLIK VURGUSU --- */
.category-articles {
    margin-bottom: 60px;
}

/* İsteğe bağlı olarak kategori başlıklarına farklı renkler verebilirsiniz */
.windows-server-title {
    color: #0078D4; /* Windows Mavi */
    border-bottom-color: #0078D4;
}

.exchange-server-title {
    color: #0072C6; /* Exchange/Microsoft Mavi tonu */
    border-bottom-color: #0072C6;
}


/* --- RESPONSIVE AYARLARI (Footer) --- */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
    }
}

@media (max-width: 550px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Mobilde 1 sütun */
        text-align: center;
    }
    .footer-widget h3 {
        padding-top: 15px;
    }
}

/*
    -------------------------------------------------
    13. HERO SLIDER YAPISI
    -------------------------------------------------
*/

/* Ana Kaydırıcı Konteyneri */
.hero-slider-section {
    position: relative;
    overflow: hidden; /* Sadece aktif slayt görünsün */
    margin-bottom: 60px;
    border-radius: 12px;
    background-color: #f7f9fb; /* Hafif bir arka plan */
}

.slider-container {
    position: relative;
    height: 400px; /* Kaydırıcının sabit yüksekliği */
}

/* Her Bir Slayt Öğesi */
.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0; /* Başlangıçta tüm slaytlar gizli */
    transition: opacity 0.8s ease-in-out; /* Geçiş animasyonu */
    padding: 30px 50px;
}

/* Aktif Olan Slayt */
.slider-item.active {
    opacity: 1;
    z-index: 10;
}

/* Hero Alanı İçindeki Bileşenler */
.hero-slider-section .hero-text-content {
    max-width: 45%; /* Metin içeriği için alan ayırma */
    z-index: 20;
}

.hero-slider-section .hero-image {
    max-width: 45%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Geçiş Noktaları (DOTS) */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--color-primary); /* Lacivert */
}

/* Mobil Cihazlar İçin Ayarlama */
@media (max-width: 768px) {
    .slider-container {
        height: auto;
    }
    .slider-item {
        flex-direction: column;
        padding: 20px;
        position: relative; /* Mobil: Slaytları alt alta koymak için */
    }
    .slider-item:not(.active) {
        display: none; /* Mobil: Aktif olmayanı tamamen gizle */
    }
    .hero-slider-section .hero-text-content,
    .hero-slider-section .hero-image {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .hero-slider-section .hero-image {
        order: -1; /* Görseli metinden yukarı al */
    }
}

/*
    -------------------------------------------------
    14. KATEGORİ ODAK BÖLÜMÜ (ALTERNATE 3)
    -------------------------------------------------
*/

.category-focus-section {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.category-focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.focus-item {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.focus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.focus-item .stat-icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--color-secondary); /* Teal Vurgu */
    transition: color 0.3s;
}

.focus-item:hover .stat-icon {
    color: var(--color-primary); /* Hover'da Laciverte Dönüş */
}

.focus-item .stat-label {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.focus-link {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.focus-link:hover {
    text-decoration: underline;
}

/* yeni css kodları----------------------------------- */

/*
    -------------------------------------------------
    15. MOBİL KATEGORİ ORTALAMA STİLLERİ
    -------------------------------------------------
*/

/* Mobil cihazlar için kategori grid düzenlemesi */
@media (max-width: 768px) {
    .category-focus-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .focus-item {
        width: calc(50% - 20px);
        min-width: 140px;
        max-width: 160px;
        text-align: center;
    }
    
    .stat-item.focus-item {
        margin: 0 auto;
    }
}

/* Daha küçük mobil cihazlar için */
@media (max-width: 480px) {
    .category-focus-grid {
        gap: 15px;
    }
    
    .focus-item {
        width: calc(50% - 15px);
        min-width: 130px;
        padding: 20px 15px;
    }
    
    .focus-item .stat-icon {
        font-size: 2.5em;
    }
    
    .focus-item .stat-label {
        font-size: 1em;
    }
}

/*
    ALTERNATİF - DAHA KOMPAKT SLIDER
*/
/*
    -------------------------------------------------
    16. SLIDER MOBİL UYUM İYİLEŞTİRMELERİ
    -------------------------------------------------
/*
/*
/*
    -------------------------------------------------
    16. SLİDER MOBİL MÜKEMMEL UYUM
    -------------------------------------------------
*/

/* Mobilde slider optimizasyonu */
@media (max-width: 768px) {
    .hero-slider-section {
        position: relative;
        z-index: 1;
    }
    
    .slider-container {
        height: 380px !important; /* Daha fazla alan */
        position: relative;
        z-index: 2;
    }
    
    .slider-item {
        padding: 25px 20px !important;
        flex-direction: column;
        justify-content: flex-start; /* Üstten hizala */
        gap: 20px;
        position: relative;
        z-index: 3;
    }
    
    .hero-slider-section .hero-text-content {
        max-width: 100% !important;
        text-align: center;
        padding: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 4;
    }
    
    .hero-slider-section .hero-text-content h2 {
        font-size: 1.4em !important; /* Daha küçük başlık */
        margin-bottom: 15px !important;
        line-height: 1.3;
        min-height: auto !important; /* Sabit yükseklik kaldırıldı */
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Maksimum 2 satır */
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding: 0 10px;
    }
    
    .hero-slider-section .hero-text-content p {
        font-size: 0.92em !important;
        margin-bottom: 20px !important;
        line-height: 1.5;
        flex: none !important; /* Esnek alan kaldırıldı */
        min-height: auto !important;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Maksimum 3 satır */
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding: 0 5px;
    }
    
    .hero-slider-section .hero-image {
        max-width: 90% !important; /* Daha geniş */
        height: 130px !important;
        margin: 0 auto;
        order: -1;
        object-fit: contain !important;
        object-position: center;
        border-radius: 6px;
        position: relative;
        z-index: 3;
    }
    
    .cta-button {
        padding: 12px 30px !important;
        font-size: 1em !important;
        margin-top: 15px !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-self: center;
        white-space: nowrap;
        position: relative;
        z-index: 10;
    }
    
    .slider-dots {
        bottom: 25px !important; /* Daha aşağıda */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5 !important; /* Düşük z-index */
        display: flex;
        gap: 12px;
    }
    
    .dot {
        height: 12px;
        width: 12px;
        background-color: rgba(10, 42, 91, 0.4);
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        transition: all 0.3s;
        border: 2px solid rgba(255, 255, 255, 0.8);
        position: relative;
        z-index: 5;
    }
    
    .dot.active {
        background-color: var(--color-primary);
        transform: scale(1.1);
        border-color: var(--color-primary);
    }
}

/* Küçük mobil cihazlar */
@media (max-width: 480px) {
    .slider-container {
        height: 360px !important;
    }
    
    .slider-item {
        padding: 20px 15px !important;
        gap: 15px;
    }
    
    .hero-slider-section .hero-text-content h2 {
        font-size: 1.3em !important;
        margin-bottom: 12px !important;
        -webkit-line-clamp: 2;
        padding: 0 5px;
    }
    
    .hero-slider-section .hero-text-content p {
        font-size: 0.88em !important;
        margin-bottom: 18px !important;
        -webkit-line-clamp: 3;
        padding: 0;
    }
    
    .hero-slider-section .hero-image {
        max-width: 85% !important;
        height: 110px !important;
    }
    
    .cta-button {
        padding: 10px 25px !important;
        font-size: 0.95em !important;
        margin-top: 12px !important;
    }
    
    .slider-dots {
        bottom: 20px !important;
    }
    
    .dot {
        height: 10px;
        width: 10px;
    }
}

/* Mini ekranlar */
@media (max-width: 360px) {
    .slider-container {
        height: 340px !important;
    }
    
    .slider-item {
        padding: 18px 12px !important;
        gap: 12px;
    }
    
    .hero-slider-section .hero-text-content h2 {
        font-size: 1.2em !important;
        -webkit-line-clamp: 2;
    }
    
    .hero-slider-section .hero-text-content p {
        font-size: 0.85em !important;
        -webkit-line-clamp: 3;
    }
    
    .hero-slider-section .hero-image {
        max-width: 80% !important;
        height: 100px !important;
    }
    
    .cta-button {
        padding: 9px 22px !important;
        font-size: 0.9em !important;
    }
    
    .slider-dots {
        bottom: 18px !important;
    }
}
