/* home.css */

/* Genel Sayfa Stili */
body {
    margin: 0;
    font-family: 'Cabin', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
}

/* ============================ */
/* ===== SLIDER ANASAYFA ===== */
/* ============================ */

/* Slider Konteyneri */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slaytlar */
.slide {
    pointer-events: none;
    min-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    will-change: opacity;
}

.slide.active {
    pointer-events: none;
    opacity: 1;
    z-index: 2;
    visibility: visible;
    transition: opacity 1s ease-in-out;
}

/* Slayt Üzerindeki Katman (Overlay) */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 90%),
        linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, transparent 90%);
    z-index: 1;
}

/* Slayt Resimleri */
.slide-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slayt İçerik Alanı */
.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    max-width: 400px;
    color: var(--bckgrd-clr);
    z-index: 2;
}

.slide-title {
    font-size: 4.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bckgrd-clr);
    font-family: 'Cabin', sans-serif;
}

.slide-text {
    font-size: 1.1rem;
    color: var(--bckgrd-clr);
    line-height: 1.5;
    font-family: 'Cabin', sans-serif;
}

.slide-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--slider-clr);
    color: var(--bckgrd-clr);
    font-weight: 700;
    text-decoration: none;
    border-radius: 0;
    margin-top: 20px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

/* Kontrol Butonları ve Noktalar */
.slide-controls {
    position: absolute;
    z-index: 10;
    left: 10%;
    bottom: 12%;
    display: flex;
    align-items: center;
    gap: 15px;
    pointer-events: auto;
}

.arrow-btn {
    background-color: var(--slider-clr);
    border: 1px solid var(--slider-clr);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    z-index: 10;
    pointer-events: auto;
}

.arrow-btn:hover {
    transform: translateY(-5px);
}

.arrow-btn i {
    font-size: 16px;
    color: white;
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0;
    padding: 0;
}

.slider-dots button.active {
    background-color: #FFFFFF; /* Aktif noktayı BEYAZ yap */
    opacity: 1;              /* Tamamen görünür olmasını garantile */
    transform: scale(1.2);   /* Aktif noktayı biraz büyüt (isteğe bağlı, şık durur) */
}

/* ===================================== */
/* ===== DİĞER HOME.CSS KODLARI ===== */
/* ===================================== */

/* Ana Sayfa İçerik Menüsü (Downmenubar) */
.downmenubar-menu {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 250px;
    position: relative;
    z-index: 10;
}

.menu-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.menu-list li {
    flex: 1;
    max-width: none;
    text-align: center;
}

.menu-list a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-list a.active {
    color: var(--ikon-clr);
    border-color: var(--ikon-clr);
}
.menu-toggle {
    display: none;
}

/* Ana Sayfa İçerik Menüsü (Downmenubar) */
.dynamic-content {
    display: none;
    padding: 30px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.dynamic-content.active {
    display: block;
}

.image-slogan {
    margin-top: 45px;
    text-align: center;
}

.image-slogan h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-clr);
    margin-bottom: 10px;
}

.image-slogan p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-clr);
    margin: 20px;
}
/* ================================================= */
/* ===== ADIM 1: MEDYA MERKEZİ - BÖLÜM VE BAŞLIK ===== */
/* ================================================= */

.king-royal-media-center-section {
    padding: 80px 0; /* İç boşlukları artırarak daha ferah bir başlangıç yapıyoruz */
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%); /* Beyazdan çok hafif griye geçen bir arkaplan */
    overflow: hidden; /* Animasyonların taşmasını engellemek için */
}

.king-royal-media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.king-royal-media-header {
    text-align: center;
    margin-bottom: 20px;
}

.king-royal-media-title {
    font-size: 44px; /* Font boyutunu hafifçe ayarlıyoruz */
    font-weight: 700; /* Daha tok bir görünüm için */
    color: #1a2530; /* Tam siyah yerine koyu bir renk */
    margin-bottom: 15px;
}
.king-royal-media-text {
    font-size: 18px; /* Font boyutunu hafifçe ayarlıyoruz */
    font-weight: 400; /* Daha tok bir görünüm için */
    color: #1a2530; /* Tam siyah yerine koyu bir renk */
    margin-bottom: 15px;
}

.king-royal-media-desc p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto; /* Açıklamayı ortalıyoruz */
}

/* Diğer bölümlerle tutarlılık için Slogan Çubuğunu ekliyoruz */
.slogan-bar {
    width: 2px;
    height: 40px; /* Yüksekliğini ayarlıyoruz */
    background-color: #f7b731; /* Vurgu renginiz */
    margin: 30px auto 50px; /* Konumunu ayarlıyoruz */
    border-radius: 2px;
}

.main-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Önceki dikey düzen (Eski 3 resimli yapı) */
.content-section.vertical-layout {
    flex-direction: column;
    align-items: center;
    flex: 0 0 33.33%;
    min-width: 250px;
    background-color: var(--bckgrd-clr);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 60px;
}

.content-section.vertical-layout .section-image,
.content-section.vertical-layout .section-text {
    width: 100%;
}

/* Eski yatay düzen (Kaldırılabilir eğer kullanmıyorsanız) */
.content-section.horizontal-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1 1 45%;
    background-color: var(--bckgrd-clr);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 60px;
}

.content-section.horizontal-layout .section-image {
    flex: 0 0 40%;
}

.content-section.horizontal-layout .section-text {
    flex: 1;
    padding: 20px;
    text-align: left;
}

