/* ==== GENEL BAŞVURU FORMU - CSS ==== */

* {
    box-sizing: border-box;
}

.ga-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.ga-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    min-height: 600px;
}

/* ===== SIDEBAR ===== */
.ga-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.ga-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 30px 0;
    padding: 0;
}

.ga-steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ga-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-weight: 500;
    position: relative;
}

.ga-step-item:hover {
    background-color: #f5f5f5;
}

.ga-step-item.active {
    color: #1a3a66;
    background-color: #e8f0ff;
}

.ga-step-item.completed {
    color: #28a745;
    background-color: #e8f5e9;
}

.ga-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: white;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ga-step-item.active .ga-step-number {
    background: #1a3a66;
    color: white;
    border-color: #1a3a66;
}

.ga-step-item:nth-child(even) .ga-step-number {
    border-color: #ddd;
}

.ga-step-item:nth-child(even).active .ga-step-number {
    background: #1a3a66;
    border-color: #1a3a66;
}

.ga-step-label {
    font-size: 14px;
}

/* ===== FORM WRAPPER ===== */
.ga-form-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

/* ===== STEP CONTENT ===== */
.ga-step-content {
    display: none;
}

.ga-step-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ga-step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.ga-step-icon {
    font-size: 32px;
}

.ga-step-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* ===== FORM GROUPS ===== */
.ga-form-group {
    margin-bottom: 25px;
}

.ga-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #ff6b6b;
}

/* ===== INPUTS ===== */
.ga-input,
.ga-select,
.ga-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.ga-input:focus,
.ga-select:focus,
.ga-textarea:focus {
    outline: none;
    border-color: #1a3a66;
    box-shadow: 0 0 0 2px rgba(26, 58, 102, 0.08);
}

.ga-textarea {
    resize: vertical;
    min-height: 100px;
}

.char-count {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    text-align: right;
}

/* ===== RADIO & CHECKBOX ===== */
.ga-radio-group,
.ga-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ga-radio-group-inline,
.ga-checkbox-group-inline {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.ga-radio,
.ga-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.ga-radio input[type="radio"],
.ga-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1a3a66;
}

.ga-radio input[type="radio"] {
    border-radius: 50%;
}

.ga-radio span,
.ga-checkbox span {
    font-size: 14px;
    color: #333;
}

/* ===== FORM ROW ===== */
.ga-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ga-form-row .ga-form-group {
    margin-bottom: 0;
}

/* ===== PHOTO UPLOAD ===== */
.ga-photo-upload {
    position: relative;
    cursor: pointer;
}

.ga-photo-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 140px;
    height: 140px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background: #fafafa;
    color: #999;
    transition: all 0.3s ease;
}

.ga-photo-preview:hover {
    border-color: #1a3a66;
    background: #f0f5ff;
}

.ga-photo-preview svg {
    width: 48px;
    height: 48px;
}

.ga-photo-preview p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}

.ga-file-input {
    display: none;
}

/* ===== DEGREES CARD ===== */
.ga-degrees-list,
.ga-exps-list {
    margin-bottom: 20px;
}

.ga-degree-card,
.ga-exp-card {
    background: #f9f9f9;
    border: 1px solid #cccccc !important;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.ga-degree-card label,
.ga-exp-card label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 6px;
}

.ga-degree-card .ga-form-group,
.ga-exp-card .ga-form-group {
    margin-bottom: 15px;
}

.ga-degree-card .ga-form-group:last-of-type,
.ga-exp-card .ga-form-group:last-of-type {
    margin-bottom: 0;
}

.ga-remove-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.ga-remove-btn:hover {
    background: #ff5252;
}

/* ===== BUTTONS ===== */
.ga-btn-add {
    background: white;
    color: #1a3a66;
    border: 2px solid #1a3a66;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ga-btn-add:hover {
    background: #f0f5ff;
}

.section-label {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0066cc !important;
}

/* ===== INFO MESSAGE ===== */
.ga-info {
    background: #fff3cd;
    color: #856404;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 8px;
    margin-bottom: 0;
}

/* ===== FORM FOOTER ===== */
.ga-form-footer {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.ga-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-transform: capitalize;
}

.ga-btn-primary {
    background: #0066cc;
    color: white;
}

.ga-btn-primary:hover {
    background: #0052a3;
}

.ga-btn-secondary {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.ga-btn-secondary:hover {
    background: #e8e8e8;
}

.ga-btn-success {
    background: #28a745;
    color: white;
}

.ga-btn-success:hover {
    background: #218838;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ga-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ga-sidebar {
        position: relative;
        top: auto;
    }
    
    .ga-steps-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .ga-step-item {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        flex-direction: column;
        padding: 10px;
    }
    
    .ga-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ga-container {
        margin: 20px auto;
    }
    
    .ga-form-wrapper {
        padding: 20px;
    }
    
    .ga-step-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ga-form-footer {
        flex-direction: column;
    }
    
    .ga-btn {
        width: 100%;
    }
}

/* ===== POPUP NOTIFICATIONS ===== */
.ga-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease;
    display: none;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.ga-popup-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.ga-popup-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.ga-popup-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.ga-popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.ga-popup-icon {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: bold;
}

.ga-popup p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .ga-popup {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}

