/* === GENEL VE ORTAK STİLLER === */
:root {
    --primary-color: #0d9488; /* Teal Rengi */
    --dark-color: #1f2937; /* Koyu Gri */
    --light-gray-color: #f9fafb;
    --text-color: #374151;
    --border-color: #e5e7eb;
    --font-family: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === ORTAK HEADER (NAVBAR) - GÜNCELLENDİ === */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 16px 0;
}

.main-header__container {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Sol boşluk | Menü | Sağ boşluk */
    align-items: center;
}

.main-header__logo {
    grid-column: 1 / 2; /* Logoyu sol sütuna yerleştir */
    justify-self: start; /* Sütunun soluna hizala */
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

    .main-header__logo span {
        color: var(--dark-color);
    }

.main-header__nav {
    grid-column: 2 / 3; /* Menüyü orta sütuna yerleştir */
}

    .main-header__nav ul {
        display: flex;
        align-items: center;
        gap: 32px; /* Linkler arası boşluğu biraz artırdım */
        list-style: none;
    }

    .main-header__nav a {
        text-decoration: none;
        color: var(--text-color);
        transition: color 0.3s ease;
    }

        .main-header__nav a:hover {
            color: var(--primary-color);
        }

        .main-header__nav a.active {
            color: var(--primary-color);
            font-weight: 500;
        }

/* Yönetici Paneli butonu için (isteğe bağlı) */
/* Eğer buton olsaydı, bu kural onu sağ sütuna yerleştirirdi */
.main-header__container .btn {
    grid-column: 3 / 4;
    justify-self: end; /* Sütunun sağına hizala */
}


/* === ORTAK FOOTER === */
.main-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

    .main-footer p {
        margin: 0;
    }

.main-footer__subtext {
    color: #9ca3af;
    margin-top: 8px;
}
/* ... existing styles ... */

/* === YENİ EKLENEN WHATSAPP BALONCUĞU === */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp Yeşili */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .whatsapp-fab:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .whatsapp-fab svg {
        width: 32px;
        height: 32px;
        fill: #fff;
    }
