/* ========================================
   UYGUNLUK FORMU CSS STİLLERİ
   Global Pro Vize - Self Sponsorship Uygunluk Kontrolü
   ======================================== */

/* Scroll offset for fixed navbar */
#eligibility-check {
    scroll-margin-top: 120px;
}

/* Multi-Step Eligibility Form Styles - Enhanced */
.eligibility-multi-step-form {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(128, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
}

/* Progress Indicator - Enhanced */
.step-progress-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #e9ecef;
}

.progress-step {
    text-align: center;
    flex: 1;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 4px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.progress-step.active .step-number {
    background: #800000;
    color: white;
}

.progress-step.completed .step-number {
    background: #059669;
    color: white;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    line-height: 1.1;
}

.progress-step.active .step-title {
    color: #800000;
}

/* Step Containers */
.step-container {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.step-container.active {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    text-align: center;
    margin-bottom: 15px;
}

.step-content {
    margin-top: 8px;
}

.step-header h3 {
    color: #800000;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-header p {
    color: #6c757d;
    font-size: 1rem;
}

/* Form Styles - Enhanced */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    color: #800000;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
    display: block;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 100%;
    height: 50px;
    min-height: 50px;
}

/* Age Group Dropdown Styling */
#age_group {
    background-color: #fff;
}

#age_group option {
    padding: 8px 12px;
    font-weight: 500;
}

#age_group option[value="under_18"] {
    background-color: #fef2f2;
    color: #dc2626;
    font-weight: 600;
}

#age_group option[value="18_60"] {
    background-color: #d1fae5;
    color: #059669;
    font-weight: 600;
}

#age_group option[value="over_60"] {
    background-color: #fef3c7;
    color: #d97706;
    font-weight: 600;
}

#age_group option[value=""] {
    background-color: #f8fafc;
    color: #6b7280;
    font-style: italic;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 8px;
}

.country-selector {
    flex: 0 0 200px;
    min-width: 200px;
    position: relative;
}

