.tuci-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    font-family: 'Poppins', 'DM Sans', system-ui, sans-serif;
    user-select: none;
    /* Üstten ve alttan 15'er piksel boşluk vererek tavanı aşağı ittik 🚀 */
    padding: 15px 5px; 
}

/* ── SOL AMBLEM (Dikey hizalaması aşağı çekildi) ── */
.tuci-logo-icon {
    position: relative;
    width: 95px;
    height: 90px;
    flex-shrink: 0;
    /* Amblemi sağdaki yazıyla tam yatay merkeze eşitlemek için 6px aşağı aldık 🎯 */
    margin-top: 6px; 
}

/* ── T HARFİ (Turuncu-Kırmızı Gradyan) ── */
.tuci-letter-t {
    position: absolute;
    top: 32px; /* Kepin altına biraz daha mesafe açıldı */
    left: 2px;
    width: 58px;
    height: 18px;
    background: linear-gradient(135deg, #ffb347, #ff4d4d);
    border-radius: 9px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}
.tuci-letter-t::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 18px;
    height: 52px;
    background: linear-gradient(180deg, #ff4d4d, #ff2e93);
    border-radius: 9px;
}

/* ── C HARFİ (Mavi-Mor Gradyan) ── */
.tuci-letter-c {
    position: absolute;
    top: 26px;
    right: 6px; /* T harfinden biraz daha uzaklaştırıldı */
    width: 52px;
    height: 52px;
    border: 16px solid transparent;
    border-top-color: #00bfff;
    border-right-color: #00bfff;
    border-bottom-color: #6c2eb9;
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(108, 46, 185, 0.25));
}

/* ── MEZUNİYET KEPİ ── */
.tuci-cap {
    position: absolute;
    top: -2px; /* Kep biraz daha yukarı taşınarak T harfinin üzerinden çekildi */
    left: 24px;
    width: 40px;
    height: 30px;
    z-index: 4;
}
.tuci-cap-top {
    width: 38px;
    height: 18px;
    background: linear-gradient(135deg, #4e1f8a, #7c3aed);
    transform: rotate(-12deg) skewX(-20deg); /* Açı görseldeki gibi yumuşatıldı */
    border-radius: 3px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.tuci-cap-tassel {
    position: absolute;
    top: 10px;
    right: 1px;
    width: 2px;
    height: 15px;
    background: #ff4d4d;
}
.tuci-cap-tassel::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -2px;
    width: 6px;
    height: 6px;
    background: #ffb347;
    border-radius: 50%;
}

/* ── PARILTILAR VE SÜSLEMELER ── */
.tuci-sparkle {
    position: absolute;
    font-size: 14px;
    color: #ffb347;
    line-height: 1;
}
.spark-1 { top: 28px; right: -8px; color: #ffb347; font-size: 16px; animation: pulse 2s infinite; }
.spark-2 { top: 36px; left: -10px; width: 6px; height: 6px; background: #00bfff; border-radius: 50%; }
.spark-3 { bottom: 4px; left: 14px; width: 5px; height: 5px; background: #9b59d4; border-radius: 50%; }
.spark-4 { bottom: 16px; right: 2px; width: 4px; height: 4px; background: #ff2e93; border-radius: 50%; }

/* ── SAĞ YAZI ALANI VE DİKEY ÇİZGİ ── */
.tuci-logo-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2.5px solid var(--border, #e5d9f7);
    padding-left: 24px; /* Çizgi ile yazılar arası boşluk artırıldı */
    height: 78px;
}

.tuci-main-title {
    font-size: 2.7rem; /* Yazı boyutu hafifçe büyütüldü */
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.5px; /* Harfler çok sıkışmasın diye gevşetildi */
}
.tuci-main-title .t-orange { color: #ff9f43; }
.tuci-main-title .c-blue { color: #00bfff; }

.tuci-sub-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 7.2px; /* AKADEMİ yazısının harf araları açıldı */
    color: var(--text, #1a0a3d);
    margin-top: 5px;
    line-height: 1;
}

.tuci-tagline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.64rem;
    font-weight: 800;
    margin-top: 8px; /* Alt slogan biraz daha aşağı kaydırılarak nefes aldırıldı */
    letter-spacing: 0.6px;
}
.tuci-tagline .tg-og { color: #ff9f43; }
.tuci-tagline .tg-bl { color: #00bfff; }
.tuci-tagline .tg-gr { color: #2ed573; }
.tuci-tagline .tg-dot { color: #ff2e93; font-size: 0.8rem; }

/* Küçük bir ışıltı animasyonu */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Mobil ekranlar için ölçeklendirme */
@media (max-width: 480px) {
    .tuci-logo-wrap {
        transform: scale(0.82);
        transform-origin: left center;
        gap: 20px;
    }
}



/* Laravel header / footer — canlı sitedeki gibi tam logo, kırpma yok */
/* Not: asıl header/footer override'ları tuci-tweaks.css içinde (style.css sonrası). */
