/* === GENEL SAYFA YAPISI === */
.page-intro { text-align: center; padding: 6rem 2rem 4rem 2rem; background: linear-gradient(180deg, rgba(13, 13, 26, 0.5) 0%, transparent 100%); }
.page-intro h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); margin-bottom: 1rem; color: var(--primary-color); text-shadow: 0 0 15px var(--neon-glow-primary); }
.page-intro p { font-size: 1.1rem; max-width: 700px; margin: 0 auto; color: #ccc; opacity: 0.9; }
.page-section { padding: 3rem 2rem 6rem 2rem; }

/* === İLETİŞİM ANA YAPISI === */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; max-width: 1200px; margin: 0 auto; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-block { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); padding: 2rem; border-radius: 10px; transition: transform 0.3s, box-shadow 0.3s; }
.info-block:hover { transform: translateY(-5px); box-shadow: 0 0 20px var(--neon-glow-primary); }
.info-block i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; text-shadow: 0 0 10px var(--neon-glow-primary); }
.info-block h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.info-block p { font-size: 0.95rem; color: #ccc; margin-bottom: 1.5rem; line-height: 1.7; }
.info-button { display: inline-block; background: transparent; border: 1px solid var(--border-color); color: var(--text-color); padding: 0.6rem 1.2rem; border-radius: 5px; font-weight: 600; transition: background-color 0.3s, color 0.3s, border-color 0.3s; }
.info-button:hover { background-color: var(--primary-color); border-color: var(--primary-color); color: var(--bg-color); }

/* === İLETİŞİM FORMU === */
.contact-form-wrapper h2 { font-size: 2rem; margin-bottom: 2rem; color: var(--primary-color); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: #ccc; }
.form-group input, .form-group textarea { width: 100%; padding: 0.9rem; background-color: rgba(0,0,0,0.3); border: 1px solid var(--border-color); border-radius: 5px; color: var(--text-color); font-family: inherit; font-size: 1rem; transition: border-color 0.3s, box-shadow 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 10px var(--neon-glow-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
#form-result { margin-top: 1rem; padding: 1rem; border-radius: 5px; display: none; text-align: center; font-weight: 600; }
#form-result.success { background-color: rgba(0, 191, 255, 0.1); border: 1px solid var(--primary-color); color: var(--primary-color); }
#form-result.error { background-color: rgba(255, 0, 255, 0.1); border: 1px solid var(--accent-color); color: var(--accent-color); }

/* === ANİMASYON İÇİN === */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@media(max-width: 992px) { .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; } }
@media(max-width: 768px) { .page-section { padding: 4rem 1rem; } .page-intro { padding: 5rem 1rem 3rem 1rem; } .page-intro h1 { font-size: 2.5rem; } }