/* Yeni eklenen dikey resim ve metin düzeni */
.content-section.vertical-image-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 45%;
    background-color: var(--bckgrd-clr);
    overflow: hidden;
    margin-bottom: 60px;
}

.content-section.vertical-image-text .section-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.content-section.vertical-image-text .section-text {
    width: 100%;
    padding: 20px;
    text-align: left;
}

.content-section.vertical-image-text .section-text h2 {
    color: var(--ikon-clr);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.content-section.vertical-image-text .section-text p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.content-section .section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-clr);
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 600;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--ikon-clr);
    transition: all 0.3s ease;
}
/* Resimlerin üzerine animasyon maskesi */
.image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
}

/* Animasyonlu Maske */
.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0; /* Maskenin başlangıç noktasını sağa kaydırıyoruz */
    width: 100%;
    height: 100%;
    background-color: var(--bckgrd-clr); /* Resmin arkasındaki renk */
    transform-origin: right; /* Animasyonun sağdan başlamasını sağlıyoruz */
    animation: openDoorRight 1s cubic-bezier(0.86, 0, 0.07, 1) both;
}

/* Animasyonun tamamlanması için resmin kendisini de animasyona dahil ediyoruz */
.image-wrapper img {
    opacity: 0;
    transition: opacity 0.5s ease 0.5s;
}

.dynamic-content.active .image-wrapper img {
    opacity: 1;
}

/* Kapı Açılma Animasyonu Tanımı (SAĞDAN SOLA) */
@keyframes openDoorRight {
    0% {
        transform: scaleX(1); /* Başlangıçta tam genişlikte (kapalı) */
    }
    100% {
        transform: scaleX(0); /* Sağa doğru kapanır (açık) */
    }
}

/* Her resim için farklı animasyon gecikmeleri */
.dynamic-content.active .content-section:nth-child(1) .image-wrapper::after {
    animation-delay: 0.2s;
}

.dynamic-content.active .content-section:nth-child(2) .image-wrapper::after {
    animation-delay: 0.4s;
}


/* Partner-message alanı için kenar boşlukları ekliyoruz */
.partner-message {
    background-color: #2f3146;
    color: #fff;
    padding: 100px 5% 100px;
    text-align: center;
    margin-top: 10px;
    box-sizing: border-box;
}

/* Diğer başlık ve ana stiller... */
.partner-header {
    text-align: center;
    padding: 0 20px 20px;
    color: #fff;
}
.partner-header h2 {
    font-size: 3em;
    font-weight: bold;
    color: #f7b731;
    margin-bottom: 10px;
}
.partner-header p {
    font-size: 1.2em;
    font-weight: 300;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}
.divider {
    width: 2px;
    height: 50px;
    background-color: #f7b731;
    margin: 20px auto 40px;
}

