/* ============================================================
   DQ VISA PORTAL — DEDICATED STYLESHEET
   Imports shared brand from style.css, adds portal-specific styles
   ============================================================ */

@import url('./style.css');

/* ─── PORTAL VARIABLES ────────────────────────────────────── */
:root {
    --visa-header-h: 64px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

/* ─── PORTAL HEADER ───────────────────────────────────────── */
.visa-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    height: var(--visa-header-h);
}

.visa-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--visa-header-h);
    gap: 1rem;
}

.visa-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-cream);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.visa-back:hover {
    color: var(--c-gold);
}

.visa-back svg {
    width: 18px;
    height: 18px;
}

.visa-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visa-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.visa-footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 8px;
}

.visa-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    display: flex;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 6px;
    overflow: hidden;
}

.lang-btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: transparent;
    color: var(--c-cream);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn.active {
    background: var(--c-gold);
    color: var(--c-charcoal);
}

.btn-outline-gold {
    border: 1px solid var(--c-gold);
    color: var(--c-gold);
    background: transparent;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: var(--c-gold);
    color: var(--c-charcoal);
}

/* ─── VISA HERO ───────────────────────────────────────────── */
.visa-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--visa-header-h) + 3rem) 1rem 4rem;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-charcoal) 60%, #2a1011 100%);
    overflow: hidden;
}

.visa-hero-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.visa-hero-circles .circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    animation: floatAnim 8s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    animation: floatAnim 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.visa-hero-content {
    position: relative;
    z-index: 2;
}

.visa-hero-content .label-text {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 1rem;
}

.visa-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.visa-hero-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 1.5rem;
}

.visa-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    color: var(--c-cream);
    font-size: 0.8rem;
    font-weight: 500;
}

.trust-pill svg {
    width: 16px;
    height: 16px;
    color: var(--c-gold);
}

/* ─── CHECKER CARD ────────────────────────────────────────── */
.checker-card-wrap {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

.checker-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.checker-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.checker-title-row h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--c-charcoal);
    margin-bottom: 0.25rem;
}

.checker-title-row p {
    font-size: 0.9rem;
    color: #666;
}

.badge-gold {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--c-gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    white-space: nowrap;
}

.checker-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-charcoal);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--c-charcoal);
    background: #fff;
    transition: border-color 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

#check-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

#check-btn svg {
    width: 18px;
    height: 18px;
}

/* Checker Results */
.checker-result {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.checker-result.show {
    display: block;
}

.result-eligible,
.result-ineligible {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
}

.result-eligible.show {
    display: flex;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.result-eligible svg {
    width: 28px;
    height: 28px;
    color: #22c55e;
    flex-shrink: 0;
}

.result-ineligible.show {
    display: flex;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.result-ineligible svg {
    width: 28px;
    height: 28px;
    color: #eab308;
    flex-shrink: 0;
}

.result-eligible strong,
.result-ineligible strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.result-eligible p,
.result-ineligible p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
}

.result-eligible .btn,
.result-ineligible .btn {
    margin-left: auto;
    flex-shrink: 0;
}

/* ─── PROCESS STEPS ───────────────────────────────────────── */
.visa-process {
    padding-top: 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary), #7a2829);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
}

.step-circle span {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--c-gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-circle svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.step-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--c-charcoal);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* ─── VISA PACKAGES ───────────────────────────────────────── */
.visa-packages {
    padding: 5rem 0;
}

/* Apply Section Layout: form left, help right */
.visa-apply-section {
    padding: 5rem 0;
}

@media (max-width: 576px) {
    .visa-apply-section {
        padding: 3rem 0 2rem;
    }
}

.apply-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.apply-form-column {
    min-width: 0;
}

.apply-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

/* Contextual Help Card */
.apply-help-column {
    position: sticky;
    top: calc(var(--visa-header-h) + 1.5rem);
}

.apply-help-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(201, 162, 39, 0.15);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.apply-help-card.active {
    border-color: var(--c-gold);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.12);
}

.help-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.help-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--c-gold);
}

.help-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--c-charcoal);
    margin-bottom: 0.75rem;
}

.help-card-text {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.help-card-tips {
    text-align: left;
}

.help-card-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.help-card-tips ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
    padding: 0.5rem 0.75rem;
    background: var(--c-cream);
    border-radius: 8px;
}

