/* ========================================== */
/* === MASAÜSTÜ GÖRÜNÜM AYARLARI ============ */
/* ========================================== */

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    border-bottom: 2px solid var(--yellow);
}

.logo-wrapper {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.desktop-logo {
    width: 200px;
    height: auto;
}

.header-content {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.info-section { display: flex; align-items: center; gap: 20px; margin-right: 30px; }
.info-item { display: flex; align-items: center; gap: 15px; }

.badge-724 {
    border: 2px solid var(--yellow); color: var(--yellow);
    border-radius: 50%; width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: 16px;
}

.info-text { display: flex; flex-direction: column; }
.info-text .title { color: var(--text-white); font-weight: 600; font-size: 14px; }
.info-text .desc { color: var(--text-gray); font-size: 12px; }

.info-divider { height: 40px; width: 1px; background-color: rgba(255, 255, 255, 0.1); }

.phone-section .icon-box {
    border: 1px solid var(--yellow); color: var(--yellow);
    border-radius: 8px; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}

.phone-numbers { display: flex; flex-direction: column; }
.phone-numbers a {
    color: var(--text-white); text-decoration: none;
    font-weight: 700; font-size: 15px; transition: 0.3s;
}
.phone-numbers a:hover { color: var(--yellow); }

.main-nav { margin-right: 30px; }
.main-nav ul { list-style: none; display: flex; gap: 25px; }
.main-nav a {
    color: var(--text-white); text-decoration: none;
    font-size: 14px; font-weight: 600; position: relative; padding-bottom: 5px;
}
.main-nav a.active::after, .main-nav a:hover::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background-color: var(--yellow);
}

.btn-primary {
    background-color: var(--yellow); color: #000;
    text-decoration: none; padding: 12px 24px; border-radius: 30px;
    font-weight: 700; display: flex; align-items: center; gap: 10px; transition: 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(251, 167, 7, 0.4); }


/* ========================================== */
/* === RESPONSIVE (Masaüstü/Mobil Gizleme) == */
/* ========================================== */
.mobile-only { display: none; }
.desktop-only { display: flex; }

@media (max-width: 1100px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block; }
    
    .site-header { background-color: transparent; border-bottom: none; }
}


/* ========================================== */
/* === MOBİL DİREKT GİRİŞ (App View) ======== */
/* ========================================== */
.mobile-app-view {
    background-color: #121212;
    width: 100%;
    /* min-height: 100vh; KANKACIM KOCAMAN BOŞLUĞU YAPAN BUYDU, SİLDİK! */
    padding: 20px;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Üst Kısım Yerleşimi (Logo solda, diğerleri sağda) */
.mobile-top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px; 
}

.mobile-logo-box {
    flex: 1; 
    padding-left: 5px; 
}

.menu-mobile-logo {
    width: 100%;
    max-width: 140px; 
    height: auto;
}

.mobile-right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    gap: 15px; 
}

.hamburger-btn {
    background: transparent; 
    border: none;
    color: var(--yellow); 
    font-size: 32px; 
    cursor: pointer;
    padding: 0;
    line-height: 1;
    margin-top: 10px; 
    margin-right: 5px; 
}

/* Senin Özel PNG Görselin */
.mobile-promo-img {
    width: 180px; 
    max-width: 100%; 
    height: auto;
}

/* Telefon Kutuları */
.mobile-contact-boxes {
    display: flex; gap: 15px; margin-bottom: 30px;
}

.mobile-contact-boxes .contact-box {
    flex: 1; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px; padding: 12px 10px;
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; background-color: #1a1a1a;
}

.contact-box .icon-box { color: var(--yellow); font-size: 20px; }
.contact-box .box-text { display: flex; flex-direction: column; }
.contact-box .number { color: #fff; font-weight: bold; font-size: 13px; }
.contact-box .label { font-size: 11px; font-weight: 600; }

/* Menü Linkleri */
.mobile-nav-links {
    margin-bottom: 30px;
    display: none; /* KANKACIM DEFAULT OLARAK KAPALI GELMESİNİ SAĞLIYORUZ */
}

/* JS tıklandığında bu class'ı ekleyip görünür yapacak */
.mobile-nav-links.active {
    display: block; 
}

.mobile-nav-links ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-nav-links a {
    color: #fff; text-decoration: none;
    display: flex; align-items: center; padding: 18px 0; font-weight: 500; font-size: 15px;
}
.mobile-nav-links a i:first-child { width: 35px; color: #ccc; font-size: 18px; text-align: center; }
.mobile-nav-links a .arrow { margin-left: auto; color: var(--yellow); font-size: 14px; }

/* Büyük Sarı Buton */
.btn-large-yellow {
    background-color: var(--yellow); color: #000;
    text-decoration: none; padding: 15px; border-radius: 30px;
    display: flex; align-items: center; justify-content: center; gap: 15px;
    font-size: 24px; font-weight: bold; width: 100%;
}
.btn-large-yellow .btn-text-group { display: flex; flex-direction: column; align-items: flex-start; }
.btn-large-yellow .btn-title { font-size: 18px; line-height: 1; margin-bottom: 2px;}
.btn-large-yellow .btn-desc { font-size: 12px; font-weight: 500; line-height: 1; }

/* Buton Yanıp Sönme (Pulse) Animasyonu */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 167, 7, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px 10px rgba(251, 167, 7, 0); 
        transform: scale(1.02); 
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 167, 7, 0);
        transform: scale(1);
    }
}

.pulse-btn {
    animation: pulse-glow 1.5s infinite ease-in-out;
}

/* En Alt Güvenlik Rozetleri */
.mobile-trust-badges {
    margin-top: 25px; padding-top: 20px; padding-bottom: 10px;
    display: flex; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-trust-badges span {
    color: #fff; font-size: 10px; display: flex; align-items: center; gap: 5px; font-weight: 500;
}
/* ========================================== */
/* === AKTİF SAYFA VE HOVER EFEKTLERİ ====== */
/* ========================================== */

/* MASAÜSTÜ: Aktif sayfanın altına sarı çizgi çekiyoruz */
.main-nav a.active {
    color: var(--yellow) !important; /* Yazı rengini sarı yap */
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--yellow);
}

/* MOBİL: Aktif sayfanın ikonunu ve yazısını sarı yapıyoruz */
.mobile-nav-links a.active {
    color: var(--yellow) !important;
}

.mobile-nav-links a.active i {
    color: var(--yellow) !important;
}

/* Mobilde aktif sayfanın ok işaretini biraz daha belirgin yapalım */
.mobile-nav-links a.active .arrow {
    transform: translateX(5px);
    font-weight: bold;
}