/* --- GENEL AYARLAR (LIGHT MODE ODAKLI) --- */

:root {
    --primary-color: #6366f1;
    /* Ana Mor */
    --light-bg: #f8fafc;
    /* Çok açık gri arka plan */
    --white-bg: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --dark-bg: #0f172a;
    /* Header için koyu renk */
}


/* İletişim sayfasının gövdesi aydınlık olmalı */

body {
    background-color: var(--light-bg) !important;
    color: var(--text-dark);
    overflow-x: hidden !important; /* Yan taşmayı gizle */
    width: 100% !important; /* Genişlik %100 olsun */
    max-width: 100% !important; /* vh yerine % kullan */
    margin: 0;
    padding: 0;
}


/* --- HERO BAŞLIK ALANI (KOYU - SERVICES TARZI) --- */

.category-header {
    background-color: var(--dark-bg);
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 70px;
    text-align: center;
    overflow: hidden !important;
}

.category-title {
    color: white;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.category-desc {
    color: #94a3b8;
    /* Muted text rengi (Koyu zemin üstü) */
        text-align: center;
}


/* Gradyan Metin Efekti */

.text-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Orb Efekti (Header içinde süsleme) */

.orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}


/* --- İLETİŞİM KUTULARI (LIGHT MODE) --- */

.contact-info-box {
    background: var(--white-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.c-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.contact-info-box:hover .c-icon {
    background: var(--primary-color);
    color: white;
}


/* --- HARİTA --- */

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--white-bg);
    height: 300px;
    margin-top: 20px;
}


/* --- FORM ALANI (LIGHT MODE) --- */

.form-card {
    background: var(--white-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
}

.custom-input {
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 15px 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.custom-input:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    color: var(--text-dark);
}

.custom-input::placeholder {
    color: #94a3b8;
}


/* Select kutusu oku (SVG) */

.form-select.custom-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='[http://www.w3.org/2000/svg](http://www.w3.org/2000/svg)' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23334155' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}


/* --- SSS BÖLÜMÜ (LIGHT MODE) --- */

.faq-card {
    background-color: var(--white-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.faq-card-body {
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    background: transparent;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    /* Çok açık mavi */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.faq-title {
    color: var(--text-dark);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--text-muted);
    padding: 0 20px 20px 75px;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
    margin-top: -1px;
    padding-top: 15px;
}

.faq-toggle-icon {
    color: #cbd5e1;
    transition: 0.3s;
}

.faq-card-body[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-card-body[aria-expanded="true"] .faq-title {
    color: var(--primary-color);
}