.help-card-tips ul li svg {
    width: 16px;
    height: 16px;
    color: var(--c-gold);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Apply Now Buttons — colorful */
.btn-apply-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #c9a227, #e6b800);
    color: #fff;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-apply-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
}

.btn-apply-maroon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #5c1a1b, #8b2e2f);
    color: #fff;
    box-shadow: 0 4px 15px rgba(92, 26, 27, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-apply-maroon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 26, 27, 0.5);
}

.btn-apply-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #c9a227, #5c1a1b);
    color: #fff;
    box-shadow: 0 4px 18px rgba(201, 162, 39, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-apply-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

.btn-apply-gradient svg {
    width: 18px;
    height: 18px;
}

/* Package Includes Title inside cards */
.pkg-includes-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--c-charcoal);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0ebe3;
}

.pkg-card-features--icons li svg {
    width: 18px;
    height: 18px;
    color: var(--c-gold);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Apply Form Card (formerly sidebar) */
.apply-sidebar-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(201, 162, 39, 0.2);
    overflow: hidden;
}

.apply-sidebar-header {
    background: linear-gradient(135deg, var(--c-primary), #7a2829);
    padding: 1.5rem 2rem;
    text-align: center;
}

.apply-sidebar-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.apply-sidebar-header p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.apply-sidebar-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.apply-sidebar-body .form-group {
    margin-bottom: 0;
}

/* 2-column form rows */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-full {
    display: block;
}

@media (max-width: 576px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .apply-sidebar-header {
        padding: 1.25rem 1rem;
    }

    .apply-sidebar-header h3 {
        font-size: 1.1rem;
    }

    .apply-sidebar-body {
        padding: 1.25rem 1rem;
    }

    .apply-sidebar-card {
        border-radius: var(--radius-md);
    }

    .sidebar-steps {
        padding: 1rem 0.75rem 1rem;
        gap: 0.2rem;
        justify-content: flex-start;
    }

    .sidebar-step-item {
        padding: 0.35rem 0.5rem;
        font-size: 0.68rem;
    }

    .sidebar-step-num {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }

    .sidebar-form-nav {
        flex-direction: column;
    }

    .sidebar-form-nav .btn {
        width: 100%;
        justify-content: center;
    }

    .review-summary-sidebar .review-row {
        flex-direction: column;
        gap: 0.15rem;
    }

    .apply-sidebar-note {
        font-size: 0.78rem;
    }
}

/* Checkbox inline with label */
.checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.75rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

.checkbox-inline input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--c-gold);
    cursor: pointer;
}

/* Bank Transfer Details */
.bank-transfer-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0ebe3;
}

