/*
Theme Name: Kocaeli Hayal Sehri Formu
Author: Custom Theme
Version: 1.2
Description: Kocaeli Büyükşehir Belediyesi Gençlik Projesi Birebir Başvuru Teması
*/

:root {
    --primary-red: #e30613;
    --border-pink: #fde8ea;
    --bg-pink: #fff5f6;
    --text-dark: #2d3748;
    --text-muted: #718096;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #f7fafc;
    color: var(--text-dark);
    padding: 30px 15px;
}

.form-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
}

/* Header Logos & Title */
.header-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.header-logos img {
    max-height: 55px;
    width: auto;
}

.banner-title {
    text-align: center;
    margin-bottom: 25px;
}

.banner-title h2 {
    color: var(--primary-red);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    font-style: italic;
}

.banner-title h1 {
    font-size: 38px;
    font-weight: 900;
    color: #1a202c;
    letter-spacing: 0.5px;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-pink);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.badge-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-pink);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

/* Section Box */
.section-box {
    border: 1.5px solid var(--border-pink);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 18px;
    background: #fff;
}

.section-title {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

/* Form Grids & Inputs */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.span-2 { grid-column: span 2; }

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper svg {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    stroke: #a0aec0;
}

.input-style {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.input-style:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

textarea.input-style {
    padding: 12px;
    min-height: 80px;
    resize: vertical;
    background: #f7fafc;
}

/* Radio Group */
.radio-group { display: flex; gap: 15px; }
.radio-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}
.radio-card input { accent-color: var(--primary-red); width: 16px; height: 16px; }

/* Rules List */
.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    font-size: 12px;
    line-height: 1.4;
    color: #4a5568;
}

.rule-item { display: flex; gap: 8px; align-items: flex-start; }
.rule-num { color: var(--primary-red); font-weight: 800; min-width: 16px; }

/* Veli Onay */
.consent-box {
    background: var(--bg-pink);
    border: 1.5px solid var(--border-pink);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.consent-box input { accent-color: var(--primary-red); width: 20px; height: 20px; }
.consent-text { font-size: 12.5px; font-weight: 600; color: #2d3748; }

/* Signature Boxes */
.signatures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.sig-box {
    border: 1.5px dashed var(--border-pink);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    background: #fff;
}

.sig-title {
    font-size: 11px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sig-line {
    border-bottom: 1px dotted #cbd5e0;
    margin: 0 10px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #e30613, #b8000b);
    color: #fff;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
    transition: transform 0.2s;
}

.submit-btn:hover { transform: translateY(-2px); }