/* =====================================================
   VISA CHECKLIST & FEES STYLES (MATCHED DESIGN)
===================================================== */
.visa-banner {
    background: linear-gradient(rgba(4, 9, 43, 0.88), rgba(4, 9, 43, 0.88)), url('images/banner_img_3.webp');
    background-size: cover;
    background-position: center;
    padding: 130px 20px 50px 20px;
    color: #ffffff;
}

.effective-badge {
    background-color: #ff7a18;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(255, 122, 24, 0.3);
}

.visa-banner h1 {
    font-size: 32px;
    font-weight: 700;
}

.visa-banner p {
    font-size: 15px;
    color: #cbd5e1;
}

/* Glassmorphic Container Boxes */
.visa-section-box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.visa-section-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #ff7a18;
}

/* Header Variations */
.box-header {
    padding: 14px 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.box-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
}

.box-header h3 small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

.purple-header { background: linear-gradient(135deg, #4c1d95, #6d28d9); }
.dark-purple-header { background: linear-gradient(135deg, #311068, #4c1d95); }
.blue-header { background: linear-gradient(135deg, #1e3a8a, #2563eb); }

/* List Styling */
.checklist-items {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.checklist-items li {
    font-size: 13.5px;
    color: #334155;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.checklist-items li i {
    color: #ff7a18;
    margin-top: 3px;
    flex-shrink: 0;
}

.checklist-items li small {
    color: #64748b;
    font-style: italic;
}

/* Table Styling */
.visa-fee-table {
    font-size: 13px;
}

.visa-fee-table thead {
    background-color: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.visa-fee-table th {
    color: #04092b;
    font-weight: 700;
    padding: 12px 15px;
}

.visa-fee-table td {
    padding: 10px 15px;
    vertical-align: middle;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.visa-fee-table tr:hover {
    background-color: #fff7ed;
}

/* Agent Note Box */
.agent-box {
    background: #f8fafc;
    border-left: 4px solid #ff7a18;
    padding: 12px 18px;
    border-radius: 0 8px 8px 0;
    font-size: 13.5px;
    color: #1e293b;
}

/* Remarks Alert */
.remarks-alert {
    background: #fffbebf5;
    border: 1px dashed #f59e0b;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12.5px;
    color: #b45309;
}

/* Hotline Card */
.contact-card-box {
    background: linear-gradient(135deg, #04092b, #0a1352);
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 24, 0.3);
}

/* Enhanced Social Link Hover Animations */
.social-links a {
    position: relative;
    overflow: hidden;
}

.social-links a:hover {
    background: #ff7a18 !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 5px 12px rgba(255, 122, 24, 0.4);
}