.bank-transfer-header svg {
    width: 24px;
    height: 24px;
    color: var(--c-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.bank-transfer-header strong {
    display: block;
    font-size: 1rem;
    color: var(--c-charcoal);
    margin-bottom: 0.2rem;
}

.bank-transfer-header p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

.bank-details {
    background: var(--c-cream);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e8e0d4;
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-detail-row span {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.bank-detail-row strong {
    font-size: 0.85rem;
    color: var(--c-charcoal);
    font-weight: 600;
    text-align: right;
}

.bank-detail-amount strong {
    color: var(--c-primary);
    font-size: 1.1rem;
}

/* Inline field error */
.field-error {
    display: none;
    font-size: 0.76rem;
    color: #dc2626;
    margin-top: 0.35rem;
    padding-left: 2px;
    animation: slideDown 0.25s ease;
}

.field-error.visible {
    display: block;
}

/* Validation Error */
.form-validation-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    animation: slideDown 0.3s ease;
}

.form-validation-error svg {
    flex-shrink: 0;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.apply-sidebar-note {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin: 0.5rem 0 0;
    line-height: 1.4;
}

/* Sidebar Steps */
.sidebar-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 1.25rem 1rem 0;
    border-bottom: 1px solid #f0ebe3;
    padding-bottom: 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.sidebar-steps::-webkit-scrollbar {
    display: none;
}

.sidebar-step-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.6rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #999;
    background: #f5f5f5;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.sidebar-step-item.active {
    background: var(--c-gold);
    color: #fff;
}

.sidebar-step-item.completed {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.sidebar-step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

.sidebar-step-item.active .sidebar-step-num {
    background: rgba(255, 255, 255, 0.3);
}

.sidebar-step-item.completed .sidebar-step-num {
    background: rgba(34, 197, 94, 0.2);
}

/* Sidebar Form Navigation */
.sidebar-form-nav {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.sidebar-form-nav .btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

.sidebar-form-nav .btn svg {
    width: 16px;
    height: 16px;
}

/* Review summary in sidebar */
.review-summary-sidebar {
    background: var(--c-cream);
    border-radius: 10px;
    padding: 1.25rem;
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
}

.review-summary-sidebar .review-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #e8e0d4;
}

.review-summary-sidebar .review-row:last-child {
    border-bottom: none;
}

.review-summary-sidebar .review-row span:first-child {
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-summary-sidebar .review-row span:last-child {
    font-weight: 600;
    color: var(--c-charcoal);
}

/* Payment methods in sidebar */
.payment-methods-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.payment-methods-sidebar .pay-method {
    padding: 12px;
    border-radius: 10px;
}

/* Upload zones in sidebar */
.apply-sidebar-body .upload-zone {
    padding: 20px 16px;
    margin-bottom: 0.5rem;
}

.apply-sidebar-body .upload-zone svg {
    width: 28px;
    height: 28px;
    margin-bottom: 0.5rem;
}

.apply-sidebar-body .upload-zone p {
    font-size: 0.82rem;
}

.apply-sidebar-body .upload-zone span {
    font-size: 0.72rem;
}

@media (max-width: 1024px) {
    .apply-layout {
        grid-template-columns: 1fr;
    }

    .apply-help-column {
        position: static;
    }

    .apply-help-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .pkg-grid-2 {
        grid-template-columns: 1fr;
    }

    .pkg-includes-grid {
        grid-template-columns: 1fr;
    }
}

.duration-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.duration-tab {
    padding: 0.6rem 1.5rem;
    border: 1.5px solid #ddd;
    border-radius: 50px;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-charcoal);
    cursor: pointer;
    transition: all 0.3s;
}

.duration-tab:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

.duration-tab.active {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: #fff;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.pkg-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.visa-pkg-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #e8e8e8;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.visa-pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.visa-pkg-card.hidden-pkg {
    display: none;
}

.visa-pkg-featured {
    border: 2px solid var(--c-gold);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
}

.visa-pkg-featured:hover {
    transform: translateY(-6px);
}

.pkg-card-header {
    padding: 2rem 1.5rem;
    text-align: center;
}

.pkg-card-header--light {
    background: var(--c-cream);
}

.pkg-card-header--dark {
    background: linear-gradient(135deg, var(--c-primary), #7a2829);
    color: #fff;
}

.pkg-card-header--dark .label-text,
.pkg-card-header--dark h3 {
    color: #fff;
}

.pkg-card-header--charcoal {
    background: linear-gradient(135deg, var(--c-charcoal), #333);
    color: #fff;
}

.pkg-card-header--charcoal .label-text,
.pkg-card-header--charcoal h3 {
    color: #fff;
}

.pkg-card-header .label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.pkg-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.pkg-card-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pkg-card-sub {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.75rem;
}

.pkg-card-header--dark .pkg-card-sub,
.pkg-card-header--charcoal .pkg-card-sub {
    color: rgba(255, 255, 255, 0.6);
}

.card-body {
    padding: 1.5rem;
    flex: 1;
}

.pkg-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.pkg-card-features li:last-child {
    border-bottom: none;
}

.pkg-card-features li svg {
    width: 16px;
    height: 16px;
    color: var(--c-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.card-footer {
    padding: 1.5rem;
    padding-top: 0;
    text-align: center;
}

.card-footer .btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* Package Info Boxes */
.pkg-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pkg-info-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
}

.pkg-info-box--gold {
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.pkg-info-box--maroon {
    background: rgba(92, 26, 27, 0.05);
    border: 1px solid rgba(92, 26, 27, 0.15);
}

.pkg-info-box > svg {
    width: 32px;
    height: 32px;
    color: var(--c-gold);
    flex-shrink: 0;
}

.pkg-info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--c-charcoal);
}

.pkg-info-box p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.pkg-info-box .btn {
    margin-left: auto;
    flex-shrink: 0;
}

/* ─── DOCUMENT REQUIREMENTS ───────────────────────────────── */
.visa-docs {
    padding: 4rem 0;
}

.docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.docs-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e0d4;
    font-size: 0.9rem;
    color: var(--c-charcoal);
}

.docs-list li:last-child {
    border-bottom: none;
}

.docs-list li svg {
    width: 20px;
    height: 20px;
    color: var(--c-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.upload-guide {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid #e8e0d4;
}

.upload-guide h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--c-charcoal);
    margin-bottom: 1.25rem;
}

.guide-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #555;
}

.guide-item svg {
    width: 18px;
    height: 18px;
    color: var(--c-primary);
    flex-shrink: 0;
}

.guide-note {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.visa-faq {
    padding: 5rem 0;
}

.container-sm {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8e0d4;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.4);
}

.faq-item.active {
    border-color: var(--c-gold);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-charcoal);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--c-gold);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--c-gold);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.75;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid #f0ebe3;
}

/* ─── PORTAL FOOTER ───────────────────────────────────────── */
.visa-footer {
    background: var(--c-charcoal);
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.visa-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.visa-footer-brand p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.visa-footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.visa-footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.visa-footer-links a:hover {
    color: var(--c-gold);
}

/* ─── UTILITY CLASSES ─────────────────────────────────────── */
.section-sm {
    padding: 3rem 0;
}

.bg-cream {
    background-color: var(--c-cream);
}

.bg-champagne {
    background-color: var(--c-champagne);
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.btn-outline {
    border: 1.5px solid var(--c-charcoal);
    color: var(--c-charcoal);
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--c-charcoal);
    color: #fff;
}

/* ─── APPLICATION FORM ────────────────────────────────────── */
.visa-apply {
    padding: 5rem 0;
}

.step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.step-progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s;
}

.step-inactive .step-circle-num {
    background: var(--c-champagne);
    color: #999;
}

.step-active .step-circle-num {
    background: var(--c-primary);
    color: var(--c-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.25);
}

.step-complete .step-circle-num {
    background: var(--c-gold);
    color: var(--c-primary);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-active .step-label {
    color: var(--c-primary);
}

.step-complete .step-label {
    color: var(--c-gold);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--c-champagne);
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
    transition: background 0.3s;
}

.step-connector.done {
    background: var(--c-gold);
}

/* Form Wrap */
.form-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.form-step {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e0d4;
    overflow: hidden;
}

.form-step .card-header {
    padding: 1.25rem 2rem;
    background: var(--c-charcoal);
}

.form-step .card-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.form-step .card-header h4 svg {
    width: 14px;
    height: 14px;
    color: var(--c-gold);
    vertical-align: middle;
    margin-left: 0.5rem;
}

.form-step .card-body {
    padding: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--c-charcoal);
    background: #fff;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-note {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.35rem;
}

