* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    color: #333;
    background-color: #fafafa;
}

a {
    text-decoration: none;
}

:root {
    --primary-color: #b98476;
    --top-bar-bg: #f8ebe6;
    --text-dark: #5a3a31;
    --border-color: #eaeaea;
}

.site-header {
    background-color: #fff;
    box-shadow: 0 4px 25px rgba(0,0,0,0.03);
    position: relative;
    width: 100%;
    /* overflow:hidden kaldırıldı — mobil menüyü kesmiyoruz */
}

/* --- ÜST BİLGİ ÇUBUĞU --- */
.top-bar-wrapper {
    background-color: var(--top-bar-bg);
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(185, 132, 118, 0.1);
}

.top-bar-inner {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    color: var(--text-dark);
}

/* Kayan Yazı (Marquee) */
.ticker-wrap {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 30px;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ticker-move {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
    /* Başlangıçta bekleme yok, hemen sola kayar */
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 60px;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.ticker-item i {
    color: var(--primary-color);
}

/* 0'dan başlayıp tam genişliği kayarak döner — boşluk yok */
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Telefon ve Sosyal Medya */
.top-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.top-phone .phone-icon {
    font-size: 20px;
    color: var(--primary-color);
}

.top-phone a {
    color: var(--text-dark);
}

.top-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-social span {
    font-size: 13px;
    font-weight: 400;
}

.top-social a i {
    color: var(--text-dark);
    font-size: 20px;
    transition: 0.3s;
}

.top-social a:hover i {
    color: var(--primary-color);
}

/* --- ANA HEADER --- */
.main-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo-wrapper {
    flex: 0 0 220px;
    border-right: 1px solid var(--border-color);
    padding-right: 20px;
}

.logo-desktop {
    height: 120px;
    object-fit: contain;
}

.logo-mobile {
    display: none;
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: flex-end;
}

.desktop-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    position: relative;
    padding-bottom: 5px;
    transition: 0.3s;
}

.text-row { display: flex; align-items: center; gap: 5px; }
.nav-icon { font-size: 32px; color: #444; transition: 0.3s; }
.arrow-down { font-size: 12px; }

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.desktop-nav ul li a.active::after,
.desktop-nav ul li a:hover::after { width: 100%; }

.desktop-nav ul li a.active,
.desktop-nav ul li a:hover,
.desktop-nav ul li a.active .nav-icon,
.desktop-nav ul li a:hover .nav-icon {
    color: var(--primary-color);
}

.header-right {
    flex: 0 0 220px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(to right, #fcf6f3, #ffffff);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 6px 15px 6px 6px;
    color: var(--text-dark);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(185, 132, 118, 0.2);
    transition: all 0.3s ease;
    animation: btnPulse 2.5s ease-in-out infinite;
}

/* Hafif yanıp sönme — box-shadow genişleyip daralıyor */
@keyframes btnPulse {
    0%   { box-shadow: 0 4px 15px rgba(185, 132, 118, 0.2); }
    50%  { box-shadow: 0 4px 22px rgba(185, 132, 118, 0.55); }
    100% { box-shadow: 0 4px 15px rgba(185, 132, 118, 0.2); }
}

.btn-premium:hover {
    box-shadow: 0 6px 20px rgba(185, 132, 118, 0.4);
}

.btn-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f8ebe6;
    border: 1px solid rgba(185, 132, 118, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
}

.btn-text { font-size: 14px; letter-spacing: 0.5px; }
.btn-arrow { font-size: 18px; color: var(--primary-color); transition: transform 0.3s ease; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 36px;
    color: var(--text-dark);
    line-height: 1;
}

/* =====================
   MOBİL MENÜ PANELİ
   ===================== */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 10px 0 20px;
    animation: slideDown 0.25s ease;
}

.mobile-nav.open {
    display: flex;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(185, 132, 118, 0.08);
    transition: background 0.2s, color 0.2s;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    background: var(--top-bar-bg);
    color: var(--primary-color);
}

.mobile-nav ul li a .nav-icon {
    font-size: 22px;
    color: var(--primary-color);
}

/* --- MOBİL GÖRÜNÜM --- */
@media (max-width: 1100px) {

    .top-bar-inner {
        flex-direction: column;
        padding: 10px 15px;
        gap: 10px;
    }

    .ticker-wrap {
        width: 100%;
        margin-right: 0;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(185, 132, 118, 0.15);
    }

    .top-contact {
        width: 100%;
        justify-content: space-between;
    }

    .logo-wrapper { border: none; padding: 0; flex: auto; }
    .logo-desktop { display: none; }
    .logo-mobile  { display: block; height: 60px; }

    .desktop-nav { display: none; }

    .header-right {
        flex: auto;
        justify-content: flex-end;
        gap: 15px;
    }

    .btn-premium {
        display: flex;
        padding: 4px 10px 4px 4px;
    }

    .btn-text         { font-size: 11px; }
    .btn-icon-circle  { width: 28px; height: 28px; font-size: 16px; }
    .btn-arrow        { font-size: 15px; }

    .mobile-menu-btn { display: block; }
}