/**
 * Premium Visa Application Portal - Elite Design System v9
 * AN-NASR TRAVEL & TOUR
 */

:root {
    --v-blue-bright: #0A4DFF;
    --v-blue-deep: #0031A8;
    --v-navy: #0B1736;
    --v-gold: #F4B400;
    --v-bg: #F7F9FC;
    --v-glass: rgba(255, 255, 255, 0.12);
    --v-glass-border: rgba(255, 255, 255, 0.2);
}

.visa-page { background-color: var(--v-bg); min-height: 100vh; overflow-x: hidden; }

/* ── ELITE HERO SECTION ── */
.visa-portal-hero {
    background: linear-gradient(165deg, #0A4DFF 0%, #0031A8 100%) !important;
    padding: clamp(120px, 15vh, 180px) 0 120px;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}

.hero-watermark {
    position: absolute; inset: 0; opacity: 0.1; pointer-events: none;
    background: url('https://www.transparenttextures.com/patterns/world-map.png') center/cover;
    z-index: 1; filter: invert(1);
}

.hero-glow-1 { position: absolute; top: -10%; left: -5%; width: 500px; height: 500px; background: rgba(255,255,255,0.08); filter: blur(120px); border-radius: 50%; z-index: 2; }
.hero-glow-2 { position: absolute; bottom: 0; right: 0; width: 400px; height: 400px; background: rgba(10, 77, 255, 0.5); filter: blur(100px); border-radius: 50%; z-index: 2; }

.hero-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
    position: relative; z-index: 10; align-items: center;
}

.hero-left .kicker {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: #0A4DFF; padding: 8px 20px;
    border-radius: 50px; font-weight: 800; font-size: 0.75rem; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.hero-left h1 {
    font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px;
}

.hero-left .subtitle {
    font-size: 1.2rem; color: #EAF2FF; max-width: 580px; margin-bottom: 45px;
    line-height: 1.7; opacity: 0.95; font-weight: 500;
}

.trust-badges-row { display: flex; flex-wrap: wrap; gap: 15px; }
.trust-badge {
    display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 700;
    background: rgba(255,255,255,0.1); padding: 12px 20px; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px);
}

.hero-right { position: relative; }
.illus-wrap { position: relative; width: 100%; border-radius: 30px; }
.main-img-hero {
    width: 100%; height: 420px; object-fit: cover; border-radius: 30px;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1);
}

.glass-card-float {
    position: absolute; background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px); border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px; padding: 18px; z-index: 20;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3); color: #fff;
}
.card-1 { top: -20px; left: -30px; animation: float 5s infinite ease-in-out; }
.card-2 { bottom: 40px; right: -20px; animation: float 7s infinite ease-in-out; }

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

/* ── STEPPER ── */
.stepper-container {
    background: #fff; padding: 30px 0; border-bottom: 1px solid var(--v-line);
    position: sticky; top: 64px; z-index: 100; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.stepper-flex { display: flex; justify-content: space-between; align-items: center; max-width: 900px; margin: 0 auto; position: relative; }
.step-connector { position: absolute; top: 20px; left: 0; width: 100%; height: 3px; background: #f1f5f9; z-index: 1; }
.step-connector-fill { height: 100%; background: #0A4DFF; width: 0%; transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

.step-item { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; position: relative; z-index: 2; }
.step-circle {
    width: 44px; height: 44px; border-radius: 50%; background: #f1f5f9; color: #64748B;
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem;
    transition: 0.3s; border: 2px solid transparent;
}
.step-item.active .step-circle { background: #fff; color: #0A4DFF; border-color: #0A4DFF; box-shadow: 0 0 0 6px rgba(10, 77, 255, 0.1); }
.step-item.completed .step-circle { background: #0A4DFF; color: #fff; }
.step-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; color: #64748B; letter-spacing: 0.5px; }

/* ── FORM CONTENT ── */
.portal-main { padding: 80px 0 120px; }
.application-grid { display: grid; grid-template-columns: 1fr 360px; gap: 50px; align-items: start; }

.form-card-lux {
    background: #fff; border-radius: 24px; padding: 45px; margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); border: 1px solid #f1f5f9;
}
.card-header-lux { display: flex; align-items: center; gap: 18px; margin-bottom: 40px; }
.card-icon { width: 52px; height: 52px; border-radius: 14px; background: #f0f7ff; color: #0A4DFF; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.card-header-lux h2 { font-size: 1.6rem; font-weight: 800; margin: 0; color: var(--v-navy); }

/* INPUTS */
.input-field-lux { margin-bottom: 28px; }
.input-field-lux label { display: block; font-size: 0.7rem; font-weight: 900; text-transform: uppercase; color: #64748B; letter-spacing: 1px; margin-bottom: 12px; }
.input-wrap { position: relative; }
.input-wrap i { position: absolute; left: 22px; top: 18px; color: #94A3B8; font-size: 1.1rem; z-index: 5; transition: 0.3s; }
.input-wrap input, .input-wrap select, .input-wrap textarea {
    width: 100%; height: 58px; background: #f8fafc; border: 1.5px solid #E2E8F0; border-radius: 16px;
    padding: 0 20px 0 58px; font-size: 1.05rem; font-weight: 600; color: var(--v-navy); transition: 0.3s;
}
.input-wrap input:focus { background: #fff; border-color: #0A4DFF; box-shadow: 0 0 0 5px rgba(10, 77, 255, 0.08); outline: none; }
.input-wrap input:focus + i { color: #0A4DFF; }

/* BUTTONS */
.btn-lux-primary {
    background: linear-gradient(135deg, #0A4DFF 0%, #0031A8 100%) !important;
    color: #fff !important;
    padding: 18px 40px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 20px rgba(10, 77, 255, 0.2);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.btn-lux-primary:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(10, 77, 255, 0.3); }

.btn-lux-outline {
    background: transparent !important;
    border: 2px solid #E2E8F0 !important;
    color: var(--v-navy) !important;
    padding: 18px 35px;
    border-radius: 16px;
    font-weight: 800;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-lux-outline:hover { border-color: #0A4DFF !important; color: #0A4DFF !important; }

/* SUMMARY SIDEBAR */
.sticky-sidebar { position: sticky; top: 180px; display: grid; gap: 24px; }
.summary-card { background: var(--v-navy); color: #fff; border-radius: 24px; padding: 35px; box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15); }
.summary-card h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 8px; color: #fff; line-height: 1.2; }

.summary-details-v8 { display: grid; gap: 12px; }
.sum-row-v8 { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 15px; }
.sum-row-v8 strong { text-align: right; }

.price-tag { font-size: 1.8rem; font-weight: 900; color: #FBBF24; margin-top: 25px; display: block; }

/* SECURITY BANNER */
.security-banner-v7 { background: #ecfdf5; border: 1px solid #d1fae5; border-radius: 16px; padding: 18px 25px; display: flex; align-items: center; gap: 15px; margin-bottom: 45px; }
.security-banner-v7 i { color: #10b981; font-size: 1.3rem; }
.security-banner-v7 p { margin: 0; font-size: 0.95rem; font-weight: 600; color: #065f46; }

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-left { display: flex; flex-direction: column; align-items: center; }
    .hero-right { order: -1; }
    .application-grid { grid-template-columns: 1fr; }
    .step-label { display: none; }
}
