/* ============================================
   Visa Explorer - Frontend Styles
   Atlys.com Inspired Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --ve-font-serif: 'Playfair Display', 'Georgia', serif;
    --ve-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ve-primary: #6C63FF;
    --ve-primary-rgb: 108, 99, 255;
    --ve-dark: #1a1a2e;
    --ve-text: #334155;
    --ve-text-light: #94a3b8;
    --ve-border: #e5e7eb;
    --ve-bg: #f9fafb;
    --ve-white: #ffffff;
    --ve-success: #22c55e;
    --ve-radius-sm: 8px;
    --ve-radius-md: 14px;
    --ve-radius-lg: 20px;
    --ve-radius-xl: 24px;
    --ve-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --ve-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --ve-shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --ve-shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --ve-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset for plugin container */
.ve-container *,
.ve-container *::before,
.ve-container *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ve-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: var(--ve-font-sans);
    color: var(--ve-text);
    line-height: 1.6;
}

/* ============================================
   FILTER BAR - Pill Shaped (Atlys Style)
   ============================================ */

.ve-filter-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: sticky;
    top: 32px;
    z-index: 100;
}

.ve-filter-bar {
    display: inline-flex;
    align-items: center;
    background: var(--ve-white);
    border-radius: 50px;
    padding: 6px 8px;
    box-shadow: var(--ve-shadow-lg);
    border: 1px solid var(--ve-border);
    gap: 2px;
}

.ve-filter-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--ve-transition);
    user-select: none;
    white-space: nowrap;
}

.ve-filter-item:hover {
    background: #f3f4f6;
}

.ve-filter-item.active {
    background: #f0eeff;
}

.ve-filter-divider {
    width: 1px;
    height: 28px;
    background: var(--ve-border);
    flex-shrink: 0;
}

.ve-filter-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.ve-filter-icon.green { color: #22c55e; }
.ve-filter-icon.blue { color: #3b82f6; }
.ve-filter-icon.orange { color: #f59e0b; }
.ve-filter-icon.red { color: #ef4444; }

.ve-filter-label {
    font-size: 11px;
    color: var(--ve-text-light);
    font-weight: 500;
    line-height: 1;
}

.ve-filter-value {
    font-size: 13px;
    color: var(--ve-dark);
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ve-filter-value .fa-chevron-down {
    font-size: 9px;
    color: var(--ve-text-light);
    transition: var(--ve-transition);
}

.ve-filter-text {
    display: flex;
    flex-direction: column;
}

/* Filter Dropdown */
.ve-filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--ve-white);
    border-radius: var(--ve-radius-md);
    box-shadow: var(--ve-shadow-xl);
    border: 1px solid var(--ve-border);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.ve-filter-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ve-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    cursor: pointer;
    transition: var(--ve-transition);
    font-size: 13px;
    color: var(--ve-text);
    border: none;
    background: none;
    width: 100%;
    text-align: right;
}

.ve-filter-option:hover {
    background: #f3f4f6;
}

.ve-filter-option.selected {
    background: #f0eeff;
    color: var(--ve-primary);
    font-weight: 600;
}

.ve-filter-option .fa-check {
    font-size: 11px;
    color: var(--ve-primary);
    margin-right: auto;
}

/* ============================================
   SEARCH BAR
   ============================================ */

.ve-search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
}

.ve-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--ve-white);
    border: 2px solid var(--ve-border);
    border-radius: 50px;
    padding: 12px 24px;
    transition: var(--ve-transition);
    box-shadow: var(--ve-shadow);
}

.ve-search-box:focus-within {
    border-color: var(--ve-primary);
    box-shadow: 0 0 0 4px rgba(var(--ve-primary-rgb), 0.1);
}

.ve-search-box i {
    color: var(--ve-text-light);
    font-size: 16px;
}

.ve-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: var(--ve-font-sans);
    background: transparent;
    color: var(--ve-dark);
}

.ve-search-box input::placeholder {
    color: var(--ve-text-light);
}

.ve-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--ve-white);
    border-radius: var(--ve-radius-md);
    box-shadow: var(--ve-shadow-xl);
    border: 1px solid var(--ve-border);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.ve-search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    text-decoration: none;
    color: inherit;
    transition: var(--ve-transition);
    border-bottom: 1px solid #f1f5f9;
}

.ve-search-result-item:hover {
    background: #f8fafc;
}