.card-footer-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    border-top: 1px solid #f0ebe3;
}

.form-footer-note {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* ─── UPLOAD ZONES ────────────────────────────────────────── */
.upload-zone {
    border: 2px dashed var(--c-gold);
    border-radius: 14px;
    padding: 36px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: rgba(201, 162, 39, 0.03);
    margin-bottom: 0.75rem;
}

.upload-zone:hover {
    border-color: var(--c-primary);
    background: rgba(92, 26, 27, 0.03);
}

.upload-zone svg {
    width: 36px;
    height: 36px;
    color: var(--c-gold);
    margin-bottom: 0.75rem;
}

.upload-zone p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-charcoal);
    margin-bottom: 0.25rem;
}

.upload-zone span {
    font-size: 0.8rem;
    color: #888;
}

.upload-preview {
    margin-bottom: 1.25rem;
}

.upload-preview-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.upload-preview-item svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
    flex-shrink: 0;
}

.upload-preview-item .file-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--c-charcoal);
    flex: 1;
}

.upload-preview-item .file-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.upload-preview-item .remove-file {
    font-size: 0.75rem;
    color: #e74c3c;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
}

.upload-status {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 8px;
    margin-top: 1rem;
}

.upload-status.show {
    display: flex;
}

.upload-status svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
}

.upload-status span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #16a34a;
}

/* ─── REVIEW STEP ─────────────────────────────────────────── */
.review-summary {
    background: var(--c-cream);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 1.5rem;
}

.review-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.review-title-row h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--c-charcoal);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.review-item .review-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0.2rem;
}

