/* ==========================================
   Yeni Tasarım Ana Stilleri
   ========================================== */

/* Renk Paleti ve Değişkenler */
:root {
    --primary-color: #1a1a1a;
    /* Siyaha çok yakın ton */
    --secondary-color: #F5A010;
    /* Özel Aksan Rengi (#F5A010) */
    --bg-light: #f8f9fa;
    --text-dark: #333333;
    --text-gray: #555555;
    --text-light: #ffffff;
}

/* Genel Ayarlar */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Kapsayıcı (Container) Ayarları */
.container {
    max-width: 1400px !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* ==========================================
   Üst Şerit Stilleri
   ========================================== */
.ust-serit {
    position: relative;
    z-index: 100;
    /* Kavislerin ve diğer elemanların her zaman üstünde kalmasını sağlar */
    background-color: #ffffff;
    padding: 10px 0;
}

/* Sol İletişim Bilgileri */
.ust-serit .iletisim-bilgileri ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ust-serit .iletisim-bilgileri ul li {
    display: flex;
    align-items: center;
}

.ust-serit .iletisim-bilgileri ul li a,
.ust-serit .iletisim-bilgileri ul li span {
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.ust-serit .iletisim-bilgileri ul li a:hover {
    color: var(--secondary-color);
}

.ust-serit .iletisim-bilgileri ul li i {
    color: var(--secondary-color);
    font-size: 14px;
}

/* Sağ Sosyal Medya İkonları */
.ust-serit .sosyal-medya ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.ust-serit .sosyal-medya ul li a {
    color: #555555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.ust-serit .sosyal-medya ul li a:hover {
    color: var(--secondary-color);
}

/* Mobil Uyumluluk */
@media (max-width: 767px) {
    .ust-serit .sosyal-medya ul {
        justify-content: center;
        margin-top: 10px;
    }

    .ust-serit .iletisim-bilgileri ul {
        justify-content: center;
    }
}

/* ==========================================
   Ana Navigasyon Stilleri
   ========================================== */
.govde {
    position: relative;
}

/* Kullanıcının belirlediği özel yuvarlak (Sadece Ana Sayfada) */
.main-controller .govde::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0px;
    width: 140px;
    height: 140px;
    border-radius: 70px 0 0 0;
    /* Sol üst köşe 70px yuvarlatıldı */
    background-color: transparent;
    /* İçi şeffaf */

    /* Dışını beyaz yapmak için kullanılan gölge/dolgu tekniği (kavis ölçüsüne göre ayarlandı) */
    box-shadow: -70px -70px 0 70px #ffffff;

    /* İsteğe bağlı: Üzerine denk geldiği logoya/menüye tıklanmasını engellememesi için */
    pointer-events: none;
    z-index: 50;
}

/* Sağ üst köşe için ters kavis (Sadece Ana Sayfada) */
.main-controller .govde::after {
    content: '';
    position: absolute;
    top: -50%;
    right: 0px;
    /* Kullanıcı talebi üzerine sağa (0px) yapıştırıldı */
    width: 140px;
    height: 140px;
    border-radius: 0 70px 0 0;
    /* Sağ üst köşe 70px */
    background-color: transparent;

    /* Dışını sağ tarafa doğru beyaz dolduran gölge */
    box-shadow: 70px -70px 0 70px #ffffff;

    pointer-events: none;
    z-index: 50;
}

/* 1400px'den küçük ekranlar (Laptop/Tablet) için kavis boyutları küçültüldü */
@media (max-width: 1400px) {
    .main-controller .govde::before {
        width: 100px;
        height: 100px;
        border-radius: 50px 0 0 0;
        box-shadow: -50px -50px 0 50px #ffffff;
    }

    .main-controller .govde::after {
        width: 100px;
        height: 100px;
        border-radius: 0 50px 0 0;
        box-shadow: 50px -50px 0 50px #ffffff;
    }
}

/* 768px'den küçük ekranlar (Mobil) için kavis boyutları daha da küçültüldü */
@media (max-width: 768px) {
    .main-controller .govde::before {
        width: 60px;
        height: 60px;
        border-radius: 30px 0 0 0;
        box-shadow: -30px -30px 0 30px #ffffff;
    }

    .main-controller .govde::after {
        width: 60px;
        height: 60px;
        border-radius: 0 30px 0 0;
        box-shadow: 30px -30px 0 30px #ffffff;
    }
}

.ana-navigasyon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 20px 0;
    background-color: transparent;
}

/* Sol Logo Alanı (Geçici) */
.logo-alani .gecici-logo {
    width: 300px;
    height: 80px;
    background-color: red;
}

/* Orta Menü */
.orta-menu {
    text-align: center;
    height: 60px;
}

.orta-menu>ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-width: 300px;
}

.orta-menu>ul>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 25px;
    perspective: 1000px;
}

.orta-menu ul li:last-child {
    margin-right: 0;
}

.orta-menu>ul>li>a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: block;
    opacity: 1;
    position: relative;
    white-space: nowrap;

}

.orta-menu>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.orta-menu>ul>li>a:hover {
    color: var(--secondary-color);
}

.orta-menu>ul>li>a:hover::after {
    transform: translateX(-50%) scale(1);
}

/* Modern & Kurumsal Alt Menü */
.orta-menu ul li ul {
    position: absolute;
    top: 100%;
    left: -10px;
    width: max-content;
    min-width: 300px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    border-top: 3px solid var(--secondary-color);
    padding: 15px 0 !important;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transform: rotateX(-30deg) translateY(10px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.orta-menu ul li ul li {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Sıralı Belirme (Staggered Animation) */
.orta-menu>ul>li:hover>ul>li {
    opacity: 1;
    transform: translateY(0);
}

.orta-menu>ul>li:hover>ul>li:nth-child(1) {
    transition-delay: 0.1s;
}

.orta-menu>ul>li:hover>ul>li:nth-child(2) {
    transition-delay: 0.15s;
}

.orta-menu>ul>li:hover>ul>li:nth-child(3) {
    transition-delay: 0.2s;
}

.orta-menu>ul>li:hover>ul>li:nth-child(4) {
    transition-delay: 0.25s;
}

.orta-menu ul li ul li a {
    padding: 10px 25px 10px 20px;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: 0.5px;
    display: flex !important;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    width: 100%;
    position: relative;
    text-decoration: none !important;
    white-space: nowrap;
}

.orta-menu ul li ul li a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 30px !important;
    padding-right: 15px !important;
}

/* Yuvarlak hover marker */
.orta-menu ul li ul li a::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    width: 4px;
    height: 4px;
    min-width: 4px;
    min-height: 4px;
    aspect-ratio: 1 / 1;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(-50%) scale(0);
    display: block;
    pointer-events: none;
}

.orta-menu ul li ul li a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.orta-menu>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0) translateY(0);
}

