/* --- CONTACT PAGE STYLES --- */

.contact-hero {
    padding: 160px 20px 60px 20px;
    text-align: center;
}

/* Sinyal Göstergesi */
.signal-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(39, 201, 63, 0.3);
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27c93f;
    border-radius: 50%;
    box-shadow: 0 0 10px #27c93f;
    animation: blink 2s infinite;
}

/* Contact Grid Düzeni */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    height: 100%;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.cc-sub {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 30px;
}

/* Sol Taraf: Bilgi Satırları */
.info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.ir-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.ir-label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.ir-val {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* Harita Placeholder (Tech Görünümü) */
.map-placeholder {
    margin-top: 40px;
    height: 150px;
    width: 100%;
    background: 
        linear-gradient(rgba(108, 92, 231, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent);
    top: 50%;
    animation: scanMap 3s infinite linear;
    opacity: 0.5;
}

@keyframes scanMap {
    0% { top: 0%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* FAQ Accordion */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-item summary {
    padding: 25px 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-item summary:hover {
    color: var(--accent);
}

/* Ok işareti yerine + / - koymak için */
.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--text-gray);
}

.faq-item[open] summary::after {
    content: '-';
    color: var(--accent);
}

.faq-content {
    padding-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
    animation: fadeIn 0.5s ease;
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-hero {
        padding-top: 120px;
    }
}

/* Tüm text inputlar, şifre alanları ve textarea için */
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  width: 100%; /* Kapsayıcısına tam oturması için */
  padding: 12px 20px; /* İçeriden boşluk: Rahat yazım için */
  margin: 8px 0; /* Dış boşluk */
  display: inline-block;
  border: 1px solid #ccc; /* Varsayılan gri kenarlık */
  border-radius: 4px; /* Hafif yuvarlatılmış köşeler */
  box-sizing: border-box; /* Padding ekleyince genişliğin taşmasını engeller */
  transition: all 0.3s ease; /* Yumuşak geçiş efekti */
  font-family: inherit; /* Sayfanın yazı tipini kullanır */
  font-size: 16px;
  background-color: transparent;
  color: white;
}

/* Kullanıcı inputa tıkladığında (Focus Hali) */
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  border-color: #6c5ce7; /* Odaklanınca kenarlık yeşil olur (Rengi değiştirebilirsin) */
  box-shadow: 0 0 8px rgba(108, 92, 231, 0.2); /* Hafif bir parlama efekti */
  outline: none; /* Varsayılan tarayıcı çizgisini kaldırır */
}