/* Kart Bölümü */
.partner-carousel {
    position: relative;
    overflow: visible;
    padding: 0 50px;
}
/* Carousel Container */
.carousel-container {
    display: flex;
    gap: 20px; /* Kartlar arası boşluk */
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-x: auto;
    padding: 0 20px; /* Sağ ve sol boşluklar */
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.carousel-container::-webkit-scrollbar {
    display: none;
}

/* Kartlar */
.carousel-card {
    flex: 0 0 calc((100% - 4*20px)/5); /* 5 kart web görünümünde */
    aspect-ratio: 1 / 1; /* Kare kart */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

/* Kart içeriği için düzenleme */
.card-content {
    width: 100%;
}
.card-icon-value {
    display: flex;
    align-items: center;
}
.card-icon-value i {
    font-size: 1em;
    margin-right: 15px;
    color: #fff;
}
.card-value {
    font-size: 1.5em;
    font-family: 'Times New Roman', Times, serif;
}
/* Çizgi için ayarlar */
.card-divider {
    width: 100%;
    height: 0.5px;
    background-color: #fff;
    border: none;
    margin: 10px 15px;
}
.card-description {
    font-size: 0.6em;
    font-weight: normal;
    line-height: 1.4;
    margin-top: 0;
}

/* Her kart için farklı arka plan renkleri (mevcut kodunuzdan alındı) */
.card-color-1 { background-color: #6251fa; }
.card-color-2 { background-color: #f73e3e; }
.card-color-3 { background-color: #ffb923; }
.card-color-4 { background-color: #1e453e; }
.card-color-5 { background-color: #6251fa; }
.card-color-6 { background-color: #f73e3e; }
.card-color-7 { background-color: #ffb923; }
.card-color-8 { background-color: #1e453e; }
.card-color-9 { background-color: #6251fa; }
.card-color-10 { background-color: #f73e3e; }

.carousel-button {
    position: absolute;
    bottom: -50px; /* Kartların hemen altına, görünür */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #2f3146;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    z-index: 50; /* partner-message içeriğinin üstünde, kartların üstünde */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

.prev-button {
    left: 48%;
    transform: translateX(-50%);
}

.next-button {
    left: 52%;
    transform: translateX(-50%);
}

.carousel-button:hover {
    background-color: #ddd;
}


/* Responsive ayarlamalar */
@media (max-width: 960px) {
    .carousel-button {
        bottom: -40px; /* biraz daha aşağı kaydır */
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
    .prev-button { left: 46%; }
    .next-button { left: 54%; }
}

@media (max-width: 576px) {
    .carousel-button {
        bottom: -30px; /* mobilde biraz daha aşağı */
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }
    .prev-button { left: 45%; }
    .next-button { left: 55%; }
}


.investor-relations { padding: 60px 20px; text-align: center; }
.ir-text h2 { font-size: 2.5rem; font-weight: bold; color: var(--impt-clr); font-family: 'Times New Roman', Times, serif; }
.ir-text h1 { font-size: 1.5rem; color: var(--text-clr); font-family: 'Times New Roman', Times, serif; margin-top: 10px; }
.ir-text p { font-size: 1rem; color: var(--text-clr); font-family: 'Times New Roman', Times, serif; max-width: 800px; margin: 0px auto 0; }



/* Kutuların Genel Stili */
/* Kutuların Genel Stili */
/* YENİ VE İYİLEŞTİRİLMİŞ MASAÜSTÜ KODU */
.primary-box {
    background-color: #f8f9fa; /* Hafif bir arka plan rengi ekleyerek bölümü görsel olarak ayırıyoruz */
    padding: 60px;             /* Her yönden eşit ve dengeli bir iç boşluk veriyoruz */
    margin-bottom: 20px !important;
    box-sizing: border-box;
    border-radius: 8px;        /* Köşeleri yumuşatarak daha modern bir görünüm sağlıyoruz */
    
    display: flex;             /* İçerik hizalaması için flexbox modelini aktive ediyoruz */
    flex-direction: column;    /* İçerikleri dikey (alt alta) sıralıyoruz */
    justify-content: center;   /* İçerikleri kutunun içinde DİKEYDE ortalıyoruz */
    
    /* height: 500px; -> BU SATIRI TAMAMEN SİLİYORUZ! 
       Yükseklik artık içeriğe göre otomatik olarak ayarlanacak. */
}

/* Bu bölümdeki ana butona biraz üst boşluk vererek yazılardan ayırıyoruz */
.primary-box .btn-general {
    margin-top: 25px; 
    align-self: flex-start; /* Butonun sola hizalı kalmasını ve tüm satırı kaplamamasını sağlar */
}

/* İkonlu butonları da biraz aşağı alarak daha ferah bir görünüm elde ediyoruz */
.primary-box .btn-addon-list {
    margin-top: 45px;
}
.bg-right {
    background-color: #2f3146; /* İstediğiniz mavi tonu */
    min-height: 100px; /* Minimum yükseklik */
    padding: 0 150px 0 50px; /* Üst:0, sağ:50px, alt:0, sol:150px */
    box-sizing: border-box; /* padding'in dışa taşmaması için */
    margin-right: 100px; /* Sağdan boşluk bırakır */
    margin-left: 100px;
}


.box-header {
    margin-bottom: 30px;
}

.box-header .title {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    display: block;
    padding-bottom: 10px;
}

.box-header .desc p {
    font-size: 14px;
    color: #6c757d;
}

/* Buton Stilleri */
.btn-general,
.btn-media-bordered {
    
    display: inline-flex;
    align-items: center;
    padding: 20px 30px;
    border-radius: none;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.btn-general {
    background-color: #007bff;
    color: #fff;
}

.btn-general:hover {
    background-color: #0056b3;
}

/* Buton Listesinin Yan Yana Sıralanması */
.btn-addon-list {
    display: flex; /* Öğeleri yan yana sıralar */
    flex-wrap: wrap; /* Gerekirse alt satıra geçmesini sağlar */
    gap: 30px; /* Öğeler arasına boşluk ekler */
    margin-top: 20px;
}

/* Her Bir Liste Öğesi İçin */
.btn-addon-list .list-item {
    flex: 1 1 0%; /* Öğelerin eşit genişlikte olmasını sağlar */
    margin-bottom: 30; /* Alt alta boşluğu kaldırır */
}

/* Her bir liste öğesi için ortak stil */
.list-item-stacked {
    flex: 1 1 0%; /* Öğelerin eşit genişlikte olmasını sağlar */
    margin-bottom: 20px; /* Alt boşluğu ekler */
}
/* İkonlu Buton Stilleri */
.btn-media-bordered-stacked {
    display: flex; /* İçeriği esnek bir şekilde düzenler */
    flex-direction: column; /* İkon ve yazıyı alt alta dizer */
    align-items: flex-start; /* İçeriği sola hizalar */
    gap: 30px;
    border: none;
    background-color: transparent;
    text-decoration: none;
    font-weight: normal;
    transition: transform 0.2s;
}



.btn-media-bordered-stacked i {
    font-size: 36px;
    margin-bottom: 10px; /* İkon ile yazı arasına boşluk ekler */
}

.btn-media-bordered-stacked .btn-content {
    display: flex;
    flex-direction: column;
}

.btn-media-bordered-stacked .text {
    font-size: 16px;
    font-weight: bold;
}

/* Buton Stilleri */
.btn-media-bordered {
    display: flex; /* İçeriği esnek bir şekilde düzenler */
    flex-direction: column; /* İkon ve yazıyı alt alta dizer */
    align-items: center; /* Yatayda ortalar */
    justify-content: center; /* Dikeyde ortalar */
    border: none;
    background-color: transparent;
    text-decoration: none;
    font-weight: normal;
    transition: transform 0.2s;
    text-align: center; /* Yazının ortalanmasını sağlar */
}


.btn-media-bordered .btn-content {
    display: flex;
    align-items: center;
}

.btn-media-bordered .btn-content .text {
    margin-right: auto; /* Yazıyı sola yaslar */
    
}
/* İkon ve Yazı Arasındaki Boşluk */
.btn-media-bordered i {
    margin-bottom: 50px; /* İkonun altında boşluk bırakır */
    font-size: 36px;
}
/* Yazı Rengi ve Alt Çizgi */
.btn-media-bordered .text {
    color: #000000 !important; /* Yazı rengi siyah */
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid currentColor; /* Alt çizgi, ikon rengini alır */
    padding-bottom: 5px; /* Yazı ile çizgi arasında boşluk */
    display: inline-block; /* Çizgi sadece yazı kadar genişler */
}


/* Renkler için özel sınıflar */
.emerald {
    border-color: #008080;
    color: #008080;
}





.yellow-sea {
    border-color: #f7b733;
    color: #f7b733;
}
/* Yazı altındaki çizgi ikon renginde olsun */
.emerald .text {
    border-bottom: 2px solid #008080;
}

.yellow-sea .text {
    border-bottom: 2px solid #f7b733;
}


/* 1) İkon rengini sadece ikonlara uygula (tercih edilen) --
   böylece konteynerin color ile tüm çocukları etkilemesi engellenir */
.emerald, .yellow-sea {
  /* konteynerin genel color özelliğini iptal edelim (isteğe bağlı) */
  color: inherit;
}
.emerald .icon, .emerald i { color: #008080 !important; }
.yellow-sea .icon, .yellow-sea i { color: #f7b733 !important; }

/* 2) Metinleri kesinlikle siyah yap (her durumda geçerli olması için geniş seçici) */
.btn-media-bordered .text,
.btn-media-bordered .text * ,
.btn-media-bordered .text a,
.btn-media-bordered .text a * {
  color: #000 !important;
}

/* 3) Alt çizgiyi başlangıçta transparent yap; sonra sınıfa göre renklendir */
.btn-media-bordered .text {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  /* opsiyonel: font ayarları */
  font-size: 16px;
  font-weight: 700;
}

/* 4) Sınıfa göre (ikon renginde) ince çizgi */
.emerald .btn-media-bordered .text,
.btn-media-bordered.emerald .text,
.emerald .text {
  border-bottom-color: #008080 !important;
}

.yellow-sea .btn-media-bordered .text,
.btn-media-bordered.yellow-sea .text,
.yellow-sea .text {
  border-bottom-color: #f7b733 !important;
}

/* Başlık stili */
.announcement-header .title {
    margin-top: 40px;
    color: #f7b731; /* Sarı */
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

/* Duyuru kartı arka plansız ve şeffaf */
.announcement-card {
    background-color: transparent; /* Arka plan kaldırıldı */
    color: #fff; /* Genel metin beyaz */
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-shadow: none; /* Kart gölgesi kaldırıldı */
    transition: transform 0.2s;
}

.announcement-card:hover {
    transform: translateY(-3px);
}

.announcement-card .card-body {
    padding: 20px;
}

/* Kart içeriği */
.announcement-card .date {
    font-size: 12px;
    color: #ccc; /* Açık gri tarih */
    margin-bottom: 5px;
    display: block;
}

.announcement-card .card-text p {
    font-size: 16px;
    font-weight: bold;
    color: #fff; /* Paragraf beyaz */
    margin-top: 0;
}

.announcement-card .btn-link {
margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    text-decoration: underline;
    color: #fff;
}
/* Ok ikonları */
.announcement-card .btn-link i {
    font-size: 14px;
}

.announcement-card .btn-link span {
    margin-right: 5px;
}

/* İkon Stilleri (Örnek) */
.icon {
    font-family: 'Font Awesome 5 Free'; /* Font Awesome veya benzeri bir font adı */
    font-weight: 900; /* Kullanılan fonta göre ayarlanmalı */
}

.icon-arrow-right:before {
    content: '\f061'; /* Font Awesome için örnek Unicode */
}

.icon-presentation-board:before {
    content: '\f84a';
}

.icon-column-chart:before {
    content: '\f080';
}

.icon-angle-left:before {
    content: '\f104';
}

.icon-angle-right:before {
    content: '\f105';
}

/* Owl Carousel Navigasyon Butonları */
.owl-nav {
    position: absolute;
    text-align: center;
    margin-top: 15px;
    z-index: 999;
}

.owl-nav button {
    position: relative; /* z-index'in çalışması için position değeri gereklidir */
    background: #f7b731;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -50px;
    pointer-events: auto; /* Tıklama olayını alması için */
    z-index: 999; /* Gerekli bir ihtiyati tedbir */
}

.owl-nav button:hover {
    background-color: #e6b800;
}
.owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.owl-nav button i {
    font-size: 20px;
    color: #333;
}

.owl-carousel .owl-stage {
    display: flex; /* Öğelerin yan yana sıralanmasını sağlar */
    flex-wrap: nowrap; /* Öğelerin bir sonraki satıra geçmesini engeller */
}


/* Owl Carousel - ikişerli gösterim */
.owl-carousel .owl-item {
    width: 50%; /* Her satırda 2 kart */
}

/* Navigasyon pozisyonu */
.owl-carousel .owl-nav {
    position: absolute;
    bottom: 150px; /* Bu değeri artırarak okları yukarı taşıyın */
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.owl-carousel .owl-nav button {
    pointer-events: auto; /* Tıklama olayını geri getirir */
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    background: #e0e0e0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s;
}
/* Bootstrap Sınıfları için Temel Ayarlar (Örnek) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

.col-lg-12 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-24 {
    flex: 0 0 100%;
    max-width: 100%;
}
/* Responsive */
@media (max-width: 768px) {
    .owl-carousel .owl-item {
        width: 100%; /* Mobilde 1 kart */
    }
    .owl-nav {
        bottom: -15px;
    }
}
@media (max-width: 768px) {
  /* Butonu mobil görünümde ortalamak için */
  .btn-general {
    display: inline-block; /* Butonu blok eleman yapar, tüm satırı kaplamasını sağlar */
    margin: 0 auto;
     /* Otomatik kenar boşlukları ile yatayda ortalar */
  }
}
/* Büyük ekranlarda 2 eşit sütun oluşturur */
@media (min-width: 992px) {
    .col-lg-12 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
/* Küçük ekranlarda her sütunu tam genişliğe getirir */
@media (max-width: 991px) {
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Responsive Stilleri */
@media (max-width: 960px) {
  h1, h2, h3 { font-size: smaller; }
  .slide-title { font-size: 1.2rem; }
  .slide-text { font-size: 0.8rem; }
  .main-content { flex-direction: column; padding: 40px 5%; }
  .content-section.vertical-layout { flex: 1 1 100%; margin-bottom: 20px; }
  .partner-message { padding: 60px 5%; }
  .partner-message h2 { font-size: 1.5rem; }
  .guncel-wrapper { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .guncel-content { flex: 1 1 calc(50% - 20px); min-width: 150px; padding-left: 10px; }
  .media-images { flex-direction: column; gap: 10px; }
  .media-images img { width: 100%; }
}
@media (max-width: 576px) {
    .slide-title { font-size: 1.2rem; }
    .slide-text { font-size: 0.8rem; }
}

/* Downmenubar Responsive */
@media (max-width: 960px) {
    .downmenubar-menu .menu-list { display: none; }
    .menu-toggle {
        display: block;
        min-height: 70px;
        background: var(--bckgrd-clr);
        border: 1px solid #ccc;
        border-radius: 5px 5px 0 0;
        margin: 30px 60px 0 60px;
        padding: 24px 28px;
        width: calc(100% - 120px);
        box-sizing: border-box;
        font-size: 20px;
        color: var(--text-clr);
        text-align: left;
        font-family: 'Times New Roman', Times, serif;
        font-weight: 600 !important;
    }
    .menu-toggle i {
        float: right;
        margin-left: 10px;
        font-size: 22px;
        transition: transform 0.3s;
    }
    .menu-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }
    .downmenubar-menu .menu-list.show {
        display: flex;
        flex-direction: column;
        border: 1px solid #ccc;
        border-top: none;
        border-radius: 0 0 5px 5px;
        background: var(--bckgrd-clr);
        position: absolute;
        top: 100px; /* margin-top + button height */
        left: 60px;
        width: calc(100% - 120px);
        z-index: 999;
    }
    .downmenubar-menu .menu-list.show li a {
        border-bottom: 1px solid #eee;
        padding: 20px 28px;
        font-size: 18px;
        font-family: 'Times New Roman', Times, serif;
        font-weight: 600 !important;
    }
    .downmenubar-menu .menu-list.show li a:hover {
        background-color: var(--ikon-clrsoft);
        color: var(--bckgrd-clr) !important;
    }
    .downmenubar-menu .menu-list.show li a.active {
        background-color: var(--ikon-clr);
        color: var(--bckgrd-clr) !important;
    }
    /* Responsive Kart Sayısı */
@media (max-width: 1400px) {
    .carousel-card {
        flex: 0 0 calc((100% - 3*20px)/4); /* 4 kart */
    }
}

@media (max-width: 1100px) {
    .carousel-card {
        flex: 0 0 calc((100% - 2*20px)/3); /* 3 kart */
    }
}

@media (max-width: 800px) {
    .carousel-card {
        flex: 0 0 calc((100% - 1*20px)/2); /* 2 kart */
    }
}

@media (max-width: 500px) {
    .carousel-card {
        flex: 0 0 100%; /* 1 kart */
    }
}
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    will-change: opacity;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
    transition: opacity 1s ease-in-out;
}

.slide-title,
.slide-text,
.slide-button {
    opacity: 0;
    transform: translateY(40px);
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    /* Delay changed from 1s to 0.5s */
    transition: opacity 0.5s ease-out 0.5s, transform 0.5s ease-out 0.5s;
}

.slide.active .slide-text {
    opacity: 1;
    transform: translateY(0);
    /* Delay changed from 1.2s to 0.6s */
    transition: opacity 0.5s ease-out 0.6s, transform 0.5s ease-out 0.6s;
}

.slide.active .slide-button {
    opacity: 1;
    transform: translateY(0);
    /* Delay changed from 1.4s to 0.7s */
    transition: opacity 0.5s ease-out 0.7s, transform 0.5s ease-out 0.7s;
}

.slide.active .slide-controls {
    opacity: 1;
    transform: translateY(0);
    /* Delay changed from 1.6s to 0.8s */
    transition: opacity 0.5s ease-out 0.8s, transform 0.5s ease-out 0.8s;
}
/* Diğer tüm home.css stilleri */
/* Swiper.js kütüphanesi için zorunlu CSS */
.king-royal-swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.king-royal-swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.king-royal-swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

/* Kendi stil tanımlamalarınız */
.king-royal-section {
  padding: 80px 0;
}

.king-royal-secondary-section {
  position: relative;
}

.king-royal-bg-sunset-orange {
  background-color: #1e453e; /* Renk kodunu ihtiyacınıza göre ayarlayabilirsiniz */
}

.king-royal-container {
  width: 100%;
  max-width: 1200px; /* Ya da mevcut konteyner genişliğiniz neyse onu kullanın */
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.king-royal-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.king-royal-col-lg-12 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Diğer responsive sınıfları, mevcut CSS'nizdeki grid yapısına göre düzenleyebilirsiniz */
/* .king-royal-col-24 { ... } */
/* .king-royal-justify-content-lg-end { ... } */

.king-royal-section-header {
  margin-bottom: 30px;
}

.king-royal-section-title {
    margin-bottom: 50px;
  font-size: 40px;
  font-weight: bold;
  color: #d99000; /* Renk uyumu için beyaz yaptım */
}

.king-royal-desc p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
}

.king-royal-btn-general {
  display: inline-block;
  padding: 12px 30px;
  
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.king-royal-bg-white {
  background-color: #d99000;
  color: #333;
}

.king-royal-primary-slider-wrap {
  position: relative;
}

.king-royal-item {
  display: block;
  text-decoration: none;
  color: #333;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

.king-royal-media-wrap {
  position: relative;
}

.king-royal-img-fluid {
  width: 100%;
  height: auto;
}

.king-royal-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  margin: 0;
  font-size: 24px;
}

.king-royal-slider-content {
  padding: 20px;
}

.king-royal-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.king-royal-btn-link {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #f75c02; /* Vurgu rengi */
}

.king-royal-icon {
  margin-left: 5px;
}

.king-royal-swiper-controls {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.king-royal-swiper-button-prev,
.king-royal-swiper-button-next {
  background-color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.king-royal-swiper-button-prev i,
.king-royal-swiper-button-next i {
  color: #333;
}
/* Medya Merkezi Bölümü */




.king-royal-media-desc {
    max-width: 700px; /* Açıklama metninin çok yayılmasını engellemek için */
    margin-bottom: 20px;
}


.king-royal-media-btn {
    display: inline-flex; /* Butonun içeriğine göre genişlemesi için */
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    color: #f75c02;
    transition: color 0.3s ease;
}

.king-royal-media-btn:hover {
    color: #d14902;
}

.king-royal-media-btn i {
    margin-left: 8px;
    font-size: 14px;
}


.king-royal-featured-item {
    width: calc(66.66% - 15px);
}

/* =========================================================== */
/* ===== ADIM 3: MEDYA MERKEZİ - ŞIK YAN HABER LİSTESİ ===== */
/* =========================================================== */
/* Ana Sayfa Medya Merkezi - Sağ Liste Stilleri */
.king-royal-media-list {
    width: calc(40% - 15px);
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* === DEĞİŞTİRİLEN KOD BAŞLANGICI === */
    height: 480px;      /* max-height yerine height kullanıyoruz */
    overflow-y: auto;
    padding-right: 15px;
    padding-left: 5px;
    /* === DEĞİŞTİRİLEN KOD SONU === */
}

.king-royal-media-list .king-royal-media-item {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: border-color 0.3s; /* Hover efekti için geçiş eklendi */
}

.king-royal-media-list .king-royal-media-item:hover {
    border-color: #f7b731; /* Vurgu rengiyle çerçeve */
}

.king-royal-media-list .king-royal-media-item:hover .king-royal-media-item-title {
    color: #c28e20; /* Başlık rengini de vurgu rengine yakın yapabiliriz */
}

.king-royal-media-list .king-royal-media-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    flex-shrink: 0;
}

.king-royal-media-list .king-royal-media-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1; /* Esnek büyüme eklendi */
}

.king-royal-media-list .king-royal-media-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.king-royal-media-list .king-royal-media-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a2530;
    line-height: 1.4;
    transition: color 0.3s; /* Hover efekti için geçiş eklendi */
}

/* ============================================================= */
/* ===== MEDYA MERKEZİ - ÖNE ÇIKAN KART ===== */
/* ============================================================= */

.king-royal-media-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start; /* <<-- BU SATIRI EKLEYİN -->> */
}

.king-royal-media-item.king-royal-featured-item {
    width: calc(60% - 15px);
    position: relative;
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 480px;
}

.king-royal-featured-item:hover .king-royal-media-img {
    transform: scale(1.05);
}

.king-royal-featured-item:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}

.king-royal-featured-item .king-royal-media-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.king-royal-featured-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

.king-royal-featured-item .king-royal-media-info {
    position: relative;
    z-index: 3;
    padding: 30px;
}

.king-royal-featured-item .king-royal-media-date {
    font-size: 14px;
    font-weight: 600;
    color: #f7b731;
    margin-bottom: 8px;
}

.king-royal-featured-item .king-royal-media-item-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

/* ============================================================= */
/* ===== GENEL VE RESPONSIVE STİLLER ===== */
/* ============================================================= */

@media (max-width: 992px) {
    .king-royal-media-content {
        flex-direction: column;
    }
    .king-royal-featured-item,
    .king-royal-media-list {
        width: 100%;
    }
    /* Mobilde kaydırma alanının yüksekliğini dinamik yapalım */
    .king-royal-media-list {
        max-height: 350px; /* <<-- BU SATIRI TAMAMEN SİLİN -->> */
    }
}

@media (max-width: 768px) {
    .king-royal-media-title {
        font-size: 36px;
    }
}

.primary-box, .bg-right {
    position: relative;
}
.primary-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d99000;
    transform: skewX(-5deg) translateX(50%);
    z-index: -1;
}

.bg-right::after {
    background-color: #1e453e;
}

@media (max-width: 991px) {
    .primary-box::after {
        transform: none;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
}
@media (max-width: 768px) {
    .btn-general {
        display: inline-block;
        margin: 0 auto;
    }
}
@media (min-width: 992px) {
    .col-lg-12 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 991px) {
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 960px) {
    h1, h2, h3 { font-size: smaller; }
    .slide-title { font-size: 1.2rem; }
    .slide-text { font-size: 0.8rem; }
    .main-content { flex-direction: column; padding: 40px 5%; }
    .content-section.vertical-layout { flex: 1 1 100%; margin-bottom: 20px; }
    .partner-message { padding: 60px 5%; }
    .partner-message h2 { font-size: 1.5rem; }
    .guncel-wrapper { flex-wrap: wrap; justify-content: center; gap: 20px; }
    .guncel-content { flex: 1 1 calc(50% - 20px); min-width: 150px; padding-left: 10px; }
    .media-images { flex-direction: column; gap: 10px; }
    .media-images img { width: 100%; }
}
@media (max-width: 576px) {
    .slide-title { font-size: 1.2rem; }
    .slide-text { font-size: 0.8rem; }
}

/* Downmenubar Responsive */
@media (max-width: 960px) {
    .downmenubar-menu .menu-list { display: none; }
    .menu-toggle {
        display: block;
        min-height: 70px;
        background: var(--bckgrd-clr);
        border: 1px solid #ccc;
        border-radius: 5px 5px 0 0;
        margin: 30px 60px 0 60px;
        padding: 24px 28px;
        width: calc(100% - 120px);
        box-sizing: border-box;
        font-size: 20px;
        color: var(--text-clr);
        text-align: left;
        font-family: 'Times New Roman', Times, serif;
        font-weight: 600 !important;
    }
    .menu-toggle i {
        float: right;
        margin-left: 10px;
        font-size: 22px;
        transition: transform 0.3s;
    }
    .menu-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }
    .downmenubar-menu .menu-list.show {
        display: flex;
        flex-direction: column;
        border: 1px solid #ccc;
        border-top: none;
        border-radius: 0 0 5px 5px;
        background: var(--bckgrd-clr);
        position: absolute;
        top: 100px;
        left: 60px;
        width: calc(100% - 120px);
        z-index: 999;
    }
    .downmenubar-menu .menu-list.show li a {
        border-bottom: 1px solid #eee;
        padding: 20px 28px;
        font-size: 18px;
        font-family: 'Times New Roman', Times, serif;
        font-weight: 600 !important;
    }
    .downmenubar-menu .menu-list.show li a:hover {
        background-color: var(--ikon-clrsoft);
        color: var(--bckgrd-clr) !important;
    }
    .downmenubar-menu .menu-list.show li a.active {
        background-color: var(--ikon-clr);
        color: var(--bckgrd-clr) !important;
    }
}

/* Partner Carousel Responsive Kart Sayısı */
@media (max-width: 1400px) {
    .carousel-card {
        flex: 0 0 calc((100% - 3*20px)/4); /* 4 kart */
    }
}
@media (max-width: 1100px) {
    .carousel-card {
        flex: 0 0 calc((100% - 2*20px)/3); /* 3 kart */
    }
}
@media (max-width: 800px) {
    .carousel-card {
        flex: 0 0 calc((100% - 1*20px)/2); /* 2 kart */
    }
}
@media (max-width: 500px) {
    .carousel-card {
        flex: 0 0 100%; /* 1 kart */
    }
}

/* === OPSİYONEL: GÜZEL KAYDIRMA ÇUBUĞU === */
/* Bu kodu dosyanın en sonuna ekleyebilirsiniz. Chrome, Edge, Safari'de çalışır. */
.king-royal-media-list::-webkit-scrollbar {
  width: 8px;
}
.king-royal-media-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.king-royal-media-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.king-royal-media-list::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* =============================================== */
/* ===== MOBİL GÖRÜNÜM DÜZELTMELERİ BAŞLANGIÇ ===== */
/* =============================================== */

/* 991px ve altındaki tüm ekranlar için geçerli olacak (Tabletler ve Telefonlar) */
@media (max-width: 991px) {

    /* --- 1. "Neden King Royal Holding?" Kısmını Ortalama --- */

    /* Bu kutunun masaüstündeki büyük yan boşluklarını mobil için sıfırlıyoruz */
    .primary-box {
        padding: 40px 20px;       /* Üstten ve alttan 40px, yanlardan 20px boşluk yeterli */
        display: flex;            /* İçeriklerini ortalamak için flex yapısını kullanıyoruz */
        flex-direction: column;   /* Öğeleri alt alta sıralıyoruz */
        align-items: center;      /* Yatayda ortalıyoruz */
        text-align: center;       /* Tüm metinlerin ortalanmasını sağlıyoruz */
        height: auto;             /* Yüksekliği sabit olmaktan çıkarıp içeriğe göre ayarlanmasını sağlıyoruz */
        margin-bottom: 20px !important; /* Diğer kutu ile arasına boşluk koyuyoruz */
    }

    /* Kutunun içindeki buton listesini de ortalıyoruz */
 

    /* --- 2. "Son Duyurular" Kısmını Daha Şık Hale Getirme --- */

    /* Duyuru kutusunun masaüstündeki büyük yan boşluklarını ve margin'lerini sıfırlıyoruz */
    .bg-right {
        padding: 40px 20px;
        margin: 0;
        min-height: auto; /* Sabit yüksekliği kaldırıyoruz */
    }
    
    /* Mobil için başlığı biraz küçültüyoruz */
    .announcement-header .title {
        font-size: 2.2rem;
        margin-top: 0;
    }

    /* Duyuru kartlarına modern bir görünüm kazandırıyoruz */
    .announcement-card {
        background-color: rgba(255, 255, 255, 0.05); /* Hafif şeffaf bir arka plan */
        border: 1px solid rgba(255, 255, 255, 0.1);  /* İnce bir çerçeve */
        border-radius: 12px;                        /* Köşeleri yuvarlatıyoruz */
        padding: 25px;
        margin: 0 10px; /* Kartlar arasında yatay boşluk */
    }

    /* Carousel oklarının (navigasyon) konumunu düzeltiyoruz */
    .owl-carousel .owl-nav {
        position: static;      /* Mutlak konumlandırmayı kaldırıp normal akışa dahil ediyoruz */
        margin-top: 25px;      /* Kartların altına boşluk bırakarak yerleştiriyoruz */
        padding-bottom: 20px;  /* Altına biraz daha boşluk ekliyoruz */
    }

    /* Mobil için Owl Carousel'in her slaytta 1 kart göstermesini sağlıyoruz */
    .owl-carousel .owl-item {
        width: 100%;
    }
}


/* =============================================== */
/* ===== MOBİL GÖRÜNÜM DÜZELTMELERİ BİTİŞ ===== */
/* =============================================== */

/* ====================================================== */
/* ===== ADIM 5: MEDYA MERKEZİ - KUSURSUZ MOBİL UYUM ===== */
/* ====================================================== */

@media (max-width: 992px) {
    .king-royal-media-content {
        flex-direction: column; /* Tüm kartları alt alta sırala */
    }

    .king-royal-media-item.king-royal-featured-item,
    .king-royal-media-list {
        width: 100%; /* Tüm genişliği kaplasınlar */
    }

    .king-royal-featured-item {
        min-height: 400px; /* Mobilde yüksekliği biraz azaltalım */
    }

    .king-royal-featured-item .king-royal-media-item-title {
        font-size: 22px; /* Başlık fontunu küçültelim */
    }
}

@media (max-width: 576px) {
    .king-royal-media-title {
        font-size: 32px; /* En küçük ekranlar için başlık */
    }

    .king-royal-featured-item {
        min-height: 350px;
    }

    .king-royal-featured-item .king-royal-media-info {
        padding: 20px; /* İç boşluğu azaltalım */
    }
    
    .king-royal-featured-item .king-royal-media-item-title {
        font-size: 18px;
    }

    .king-royal-media-list .king-royal-media-item {
        flex-direction: column; /* En küçük ekranlarda resim üste, yazı alta gelsin */
    }

    .king-royal-media-list .king-royal-media-img {
        width: 100%;
        height: 150px; /* Resim yüksekliğini ayarlayalım */
    }
    
}

/* ======================================================= */
/* ===== 'HABERİNİZ OLSUN' BÖLÜMÜ MOBİL UYUM KODLARI ===== */
/* ======================================================= */

/* Tablet ve daha küçük ekranlar için (992px genellikle bu tür iki sütunlu yapılar için iyi bir kırılma noktasıdır) */
@media (max-width: 992px) {

    /* Ana taşıyıcıyı esnek ve dikey hale getiriyoruz */
    .newsletter-section {
        flex-direction: column; /* Sütunları alt alta sırala! En önemli kural bu. */
        gap: 40px;              /* Alt alta geldiklerinde aralarına dikey boşluk ekle */
        padding: 40px 20px;     /* Bölümün genel iç boşluğunu mobil için ayarla */
    }

    /* Metin ve form içeriğini ortalıyoruz, mobilde daha iyi görünür */
    .newsletter-content {
        text-align: center;
        max-width: 100%; /* Masaüstünden kalan genişlik kısıtlamalarını kaldır */
        width: 100%;
    }

    /* Başlık mobil için biraz büyük olabilir, küçültelim */
    .newsletter-content .section-title {
        font-size: 2.2rem; /* Daha uygun bir başlık boyutu */
    }

    /* E-posta giriş alanını ve butonu daha kullanışlı hale getirelim */
    .letter-form .form-group {
        display: flex;
        flex-direction: column; /* Butonu input'un altına al */
        align-items: center;    /* Ortala */
        gap: 15px;              /* Aralarına boşluk ekle */
    }

    .letter-form .form-control {
        width: 100%; /* E-posta alanı tam genişlik olsun */
        max-width: 400px; /* Çok fazla genişlemesini engelle */
        text-align: center; /* İçindeki yazıyı ortala */
    }

    .letter-form .btn {
        width: 100%; /* Buton da tam genişlik olsun */
        max-width: 400px;
    }
    
    /* Onay kutusunun metnini sola yaslayarak daha okunaklı yapıyoruz */
    .checkbox-wrapper {
         text-align: left;
         max-width: 400px;      /* Form ile aynı genişlikte */
         margin: 20px auto 0;   /* Üstten boşluk ve yatayda ortalama */
    }

    /* Görsel slider'ın genişliğini ayarlıyoruz */
    .newsletter-slider {
        width: 100%;        /* Tam genişliği kaplasın */
        max-width: 500px;   /* Çok büyük olmasını engelle */
        margin: 0 auto;     /* Yatayda ortala */
        order: -1;          /* Görselin formun üstüne çıkmasını sağlar (isteğe bağlı) */
    }
}