/* Sağ İletişim Alanı */
.sag-iletisim {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.sag-iletisim .iletisim-ikonu {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f5c760, var(--secondary-color));
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    animation: ikon-patlama 2s infinite;
}

@keyframes ikon-patlama {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 161, 58, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(216, 161, 58, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(216, 161, 58, 0);
    }
}

.sag-iletisim .iletisim-metni {
    display: flex;
    flex-direction: column;
}

.sag-iletisim .iletisim-metni span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    margin-bottom: 3px;
}

.sag-iletisim .iletisim-metni a {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1;
    transition: color 0.3s ease;
}

.sag-iletisim .iletisim-metni a:hover {
    color: var(--secondary-color);
}

/* ==========================================
   Modern & Aşırı Kurumsal Asimetrik Footer
   ========================================== */
.modern-kurumsal-footer {
    background-color: #050505;
    color: #ffffff;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta-alani {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dev-baslik {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin: 0;
    color: #ffffff;
    line-height: 1;
}

.btn-dev-iletisim {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-top: 20px;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
}

.btn-dev-iletisim .btn-metin {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-dev-iletisim .btn-ikon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-dev-iletisim:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-dev-iletisim:hover .btn-metin {
    color: #000;
}

.btn-dev-iletisim:hover .btn-ikon {
    background-color: #000;
    color: var(--secondary-color);
    transform: rotate(-45deg);
}

.footer-grid-alani {}

.sol-bilgi-paneli {
    padding: 60px 40px 60px 0;
}

@media (max-width: 991px) {
    .sol-bilgi-paneli {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 0;
    }
}

.footer-marka {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 1px;
}

.minimal-aciklama {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 90%;
    margin: 0;
}

.panel-kutu {
    padding: 60px 40px;
}

@media (max-width: 767px) {
    .panel-kutu {
        padding: 40px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.border-sag {}

@media (max-width: 767px) {
    .border-sag {
        border-right: none;
    }
}

.panel-etiket {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}

.panel-deger-link {
    display: block;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-weight: 700;
}

.panel-deger-link:hover {
    color: var(--secondary-color);
}

.minimal-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.minimal-liste li {
    margin-bottom: 15px;
}

.minimal-liste li a {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.minimal-liste li a:hover {
    color: var(--secondary-color);
}

.footer-minimal-taban {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.telif-hakki {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.sosyal-minimal {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.sosyal-minimal a {
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.sosyal-minimal a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.yasal-linkler {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .yasal-linkler {
        justify-content: flex-start;
    }
}

.yasal-linkler a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.yasal-linkler a:hover {
    color: #ffffff;
}

/* ==========================================
   Slider (Manşet) Alanı Stilleri
   ========================================== */
.slider {
    width: 100%;
    height: 780px;
    background-color: #000000;
    overflow: hidden;
    position: relative;
}

.slider .liste,
.slider .item {
    height: 780px !important;
}

.slider .item {
    position: relative;
    overflow: hidden;
}

.slider .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.slider .gecis {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 75%);
    z-index: 1;
}

.slider .icerik {
    height: 750px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 10%;
    position: relative;
    z-index: 2;
}

.slider .metin {
    max-width: 900px;
    color: #ffffff;
}

.slider .metin h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.slider .metin p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0;
    padding-left: 25px;
    border-left: 3px solid var(--secondary-color);
    opacity: 0;
    /* Animasyon başlayana kadar gizli */
}

.slider .metin .submit-btnlar {
    display: flex;
    gap: 30px;
    margin-top: 55px;
    opacity: 0;
}

.slider .metin .submit-btnlar a {
    position: relative;
    padding: 22px 55px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    z-index: 1;
}

.slider .metin .submit-btnlar a {
    position: relative;
    padding: 22px 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.slider .metin .submit-btnlar a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
}

.slider .metin .submit-btnlar a:first-child {
    background: rgba(216, 161, 58, 0.1);
    border-color: rgba(216, 161, 58, 0.3);
}

.slider .metin .submit-btnlar a:hover {
    color: #000000;
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateX(15px);
}

.slider .metin .submit-btnlar a:hover::before {
    width: 100%;
    z-index: -1;
}

.slider .metin .submit-btnlar a:last-child:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Slide Animasyonları */
.slider .owl-item.active .metin h2 {
    animation: fadeInLeft 1s ease both 0.5s;
}

.slider .owl-item.active .metin p {
    animation: fadeInLeft 1s ease both 0.8s;
}

.slider .owl-item.active .metin .submit-btnlar {
    animation: fadeInLeft 1s ease both 1.1s;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Owl Carousel Dots Özelleştirme */
.slider .liste.owl-theme .owl-dots {
    position: absolute;
    bottom: 60px;
    right: 50px;
    margin: 0;
}

.slider .liste.owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 5px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.slider .liste.owl-theme .owl-dots .owl-dot.active span {
    background: #ffffff;
    width: 50px;
}

/* Aşağı Kaydır Butonu */
.asagi-kaydir-alani {
    position: absolute;
    bottom: 80px;
    /* Alttan bindirme yapan özellik kutularının altında ezilmemesi için yukarı taşındı */
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.asagi-kaydir-alani button {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
    width: 24px;
    background-color: transparent;
    cursor: pointer;
    border: 2px solid #ffffff;
    border-radius: 20px;
    outline: none;
    transition: all 0.3s ease;
}

.asagi-kaydir-alani button::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: asagi-kaydir-anim 2s infinite;
}

@keyframes asagi-kaydir-anim {
    0% {
        top: 6px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        top: 22px;
        opacity: 1;
    }

    100% {
        top: 26px;
        opacity: 0;
    }
}

.asagi-kaydir-alani button:hover {
    border-color: var(--secondary-color);
}

.asagi-kaydir-alani button:hover::before {
    background-color: var(--secondary-color);
}

/* ==========================================
   Anasayfa Hakkımızda Bölümü
   ========================================== */
.anasayfa-hakkimizda {
    padding: 120px 0;
    background-color: #ffffff;
}

.hakkimizda-icerik span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.hakkimizda-icerik h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hakkimizda-icerik p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 35px;
    padding-left: 30px;
    border-left: 3px solid var(--secondary-color);
    margin-left: 5px;
}

.hakkimizda-icerik a {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hakkimizda-icerik a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(216, 161, 58, 0.2);
}

/* Sağ Görsel Kompozisyon - Dikey & Minimalist */
.hakkimizda-gorsel-kompozisyon {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 20px;
}

.ana-cerceve {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 550px;
    background: linear-gradient(135deg, var(--primary-color), #333333);
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.yan-cerceve {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 220px;
    height: 320px;
    background: linear-gradient(135deg, var(--secondary-color), #f5c760);
    border-radius: 10px;
    overflow: hidden;
    z-index: 3;
    border: 0px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Hover efektleri kaldırıldı, parallax için hazırlandı */
.ana-cerceve,
.yan-cerceve {
    will-change: transform;
    transition: transform 0.1s linear;
}

.dekor-halka {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 40px solid rgba(216, 161, 58, 0.05);
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 1199px) {
    .hakkimizda-gorsel-kompozisyon {
        height: 500px;
    }

    .ana-cerceve {
        width: 260px;
        height: 400px;
    }

    .yan-cerceve {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 991px) {
    .anasayfa-hakkimizda {
        padding: 80px 0;
    }

    .hakkimizda-gorsel-kompozisyon {
        margin-top: 50px;
    }
}

/* ==========================================
   Anasayfa Haberler Bölümü
   ========================================== */
.anasayfa-haberler {
    padding: 100px 0;
    background-color: #ffffff;
}

.haberler-baslik {
    text-align: center;
    margin-bottom: 60px;
}

.haberler-baslik span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.haberler-baslik h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.haber-kart {
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.haber-kart:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.08);
}

.haber-gorsel {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.haber-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.haber-kart:hover .haber-gorsel img {
    transform: scale(1.1);
}

.haber-icerik {
    padding: 30px;
}

.haber-icerik h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.haber-icerik p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.haber-icerik a {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    border: 1px solid #eeeeee;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.haber-icerik a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* ==========================================
   Anasayfa Slogan Alanı
   ========================================== */
.anasayfa-slogan-alani {
    padding: 150px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.slogan-icerik h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    max-width: 100%;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.slogan-icerik p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 100%;
    line-height: 1.8;
    padding: 0 10%;
    position: relative;
    z-index: 2;
}

/* Arka plana hafif bir dekoratif unsur */
.anasayfa-slogan-alani::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(216, 161, 58, 0.1) 0%, rgba(216, 161, 58, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* ==========================================
   İç Sayfa Başlık Alanı (Page Title)
   ========================================== */
.page-header {
    background-color: #000000;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    width: calc(100% - 10px);
    margin: 0 5px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

/* İç Sayfa Gövdesi */
.sayfa {
    display: block;
    padding: 100px 0px;
}

/* Sayfa Detay Metinleri */
.sayfadetay p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ==========================================
   İletişim Widget (.wiletisim)
   ========================================== */
.wiletisim {
    background: #121212;
    border: none;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    /* Modern, derin gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wiletisim:hover {
    transform: translateY(-5px);
    /* Üzerine gelince çok hafif yukarı kalkma efekti */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.wiletisim span {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 20px;
}

.wiletisim p {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
    color: #aaaaaa;
    margin-bottom: 25px;
}

.wiletisim ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wiletisim ul li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 12px;
    /* Elemanlar birbirine daha yakınlaştı */
    font-weight: 300;
    transition: transform 0.3s ease;
}

.wiletisim ul li:hover {
    transform: translateX(5px);
    /* Üzerine gelindiğinde yazının hafifçe sağa kayması */
}

.wiletisim ul li:last-child {
    margin-bottom: 0;
}

.wiletisim ul li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    /* Kutu boyutu küçültüldü */
    height: 32px;
    flex-shrink: 0;
    background: rgba(216, 161, 58, 0.1);
    color: #d8a13a;
    font-size: 0.9rem;
    /* İkon boyutu küçültüldü */
    margin-right: 12px;
    /* Metne biraz daha yaklaştırıldı */
    border-radius: 8px;
    /* Daha küçük kavise geçildi */
    transition: all 0.3s ease;
}

/* Hover Efekti: Satırın üzerine gelindiğinde ikon kutusu tam renge bürünsün ve parlasın */
.wiletisim ul li:hover i {
    background: #d8a13a;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(216, 161, 58, 0.4);
}

.wiletisim ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wiletisim ul li a:hover {
    color: #ffffff;
}

.header-inner {
    text-align: center;
}

.header-inner h1 {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 5px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.breadcrumb ul {
    list-style: none;
    padding: 8px 25px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.breadcrumb ul li {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    letter-spacing: 0.3px;
}

.breadcrumb ul li:not(:last-child)::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin: 0 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb ul li a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
}

.breadcrumb ul li a i {
    font-size: 13px;
    color: var(--secondary-color) !important;
}

.breadcrumb ul li a:hover {
    opacity: 0.7;
    color: #ffffff !important;
}

.breadcrumb ul li span {
    color: #ffffff !important;
    font-weight: 700;
}

/* ==========================================
   Footer Legal Bar (RWT) - Kural 22 & 23 Uyumu
   ========================================== */
.rwt-legal-bar {
    background-color: #04070f;
    width: 100%;
    padding: 25px 0 20px;
    font-family: inherit;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.rwt-legal-bar p,
.rwt-legal-bar span,
.rwt-legal-bar a {
    margin: 0;
    padding: 0;
    font-weight: 600 !important;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
}

.rwt-legal-bar a:hover {
    opacity: 0.8;
}

.rwt-credit-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rwt-credit-group a:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 2px;
}

.rwt-credit-group a:last-child::before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 4px;
}

.rwt-credit-group img {
    width: auto;
    height: 22px;
    object-fit: contain;
    display: block;
    position: relative;
    top: -2px;
}

/* ==========================================
   Mobil Ekran Düzenlemeleri (Temiz ve Kararlı Yapı)
   ========================================== */
@media (max-width: 991px) {

    /* Gizlenecek Masaüstü Alanları */
    .ust-serit,
    .orta-menu,
    .sag-iletisim {
        display: none !important;
    }

    /* Header ve Navigasyon - Logonun Görünürlüğünü Garanti Altına Alır */
    header.ana-navigasyon {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: transparent !important;
        z-index: 5000 !important;
        display: block !important;
        padding: 15px 0 !important;
    }

    .govde {
        position: relative;
        z-index: 5001 !important;
    }

    .logo-alani {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 5002 !important;
    }

    .logo-alani img {
        display: block !important;
        max-height: 45px !important;
        width: auto !important;
        opacity: 1 !important;
    }

    /* Slider Mobil Ayarları */
    .slider,
    .slider .liste,
    .slider .owl-stage-outer,
    .slider .owl-stage,
    .slider .item,
    .slider .icerik {
        height: 500px !important;
    }

    .slider .icerik {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .slider .metin {
        max-width: 90% !important;
        margin: 0 auto;
    }

    .slider .metin h2 {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .slider .metin p {
        padding: 0 !important;
        border: none !important;
        font-size: 16px !important;
        margin: 0 auto !important;
        line-height: 1.5;
    }

    /* Mobil Menü Bileşenleri (Drawer & Overlay) */
    /* Mobil Menü Bileşenleri (Drawer & Overlay) */
    .mobil-menu-maske {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-color: rgba(0, 0, 0, 0.8) !important;
        z-index: 8000 !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .mobil-menu {
        position: fixed !important;
        top: 0 !important;
        left: -80% !important;
        width: 80% !important;
        height: 100% !important;
        background-color: #0a0a0a !important;
        z-index: 8500 !important;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: none !important;
    }

    .mobil-menu-butonu {
        display: block !important;
        position: absolute !important;
        top: 25px !important;
        right: 25px !important;
        z-index: 9000 !important;
    }

    .mobil-menu-butonu button {
        background: none;
        border: none;
        padding: 5px;
    }

    .mobil-menu-butonu button span {
        display: block;
        width: 35px;
        height: 3px;
        background-color: #ffffff;
        margin: 6px 0;
        transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }
}

@media (max-width: 991px) {

    /* Hamburger to X Transform */
    .mobil-menu-butonu button.aktif span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }

    .mobil-menu-butonu button.aktif span:nth-child(2) {
        opacity: 0 !important;
        transform: translateX(20px) !important;
    }

    .mobil-menu-butonu button.aktif span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }
}

@media (max-width: 991px) {

    /* Menu & Mask State Rules */
    .mobil-menu.aktif {
        left: 0 !important;
    }

    .mobil-menu-maske.aktif {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 991px) {
    .mobil-menu-logo {
        padding: 60px 0 40px;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .mobil-menu-logo img {
        width: 80% !important;
        height: auto !important;
        max-width: 250px;
        display: block;
    }
}

@media (max-width: 991px) {
    .mobil-nav-kapsayici {
        padding: 0 30px;
    }

    .mobil-nav-kapsayici ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobil-nav-kapsayici ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobil-nav-kapsayici ul li a {
        display: block;
        padding: 18px 0;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobil-nav-kapsayici ul li a:hover {
        color: var(--secondary-color);
    }

    /* Mobil Alt Menü */
    .mobil-nav-kapsayici ul li ul {
        display: block;
        /* Şimdilik açık kalsın veya JS ile kontrol edilebilir */
        padding-left: 15px;
        background: transparent;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        position: static;
        width: 100%;
    }

    .mobil-nav-kapsayici ul li ul li {
        border-bottom: none;
    }

    .mobil-nav-kapsayici ul li ul li a {
        font-size: 15px;
        font-weight: 400;
        text-transform: none;
        color: rgba(255, 255, 255, 0.7);
        padding: 10px 0;
    }
}

@media (max-width: 991px) {
    .mobil-nav-kapsayici ul li a {
        text-transform: none !important;
        font-size: 17px !important;
    }

    .mobil-nav-kapsayici ul li ul {
        display: none;
    }




    /* Alt menüsü olan linklere ok işareti ekle */
    .mobil-nav-kapsayici ul li:has(ul)>a {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobil-nav-kapsayici ul li:has(ul)>a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .mobil-nav-kapsayici ul li.alt-menu-acik>a::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 991px) {

    /* Kompakt Görünüm Düzenlemeleri */
    .mobil-nav-kapsayici ul li a {
        padding: 10px 0 !important;
        font-size: 16px !important;
        /* Biraz daha küçültme */
    }

    .mobil-nav-kapsayici ul li ul li a {
        padding: 6px 0 !important;
        font-size: 14px !important;
    }

    .mobil-nav-kapsayici {
        padding: 0 25px;
    }
}

@media (max-width: 991px) {

    /* + ve - İkonları İçin Güncelleme */
    .mobil-nav-kapsayici ul li:has(ul)>a::after {
        content: '\f067' !important;
        /* FA Plus */
        font-size: 12px;
    }

    .mobil-nav-kapsayici ul li.alt-menu-acik>a::after {
        content: '\f068' !important;
        /* FA Minus */
        transform: none !important;
    }
}

@media (max-width: 991px) {
    .mobil-menu-iletisim {
        padding: 30px 25px;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobil-menu-iletisim ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobil-menu-iletisim ul li {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        line-height: 1.4;
    }

    .mobil-menu-iletisim ul li i {
        color: var(--secondary-color);
        font-size: 14px;
        margin-top: 3px;
        min-width: 16px;
    }

    .mobil-menu-iletisim ul li a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .mobil-menu-iletisim ul li a:hover {
        color: #ffffff;
    }
}

/* Mobil Menü Sistemi Masaüstü Gizleme (Kural 22/23) */
.mobil-menu-sistemi {
    display: none;
}

@media (max-width: 991px) {
    .mobil-menu-sistemi {
        display: block;
    }
}

@media (max-width: 991px) {
    .mobil-menu-iletisim {
        padding: 40px 30px;
        background: rgba(255, 255, 255, 0.02);
    }

    .iletisim-kalem {
        margin-bottom: 25px;
    }

    .iletisim-kalem a {
        display: flex;
        align-items: center;
        gap: 15px;
        color: #ffffff;
        text-decoration: none;
        font-size: 20px;
        font-weight: 700;
        transition: transform 0.3s ease;
    }

    .iletisim-kalem a:hover {
        transform: translateX(5px);
        color: var(--secondary-color);
    }

    .iletisim-kalem i {
        color: var(--secondary-color);
        font-size: 18px;
        width: 25px;
        text-align: center;
    }

    .adres-kalemi {
        display: flex;
        gap: 15px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .adres-kalemi p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
        margin: 0;
        line-height: 1.6;
    }
}

@media (max-width: 991px) {

    /* İletişim İkonları ve Metin Revizesi */
    .iletisim-kalem a {
        font-size: 15px !important;
        /* Daha küçük font */
        font-weight: 500 !important;
        gap: 15px !important;
    }

    .iletisim-kalem i {
        width: 42px !important;
        height: 42px !important;
        background-color: rgba(245, 160, 16, 0.15) !important;
        /* İkincil renk tonu */
        color: var(--secondary-color) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 16px !important;
        /* Daha büyük ikon */
        transition: all 0.3s ease;
    }

    .iletisim-kalem a:hover i {
        background-color: var(--secondary-color) !important;
        color: #000000 !important;
    }

    .adres-kalemi i {
        width: 42px !important;
        height: 42px !important;
        background-color: rgba(255, 255, 255, 0.05) !important;
        color: #ffffff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 16px !important;
    }

    .adres-kalemi p {
        font-size: 13px !important;
        margin-top: 5px !important;
    }
}

@media (max-width: 991px) {

    /* İletişim Arasındaki Boşlukların Daraltılması */
    .iletisim-kalem {
        margin-bottom: 12px !important;
    }

    .adres-kalemi {
        margin-top: 15px !important;
        padding-top: 15px !important;
    }

    .mobil-menu-iletisim {
        padding: 25px 30px !important;
    }
}

@media (max-width: 991px) {

    /* İkon Tasarımlarını Eşitleme */
    .iletisim-kalem i,
    .adres-kalemi i {
        width: 42px !important;
        height: 42px !important;
        background-color: rgba(245, 160, 16, 0.15) !important;
        color: var(--secondary-color) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 16px !important;
        flex-shrink: 0 !important;
    }

    /* Adres Metni Hizalama */
    .adres-kalemi {
        align-items: center !important;
    }
}

@media (max-width: 991px) {

    /* Adres Bölümünü Diğer Kalemlerle Eşitleme */
    .adres-kalemi {
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: none !important;
        background: transparent !important;
    }

    .mobil-menu-iletisim {
        background: transparent !important;
        padding-top: 25px !important;
    }
}

@media (max-width: 991px) {

    /* Ana Menü Linkleri İçin Belirleyici Marker (Vurgu) */
    .mobil-nav-kapsayici>ul>li>a {
        position: relative;
        padding-left: 15px !important;
    }

    .mobil-nav-kapsayici>ul>li>a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 15px;
        background-color: var(--secondary-color);
        border-radius: 0 2px 2px 0;
        transition: height 0.3s ease;
    }

    .mobil-nav-kapsayici>ul>li.alt-menu-acik>a::before {
        height: 25px;
        /* Açık olduğunda marker uzasın */
    }
}

@media (max-width: 991px) {

    /* Kare ve Küçük Marker Güncellemesi */
    .mobil-nav-kapsayici>ul>li>a::before {
        width: 6px !important;
        height: 6px !important;
        border-radius: 0 !important;
        /* Tam kare */
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .mobil-nav-kapsayici>ul>li.alt-menu-acik>a::before {
        height: 6px !important;
        /* Uzama efektini iptal et, kare kalsın */
        transform: translateY(-50%) rotate(45deg) !important;
        /* Açıldığında baklava dilimine dönsün (opsiyonel estetik) */
    }
}

/* Logo Yükseklik ve Netlik Ayarı (SVG) */
.logo-alani img {
    height: 70px !important;
    width: auto !important;
}

@media (max-width: 991px) {
    .mobil-menu-logo img {
        height: 70px !important;
        width: auto !important;
        max-width: 90%;
        margin: 0 auto;
    }
}

/* Logo Yükseklik Güncelleme (60px) */
.logo-alani img,
.mobil-menu-logo img {
    height: 60px !important;
    width: auto !important;
}

/* Logo Yükseklik Güncelleme (50px) */
.logo-alani img,
.mobil-menu-logo img {
    height: 50px !important;
    width: auto !important;
}

/* ==========================================
   Leaflet Modern Harita Stilleri
   ========================================== */
.map-container {
    width: 94%;
    min-height: 600px;
    margin: 0 3% 3% 3%;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none !important;
    border-radius: 25px;
}

.map-container .leaflet-tile-pane {
    filter: grayscale(100%);
}


.custom-marker-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 75px !important;
    height: 75px !important;
}

.modern-pin {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    margin-bottom: 20px;
    /* Alttaki gölge için alan bırak */
}

.modern-pin::after {
    content: '';
    width: 22px;
    height: 22px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Yer Gölgesi (Pin'in zemine bastığı hissi için) */
.custom-marker-wrapper::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(2px);
}

.custom-marker-wrapper:hover .modern-pin {
    background: var(--primary-color);
}

.map-wrapper {
    border: none !important;
}

/* Harita Popup Özelleştirme */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--primary-color);
}

/* ==========================================
   Modern Dinamik Form Tasarımı (Classic Premium)
   ========================================== */
.dynamic-form-container {
    padding: 10px 0;
}

.dynamic-form-container .row {
    margin-right: -10px;
    margin-left: -10px;
}

.dynamic-form-container [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}

.form-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.form-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
}

.form-wrapper.field-textarea i {
    top: 25px;
    transform: none;
}

.form-wrapper input:not([type="submit"]),
.form-wrapper textarea {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid #ececec;
    border-radius: 5px;
    padding: 18px 20px 18px 55px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-wrapper textarea {
    height: 160px;
    resize: none;
}

.form-wrapper input:focus,
.form-wrapper textarea:focus {
    border-color: var(--secondary-color);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    outline: none;
}

.form-wrapper input:focus+i,
.form-wrapper textarea:focus+i {
    color: var(--primary-color);
}

/* Captcha Alanı */
.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 0 15px;
    margin-bottom: 0;
    height: 56px;
}

.captcha-wrapper .captcha-math,
.captcha-wrapper .islem {
    font-weight: 800;
    font-size: 16px;
    color: var(--primary-color);
    margin: 0;
    white-space: nowrap;
}

.captcha-wrapper .captcha-input,
.captcha-wrapper .sonuc {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.captcha-wrapper .captcha-input:focus,
.captcha-wrapper .sonuc:focus {
    border-color: var(--secondary-color);
    outline: none;
}

/* Gönder Butonu */
.form-actions {
    margin-bottom: 0;
}

.form-actions .submit-btn,
.form-actions .buton {
    width: 100%;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 0 30px;
    height: 56px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-actions .submit-btn:hover,
.form-actions .buton:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(216, 161, 58, 0.3);
}

.form-actions .submit-btn:active {
    transform: translateY(-1px);
}

/* ==========================================
   İletişim Şubeleri Tasarımı (Black Premium)
   ========================================== */
.branch-list {
    height: 100%;
}

.branch-item {
    background: #000000;
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 5px;
    /* Kural 1.8/1.9 & Kullanıcı talebi: 5px */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.branch-item h2 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -1px;
}

.branch-item h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.branch-item p {
    color: #efefef;
    font-size: 16px;
    margin-bottom: 15px;
    /* Azaltıldı */
    display: flex;
    align-items: center;
    gap: 15px;
    /* Azaltıldı */
    transition: all 0.3s ease;
}

.branch-item p.branch-address {
    align-items: flex-start;
    /* Çok satırlı adresler için üstte kalsın */
}

.branch-item p.branch-contact-info {
    font-size: 18px;
    /* 2px büyütüldü */
    font-weight: 600;
    /* Biraz daha kalın */
}

.branch-item p i {
    width: 36px;
    /* Küçültüldü */
    height: 36px;
    /* Küçültüldü */
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    /* Küçültüldü */
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.branch-item p:hover {
    color: #ffffff;
}

.branch-item p:hover i {
    background: var(--secondary-color);
    color: #000000;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 20px rgba(216, 161, 58, 0.4);
}

/* Responsive Düzenleme */
@media (max-width: 768px) {
    .branch-item {
        margin-bottom: 30px;
        padding: 40px 30px;
    }
}

/* ==========================================
   Premium Floating Toast Notification
   ========================================== */
.premium-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    min-width: 250px;
    padding: 12px 20px;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(150%);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.premium-toast.show {
    transform: translateX(0);
}

.premium-toast .toast-icon {
    font-size: 18px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-toast .toast-content {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.premium-toast .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.premium-toast .toast-progress::after {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

@media (max-width: 576px) {
    .premium-toast {
        right: 15px;
        left: 15px;
        bottom: 20px;
        min-width: auto;
    }
}

/* ==========================================
   Contact Page Layout (kurallar.md Enforced)
   ========================================== */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-intro {
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-intro p {
    color: #666;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-form-wrapper {
    /* Rules applied via dynamic-form-container */
}

/* =========================================
   MODERN CORPORATE FOOTER STYLES
   ========================================= */
footer {
    background: linear-gradient(315deg, #09090b 0%, #1c1c1f 50%, #09090b 100%);
    /* Siyaha yakın modern gradient ve ışık hüzmesi */
    background-size: 200% 200%;
    animation: lightShift 12s ease infinite;
    color: #cbd5e1;
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
    position: relative;
    /* border-top kaldırıldı */
}

footer .container>.row>div {
    margin-bottom: 40px;
}

/* Footer Başlıkları - Sade, Zarif ve Kurumsal Tasarım */
footer span {
    display: block;
    font-size: 1.25rem;
    /* Alt linklerden net olarak ayrışması için biraz büyütüldü */
    font-weight: 600;
    /* Çok kalın değil, tok bir duruş */
    text-transform: none;
    color: #f1f5f9;
    /* Saf beyaz değil, göz yormayan açık gri/beyaz tonu */
    margin-bottom: 40px;
    /* Başlık ile altındaki alan arası mesafe iyice açıldı */
    padding: 0;
    border: none;
    background: none;
    letter-spacing: 0.5px;
    opacity: 0.95;
    /* Belirli belirsiz, kurumsal bir hafiflik */
}

/* Footer Linkleri ve Listeleri */
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    /* Liste elemanlarının boyutu küçültüldü */
}

footer ul li {
    margin-bottom: 12px;
    /* Satır aralıkları fonta uygun dengelendi */
    position: relative;
    display: flex;
    align-items: flex-start;
}

footer ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer ul li a:hover {
    color: #f59e0b;
    transform: translateX(6px);
}

/* İletişim Bilgileri (.fbox.filetisim) */
.fbox.filetisim ul li {
    margin-bottom: 20px;
    line-height: 1.6;
    align-items: flex-start;
    /* İkonun birden fazla satırlı metinlerde (adres gibi) en üstte kalmasını sağlar */
}

.fbox.filetisim ul li i {
    color: #f59e0b;
    font-size: 1.1rem;
    /* İkonlar da yazıya uyumlu olarak bir tık küçültüldü */
    margin-top: -3px;
    /* İkonun tam olarak ilk metin satırıyla aynı hizada görünmesi için ince ayar */
    margin-right: 15px;
    width: 24px;
    text-align: center;
    background: rgba(245, 158, 11, 0.1);
    padding: 8px;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Uzun metinlerde ikonun sıkışıp küçülmesini engeller */
    transition: all 0.3s ease;
    /* İkon hover efekti için geçiş eklendi */
}

/* Satır üzerine gelindiğinde ikona uygulanacak efekt */
.fbox.filetisim ul li:hover i {
    background: #f59e0b;
    color: #ffffff;
    /* İkon rengi beyaza döner */
    transform: scale(1.1) translateY(-2px);
    /* İkon hafif büyür ve yukarı kalkar */
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    /* Turuncu hafif bir ışıltı/gölge bırakır */
}

/* Menü Listesi (.footer-menu, .flist) - Modern Tasarım */
.footer-menu li a,
.fbox.flist ul li a {
    display: inline-block;
    padding: 2px 0 2px 14px;
    /* Dikey boşluklar (2px) ve sol boşluk (14px) daraltıldı */
    transition: all 0.3s ease;
    color: #cbd5e1;
    text-decoration: none;
    position: relative;
    font-size: 0.85rem;
    /* Font boyutu 0.9'dan 0.85'e düşürüldü */
}

/* Marker eklentisi */
.footer-menu li a::before,
.fbox.flist ul li a::before {
    content: '\203A';
    /* Zarif bir sağ ok karakteri (›) */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #f59e0b;
    font-size: 1.1rem;
    /* Ok işareti de yazıyla orantılı ufaltıldı */
    line-height: 1;
    transition: transform 0.3s ease;
}

/* Düz Metin (Text) Widget Alanı */
.footer-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Basit ve Sade Hover Efekti */
.footer-menu li a:hover,
.fbox.flist ul li a:hover {
    color: #f59e0b;
    /* Sadece renk değişir */
}

/* Hover durumunda marker hafifçe sağa kayar */
.footer-menu li a:hover::before,
.fbox.flist ul li a:hover::before {
    transform: translate(3px, -50%);
}

/* Legal Bar (.rwt-legal-bar) */
.rwt-legal-bar {
    background-color: #050505;
    /* Footer'dan daha koyu siyaha yakın ton */
    padding: 25px 0;
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* border-top kaldırıldı */
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
}

.rwt-legal-bar .copyright {
    margin: 0;
}

.rwt-legal-bar .copyright a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
}

.rwt-legal-bar .rwt-credit-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rwt-legal-bar .rwt-credit-group a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rwt-legal-bar .rwt-credit-group a:hover {
    color: #ffffff;
}

.rwt-footer-icon {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.rwt-footer-icon:hover {
    opacity: 1;
}

/* Mobil Uyum (Responsive) */
@media (max-width: 768px) {
    .rwt-legal-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Işık Hareketi Animasyonu */
@keyframes lightShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ==========================================
   Ürün Grupları Sayfası - Ürün Kutu İçeriği
   ========================================== */
.product-text {
    padding: 75px;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Metin solda (order-md-1) olduğunda sol boşluğu sıfırla */
@media (min-width: 768px) {
    .product-text.text-on-left {
        padding-left: 0 !important;
    }
}

/* Kurumsal Başlık */
.product-text h3 {
    font-size: 46px;
    font-weight: 900;
    color: var(--primary-color, #1a1a1a);
    margin-bottom: 25px !important;
    letter-spacing: -2px;
    /* Kullanıcı tarafından açıkça talep edildiği için eklendi */
    line-height: 1;
}

/* Kurumsal Paragraf */
.product-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray, #555555);
    margin-bottom: 25px;
    font-weight: 400;
}

/* Temiz Kurumsal Liste */
.product-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-text ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray, #444444);
    font-weight: 500;
}

/* Minimalist İçi Boş Yuvarlak Marker */
.product-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--secondary-color, #F5A010);
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

/* Hover Efekti: İçi Dolsun */
.product-text ul li:hover::before {
    background-color: var(--secondary-color, #F5A010);
}

.product-text ul li:last-child {
    margin-bottom: 0;
}

.product-row {
    margin-bottom: 100px;
}

.product-row:last-child {
    margin-bottom: 0;
}

.image-col {
    position: relative;
    border-radius: 20px;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f6f9;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .product-image {
        position: relative;
        min-height: 300px;
    }
}

/* Yavaşça Belirme ve Sıralı Giriş (Staggered Fade-in) Animasyonu */
.fade-in-row .image-col,
.fade-in-row .text-col {
    opacity: 0;
    transition: opacity 1.2s ease-out;
    /* Sadece yavaşça belirmesi için süreyi çok hafif artırdım */
}

/* Metin kutusu biraz gecikmeli (0.3 saniye sonra) gelsin */
.fade-in-row .text-col {
    transition-delay: 0.3s;
}

/* Gecikme Sınıfları (Inline CSS Yasağını Telafi Etmek İçin) */
.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

.fade-in-row.is-visible .image-col,
.fade-in-row.is-visible .text-col {
    opacity: 1;
}

/* Aşağıdan Yukarı Belirme Animasyonu (.fade-in-up) */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    /* 40px aşağıdan başlar */
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Ana Sayfa - Özellikler (Features) Alanı
   ========================================== */
.features-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    /* Slider'ın üzerine bindirme (Kullanıcı İsteği) */
    padding: 0 0 60px;
    background-color: transparent;
}

/* Mobilde bindirme miktarını daraltıyoruz */
@media (max-width: 767px) {
    .features-section {
        margin-top: -30px;
    }
}

/* Ultra-Modern, Premium Kart Tasarımı */
.feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 40px 30px;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    /* Daha keskin/endüstriyel köşeler */
    box-shadow: 0 15px 35px -10px rgba(245, 160, 16, 0.25);
    /* Turuncu marka renginde soft parlama ilk anda uygulandı */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    height: 100%;
}

/* Hover'da Kutu Etkileşimi: Havaya Kalkma ve Gölgenin Belirmesi */
.feature-box:hover {
    transform: translateY(-8px);
    background-color: #fffaf0;
    border: none;
    box-shadow: 0 20px 40px -10px rgba(245, 160, 16, 0.35);
}

/* İkon Kapsayıcısı: Gradyan ve Tam Yuvarlak */
.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
    background-color: rgba(245, 160, 16, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.feature-icon-wrapper i {
    font-size: 26px;
    color: var(--secondary-color, #F5A010);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.4s ease;
}

/* Hover'da İkon Etkileşimi: Dolu Gradyan ve Sıçrama/Dönüş */
.feature-box:hover .feature-icon-wrapper {
    background-color: var(--secondary-color, #F5A010);
    transform: scale(1.05);
}

.feature-box:hover .feature-icon-wrapper i {
    color: #ffffff;
    transform: scale(1.15) rotate(8deg);
    /* Dinamik büyüme ve şık bir eğim (bouncy) */
}

/* Tipografi */
.feature-box h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color, #1a1a1a);
    margin-bottom: 12px;
    line-height: 1.2;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray, #666666);
    margin: 0;
}

/* ==========================================
   Ana Sayfa - Hakkımızda (About Us) Alanı
   ========================================== */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* overflow: hidden KASITLI OLARAK KALDIRILDI — glow shape kesilmesin */
}

/* Sol Taraf: Çift Görsel Kompozisyonu */
.about-images-composition {
    position: relative;
    width: 100%;
    padding-right: 50px;
    padding-bottom: 80px;
    /* overflow YOK — glow shape (::before) dışarıya serbestçe taşabilir */
}

/* Yuvarlak Turuncu Glow Shape — Sağa Kaymış, Üstte */
.about-images-composition::before {
    content: '';
    position: absolute;
    top: -10%;
    /* Üst kısımda */
    right: -5%;
    /* Sağa kaymış */
    width: 70%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    /* Tam yuvarlak shape */
    background: radial-gradient(circle, rgba(245, 160, 16, 0.28) 0%, rgba(245, 160, 16, 0) 70%);
    filter: blur(50px);
    /* Çok soft kenar geçişi */
    z-index: 0;
    pointer-events: none;
}

/* Kutu 1 — Arkaplan ana görsel */
.about-images-composition .about-img-1 {
    width: 75%;
    aspect-ratio: 4/5;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    /* Köşe kesme: kutuda */
    overflow: hidden;
    /* İçteki img'yi köşeden keser */
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.12);
    /* GPU katmanını önceden oluştur → transform gelince border-radius kaybolmaz */
    will-change: transform;
    transform: translateZ(0);
}

/* Kutu 2 — Üstte öne çıkan görsel */
.about-images-composition .about-img-2 {
    position: absolute;
    right: 20px;
    bottom: 10%;
    width: 55%;
    aspect-ratio: 4/5;
    z-index: 2;
    border-radius: 10px;
    /* Köşe kesme: kutuda */
    overflow: hidden;
    /* İçteki img'yi köşeden keser */
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.18);
    /* GPU katmanını önceden oluştur → transform gelince border-radius kaybolmaz */
    will-change: transform;
    transform: translateZ(0);
}

/* İçteki resimler — border-radius kutu üstlendi, img sadece doldurur */
.about-images-composition .about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Mobil Uyum (Responsive) */
@media (max-width: 767px) {
    .about-images-composition {
        padding-right: 0;
        padding-bottom: 50px;
    }

    .about-images-composition .about-img-1 {
        width: 80%;
    }

    .about-images-composition .about-img-2 {
        width: 65%;
    }
}

/* Sağ Taraf: Metin İçeriği */
.about-text-content .about-sub-heading {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary-color, #F5A010);
    margin-bottom: 15px;
    background: rgba(245, 160, 16, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    /* Hap (pill) görünümü */
}

.about-text-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color, #1a1a1a);
    line-height: 1.15;
    margin-bottom: 25px;
}

.about-text-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray, #666666);
    margin-bottom: 30px;
}

/* Özel Liste Tasarımı */
.about-text-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.about-text-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--primary-color, #1a1a1a);
    line-height: 1.5;
}

/* Modern List İşaretçisi (Önceki sayfa konseptiyle uyumlu turuncu halka) */
.about-text-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color, #F5A010);
    background: transparent;
    transition: all 0.3s ease;
}

.about-text-content ul li:hover::before {
    background: var(--secondary-color, #F5A010);
}

.about-text-content ul li strong {
    font-weight: 800;
    color: var(--primary-color, #1a1a1a);
}

/* Modern Buton Tasarımı */
.about-btn {
    display: inline-block;
    background: var(--primary-color, #1a1a1a);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(245, 160, 16, 0.20);
}

.about-btn:hover {
    background: var(--secondary-color, #F5A010);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(245, 160, 16, 0.4);
}

/* =========================================
   Yeni Section
   ========================================= */
.new-section {
    width: 94%;
    margin: 0 3%;
    padding: 125px 0px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    /* ::before overlay'in border-radius dışına taşmaması için */
    text-align: center;
}

/* Karartma Overlay */
.new-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
    /* 40% opasiteli siyah overlay */
    z-index: 0;
    border-radius: inherit;
}

.new-section .new-section-header {
    margin: 0 auto;
    /* center hizalama için */
    position: relative;
    z-index: 1;
}

.new-section .new-section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    /* Kullanıcının özel talebi */
    color: #ffffff;
    margin-bottom: 24px;
}

.new-section .new-section-header p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

/* =========================================
   Haberler Section (.news-section)
   ========================================= */
.news-section {
    padding: 100px 0;
    background-color: #ffffff;
}

/* Haberler Başlık Alanı */
.news-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
    /* Alta boşluk bırakıp ortalar */
}

.news-header h2 {
    font-size: 2.4rem;
    font-weight: 600;
    /* Daha düz ve sade bir kalınlık */
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: normal;
    /* Standart harf aralığı */
}

.news-header p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.news-card {
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
    /* İlk etapta gölge yok */
    transition: box-shadow 0.4s ease;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 15px 40px rgba(245, 160, 16, 0.12);
    /* Sadece turuncu soft gölge */
    background: #ffffff;
}

.news-image {
    width: 100%;
    aspect-ratio: 9/5;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
    /* Daha zarif, yavaş büyüme */
}

.news-content {
    padding: 30px 15px;
    position: relative;
}

.news-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    /* Başlık ile paragraf arası modern ayrım */
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: var(--secondary-color, #F5A010);
}

.news-content p {
    font-size: 0.95rem;
    color: #666;
    /* Daha modern/soft gri */
    line-height: 1.7;
    /* Okunabilirliği artıran satır aralığı */
    margin: 0;
}

/* Haber Kartları Düzenlemeleri (Kurallar.md'ye Göre CSS Taşıması) */
.news-card .news-image.empty-img {
    background-color: rgba(245, 160, 16, 0.1);
    min-height: 250px;
}
.news-card .news-image.empty-img a {
    display: block;
    width: 100%;
    height: 250px;
}
.news-card .news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.news-card .news-content h3 a {
    color: inherit;
    text-decoration: none;
}

/* Haber Kartı Hover (Yukarı Kayma Efekti) */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
    transform: translateY(-15px);
}

.news-header {
    max-width: 80%;
    margin: 0 auto 40px auto;
}

.news-header span {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

/* Modern Belge Kartı Tasarımı (Kurumsal Sayfa) */
.document-card-modern {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    text-decoration: none !important;
}

.document-image-wrapper {
    position: relative;
    padding-top: 130%; /* A4 Oranı (1:1.41) */
    overflow: hidden;
}

.document-image-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.document-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 25px 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.document-overlay i {
    font-size: 32px;
    color: var(--secondary-color, #F5A010);
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.document-title-modern {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.document-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.document-card-modern:hover .document-image-modern {
    transform: scale(1.08);
}

.document-card-modern:hover .document-overlay {
    opacity: 1;
}

.document-card-modern:hover .document-overlay i,
.document-card-modern:hover .document-title-modern {
    transform: translateY(0);
}