.review-item .review-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-charcoal);
}

.review-docs {
    margin-bottom: 1.5rem;
}

.review-docs h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-charcoal);
    margin-bottom: 0.75rem;
}

.review-docs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-docs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: #555;
}

.review-docs li svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
}

.price-breakdown {
    background: #fff;
    border: 1.5px solid #e8e0d4;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: #555;
}

.price-divider {
    height: 1px;
    background: #e8e0d4;
    margin: 0.75rem 0;
}

.price-total {
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-charcoal);
}

.price-total span:last-child {
    font-size: 1.3rem;
    color: var(--c-primary);
}

.review-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 16px;
    line-height: 1.5;
}

/* ─── PAYMENT STEP ────────────────────────────────────────── */
.order-summary-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--c-cream);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 1.5rem;
}

.order-summary-compact span {
    font-size: 0.9rem;
    color: var(--c-charcoal);
}

.order-summary-compact strong {
    font-size: 1.1rem;
    color: var(--c-primary);
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.pay-method {
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.2s, background 0.2s;
}

.pay-method:hover {
    border-color: var(--c-gold);
}

.pay-method.selected {
    border-color: var(--c-primary);
    background: rgba(92, 26, 27, 0.04);
}

.pay-method svg {
    width: 24px;
    height: 24px;
    color: var(--c-gold);
    flex-shrink: 0;
}

.pay-method strong {
    display: block;
    font-size: 0.85rem;
    color: var(--c-charcoal);
}

.pay-method > div span {
    font-size: 0.75rem;
    color: #888;
}

.pay-icon-apple {
    width: 40px;
    height: 28px;
    background: var(--c-charcoal);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.pay-icon-google {
    width: 40px;
    height: 28px;
    background: #4285f4;
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.payment-form-card {
    margin-bottom: 1.5rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.secure-badge svg {
    width: 14px;
    height: 14px;
    color: #22c55e;
}

.secure-badge span {
    font-size: 0.75rem;
    color: #888;
}

.payment-form-alt {
    margin-bottom: 1.5rem;
}

.bank-details-box {
    background: var(--c-cream);
    border-radius: 12px;
    padding: 1.5rem;
}

.bank-details-box h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--c-charcoal);
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e8e0d4;
    font-size: 0.85rem;
}

.bank-row span {
    color: #888;
}

.bank-row strong {
    color: var(--c-charcoal);
}

.bank-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

.btn-tap-to-pay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 18px;
    background: var(--c-gold);
    color: var(--c-primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-tap-to-pay:hover {
    opacity: 0.9;
}

.btn-tap-to-pay svg {
    width: 22px;
    height: 22px;
}

.btn-pay-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
}

.btn-pay-full svg {
    width: 18px;
    height: 18px;
}

.btn-pay-full.processing {
    opacity: 0.7;
    pointer-events: none;
}

/* ─── PAYMENT SUCCESS MODAL ───────────────────────────────── */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.payment-success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    z-index: 2001;
    max-width: 460px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.payment-success-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--c-charcoal);
}

.modal-close svg {
    width: 22px;
    height: 22px;
}

.modal-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.modal-checkmark svg {
    width: 48px;
    height: 48px;
    color: #16a34a;
}

.anim-scale-in {
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.payment-success-modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--c-primary);
    margin-top: 20px;
}

.payment-success-modal > p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.75rem;
    line-height: 1.6;
}

.modal-app-id {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--c-gold);
    color: #fff;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin: 20px 0;
}

.modal-app-id svg {
    width: 14px;
    height: 14px;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ─── TRACKING SECTION ────────────────────────────────────── */
.visa-tracking {
    padding: 5rem 0;
}

.track-lookup {
    max-width: 480px;
    margin: 0 auto 40px;
    display: flex;
    gap: 12px;
}

.track-lookup .form-input {
    flex: 1;
}

.track-lookup .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.track-lookup .btn svg {
    width: 16px;
    height: 16px;
}

.status-card {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e0d4;
    overflow: hidden;
}

.status-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: var(--c-cream);
    border-bottom: 1px solid #e8e0d4;
}

.status-card-header .label-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0.2rem;
}

.status-card-header strong {
    font-size: 1.1rem;
    color: var(--c-primary);
}

