/* ==========================================
   ATÖLYESEL - İLETİŞİM (CONTACT) MODÜLÜ V2.0
   ========================================== */

:root {
    --white:        #ffffff;
    --bg:           #f7f5f2;
    --primary:      #ff5c35;
    --primary-soft: #fff1ee;
    --primary-dark: #e04520;
    --ink:          #1a1a1a;
    --ink-2:        #444444;
    --ink-3:        #888888;
    --border:       #eae8e4;
    --border-2:     #d8d5d0;
    --radius-pill:  999px;
    --radius-xl:    24px;
    --radius-lg:    16px;
    --radius-md:    12px;
    --shadow-sm:    0 4px 16px rgba(0,0,0,.08);
    --shadow-md:    0 12px 32px rgba(0,0,0,.10);
    --ease:         cubic-bezier(.25,.46,.45,.94);
    --font:         'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ── 1. Hero Bölümü ── */
.contact-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-family: var(--font);
}

.contact-hero h1 {
    font-family: var(--font);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.contact-hero p {
    font-family: var(--font);
    font-size: 1.1rem;
    color: var(--ink-2);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── 2. Ana Izgara Yerleşimi ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 100px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 3. İletişim Bilgileri (Sol Panel) ── */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: var(--radius-xl);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--border-2);
}

.info-card.dark-card {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.dark-card .info-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.info-card h3 {
    font-family: var(--font);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--ink);
}

.dark-card h3 {
    color: var(--white);
}

.info-card p {
    font-family: var(--font);
    color: var(--ink-3);
    font-size: 15px;
    line-height: 1.7;
}

.dark-card p {
    color: rgba(255, 255, 255, 0.7);
}

.dark-card strong {
    color: var(--white);
    font-size: 18px;
    display: block;
    margin-top: 4px;
}

/* ── 4. Form Alanı (Sağ Panel) ── */
.form-section {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-2);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 15px;
    color: var(--ink);
    background: var(--bg);
    transition: all 0.3s var(--ease);
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-control::placeholder {
    color: var(--ink-3);
    font-weight: 500;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Buton Düzenlemesi */
.btn-submit {
    width: 100%;
    padding: 18px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 800;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,92,53,.35);
}

/* ── 5. Bildirim (Alert) Mesajları ── */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
    text-align: center;
}

.alert-success {
    background: #e6f4ea;
    color: #047857;
    border: 1px solid #34d399;
}