.ve-search-result-image {
    width: 50px;
    height: 36px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.ve-search-result-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ve-search-result-flag {
    font-size: 18px;
    position: absolute;
    right: 18px;
}

.ve-search-result-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ve-dark);
}

.ve-search-result-type {
    font-size: 12px;
    color: var(--ve-text-light);
}

.ve-search-result-type.ve-free {
    color: var(--ve-success);
    font-weight: 600;
}

/* ============================================
   COUNTRY CARDS GRID
   ============================================ */

.ve-countries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.ve-country-card {
    border-radius: var(--ve-radius-lg);
    overflow: hidden;
    transition: var(--ve-transition);
    background: var(--ve-white);
}

.ve-country-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ve-shadow-xl);
}

.ve-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ve-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: var(--ve-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ve-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.05) 70%,
        transparent 100%
    );
    z-index: 1;
    transition: var(--ve-transition);
}

.ve-country-card:hover .ve-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 80%,
        transparent 100%
    );
}

.ve-card-content {
    position: relative;
    z-index: 2;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ve-flag-emoji {
    font-size: 22px;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.ve-country-name {
    font-family: var(--ve-font-serif);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Card Info Row (TYPE | VALID | FEES) */
.ve-card-info {
    display: flex;
    justify-content: center;
    gap: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 8px 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ve-info-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 6px;
}

.ve-info-item:not(:last-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.ve-info-label {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ve-info-value {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

/* No Visa Badge */
.ve-no-visa-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #86efac;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Footer (Guaranteed Date) */
.ve-card-footer {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ve-guaranteed-text {
    font-size: 11px;
    color: var(--ve-text-light);
    font-weight: 500;
}

.ve-guaranteed-date {
    font-size: 13px;
    color: var(--ve-dark);
    font-weight: 600;
}

/* Hover overlay - Documents Needed */
.ve-card-hover-docs {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: var(--ve-transition);
    border-radius: var(--ve-radius-lg);
}

.ve-country-card:hover .ve-card-hover-docs {
    opacity: 1;
}

.ve-hover-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ve-hover-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.ve-hover-doc-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

.ve-hover-doc-list li i {
    font-size: 11px;
    color: var(--ve-primary);
    width: 16px;
    text-align: center;
}

/* No results */
.ve-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--ve-text-light);
    font-size: 16px;
}

/* ============================================
   SINGLE COUNTRY PAGE
   ============================================ */

.ve-single-page {
    font-family: var(--ve-font-sans);
    color: var(--ve-text);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Hero Banner */
.ve-hero {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: var(--ve-radius-xl);
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ve-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.ve-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.ve-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.ve-hero-title {
    font-family: var(--ve-font-serif);
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.ve-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.ve-hero-badge i {
    color: #a78bfa;
}

.ve-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--ve-primary);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--ve-transition);
    box-shadow: 0 4px 15px rgba(var(--ve-primary-rgb), 0.4);
}

.ve-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--ve-primary-rgb), 0.5);
    color: #ffffff;
}

/* Content Layout */
.ve-content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* Main Content */
.ve-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Sidebar */
.ve-sidebar {
    position: sticky;
    top: 100px;
}

.ve-sidebar-card {
    background: var(--ve-white);
    border-radius: var(--ve-radius-lg);
    border: 1px solid var(--ve-border);
    box-shadow: var(--ve-shadow-md);
    overflow: hidden;
}

.ve-sidebar-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--ve-border);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ve-text-light);
}

.ve-sidebar-header i {
    color: var(--ve-primary);
}

.ve-sidebar-price {
    padding: 24px 20px;
    text-align: center;
}

.ve-price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--ve-dark);
    line-height: 1.1;
}

.ve-price-label {
    font-size: 12px;
    color: var(--ve-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.ve-price-breakdown {
    padding: 0 20px 20px;
}

.ve-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.ve-price-row:last-child {
    border-bottom: none;
}

.ve-price-row .label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ve-text);
}

.ve-price-row .label i {
    color: var(--ve-primary);
    font-size: 8px;
}

.ve-price-row .amount {
    font-weight: 700;
    color: var(--ve-dark);
}

.ve-sidebar-cta {
    display: block;
    margin: 0 20px 20px;
    padding: 15px;
    background: var(--ve-primary);
    color: #ffffff;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--ve-transition);
    border: none;
    cursor: pointer;
}

.ve-sidebar-cta:hover {
    background: #5a52d5;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--ve-primary-rgb), 0.4);
}

/* WhatsApp Help */
.ve-whatsapp-help {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-top: 1px solid var(--ve-border);
}

