/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Site açılış uyarı modalı */
.site-warning-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-warning-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.site-warning-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.site-warning-box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.site-warning-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f5f9;
    color: #475569;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.site-warning-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.site-warning-title {
    padding: 24px 24px 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
}

.site-warning-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #334155;
}

.site-warning-body p {
    margin: 0 0 14px;
}

.site-warning-body p:last-child {
    margin-bottom: 0;
}

.site-warning-link-p {
    margin-top: 8px !important;
}

.site-warning-link {
    color: #1e3a8a;
    text-decoration: underline;
    font-weight: 600;
}

.site-warning-link:hover {
    color: #0c1e52;
}

.site-warning-sign {
    margin-top: 16px !important;
    font-style: italic;
    color: #64748b;
}

.site-warning-footer {
    padding: 16px 24px 24px;
    border-top: 1px solid #e2e8f0;
}

.site-warning-btn-ok {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #091A4B 0%, #243875 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.site-warning-btn-ok:hover {
    opacity: 0.95;
}

@media (max-width: 600px) {
    .site-warning-box {
        max-height: 85vh;
    }
    .site-warning-body,
    .site-warning-title {
        padding-left: 20px;
        padding-right: 20px;
    }
    .site-warning-footer {
        padding: 16px 20px 20px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 28px;
    }
}

/* ── WhatsApp Sticky Button ──────────────────────────────────── */
.wa-sticky-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 9px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px 12px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: transform 0.22s ease, box-shadow 0.22s ease, padding 0.22s ease;
    max-width: 180px;
    overflow: hidden;
}

.wa-sticky-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    color: #fff;
    text-decoration: none;
}

.wa-sticky-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.wa-sticky-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.wa-sticky-label {
    display: inline-block;
}

/* Mobile: sadece ikon göster */
@media (max-width: 575px) {
    .wa-sticky-btn {
        bottom: 20px;
        left: 16px;
        padding: 13px;
        border-radius: 50%;
        max-width: none;
        width: 52px;
        height: 52px;
        justify-content: center;
    }

    .wa-sticky-label {
        display: none;
    }

    .wa-sticky-icon {
        width: 26px;
        height: 26px;
    }
}

/* Cookie bar açıkken biraz yukarı çek */
body.cookie-bar-visible .wa-sticky-btn {
    bottom: 90px;
}

@media (max-width: 575px) {
    body.cookie-bar-visible .wa-sticky-btn {
        bottom: 110px;
    }
}