.status-timeline {
    padding: 28px 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 16px;
    position: relative;
    padding-bottom: 28px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    bottom: 0;
    width: 2px;
    background: var(--c-champagne);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item.done::before {
    background: var(--c-gold);
}

.timeline-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-item.done .timeline-circle {
    background: var(--c-gold);
}

.timeline-item.done .timeline-circle svg {
    width: 14px;
    height: 14px;
    color: var(--c-primary);
}

.timeline-item.active .timeline-circle {
    background: var(--c-primary);
    animation: pulse-ring 2s ease infinite;
}

.timeline-item.active .timeline-circle svg {
    width: 14px;
    height: 14px;
    color: var(--c-gold);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(92, 26, 27, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(92, 26, 27, 0); }
    100% { box-shadow: 0 0 0 0 rgba(92, 26, 27, 0); }
}

.timeline-item.pending .timeline-circle {
    background: var(--c-champagne);
}

.timeline-item.pending .timeline-circle span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
}

.timeline-item.rejected .timeline-circle {
    background: #e74c3c;
}

.timeline-item.rejected::before {
    background: #e74c3c;
}

.timeline-item.rejected .timeline-circle svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

.timeline-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--c-charcoal);
    margin-bottom: 0.15rem;
}

.timeline-content p {
    font-size: 0.82rem;
    color: #666;
    margin: 0;
}

.timeline-content span {
    font-size: 0.75rem;
    color: #aaa;
}

.status-actions {
    display: flex;
    gap: 0.75rem;
    padding: 0 2rem 1.5rem;
    flex-wrap: wrap;
}

.status-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.status-actions .btn svg {
    width: 14px;
    height: 14px;
}