.ve-whatsapp-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--ve-dark);
}

.ve-whatsapp-sub {
    font-size: 12px;
    color: var(--ve-text-light);
    font-weight: 400;
}

.ve-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: var(--ve-transition);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.ve-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* ============================================
   APPOINTMENT INFO SECTION
   ============================================ */

.ve-section {
    background: var(--ve-white);
    border-radius: var(--ve-radius-lg);
    border: 1px solid var(--ve-border);
    box-shadow: var(--ve-shadow);
    overflow: hidden;
}

.ve-section-title {
    font-family: var(--ve-font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--ve-dark);
    padding: 24px 24px 0;
    margin-bottom: 20px;
}

.ve-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 24px 24px;
}

.ve-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: var(--ve-radius-sm);
    border: 1px solid #f1f5f9;
}

.ve-info-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ve-info-card-icon.type { background: #e0e7ff; color: #4f46e5; }
.ve-info-card-icon.stay { background: #dbeafe; color: #2563eb; }
.ve-info-card-icon.validity { background: #dcfce7; color: #16a34a; }
.ve-info-card-icon.entry { background: #fef3c7; color: #d97706; }

.ve-info-card-text {
    display: flex;
    flex-direction: column;
}

.ve-info-card-label {
    font-size: 11px;
    color: var(--ve-text-light);
    font-weight: 500;
}

.ve-info-card-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--ve-primary);
}

/* ============================================
   GUARANTEED APPOINTMENT
   ============================================ */

.ve-guaranteed-section {
    padding: 24px;
}

.ve-guaranteed-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--ve-radius-md);
}

.ve-guaranteed-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.ve-guaranteed-info {
    flex: 1;
}

.ve-guaranteed-label {
    font-size: 13px;
    font-weight: 600;
    color: #166534;
}

.ve-guaranteed-date-text {
    font-size: 15px;
    font-weight: 700;
    color: #15803d;
}

/* ============================================
   DOCUMENTS SECTION
   ============================================ */

.ve-documents-section-front {
    padding: 0 24px 24px;
}

/* Applicant Type Tabs */
.ve-applicant-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ve-applicant-tab-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ve-text-light);
    margin-bottom: 8px;
    display: block;
}

.ve-applicant-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 2px solid var(--ve-border);
    border-radius: 50px;
    background: var(--ve-white);
    font-size: 13px;
    font-weight: 600;
    color: var(--ve-text);
    cursor: pointer;
    transition: var(--ve-transition);
}

.ve-applicant-tab:hover {
    border-color: var(--ve-primary);
    color: var(--ve-primary);
}

.ve-applicant-tab.active {
    background: var(--ve-dark);
    border-color: var(--ve-dark);
    color: #fff;
}

.ve-applicant-tab i {
    font-size: 12px;
}

/* Document Items */
.ve-documents-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ve-document-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #f8fafc;
    border-radius: var(--ve-radius-sm);
    border: 1px solid #f1f5f9;
    transition: var(--ve-transition);
}

.ve-document-item:hover {
    background: #f0eeff;
    border-color: #e0deff;
}

.ve-doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--ve-white);
    border: 1px solid var(--ve-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--ve-primary);
    flex-shrink: 0;
}

.ve-doc-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ve-dark);
}

.ve-doc-optional {
    font-size: 11px;
    color: var(--ve-text-light);
    font-weight: 400;
    margin-right: 8px;
}

/* ============================================
   PROCESS STEPS (Timeline)
   ============================================ */

.ve-steps-timeline {
    padding: 24px;
}

.ve-timeline {
    position: relative;
    padding-right: 30px;
}

.ve-timeline::before {
    content: '';
    position: absolute;
    right: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--ve-primary), #a78bfa);
    border-radius: 2px;
}

.ve-timeline-item {
    position: relative;
    padding: 0 40px 30px 0;
}

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

.ve-timeline-dot {
    position: absolute;
    right: -30px;
    top: 4px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ve-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(var(--ve-primary-rgb), 0.2);
}

.ve-timeline-content {
    background: #f8fafc;
    border-radius: var(--ve-radius-sm);
    padding: 16px 18px;
    border: 1px solid #f1f5f9;
}

.ve-timeline-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ve-dark);
    margin-bottom: 4px;
}

.ve-timeline-desc {
    font-size: 13px;
    color: var(--ve-text-light);
    line-height: 1.6;
}

/* ============================================
   APPROVAL RATE
   ============================================ */

.ve-approval-section {
    padding: 24px;
}

