/* --- global.css --- */
:root {
    --primary-gold: #cea06b;
    --primary-dark: #37474f;
    --text-color: #333;
    --bg-light: #fdfdfd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #f9f9f9;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

.container {
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Genel Başlık Stilleri */
.section-header.center-text {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 10px;
}

.highlight-gold { color: var(--primary-gold); }

.section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Pulse (Nabız) Animasyonları */
@keyframes pulseDark {
    0% { box-shadow: 0 0 0 0 rgba(55, 71, 79, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 10px rgba(55, 71, 79, 0); transform: scale(1.03); }
    100% { box-shadow: 0 0 0 0 rgba(55, 71, 79, 0); transform: scale(1); }
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(206, 160, 107, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 10px rgba(206, 160, 107, 0); transform: scale(1.03); }
    100% { box-shadow: 0 0 0 0 rgba(206, 160, 107, 0); transform: scale(1); }
}

.anim-pulse-dark { animation: pulseDark 2s infinite; }
.anim-pulse-gold { animation: pulseGold 2s infinite; }

/* --- MOBİL YÜZER BUTONLAR (GÜNCELLENMİŞ VERSİYON) --- */
.mobile-floating-actions {
    display: none; /* Masaüstünde gizle */
    position: fixed;
    bottom: 30px; /* Varsayılan konum */
    left: 0;
    right: 0;
    padding: 0 25px;
    z-index: 100000; /* Çerez banner'ının üstünde kalsın */
    justify-content: space-between;
    align-items: center;
    pointer-events: none; /* Arka plandaki tıklamaları engellememesi için */
    
    /* YUMUŞAK HAREKET ANİMASYONU */
    transition: bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Çerez Banner'ı Açılınca Devreye Girecek Sınıf */
.mobile-floating-actions.shift-up {
    bottom: 260px !important; /* Banner'ın üzerine çıkacak yeni konum */
}

.floating-btn {
    pointer-events: auto; /* Butonların kendisini tıklanabilir yap */
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn:active {
    transform: scale(0.9);
}

/* WhatsApp - Sol Altta */
.wa-float { background-color: #25d366; }

/* Telefon - Sağ Altta */
.phone-float { background-color: var(--primary-gold); }

/* Buton Animasyonları */
.pulse-wa {
    animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-gold {
    animation: pulseGold 2s infinite;
}

/* --- SADECE MOBİLDE GÖSTER --- */
@media (max-width: 992px) {
    .mobile-floating-actions {
        display: flex;
    }
}

/* Mobil Menü Açıldığında Yüzen Butonları Gizle */
#mobile-menu.active ~ .mobile-floating-actions {
    display: none !important;
}