/* ─── REVEAL CLASSES (for GSAP) ───────────────────────────── */
.reveal {
    visibility: hidden;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pkg-info-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .visa-header-inner {
        gap: 0.5rem;
    }

    .visa-back span {
        display: none;
    }

    .visa-header-actions .btn-outline-gold {
        display: none;
    }

    .checker-form {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .visa-pkg-featured {
        transform: none;
    }

    .visa-pkg-featured:hover {
        transform: translateY(-6px);
    }

    .docs-grid {
        grid-template-columns: 1fr;
    }

    .pkg-info-box {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .pkg-info-box .btn {
        margin-left: 0;
    }

    .result-eligible,
    .result-ineligible {
        flex-direction: column;
        text-align: center;
    }

    .result-eligible .btn,
    .result-ineligible .btn {
        margin-left: 0;
        margin-top: 0.75rem;
    }

    .visa-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .visa-footer-links {
        justify-content: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-step .card-header,
    .form-step .card-body,
    .card-footer-between {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .step-progress {
        margin-bottom: 32px;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .step-circle-num {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .modal-actions {
        flex-direction: column;
    }

    .payment-success-modal {
        padding: 36px 24px;
    }

    .track-lookup {
        flex-direction: column;
    }

    .track-lookup .btn {
        width: 100%;
        justify-content: center;
    }

    .status-card {
        border-radius: var(--radius-md);
    }

    .status-card-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        padding: 1rem;
    }

    .status-card-header strong {
        font-size: 0.95rem;
    }

    .status-card-body {
        padding: 0 1rem;
    }

    .track-applicant-info {
        padding: 0.75rem 0;
    }

    .status-timeline {
        padding: 16px 1rem;
    }

    .timeline-item {
        gap: 12px;
        padding-bottom: 20px;
    }

    .timeline-circle {
        width: 28px;
        height: 28px;
    }

    .timeline-item::before {
        left: 13px;
        top: 28px;
    }

    .timeline-content strong {
        font-size: 0.85rem;
    }

    .timeline-content p {
        font-size: 0.78rem;
    }

    .status-actions {
        padding: 0 1rem 1rem;
        flex-direction: column;
    }

    .status-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .visa-hero-content h1 {
        font-size: 1.5rem;
    }

    .visa-hero-content p {
        font-size: 0.85rem;
    }

    .section-sm {
        padding: 2rem 0;
    }

    .status-card {
        margin: 0 -0.5rem;
    }

    .application-card {
        border-radius: var(--radius-sm);
    }

    .application-id strong {
        font-size: 0.8rem;
        word-break: break-all;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .checker-card {
        padding: 1.25rem;
    }

    .checker-title-row {
        flex-direction: column;
    }

    .trust-pill {
        font-size: 0.72rem;
        padding: 0.4rem 0.75rem;
    }

    .step-connector {
        display: none;
    }

    .step-progress {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

/* ===== HERO SM (sub-pages) ===== */
.visa-hero-sm {
    padding: 80px 0 40px;
    min-height: auto;
}

.visa-hero-sm .visa-hero-content h1 {
    font-size: 2rem;
}

/* ===== MY APPLICATIONS PAGE ===== */
.applications-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.application-card {
    background: #fff;
    border-radius: var(--radius-md, 12px);
    border: 1px solid #e8e0d5;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.application-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.application-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0ebe4;
}

.application-card-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.application-id {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.application-id i {
    width: 16px;
    height: 16px;
    color: var(--gold, #b8860b);
}

.application-status {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.application-status i {
    width: 16px;
    height: 16px;
}

.application-status--submitted {
    background: #e3f2fd;
    color: #1565c0;
}

.application-status--processing {
    background: #fff8e1;
    color: #b8860b;
}

.application-status--approved {
    background: #e8f5e9;
    color: #2e7d32;
}

.application-status--rejected {
    background: #fce4ec;
    color: #c62828;
}

.application-card-body {
    padding: 1.25rem 1.5rem;
}

.application-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.application-detail {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

.detail-value {
    font-weight: 500;
    color: #1a1a1a;
}

.application-card-footer {
    display: none;
}

.application-status-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.applications-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: var(--radius-md, 12px);
    border: 1px dashed #d4c9b8;
}

.applications-empty i {
    width: 48px;
    height: 48px;
    color: #ccc;
    margin-bottom: 1rem;
}

.applications-empty h3 {
    margin-bottom: 0.5rem;
}

.applications-empty p {
    color: #666;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .application-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 1rem;
    }

    .application-card-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .application-card-body {
        padding: 1rem;
    }

    .application-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .application-status-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 380px) {
    .application-details-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── SKELETON LOADER ────────────────────────────────────── */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f0ebe4 25%, #faf6f0 50%, #f0ebe4 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease infinite;
    border-radius: 6px;
}

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
    width: 80%;
}

.skeleton-text-sm {
    height: 10px;
    margin-bottom: 6px;
    width: 60%;
}

.skeleton-heading {
    height: 22px;
    width: 50%;
    margin-bottom: 12px;
}

.skeleton-card {
    background: #fff;
    border-radius: var(--radius-md, 12px);
    border: 1px solid #e8e0d5;
    overflow: hidden;
    padding: 1.25rem;
}

.skeleton-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0ebe4;
}

.skeleton-badge {
    height: 24px;
    width: 80px;
    border-radius: 20px;
}

.skeleton-id {
    height: 16px;
    width: 140px;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.skeleton-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.skeleton-label {
    height: 8px;
    width: 50px;
}

.skeleton-value {
    height: 14px;
    width: 100px;
}

.skeleton-btn {
    height: 36px;
    width: 100%;
    border-radius: 8px;
}

.skeleton-form {
    padding: 1.5rem;
}

.skeleton-form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.skeleton-input {
    height: 44px;
    width: 100%;
    border-radius: 8px;
}

.skeleton-steps {
    display: flex;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #f0ebe4;
    justify-content: center;
}

.skeleton-step-pill {
    height: 30px;
    width: 80px;
    border-radius: 50px;
}

/* ─── AUTH LOADING & TRACK ERROR ─────────────────────────── */
.auth-loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--c-cream, #faf8f4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.auth-loading .loading-spinner,
.applications-loading .loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(201, 162, 39, 0.2);
    border-top-color: #c9a227;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.applications-loading {
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--c-muted, #888);
}

.track-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.track-error svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ─── TRACK STATUS CARD BODY ─────────────────────────────── */
.status-card-body {
    padding: 0 2rem;
}

.track-applicant-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0ebe4;
}

.track-detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.track-detail .detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
}

.track-detail .detail-value {
    font-weight: 500;
    font-size: 0.9rem;
    color: #1a1a1a;
}

/* ─── MY APPLICATIONS PAGE HEADER ACTIONS ────────────────── */
.page-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.25rem;
}

.page-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
}

.page-actions .btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .page-actions {
        justify-content: stretch;
    }

    .page-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