.ve-approval-bar-container {
    margin-top: 16px;
}

.ve-approval-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ve-approval-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ve-dark);
}

.ve-approval-percentage {
    font-size: 28px;
    font-weight: 800;
    color: var(--ve-success);
}

.ve-approval-bar {
    height: 12px;
    background: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
}

.ve-approval-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ve-approval-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: ve-shimmer 2s infinite;
}

@keyframes ve-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.ve-faq-section {
    padding: 24px;
}

.ve-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ve-faq-item {
    border: 1px solid var(--ve-border);
    border-radius: var(--ve-radius-sm);
    overflow: hidden;
    transition: var(--ve-transition);
}

.ve-faq-item.active {
    border-color: var(--ve-primary);
    box-shadow: 0 0 0 3px rgba(var(--ve-primary-rgb), 0.1);
}

.ve-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--ve-dark);
    background: var(--ve-white);
    transition: var(--ve-transition);
    border: none;
    width: 100%;
    text-align: right;
    font-family: var(--ve-font-sans);
}

.ve-faq-question:hover {
    background: #f8fafc;
}

.ve-faq-question i {
    color: var(--ve-text-light);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ve-faq-item.active .ve-faq-question i {
    transform: rotate(180deg);
    color: var(--ve-primary);
}

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

.ve-faq-answer-inner {
    padding: 0 18px 16px;
    font-size: 14px;
    color: var(--ve-text);
    line-height: 1.8;
}

.ve-faq-item.active .ve-faq-answer {
    max-height: 500px;
}

/* ============================================
   LOADING ANIMATION
   ============================================ */

.ve-loading {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.ve-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--ve-border);
    border-top-color: var(--ve-primary);
    border-radius: 50%;
    animation: ve-spin 0.8s linear infinite;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .ve-countries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .ve-countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ve-content-layout {
        grid-template-columns: 1fr;
    }
    
    .ve-sidebar {
        position: static;
    }
    
    .ve-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ve-filter-bar {
        flex-wrap: wrap;
        border-radius: var(--ve-radius-md);
        justify-content: center;
    }
    
    .ve-filter-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .ve-countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .ve-card-image {
        height: 200px;
    }
    
    .ve-country-name {
        font-size: 14px;
    }
    
    .ve-hero {
        height: 280px;
        border-radius: var(--ve-radius-md);
    }
    
    .ve-hero-title {
        font-size: 26px;
    }
    
    .ve-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ve-filter-section {
        position: static;
    }
    
    .ve-filter-bar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ve-countries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .ve-card-image {
        height: 180px;
    }
    
    .ve-info-item {
        padding: 0 3px;
    }
    
    .ve-info-label {
        font-size: 7px;
    }
    
    .ve-info-value {
        font-size: 9px;
    }
    
    .ve-hero-title {
        font-size: 22px;
    }
    
    .ve-price-amount {
        font-size: 32px;
    }
}

/* ============================================
   RTL SUPPORT
   ============================================ */

[dir="rtl"] .ve-timeline {
    padding-right: 0;
    padding-left: 30px;
}

[dir="rtl"] .ve-timeline::before {
    right: auto;
    left: 14px;
}

[dir="rtl"] .ve-timeline-dot {
    right: auto;
    left: -30px;
}

[dir="rtl"] .ve-timeline-item {
    padding-right: 0;
    padding-left: 40px;
}

[dir="rtl"] .ve-info-item:not(:last-child) {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

[dir="rtl"] .ve-filter-bar {
    direction: rtl;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes ve-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ve-country-card {
    animation: ve-fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.ve-country-card:nth-child(1) { animation-delay: 0.05s; }
.ve-country-card:nth-child(2) { animation-delay: 0.1s; }
.ve-country-card:nth-child(3) { animation-delay: 0.15s; }
.ve-country-card:nth-child(4) { animation-delay: 0.2s; }
.ve-country-card:nth-child(5) { animation-delay: 0.25s; }
.ve-country-card:nth-child(6) { animation-delay: 0.3s; }
.ve-country-card:nth-child(7) { animation-delay: 0.35s; }
.ve-country-card:nth-child(8) { animation-delay: 0.4s; }
.ve-country-card:nth-child(9) { animation-delay: 0.45s; }
.ve-country-card:nth-child(10) { animation-delay: 0.5s; }
.ve-country-card:nth-child(n+11) { animation-delay: 0.55s; }

.ve-section {
    animation: ve-fadeInUp 0.6s ease forwards;
}
