
        /* E-Visa Application Styles */

        .evisa-layout {
            display: block;
            min-height: 100%;
        }

        .form-content {
            padding: 50px 56px;
        }

        .important-note {
            margin: 32px 56px 0;
            border-radius: 10px;
            border: 1px solid rgba(26, 55, 77, 0.2);
            overflow: hidden;
            background: #ffffff;
        }

        .important-note__toggle {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            border: none;
            background: #348E38 !important;
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            text-align: left;
        }

        .important-note__icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            font-size: 18px;
            font-weight: 700;
            line-height: 1;
        }

        .important-note__content {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            background: #f3f7fa;
            color: #1A374D;
            transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
            opacity: 0;
        }

        .important-note__content p {
            margin: 16px 0;
            font-size: 14px;
            line-height: 1.6;
        }

        .important-note.is-open .important-note__content {
            opacity: 1;
            padding: 16px 20px;
        }

        .form-section-title {
            font-size: 24px;
            font-weight: 700;
            color: #212529;
            margin-bottom: 30px;
            font-family: 'Inter', sans-serif;
        }

        .form-row-custom {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 25px;
            margin-bottom: 15px;
        }

        .form-row-3 {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 25px;
            margin-bottom: 15px;
        }

        .form-block {
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 12px;
            background: #ffffff;
            margin-bottom: 28px;
        }

        .form-subtitle {
            font-size: 18px;
            font-weight: 700;
            color: #1A374D;
            margin-bottom: 20px;
        }

        .form-group-custom {
            display: flex;
            flex-direction: column;
        }

        .form-group-custom label {
            font-size: 14px;
            font-weight: 600;
            color: #495057;
            margin-bottom: 10px;
            font-family: 'Inter', sans-serif;
        }

        .form-group-custom label span.required {
            color: #007bff;
            margin-left: 3px;
        }

        .form-group-custom input,
        .form-group-custom select,
        .form-group-custom textarea {
            padding: 14px 16px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 13px;
            transition: border-color 0.3s, box-shadow 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .form-group-custom input:focus,
        .form-group-custom select:focus,
        .form-group-custom textarea:focus {
            outline: none;
            border-color: #348E38;
            box-shadow: 0 0 0 0.2rem #348E38(0, 123, 255, 0.35);
        }

        .form-group-custom textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-group-custom small {
            font-size: 12px;
            color: #e92424 !important;
            margin-top: 5px;
        }

        .readonly-input {
            background: #f8f9fa;
            color: #495057;
        }

        .phone-input-group {
            display: flex;
            gap: 10px;
        }

        .phone-input-group select {
            width: 120px;
        }

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

        .form-actions {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            margin-top: 30px;
        }

        .form-actions-split {
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .form-actions-right {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .applicant-preview {
            margin-top: 24px;
        }

        .applicant-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 12px;
        }

        .applicant-table th,
        .applicant-table td {
            border-bottom: 1px solid #e9ecef;
            padding: 12px 14px;
            font-size: 14px;
            text-align: left;
        }

        .applicant-table th {
            background: #f8f9fa;
            font-weight: 600;
        }

        .visa-fee-total {
            margin-top: 12px;
            font-weight: 600;
            color: #1A374D;
        }

        .form-subtitle-inline {
            font-size: 18px;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        .btn-next,
        .btn-back {
            padding: 14px 32px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .btn-next {
            background: #348E38;
            color: white;
        }

        .btn-next:hover {
            background: #28b62f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 55, 77, 0.3);
        }

        .btn-next:disabled {
            background: #b0b7c3;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .btn-back {
            background: #6c757d;
            color: white;
        }

        .btn-back:hover {
            background: #5a6268;
        }

        .btn-secondary {
            padding: 14px 28px;
            border: 1px solid #6c757d;
            border-radius: 6px;
            background: #ffffff;
            color: #1A374D;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #f1f3f5;
        }

        .eligibility-card {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            padding: 12px;
            margin-bottom: 24px;
        }

        .upload-note {
            font-size: 13px;
            color: #dc3545;
            margin-top: 10px;
        }

        .passport-guidance {
            margin: 10px 0 16px;
        }

        .passport-guidance__text {
            margin: 0 0 16px;
            font-size: 14px;
            color: #1A374D;
            line-height: 1.6;
        }

        .passport-guidance__examples {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .passport-guidance__example {
            padding: 8px;
            border-radius: 16px;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .passport-guidance__example.is-correct {
            border: 2px solid #2f8f46;
        }

        .passport-guidance__example.is-incorrect {
            border: 2px solid #e04b4b;
        }

        .passport-guidance__frame {
            width: 100%;
            aspect-ratio: 4 / 3;
            border-radius: 12px;
            background: #f1f4f8;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .passport-guidance__svg {
            width: 94%;
            height: auto;
        }

        .passport-guidance__example--rotated .passport-guidance__svg {
            transform: rotate(90deg) scale(0.88);
        }

        .passport-guidance__example--cropped .passport-guidance__svg {
            transform: scale(1.22) translateX(-22px);
            filter: blur(0.7px);
        }

        @media (max-width: 900px) {
            .passport-guidance__examples {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .passport-guidance__examples {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .upload-preview {
            margin-top: 10px;
            padding: 10px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            background: #f8f9fa;
        }

        .upload-preview img {
            display: block;
            max-width: 100%;
            max-height: 180px;
            border-radius: 6px;
            object-fit: cover;
        }

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

        .section-hidden {
            display: none;
        }

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

        .eligibility-guard {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 25px;
        }

        .eligibility-guard label {
            font-weight: 600;
            color: #1A374D;
            margin: 0;
        }

        .eligibility-toggle {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }

        .toggle-option {
            flex: 1;
            border: 1px solid #ced4da;
            border-radius: 8px;
            padding: 12px 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            font-weight: 600;
            color: #495057;
            background: white;
            transition: all 0.2s ease;
        }

        .toggle-option input {
            margin: 0;
        }

        .toggle-option.active {
            border-color: #007bff;
            color: #007bff;
            background: #e7f1ff;
        }

        .toggle-option input[type="radio"]:focus {
            outline: none;
            box-shadow: none;
        }

        .eligibility-message {
            border-radius: 8px;
            padding: 16px;
            background: #fff3cd;
            border: 1px solid #ffeeba;
            color: #856404;
            font-size: 14px;
            font-weight: 500;
        }

        .eligibility-info {
            border-radius: 8px;
            padding: 16px;
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            font-size: 14px;
            font-weight: 500;
        }

        .eligibility-info--danger {
            background: #f8d7da;
            border-color: #f5c2c7;
            color: #842029;
        }

        /* Eligibility Section Styles */
        .eligibility-summary {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .eligibility-summary h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .section-header .form-section-title {
            margin-bottom: 0;
        }

        .edit-info-btn {
            padding: 10px 22px;
            border: 1px solid #348E38 !important;
            background: white;
            color: #1A374D;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .edit-info-btn:hover {
            background: #348E38 !important;
            color: white;
        }

        .review-plan-card {
            border: 1px solid #d9e7f5;
            border-radius: 12px;
            padding: 20px 24px;
            background: #f8fbff;
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 16px;
        }

        .review-plan-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
            flex-wrap: wrap;
        }

        .review-plan-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #58708c;
            margin-bottom: 6px;
            font-weight: 600;
        }

        .review-plan-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a374d;
            margin: 0 0 6px 0;
        }

        .review-plan-detail {
            color: #4e6478;
            margin: 0;
        }

        .review-plan-price {
            font-size: 18px;
            font-weight: 700;
            color: #1a374d;
        }

        .edit-plan-btn {
            border: none;
            background: #fff;
            color: #1a374d;
            border-radius: 8px;
            padding: 8px 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(26, 55, 77, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .edit-plan-btn:hover {
            background: #1a374d;
            color: #fff;
        }

        .review-plan-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }

        .review-plan-option {
            border: 1px solid #dbe4ee;
            border-radius: 12px;
            padding: 16px;
            background: #f8fafc;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .review-plan-option.selected {
            border-color: #1a73e8;
            background: #eef5ff;
            box-shadow: 0 6px 16px rgba(26, 115, 232, 0.18);
        }

        .review-plan-option input {
            display: none;
        }

        .review-plan-option h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
            color: #1a374d;
        }

        .review-plan-option p {
            margin: 0;
            color: #5b6b7c;
            font-size: 14px;
        }

        .review-plan-option .price {
            font-weight: 700;
            color: #1a374d;
            margin-top: 4px;
        }

        .arrival-validity-box {
            margin-top: 12px;
            padding: 16px;
            border-radius: 10px;
            background: #f8fbff;
            border: 1px solid #d7e7ff;
            color: #1a4b8c;
            font-size: 14px;
            font-weight: 500;
        }

        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 1050;
        }

        .modal-overlay.section-hidden {
            display: none;
        }

        .modal-content-custom {
            background: #fff;
            border-radius: 12px;
            max-width: 900px;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 24px;
            max-height: 90vh;
            height: auto;
            overflow: auto;
        }

        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 20px;
            font-weight: 700;
        }

        .modal-close {
            border: none;
            background: transparent;
            font-size: 22px;
            cursor: pointer;
            color: #6c757d;
        }

        .modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            margin-top: 20px;
        }

        .summary-table {
            width: 100%;
            margin-bottom: 20px;
        }

        .summary-table td {
            padding: 12px;
            border-bottom: 1px solid #e9ecef;
        }

        .summary-table td:first-child {
            font-weight: 600;
            color: #495057;
            width: 40%;
        }

        .summary-table td:last-child {
            color: #6c757d;
        }

        .status-box {
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
            font-weight: 500;
        }

        .status-box.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .status-box.warning {
            background: #fff3cd;
            color: #856404;
            border: 1px solid #ffeeba;
        }

        .status-box.danger {
            background: #f8d7da;
            color: #842029;
            border: 1px solid #f5c2c7;
        }

        .insurance-table {
            width: 100%;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .insurance-table thead {
            background: #f8f9fa;
        }

        .insurance-table th,
        .insurance-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }

        .insurance-table th {
            font-weight: 600;
            color: #495057;
        }

        .insurance-table .status-eligible {
            background: #d4edda;
            color: #155724;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 13px;
        }

        .insurance-table .status-required {
            background: #f8d7da;
            color: #721c24;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 13px;
        }

        .insurance-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .btn-insurance {
            padding: 14px 32px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .btn-insurance.primary {
            background: #1A374D;
            color: white;
        }

        .btn-insurance.secondary {
            background: white;
            color: #6c757d;
            border: 1px solid #ced4da;
        }

        .btn-insurance:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }

        .info-box {
            background: #f8f9fa;
            border-left: 4px solid #007bff;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
        }

        .info-box h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .info-box p {
            margin-bottom: 10px;
            color: #495057;
            line-height: 1.6;
        }

        .info-box ul {
            margin-left: 20px;
            color: #495057;
        }

        .info-box ul li {
            margin-bottom: 8px;
        }

        /* Select Insurance Plan Styles */
        .insurance-plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .plan-card {
            border: 2px solid #348E38 !important;
            border-radius: 12px;
            padding: 26px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
            box-shadow: 0 8px 20px #348E38(26, 78, 122, 0.12) !important;
        }

        .plan-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 26px rgba(26, 78, 122, 0.2);
        }

        .plan-card.selected {
            background: #f1f7fb;
            border-width: 3px;
        }

        .plan-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #212529;
            margin-bottom: 10px;
            font-family: 'Inter', sans-serif;
        }

        .plan-card .coverage {
            font-size: 13px;
            color: #6c757d;
            margin-bottom: 15px;
        }

        .plan-card .price {
            font-size: 28px;
            font-weight: 700;
            color: #1A4E7A;
        }

        .plan-checkbox-list {
            margin-top: 30px;
        }

        .plan-checkbox-list h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .plan-checkbox-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 5px;
            transition: background 0.2s;
        }

        .plan-checkbox-item:hover {
            background: #f8f9fa;
        }

        .plan-checkbox-item input[type="checkbox"],
        .plan-checkbox-item input[type="radio"],
        .checkbox-item input[type="checkbox"] {
            appearance: none;
            width: 20px;
            height: 20px;
            border: 2px solid #1A4E7A;
            background: #fff;
            display: inline-grid;
            place-content: center;
            cursor: pointer;
            margin: 0;
            box-shadow: 0 2px 6px rgba(26, 78, 122, 0.15);
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        }

        .standard-checkbox {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: #495057;
            margin-top: 10px;
        }

        .standard-checkbox input[type="checkbox"] {
            appearance: auto;
            width: 16px;
            height: 16px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            box-shadow: none;
            display: inline-block;
        }

        .plan-checkbox-item input[type="radio"] {
            border-radius: 50%;
        }

        .plan-checkbox-item input[type="checkbox"],
        .checkbox-item input[type="checkbox"] {
            border-radius: 6px;
        }

        .plan-checkbox-item input[type="checkbox"]::after,
        .checkbox-item input[type="checkbox"]::after {
            content: '';
            width: 6px;
            height: 10px;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            transform: rotate(45deg) scale(0);
            transition: transform 0.2s ease;
        }

        .plan-checkbox-item input[type="radio"]::after {
            content: '';
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #fff;
            transform: scale(0);
            transition: transform 0.2s ease;
        }

        .plan-checkbox-item input[type="checkbox"]:checked,
        .checkbox-item input[type="checkbox"]:checked,
        .plan-checkbox-item input[type="radio"]:checked {
            background: #348E38 !important;
            border-color: #348E38 !important;
            box-shadow: 0 4px 12px #348E38(26, 78, 122, 0.25) !important;
        }

        .plan-checkbox-item input[type="checkbox"]:checked::after,
        .checkbox-item input[type="checkbox"]:checked::after {
            transform: rotate(45deg) scale(1);
        }

        .plan-checkbox-item input[type="radio"]:checked::after {
            transform: scale(1);
        }

        .plan-checkbox-item label {
            cursor: pointer;
            margin: 0;
            font-size: 14px;
            flex: 1;
        }

        /* Review Section Styles */
        .review-table {
            width: 100%;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .review-table thead {
            background: #f8f9fa;
        }

        .review-table th,
        .review-table td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }

        .review-table th {
            font-weight: 600;
            color: #495057;
        }

        .review-table td:first-child {
            font-weight: 500;
            color: #495057;
        }

        .review-table td:last-child {
            color: #212529;
        }

        /* Payment Section Styles */
        .payment-summary-box {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .payment-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .payment-item.total {
            border-bottom: none;
            font-weight: 700;
            font-size: 18px;
            padding-top: 20px;
            border-top: 2px solid #212529;
        }

        .applicant-details-box {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .applicant-details-box h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* Checkout Section Styles */
        .checkout-container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 15px;
        }

        .checkout-header {
            background: white;
            padding: 26px 28px;
            border-radius: 10px;
            border: 1px solid #e2e6ea;
            box-shadow: 0 8px 18px rgba(20, 30, 50, 0.06);
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .checkout-header h1 {
            font-size: 24px;
            font-weight: 700;
            margin: 0;
        }

        .checkout-header .total {
            font-size: 22px;
            font-weight: 700;
            color: #1A374D;
        }

        .checkout-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .checkout-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            border: 1px solid #e2e6ea;
            box-shadow: 0 8px 18px rgba(20, 30, 50, 0.06);
        }

        .checkout-card h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .checkout-table {
            width: 100%;
        }

        .checkout-table tr {
            border-bottom: 1px solid #e9ecef;
        }

        .checkout-table td {
            padding: 12px 0;
        }

        .checkout-table td:first-child {
            font-weight: 500;
            color: #6c757d;
            width: 40%;
        }

        .checkout-table td:last-child {
            color: #212529;
        }

        .payment-method {
            background: #f8f9fa;
            padding: 18px;
            border-radius: 8px;
            border: 1px solid #e2e6ea;
            margin-bottom: 20px;
        }

        .payment-method h3 {
            font-size: 14px;
            font-weight: 600;
            color: #6c757d;
            margin-bottom: 15px;
        }

        .payment-provider-note {
            background: #fff;
            padding: 16px;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            color: #6c757d;
            font-size: 14px;
        }

        .revolut-modal {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.65);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            z-index: 9999;
        }

        .revolut-modal.is-visible {
            display: flex;
        }

        .revolut-modal__content {
            background: #fff;
            border-radius: 16px;
            max-width: 720px;
            width: 100%;
            max-height: 85vh;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
            display: flex;
            flex-direction: column;
        }

        .revolut-modal__header {
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e9ecef;
        }

        .revolut-modal__iframe {
            border: none;
            width: 100%;
            height: 70vh;
            background: #fff;
        }

        .revolut-modal__close {
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
        }

        .card-element {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .card-header .icon {
            font-size: 20px;
            color: #1A374D;
        }

        .card-header span {
            font-weight: 600;
            color: #1A374D;
        }

        .card-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .card-form label {
            font-size: 13px;
            font-weight: 500;
            color: #495057;
            margin-bottom: 5px;
            font-family: 'Inter', sans-serif;
        }

        .card-form input {
            padding: 14px 16px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
        }

        .card-number-input {
            position: relative;
        }

        .card-icons {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            gap: 5px;
        }

        .expiry-cvv-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .place-order-btn {
            width: 100%;
            padding: 16px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
            font-family: 'Inter', sans-serif;
        }

        .place-order-btn:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        /* Searchable Select Styles */
        .searchable-select-wrapper {
            position: relative;
        }

        .searchable-select-wrapper input.select-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-size: 14px;
            background: #f8f9fa;
            color: #212529;
            margin-bottom: 10px;
        }

        .searchable-select-wrapper .dropdown-search {
            padding: 10px;
            border-bottom: 1px solid #e9ecef;
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 1;
        }

        .searchable-select-wrapper input.search-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-size: 14px;
        }

        .searchable-select-wrapper input.search-input:focus {
            outline: none;
            border-color: #348E38;
            box-shadow: 0 0 0 0.2rem #348E38(0, 123, 255, .25);
        }

        .searchable-select-wrapper .dropdown-list {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            max-height: 300px;
            overflow-y: auto;
            background: white;
            border: 1px solid #ced4da;
            border-top: none;
            border-radius: 0 0 5px 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
        }

        .searchable-select-wrapper .dropdown-list.show {
            display: block;
        }

        .searchable-select-wrapper .dropdown-item {
            padding: 10px 15px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .searchable-select-wrapper .dropdown-item:hover {
            background: #f8f9fa;
        }

        .searchable-select-wrapper .dropdown-item.selected {
            background: #dc3545;
            color: white;
        }

        .searchable-select-wrapper .dropdown-item.no-results {
            color: #6c757d;
            cursor: default;
        }

        .searchable-select-wrapper .dropdown-item.no-results:hover {
            background: white;
        }

        .supporting-documents-block {
            margin-top: 30px;
        }

        .supporting-documents-block h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .supporting-docs-country-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
            font-weight: 600;
            color: #1a374d;
        }

        .supporting-docs-country-list span {
            background: #f1f3f5;
            border-radius: 16px;
            padding: 4px 10px;
            font-size: 13px;
        }

        .edit-plan-btn {
            background: #f8f9fa;
            border: 1px solid #ced4da;
            border-radius: 6px;
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 600;
            color: #495057;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-bottom: 20px;
        }

        .edit-plan-btn:hover {
            background: #348E38 !important;
        }

        @media (max-width: 768px) {
            .section-header {
                align-items: flex-start;
            }

            .edit-info-btn {
                width: 96%;
                text-align: center;
            }

            .evisa-container {
                margin: 0 15px;
            }

            .form-row-custom {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .form-row2-custom {
                grid-template-columns: 2fr;
                gap: 20px;
            }

            .phone-input-group {
                flex-direction: column;
            }

            .phone-input-group select {
                width: 100%;
            }

            .form-actions {
                flex-direction: column;
                gap: 10px;
            }

            .btn-next,
            .btn-back {
                width: 50%;
                padding: 16px 32px;
            }

            .insurance-buttons {
                flex-direction: column;
            }

            .btn-insurance {
                width: 100%;
                padding: 16px 32px;
            }

            .insurance-plans-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }

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

            .checkout-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }

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

            .evisa-sidebar {
                border-right: none;
                border-bottom: 1px solid #e9ecef;
                padding: 20px;
            }

            .step-toggle {
                display: flex;
            }

            .step-navigation {
                margin-top: 15px;
                display: none;
                position: static;
            }

            .step-navigation.is-open {
                display: flex;
            }

            .form-content {
                padding: 30px 0px;
            }

            .important-note {
                margin: 24px 28px 0;
            }

            .phone-input-group .iti {
                width: 100%;
            }


            #card-element {
                padding: 12px 14px;
                border: 1px solid #e2e6ea;
                border-radius: 8px;
                background: #fff;
            }

            .card-errors {
                color: #d9534f;
                font-size: 12px;
                margin-top: 8px;
            }

            .declaration-list {
                display: flex;
                flex-direction: column;
                gap: 12px;
                margin-top: 20px;
            }

            .declaration-list .checkbox-item {
                display: flex;
                align-items: flex-start;
                gap: 10px;
                padding: 12px 14px;
                border: 1px solid #e2e6ea;
                border-radius: 8px;
                background: #fff;
            }

        
        }

        @media (max-width: 430px) {

            .hero {
                padding: 20px 15px !important;
            }

            .form-actions {
                margin: 0px !important;
            }


            .form-group-custom input,
        .form-group-custom select,
        .form-group-custom textarea {
            padding: 14px 8px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 13px;
            transition: border-color 0.3s, box-shadow 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .eligibility-guard {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 14px;
        }

        .form-group-custom input[type="file"] {
    padding: 8px 4px !important;
    font-size: 14px !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

        /* ===== BUTTON FIXES ===== */
    .form-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        margin: 20px 0 !important;
    }

    .form-actions-split {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .form-actions-right {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .btn-next,
    .btn-back,
    .btn-secondary {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        padding: 14px 16px !important;
        font-size: 15px !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
    }

    #application-submit-btn {
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* ===== APPLICANT TABLE FIX ===== */
    .applicant-preview {
        margin-top: 16px !important;
    }

    .applicant-table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .applicant-table th,
    .applicant-table td {
        padding: 8px 6px !important;
        font-size: 12px !important;
        min-width: 65px !important;
    }

    .visa-fee-total {
        font-size: 13px !important;
        line-height: 1.8 !important;
    }

    
            
        }
    
    