/* --- APPLY PAGE STYLES --- */

/* Genel Sayfa Düzeni */
.apply-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1300px;
    margin: 120px auto 60px auto;
    padding: 0 40px;
    align-items: start;
}

/* SOL Taraf: Bilgi */
.status-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Yanıp sönen kırmızı ışık efekti */
.pulse-red {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

.apply-title {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apply-desc {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Aciliyet Kutusu */
.urgency-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #ff4757; /* Kırmızı uyarı çizgisi */
    padding: 25px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
}

.u-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.u-row:last-child { margin-bottom: 0; }

.u-row i {
    font-size: 20px;
    color: #ff4757;
    width: 30px;
    text-align: center;
}

.u-row div {
    display: flex;
    flex-direction: column;
}

.u-row strong {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.u-row span {
    font-size: 14px;
    color: #ccc;
}

/* Timeline (Süreç) */
.process-timeline {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 30px;
    margin-left: 10px;
}

.pt-item {
    position: relative;
    margin-bottom: 30px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.pt-dot {
    position: absolute;
    left: -37px;
    top: 3px;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    border: 2px solid #000;
}

.pt-item.active {
    color: #fff;
}

.pt-item.active .pt-dot {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

/* SAĞ TARAF: FORM TASARIMI */
.apply-form-container {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Üstte parlayan bir çizgi olsun */
.apply-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ff4757);
}

.form-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.form-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.form-header p {
    color: var(--text-gray);
    font-size: 14px;
}

.form-section-title {
    font-size: 12px;
    color: var(--accent);
    margin: 30px 0 15px 0;
    letter-spacing: 2px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group label {
    display: block;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 8px;
    font-weight: 500;
}

.delta-form input,
.delta-form select,
.delta-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    transition: 0.3s;
}

.delta-form input:focus,
.delta-form select:focus,
.delta-form textarea:focus {
    border-color: var(--accent);
    background: rgba(108, 92, 231, 0.05);
    outline: none;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.1);
}

.input-hint {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 5px;
    display: block;
}

/* Checkbox Tasarımı */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    font-size: 14px;
    color: #ccc;
}

.checkbox-group input {
    width: auto;
    cursor: pointer;
}

/* Submit Button */
.submit-app-btn {
    width: 100%;
    padding: 18px;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.submit-app-btn:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.5);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
    .apply-wrapper {
        grid-template-columns: 1fr;
        margin-top: 100px;
    }
    .apply-title {
        font-size: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}