/* =========================
   PREMIUM CONTACT PAGE
   ========================= */

body {
    background-color: #0b0d10; /* Ana site ile aynı koyu zemin */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; /* Izgara efekti */
    color: #fff;
    font-family: 'Inter', sans-serif;
    /* Flex yapısı artık #app-wrapper'da */
}

/* --- NAV (Basit Üst Bar) --- */
.contact-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 40px;
}

.brand-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.nav-logo { width: 32px; border-radius: 6px; }
.brand-text { font-weight: 800; font-size: 1.2rem; color: #ffd700; }

.back-link {
    color: #94a3b8; text-decoration: none; font-weight: 600; transition: 0.3s;
    display: flex; align-items: center; gap: 8px;
}
.back-link:hover { color: #ffd700; transform: translateX(-5px); }


/* --- MAIN WRAPPER --- */
.contact-wrapper {
    flex: 1; /* Sticky footer için */
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 40px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-header { text-align: center; margin-bottom: 40px; }
.contact-header h1 {
    font-size: 2.5rem; font-weight: 800; margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.contact-header p { color: #64748b; font-size: 1.1rem; }


/* --- CONTACT CARD (Büyük Kutu) --- */
.contact-card {
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex;
    overflow: hidden;
    max-width: 1000px; width: 100%;
}

/* SOL TARA (BİLGİLER) */
.contact-info {
    flex: 1;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 50px;
    display: flex; flex-direction: column; gap: 30px;
    position: relative;
}

.contact-info h3 { font-size: 1.5rem; color: #ffd700; margin-bottom: 5px; }
.info-desc { color: #94a3b8; font-size: 0.9rem; margin-bottom: 20px; line-height: 1.5; }

.info-item { display: flex; align-items: center; gap: 15px; }
.icon-box {
    width: 45px; height: 45px; background: rgba(255, 215, 0, 0.1);
    border-radius: 50%; color: #ffd700;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.info-item span { display: block; font-size: 0.85rem; color: #64748b; margin-bottom: 3px; }
.info-item p { font-weight: 600; color: #e2e8f0; }

.social-links { margin-top: auto; display: flex; gap: 15px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.05); color: #fff;
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.social-links a:hover { background: #ffd700; color: #000; transform: translateY(-3px); }


/* SAĞ TARA (FORM) */
.contact-form-area {
    flex: 1.5; /* Form alanı biraz daha geniş */
    padding: 50px;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #cbd5e1; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }

.input-wrapper { position: relative; }
.input-wrapper i {
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
    color: #64748b;
}
/* Textarea için ikon ayarı */
.textarea-wrapper i { top: 20px; transform: none; }

.input-wrapper input, .input-wrapper textarea {
    width: 100%;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 14px 14px 45px; /* İkon boşluğu */
    color: #fff; font-size: 0.95rem; outline: none;
    font-family: inherit; transition: 0.3s;
}
.input-wrapper textarea { height: 120px; resize: none; }

.input-wrapper input:focus, .input-wrapper textarea:focus {
    border-color: #ffd700; background: #000;
}

.send-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000; border: none; padding: 15px;
    border-radius: 12px; font-weight: 800; font-size: 1rem;
    cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.send-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2); }

/* MOBİL UYUM */
@media (max-width: 768px) {
    .contact-card { flex-direction: column; }
    .contact-info { padding: 30px; }
    .contact-form-area { padding: 30px; }
    .contact-header h1 { font-size: 2rem; }
}