/* Disability Survey Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Inline style merged */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* Header Section */
.survey-header {
    background: linear-gradient(135deg, #0b2c4a 0%, #1a4b75 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.survey-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.survey-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Question Number - Mərkəzlənmiş dairə */
.question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #e6b12e;
    color: #0b2c4a;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 10px;
    font-size: 14px;
}

/* Form Label */
.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Submit Button */
.btn-submit {
    background: #0b2c4a;
    color: white;
    padding: 12px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-submit:hover {
    background: #e6b12e;
    color: #0b2c4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Info Box */
.info-box {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: #e8f4f8;
    border-left: 5px solid #e6b12e;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Info Icon */
.info-icon {
    flex-shrink: 0;
    font-size: 1.6rem;
    color: #e6b12e;
    padding-top: 0.2rem;
}

/* Info Text */
.info-text {
    flex: 1;
    text-align: justify;
    text-justify: inter-word;
    color: #333;
}

.info-text p {
    text-indent: 1.5em;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.info-text p:last-child {
    margin-bottom: 0;
}

/* Other Input */
.other-input {
    margin-top: 10px;
    margin-left: 28px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-item {
    min-width: 200px;
}

/* Required Field */
.required-field::after {
    content: "*";
    color: red;
    margin-left: 3px;
}

/* Form Check */
.form-check {
    margin-bottom: 8px;
}

.form-check-input:checked {
    background-color: #e6b12e;
    border-color: #e6b12e;
}

.form-check-input:focus {
    border-color: #e6b12e;
    box-shadow: 0 0 0 0.2rem rgba(230, 177, 46, 0.25);
}

/* Alert */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: 10px;
}

.alert-success i {
    color: #28a745;
}

/* Error Messages */
.text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Modal Arxa Fonu */
.modal {
    display: none; /* JS ilə açılacaq */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px); /* Arxa fonu bulandıran premium effekt */
    align-items: center;
    justify-content: center;
}

/* Modal Qutusu */
.modal-content {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 24px; /* Daha yumşaq künclər */
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* İkon Dizaynı */
.icon-wrapper {
    margin-bottom: 1.5rem;
}

.modal-content i {
    font-size: 80px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 8px 15px rgba(46, 204, 113, 0.4));
    animation: iconScale 0.8s ease-out;
}

/* Başlıq */
.modal-content h3 {
    color: #2c3e50; /* Tünd professional rəng */
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: clamp(22px, 5vw, 28px);
    letter-spacing: -0.5px;
}

/* Mesaj */
.modal-content p {
    color: #7f8c8d; /* Yumşaq boz rəng */
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Professional Düymə */
.btn-close-modal {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    filter: brightness(1.1);
}

/* Animasiyalar */
@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes iconScale {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



/* Responsive Adjustments */
@media (max-width: 992px) {
    .survey-header { padding: 2.5rem 0; }
    .survey-title { font-size: 2.2rem; }
    .survey-subtitle { font-size: 1.1rem; }
    .form-card { padding: 1.8rem; }
    .checkbox-item { min-width: 45%; }
    .other-input { margin-left: 0; }
    .info-box { flex-direction: column; gap: 0.8rem; padding: 1rem; }
    .info-icon { font-size: 1.4rem; padding-top: 0; }
    .info-text { text-align: justify; }
}

@media (max-width: 768px) {
    .survey-header { padding: 2rem 0; }
    .survey-title { font-size: 1.8rem; }
    .survey-subtitle { font-size: 1rem; }
    .form-card { padding: 1.5rem; }
    .checkbox-item { min-width: 100%; }
    .other-input { margin-left: 0; }
    .info-box { flex-direction: column; gap: 0.6rem; padding: 0.8rem; }
    .info-icon { font-size: 1.2rem; }
}

@media (max-width: 576px) {
    .survey-header { padding: 1.5rem 0; }
    .survey-title { font-size: 1.5rem; }
    .survey-subtitle { font-size: 0.95rem; }
    .btn-submit { padding: 10px 25px; font-size: 0.95rem; }
    .question-number { width: 24px; height: 24px; font-size: 12px; }
    .info-box { flex-direction: column; gap: 0.5rem; padding: 0.6rem; }
    .info-icon { font-size: 1rem; }
    .modal-content h3 { font-size: clamp(20px, 6vw, 28px); }
    .modal-content p { font-size: clamp(14px, 4vw, 18px); max-width: 90%; }
}