/* ========================================
   Part A: Information Section Styles
   ======================================== */

.apply-info-section {
    width: 100%;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid var(--logoBlue, #086AB0);
}

.apply-info-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.apply-info-title {
    font-size: 2.2rem;
    color: var(--logoBlue, #086AB0);
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Warning & Text Notices */
.apply-info-notices {
    margin-bottom: 1.5rem;
}

.apply-info-warning {
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc3545;
    margin: 0 0 0.5rem 0;
    padding: 0;
    animation: blinkWarning 2s ease-in-out infinite;
}

@keyframes blinkWarning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.apply-info-text {
    font-size: 1.1rem;
    color: #495057;
    margin: 0.15rem 0;
    padding: 0 0 0 10rem;
    line-height: 1.5;
    text-align: center;
}

/* Eligibility Button */
.eligibility-wrapper {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.eligibility-btn {
    background: linear-gradient(135deg, var(--logoBlue, #086AB0), #0056b3);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(8, 106, 176, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.eligibility-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 106, 176, 0.4);
}

.eligibility-btn-hide {
    background: linear-gradient(135deg, #6c757d, #495057);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.eligibility-btn-hide:hover {
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Eligibility Table */
.eligibility-table-wrapper {
    margin: 1.5rem auto;
    max-width: 900px;
    animation: slideDown 0.3s ease-out;
}

.eligibility-table-wrapper.hidden {
    display: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.eligibility-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-table thead th {
    background: linear-gradient(135deg, var(--logoBlue, #086AB0), #0056b3);
    color: white;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
}

.eligibility-table thead th i {
    margin-right: 0.5rem;
}

.eligibility-table tbody td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
    color: #495057;
    text-align: left;
}

.eligibility-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.eligibility-table tbody tr:hover {
    background: #e3f2fd;
    transition: background 0.2s ease;
}

.eligibility-table tbody tr:last-child td {
    border-bottom: none;
}

/* Device Shortage Notice Box */
.apply-info-notice-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem auto;
    max-width: 900px;
    text-align: left;
}

.notice-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #856404;
    margin-top: 0.15rem;
}

.notice-content p {
    margin: 0 0 0.5rem 0;
    padding: 0;
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.6;
    text-align: justify;
    max-width: none;
}

.notice-content p:last-child {
    margin-bottom: 0;
}

.notice-content strong {
    color: #664d03;
}

.notice-content ol {
    margin: 0.5rem 0 1rem 1.25rem;
    padding: 0;
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.6;
}

.notice-content ol li {
    margin-bottom: 0.35rem;
}

/* Below Form Section (Device Shortage Notice + Footer) */
.apply-below-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}

.apply-below-form .apply-info-notice-box {
    margin-top: 0;
}

/* Footer Info Items */
.apply-info-footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.info-footer-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    color: #495057;
}

.info-footer-item i {
    color: var(--logoBlue, #086AB0);
    font-size: 1.2rem;
}

.info-footer-item strong {
    color: var(--logoBlue, #086AB0);
}

/* Responsive */
@media (max-width: 768px) {
    .apply-info-section {
        padding: 1.5rem 1rem 1rem;
    }

    .apply-info-title {
        font-size: 1.6rem;
    }

    .apply-info-warning {
        font-size: 1.1rem;
    }

    .apply-info-text {
        font-size: 1rem;
    }

    .apply-info-notice-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .notice-content p {
        text-align: center;
    }

    .apply-info-footer {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .info-footer-item {
        width: 100%;
        justify-content: center;
    }

    .eligibility-table thead th,
    .eligibility-table tbody td {
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .apply-info-title {
        font-size: 1.3rem;
    }

    .eligibility-btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}
