/* =========================================================
   VISA SERVICES STYLESHEET - KING PARADISE
   ========================================================= */

/* Hero Banner for Visa Page */
.visa-hero {
    position: relative;
    padding: 100px 5% 70px 5%;
    background: linear-gradient(135deg, rgba(10, 61, 145, 0.94) 0%, rgba(8, 45, 107, 0.9) 100%), url('../images/services/visa_banner.jpg') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    box-sizing: border-box;
}

.visa-hero-content {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.visa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 105, 32, 0.2);
    border: 1px solid var(--primary-orange, #f36920);
    color: #ffedd5;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.visa-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #ffffff;
}

.visa-hero h1 .highlight {
    color: var(--primary-yellow, #f7ba00);
}

.visa-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 24px;
}

.visa-hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.visa-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.visa-stat-pill i {
    color: var(--primary-yellow, #f7ba00);
    font-size: 16px;
}

/* Home Section Visa Showcase */
.visa-section {
    padding: 60px 5%;
    background: #f8fafc;
}

.visa-container {
    max-width: 1240px;
    margin: 0 auto;
}

.visa-header {
    text-align: center;
    margin-bottom: 40px;
}

.visa-header-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 61, 145, 0.08);
    color: var(--primary-blue, #0a3d91);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.visa-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-blue, #0a3d91);
    margin: 0 0 10px 0;
}

.visa-header p {
    color: #64748b;
    font-size: 15.5px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Visa Cards Grid */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 26px;
    margin-bottom: 40px;
}

.visa-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.visa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(10, 61, 145, 0.12);
    border-color: #cbd5e1;
}

.visa-card-header {
    padding: 22px 24px 16px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.visa-country-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.visa-flag-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue, #0a3d91) 0%, #174baf 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(10, 61, 145, 0.2);
}

.visa-country-name {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
}

.visa-type-tag {
    font-size: 12px;
    color: var(--primary-orange, #f36920);
    font-weight: 600;
    text-transform: uppercase;
}

.visa-badge-fast {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.visa-card-body {
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.visa-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: #f8fafc;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.visa-meta-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.visa-meta-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

.visa-meta-val {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.visa-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visa-features-list li {
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.visa-features-list li i {
    color: #10b981;
    font-size: 12px;
}

.visa-card-footer {
    padding: 16px 24px 20px 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.visa-price-box {
    display: flex;
    flex-direction: column;
}

.visa-price-label {
    font-size: 10.5px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

.visa-price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue, #0a3d91);
}

.btn-visa-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-orange, #f36920) 0%, #e0530b 100%);
    color: #ffffff !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(243, 105, 32, 0.3);
    transition: all 0.25s ease;
}

.btn-visa-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(243, 105, 32, 0.45);
    background: linear-gradient(135deg, #e0530b 0%, #c2410c 100%);
}

/* Why Choose Visa Process Steps */
.visa-steps-section {
    padding: 50px 5%;
    background: #ffffff;
}

.visa-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.visa-step-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.visa-step-card:hover {
    background: #ffffff;
    border-color: var(--primary-blue, #0a3d91);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 61, 145, 0.08);
}

.visa-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-orange, #f36920);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
}

.visa-step-icon {
    font-size: 32px;
    color: var(--primary-blue, #0a3d91);
    margin-bottom: 12px;
}

.visa-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.visa-step-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* CTA Consultation Box */
.visa-cta-box {
    background: linear-gradient(135deg, var(--primary-blue, #0a3d91) 0%, #082d6b 100%);
    border-radius: 16px;
    padding: 35px 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(10, 61, 145, 0.25);
}

.visa-cta-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 6px 0;
}

.visa-cta-text p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14.5px;
}

.visa-cta-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-visa-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.25s ease;
}

.btn-visa-wa:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.btn-visa-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.btn-visa-call:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .visa-hero h1 {
        font-size: 2rem;
    }
    .visa-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .visa-cta-btns {
        width: 100%;
        justify-content: center;
    }
    .btn-visa-wa, .btn-visa-call {
        width: 100%;
        justify-content: center;
    }
    .visa-grid {
        grid-template-columns: 1fr;
    }
}