.country-search {
    width: 100%;
    background: white;
    border: 2px solid rgba(128, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.95rem;
    color: #2d3748;
    transition: all 0.3s ease;
}

.country-search:focus {
    border-color: #800000;
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
    outline: none;
}

.country-search:hover {
    border-color: rgba(128, 0, 0, 0.2);
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid rgba(128, 0, 0, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.country-dropdown.show {
    display: block;
}

.country-list {
    max-height: 280px;
    overflow-y: auto;
}

.country-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.country-item:hover {
    background: #f8f9fa;
    color: #800000;
}

.country-item.selected {
    background: rgba(128, 0, 0, 0.1);
    color: #800000;
    font-weight: 600;
}

.country-flag {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.country-name {
    flex: 1;
    color: #2d3748;
}

.country-code {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.8rem;
}

.phone-number-input {
    flex: 1;
}

.form-text {
    color: #6c757d;
    font-size: 0.8rem;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.validation-feedback {
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.validation-feedback.valid {
    color: #059669;
}

.validation-feedback.invalid {
    color: #dc3545;
}

.form-control:focus,
.form-select:focus {
    border-color: #800000;
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
    outline: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-check {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check:hover {
    border-color: #800000;
    background: rgba(128, 0, 0, 0.05);
}

.form-check-input {
    margin-right: 10px;
}

.form-check-input:checked + .form-check-label {
    color: #800000;
    font-weight: 600;
}

.form-check:has(.form-check-input:checked) {
    border-color: #800000;
    background: rgba(128, 0, 0, 0.1);
}

/* Navigation Buttons */
.step-navigation-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 2px solid #e9ecef;
}

.step-navigation-buttons .btn {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

/* Modern Result Display - Kompakt Tasarım */
.eligibility-result-container {
    text-align: center;
    padding: 15px;
}

.result-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(128, 0, 0, 0.1);
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e9ecef;
}

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.result-icon.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
}

.result-icon.warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

.result-icon.danger {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    color: #dc3545;
}

.result-title-section {
    text-align: left;
    flex: 1;
}

.result-main-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.result-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.result-score-section {
    padding: 25px 20px;
    background: white;
}

.score-circle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.score-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid;
    transition: all 0.3s ease;
}

.score-circle.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-color: #059669;
    color: #059669;
}

.score-circle.warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: #d97706;
    color: #d97706;
}

.score-circle.danger {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border-color: #dc3545;
    color: #dc3545;
}

.score-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.score-total {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

.score-percentage {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 15px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-badge.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
    border: 2px solid #059669;
}

.status-badge.warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
    border: 2px solid #d97706;
}

.status-badge.danger {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    color: #dc3545;
    border: 2px solid #dc3545;
}

.result-message-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-top: 1px solid #e9ecef;
}

.message-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.message-content {
    text-align: left;
    flex: 1;
}

.message-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 6px 0;
}

.message-content p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.result-actions {
    padding: 15px 20px;
    background: white;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.result-actions .btn {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.result-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.result-actions .btn-primary {
    background: linear-gradient(135deg, #800000, #a00000);
    border: none;
    color: white;
}

.result-actions .btn-primary:hover {
    background: linear-gradient(135deg, #600000, #800000);
    color: white;
}

.result-actions .btn-outline-secondary {
    border: 2px solid #6b7280;
    color: #6b7280;
    background: white;
}

.result-actions .btn-outline-secondary:hover {
    background: #6b7280;
    color: white;
    border-color: #6b7280;
}

.score-circular-progress {
    position: relative;
    padding: 8px 15px;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#800000 0deg, #800000 calc(var(--score, 0) * 3.6deg), #e9ecef calc(var(--score, 0) * 3.6deg));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.score-circle::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
}

.score-number {
    font-size: 1.4rem;
    font-weight: bold;
    color: #800000;
    z-index: 1;
}

.score-total {
    font-size: 0.8rem;
    color: #6c757d;
    z-index: 1;
}

.score-status {
    text-align: left;
}

/* Alert Styles */
.hard-fail-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
    text-align: left;
}

.hard-fail-alert h4 {
    margin: 0 0 10px 0;
    color: #dc2626;
}

.hard-fail-alert ul {
    margin: 0;
    padding-left: 20px;
}

/* Criteria Breakdown */
.criteria-breakdown {
    margin: 30px 0;
    text-align: left;
}

.criteria-breakdown h4 {
    color: #800000;
    margin-bottom: 20px;
    text-align: center;
}

.criteria-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.criteria-card {
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid;
    background: #f8f9fa;
}

.criteria-card.success {
    border-left-color: #059669;
    background: #d1fae5;
}

.criteria-card.info {
    border-left-color: #3b82f6;
    background: #dbeafe;
}

.criteria-card.warning {
    border-left-color: #d97706;
    background: #fef3c7;
}

.criteria-card.danger {
    border-left-color: #dc3545;
    background: #fef2f2;
}

.criteria-name {
    font-weight: 600;
    color: #800000;
    margin-bottom: 5px;
}

.criteria-value {
    color: #6c757d;
    margin-bottom: 5px;
}

.criteria-score {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

/* Sections */
.strengths-section,
.weaknesses-section,
.recommendations-section {
    margin: 15px 0;
    text-align: left;
}

.strengths-section h4,
.weaknesses-section h4,
.recommendations-section h4 {
    margin-bottom: 10px;
}

.strengths-section ul,
.weaknesses-section ul,
.recommendations-section ul {
    padding-left: 20px;
}

.strengths-section li {
    color: #059669;
    margin-bottom: 6px;
}

.weaknesses-section li {
    color: #d97706;
    margin-bottom: 6px;
}

.recommendations-section li {
    color: #3b82f6;
    margin-bottom: 6px;
}

/* CTA Buttons */
.cta-buttons {
    margin: 15px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 10px;
}

.cta-buttons h4 {
    color: #800000;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.cta-buttons .btn {
    margin: 3px;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* ===== ELIGIBILITY TEST FORM - INLINE CSS MIGRATION ===== */

/* Select2 Custom Styles */
.select2-container--bootstrap-5 .select2-selection {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    min-height: 38px;
}

.select2-container--bootstrap-5 .select2-selection--single {
    height: 38px;
    padding: 0.375rem 0.75rem;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    line-height: 26px;
    padding-left: 0;
    padding-right: 0;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
    height: 36px;
    right: 8px;
}

.select2-container--bootstrap-5 .select2-dropdown {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.select2-result-occupation__title {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.select2-result-occupation__description {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.2;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted {
    background-color: #800000;
    color: white;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted .select2-result-occupation__description {
    color: rgba(255, 255, 255, 0.8);
}

/* Beceri Seviyesi Renk Kodları */
.skill-level-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-level-higher {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.skill-level-medium {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.skill-level-ineligible {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Hover durumunda renkler */
.select2-container--bootstrap-5 .select2-results__option--highlighted .skill-level-higher {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted .skill-level-medium {
    background-color: #ffc107;
    color: #212529;
    border-color: #ffc107;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted .skill-level-ineligible {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* Konfeti ve Tebrik Animasyonları */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.congratulations-message {
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
}

.congratulations-icon {
    animation: pulse 2s infinite;
}

.congratulations-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.congratulations-text {
    font-size: 1.2rem;
    color: #155724;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Skill Level Badges */
.skill-level-badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.skill-level-higher {
    background-color: #d1fae5;
    color: #059669;
}

.skill-level-medium {
    background-color: #fef3c7;
    color: #d97706;
}

.skill-level-ineligible {
    background-color: #fef2f2;
    color: #dc3545;
}

/* Select2 Result Occupation Styles */
.select2-result-occupation__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.select2-result-occupation__title {
    font-weight: 600;
    color: #2d3748;
}

.select2-result-occupation__description {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Responsive - Tablet ve Mobil */
@media (max-width: 768px) {
    /* Eligibility Form Styles */
    .eligibility-multi-step-form {
        padding: 12px;
        margin: 0 8px;
    }
    
    .eligibility-form-container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .eligibility-form .form-group {
        margin-bottom: 12px;
    }
    
    /* Step Progress */
    .step-progress-indicator {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .progress-step {
        display: flex;
        align-items: center;
        text-align: left;
    }
    
    .step-number {
        margin: 0 8px 0 0;
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .step-title {
        font-size: 0.85rem;
    }
    
    .step-header h3 {
        font-size: 1.1rem;
    }
    
    .step-header p {
        font-size: 0.8rem;
    }
    
    /* Form Elements */
    .form-group {
        margin-bottom: 10px;
    }
    
    .form-control,
    .form-select {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    /* Result Display */
    .score-display {
        flex-direction: column;
        gap: 20px;
    }
    
    .score-number-large {
        font-size: 3rem;
    }
    
    .result-title {
        font-size: 1.5rem;
    }
    
    .status-title {
        font-size: 1.2rem;
    }
    
    .criteria-cards {
        grid-template-columns: 1fr;
    }
    
    /* Navigation */
    .step-navigation-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .step-navigation-buttons .btn {
        width: 100%;
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    /* Phone Input */
    .phone-input-group {
        flex-direction: column;
        gap: 8px;
    }

    .country-selector {
        flex: none;
        width: 100%;
        min-width: auto;
    }
    
    .country-search {
        font-size: 16px; /* iOS zoom önleme */
    }
    
    /* Action Buttons */
    .action-buttons .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    /* Modern Result Card - Mobile */
    .result-card {
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .result-card-header {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .result-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .result-title-section {
        text-align: center;
    }
    
    .result-main-title {
        font-size: 1.2rem;
    }
    
    .result-score-section {
        padding: 20px 15px;
    }
    
    .score-circle {
        width: 80px;
        height: 80px;
    }
    
    .score-number {
        font-size: 1.5rem;
    }
    
    .result-message-section {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .message-content {
        text-align: center;
    }
    
    .result-actions {
        padding: 15px;
        flex-direction: column;
        gap: 8px;
    }
    
    .result-actions .btn {
        width: 100%;
        min-width: auto;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Responsive - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .result-card {
        margin: 0 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .result-card-header {
        padding: 25px 20px;
    }
    
    .result-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .result-main-title {
        font-size: 1.5rem;
    }
    
    .result-score-section {
        padding: 30px 20px;
    }
    
    .score-circle {
        width: 100px;
        height: 100px;
    }
    
    .score-number {
        font-size: 2rem;
    }
    
    .result-message-section {
        padding: 25px 25px;
    }
    
    .result-actions {
        padding: 25px 25px;
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
    
    .result-actions .btn {
        flex: 1;
        max-width: 200px;
    }
}

/* Responsive - Küçük Mobil */
@media (max-width: 576px) {
    /* Eligibility Form - Küçük Ekranlar */
    .eligibility-form-container {
        padding: 20px;
        margin: 0 10px;
    }
    
    .eligibility-form .form-group {
        margin-bottom: 12px;
    }
    
    .eligibility-form .form-control,
    .eligibility-form .form-select {
        padding: 10px 12px;
        font-size: 16px; /* iOS zoom önleme */
    }
    
    /* Modern Result Card - Küçük Mobil */
    .result-card {
        margin: 0 5px;
        border-radius: 12px;
    }
    
    .result-card-header {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .result-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .result-title-section {
        text-align: center;
    }
    
    .result-main-title {
        font-size: 1.4rem;
    }
    
    .result-subtitle {
        font-size: 0.9rem;
    }
    
    .result-score-section {
        padding: 25px 15px;
    }
    
    .score-circle {
        width: 90px;
        height: 90px;
    }
    
    .score-number {
        font-size: 1.8rem;
    }
    
    .score-total {
        font-size: 0.9rem;
    }
    
    .score-percentage {
        font-size: 0.9rem;
    }
    
    .status-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .result-message-section {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .message-icon {
        font-size: 1.5rem;
    }
    
    .message-content {
        text-align: center;
    }
    
    .message-content h4 {
        font-size: 1rem;
    }
    
    .message-content p {
        font-size: 0.9rem;
    }
    
    .result-actions {
        padding: 20px 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .result-actions .btn {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .score-number-large {
        font-size: 2.5rem;
    }
    
    .result-title {
        font-size: 1.3rem;
    }
    
    .recommendation-section {
        padding: 15px;
    }
    
    .recommendation-title {
        font-size: 1.1rem;
    }
    
    .recommendation-text {
        font-size: 1rem;
    }
}

/* Responsive - Çok Küçük Ekranlar */
@media (max-width: 400px) {
    .result-card {
        margin: 0 5px;
        border-radius: 10px;
    }
    
    .result-card-header {
        padding: 12px 10px;
    }
    
    .result-main-title {
        font-size: 1.1rem;
    }
    
    .result-score-section {
        padding: 15px 10px;
    }
    
    .score-circle {
        width: 70px;
        height: 70px;
    }
    
    .score-number {
        font-size: 1.4rem;
    }
    
    .result-message-section {
        padding: 12px 10px;
    }
    
    .result-actions {
        padding: 12px 10px;
    }
    
    .result-actions .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}
