/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--light-color);
    font-size: 16px;
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    /* color: var(--dark-color); */
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    /* color: var(--gray-600); */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== UTILITY CLASSES ===== */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-light-50 { color: rgba(255, 255, 255, 0.5) !important; }
.text-light-75 { color: rgba(255, 255, 255, 0.75) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-light-gray { background-color: var(--gray-100) !important; }
.border-primary { border-color: var(--primary-color) !important; }

/* ===== HEADER STYLES ===== */
.header-main {
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: var(--gray-100);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow-lg);
    border-radius: var(--border-radius-lg);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

/* ===== BUTTON STYLES ===== */
.btn {
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== CARD STYLES ===== */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
}

.card-header {
    background-color: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* ===== FEATURE STYLES ===== */
.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.feature-item:hover {
    background-color: white;
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* ===== STATS STYLES ===== */
.stats-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: white;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== FORM STYLES ===== */
.form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background-color: var(--gray-900) !important;
    color: var(--gray-300);
}

.footer h5,
.footer h6 {
    color: var(--primary-light);
    font-weight: 600;
}

.footer a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-light);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray-800);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== BACK TO TOP BUTTON ===== */
.btn-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition);
}

.btn-floating:hover {
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        padding-top: 70px;
    }
    
    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem 0.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem !important;
        margin: 0.1rem 0;
    }
    
    .dropdown-item {
        padding: 0.6rem 1rem;
    }
    
    .btn-floating {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 13px;
    }
    
    .container-fluid {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 1.5rem 0;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .feature-item {
        padding: 1rem 0.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===== ANIMATION CLASSES ===== */
.fade-in {
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.display-4 ,.lead {
    /* color:#fff; */
}
.slide-in-right {
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== LOADING SPINNER ===== */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}



/* ===== APPLICATION FORM STYLES ===== */
.multi-step-form .form-step {
    display: none;
}

.multi-step-form .form-step.active {
    display: block;
}

.progress-header {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.05);
}

.upload-icon {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.upload-text {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.upload-subtext {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.upload-success {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(var(--success-rgb), 0.1);
    border: 1px solid var(--success-color);
    border-radius: 5px;
    margin-top: 1rem;
}

.detail-item {
    margin-bottom: 1.5rem;
}

.detail-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.detail-value {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.summary-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.payment-summary .card {
    position: sticky;
    top: 2rem;
}

.payment-methods .form-check {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.payment-methods .form-check:hover {
    background: var(--light-gray);
}

.payment-methods .form-check-input:checked + .form-check-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== COUNTRY ELIGIBILITY STYLES ===== */
.region-map {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.region-countries {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1rem;
    min-height: 200px;
}

.country-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.country-item {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.country-item.eligible {
    background: rgba(var(--success-rgb), 0.1);
    color: var(--success-color);
    border: 1px solid rgba(var(--success-rgb), 0.3);
}

.country-item.not-eligible {
    background: rgba(var(--danger-rgb), 0.1);
    color: var(--danger-color);
    border: 1px solid rgba(var(--danger-rgb), 0.3);
}

.country-item.visa-free {
    background: rgba(var(--info-rgb), 0.1);
    color: var(--info-color);
    border: 1px solid rgba(var(--info-rgb), 0.3);
}

.country-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.visa-free-countries .country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.map-legend {
    text-align: center;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
}

.legend-color.eligible {
    background: var(--success-color);
}

.legend-color.not-eligible {
    background: var(--danger-color);
}

.legend-color.visa-free {
    background: var(--info-color);
}

/* ===== STEP CARDS ===== */
.step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.step-card h5 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== TIMELINE STYLES ===== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

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

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timeline-content h6 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.timeline-content p {
    margin: 0;
    font-size: 0.875rem;
}

/* ===== ENHANCED RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .upload-area {
        padding: 1.5rem 1rem;
    }
    
    .upload-icon {
        font-size: 1.5rem;
    }
    
    .country-grid {
        gap: 0.25rem;
    }
    
    .country-item {
        font-size: 0.75rem;
        padding: 0.375rem 0.5rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1.5rem;
        width: 25px;
        height: 25px;
    }
    
    .region-map {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .legend-item {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .legend-color {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 576px) {
    .progress-header {
        padding: 1rem;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .upload-area {
        padding: 1rem;
    }
    
    .upload-text {
        font-size: 0.875rem;
    }
    
    .upload-subtext {
        font-size: 0.75rem;
    }
    
    .country-item {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .step-card {
        padding: 1rem;
    }
    
    .step-icon {
        font-size: 1.8rem;
    }
    
    .detail-item {
        margin-bottom: 1rem;
    }
    
    .terms-box {
        padding: 1rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .footer,
    .btn,
    .alert {
        display: none !important;
    }
    
    .card {
        border: 1px solid #000 !important;
        box-shadow: none !important;
    }
    
    .text-primary {
        color: #000 !important;
    }
    
    .bg-primary {
        background: #f8f9fa !important;
        color: #000 !important;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.5);
}

.upload-area:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 1;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

/* ===== SUCCESS STATES ===== */
.success-icon {
    animation: successPulse 2s ease-in-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* ===== USER-FRIENDLY DESIGN IMPROVEMENTS ===== */

/* Hero Benefits */
.hero-benefits {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.trust-indicators {
    font-size: 0.875rem;
}

/* Process Cards */
.process-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.process-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.process-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.process-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-details li {
    padding: 0.25rem 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.process-details li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Comparison Table */
.comparison-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: white;
}

.comparison-table th {
    background: var(--primary-color) !important;
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem;
    font-size: 0.9rem;
}

.comparison-table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: var(--border-color);
}

.table-row-hover:hover {
    background: rgba(var(--primary-rgb), 0.05);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.purpose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.purpose-list li {
    padding: 0.125rem 0;
    color: var(--text-muted);
}

.purpose-list li:before {
    content: "•";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Statistics Cards */
.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-growth {
    font-size: 0.875rem;
}

/* Destination Cards */
.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-overlay {
    transform: translateY(0);
}

.destination-overlay h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.destination-overlay p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h5 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.destination-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.destination-highlights li {
    padding: 0.25rem 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.destination-highlights li:before {
    content: "📍";
    margin-right: 0.5rem;
}

/* Chart Container */
.chart-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.chart-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-gray);
}

.accordion-body ul {
    margin-bottom: 1rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* CTA Buttons */
.cta-buttons .btn {
    min-width: 200px;
    font-weight: 600;
}

.secondary-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.secondary-links a:hover {
    color: white !important;
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

/* Counter Animation */
.stat-number {
    transition: all 0.3s ease;
}

/* Section Spacing */
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-benefits {
        padding: 1rem;
    }
    
    .benefit-item {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .process-card {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .process-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .process-icon {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .destination-image {
        height: 150px;
    }
    
    .destination-content {
        padding: 1rem;
    }
    
    .chart-container {
        padding: 1rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .price-highlight {
        font-size: 1.25rem;
    }
    
    .cta-buttons .btn {
        min-width: auto;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .secondary-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-benefits .row {
        gap: 0.5rem;
    }
    
    .benefit-item {
        font-size: 0.8rem;
    }
    
    .process-card {
        padding: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .destination-content {
        padding: 0.75rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .purpose-list {
        font-size: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .pulse-animation {
        animation: none;
    }
    
    .destination-overlay {
        transform: translateY(0);
        position: static;
        background: #f8f9fa;
        color: #333;
    }
    
    .stat-card,
    .process-card,
    .destination-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Accessibility Improvements */
.btn:focus,
.accordion-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.destination-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .stat-card,
    .process-card,
    .destination-card {
        border: 2px solid var(--text-color);
    }
    
    .comparison-table {
        border: 2px solid var(--text-color);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .pulse-animation,
    .fade-in,
    .slide-in-right,
    .slide-in-left,
    .slide-in-up {
        animation: none;
    }
    
    .process-card:hover,
    .stat-card:hover,
    .destination-card:hover {
        transform: none;
    }
    
    .destination-image img {
        transition: none;
    }
    
    .destination-card:hover .destination-image img {
        transform: none;
    }
}

