/* ==========================================
   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 {
    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;
}

.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%;
}

.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: 240px;
    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 20px 10px 25px;
    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: 35px !important;
}

/* Yuvarlak hover marker */
.orta-menu ul li ul li a::before {
    content: '';
    position: absolute;
    left: 20px;
    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: 750px;
    background-color: #000000;
    overflow: hidden;
    position: relative;
}

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

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

.slider .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    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: 40px;
    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: 10px;
    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;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.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 */
}
