/* ==============================================================
   BİLGİLENDİRME / YAPIM AŞAMASI (Under Construction) - CSS
   ============================================================== */

/* Wrapper and isolation for this specific page */
#bilgilendirme-page {
    /* Temel renkler ve değişkenler (diğer sayfalarla çakışmaması için burada tanımlı) */
    --b-bg-color: #030712;
    --b-bg-gradient: radial-gradient(circle at center, rgba(0, 210, 255, 0.08) 0%, transparent 60%);
    --b-text-main: #ffffff;
    --b-text-muted: #9ca3af;
    --b-cyan: #00d2ff;
    --b-cyan-glow: 0 0 20px rgba(0, 210, 255, 0.5);
    --b-glass-bg: rgba(15, 23, 42, 0.5);
    --b-glass-border: rgba(255, 255, 255, 0.08);
    --b-pill-bg: rgba(255, 255, 255, 0.03);

    background-color: var(--b-bg-color);
    background-image: var(--b-bg-gradient);
    color: var(--b-text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    padding: 100px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Kapsayıcı Konteyner */
.bilgilendirme-container {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin-top: 50px;
}

/* ==============================================================
   HERO / BAŞLIK BÖLÜMÜ
   ============================================================== */
.b-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.b-cyan-text {
    color: var(--b-cyan);
    text-shadow: var(--b-cyan-glow);
}

.b-subtitle {
    font-size: 1.25rem;
    color: var(--b-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

/* ==============================================================
   PILLS / HAP ETİKET BÖLÜMÜ
   ============================================================== */
.b-pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.b-pill {
    background: var(--b-pill-bg);
    border: 1px solid var(--b-glass-border);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--b-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.b-pill i {
    color: var(--b-cyan);
    font-size: 1rem;
}

.b-pill:hover {
    background: rgba(0, 210, 255, 0.05);
    border-color: rgba(0, 210, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.1);
}

.b-pill-single {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

/* ==============================================================
   BUTONLAR
   ============================================================== */
.b-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.b-btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-family: inherit;
}

.b-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.b-btn-primary {
    background-color: var(--b-cyan);
    color: #000;
    box-shadow: var(--b-cyan-glow);
}

.b-btn-primary:hover {
    background-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.b-btn-secondary {
    background-color: transparent;
    color: var(--b-text-main);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.b-btn-secondary:hover {
    border-color: var(--b-cyan);
    color: var(--b-cyan);
    background: rgba(0, 210, 255, 0.05);
    transform: scale(1.05);
}

/* ==============================================================
   BİLGİLENDİRME NOTU (İTALİK)
   ============================================================== */
.b-info-note {
    font-size: 1.1rem;
    color: var(--b-cyan);
    font-weight: 400;
    font-style: italic;
    margin: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 50px;
}

/* ==============================================================
   MINI FORM (GLASSMORPHISM)
   ============================================================== */
.b-form-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.b-glass-form {
    background: var(--b-glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--b-glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    text-align: left;
}

/* Form Elemanları */
.b-form-group {
    margin-bottom: 20px;
}

.b-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--b-text-muted);
}

.b-input,
.b-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.b-textarea {
    min-height: 120px;
    resize: vertical;
}

.b-input:focus,
.b-textarea:focus {
    outline: none;
    border-color: var(--b-cyan);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
    background: rgba(0, 210, 255, 0.02);
}

.b-input::placeholder,
.b-textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

/* Checkbox */
.b-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
}

.b-checkbox {
    margin-top: 4px;
    accent-color: var(--b-cyan);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.b-checkbox-label {
    font-size: 0.9rem;
    color: var(--b-text-muted);
    line-height: 1.5;
    cursor: pointer;
}

/* Form Butonu */
.b-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* ==============================================================
   TOAST UYARI BÖLÜMÜ (JS İLE KONTROL EDİLECEK)
   ============================================================== */
.b-alert {
    display: none;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    animation: b-fadeIn 0.3s ease forwards;
}

.b-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.b-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

@keyframes b-fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================================================
   RESPONSIVE KONTROLLER
   ============================================================== */
@media (max-width: 768px) {
    .b-hero h1 {
        font-size: 2.2rem;
    }

    .b-actions {
        flex-direction: column;
        gap: 15px;
    }

    .b-btn {
        width: 100%;
    }

    .b-pills-row {
        flex-direction: column;
        align-items: center;
    }

    .b-glass-form {
        padding: 30px 20px;
    }
}