/* ============================================
   VISA PAGE ENHANCEMENTS
   Beautiful Background and Modern UI
   ============================================ */

/* ========== VISA PAGE BODY BACKGROUND ========== */
body.visa-page {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95)),
                url('https://images.unsplash.com/photo-1569154941061-e231b4725ef1?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

/* Subtle pattern overlay */
body.visa-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
    pointer-events: none;
    z-index: 0;
}

/* ========== CONTENT WRAPPER ========== */
.visa-page .wrapper {
    position: relative;
    z-index: 1;
}

/* ========== VISA CARDS ENHANCEMENT ========== */
.visa-page .visa-card-landing {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.8);
}

.visa-page .visa-card-landing:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 24px 60px rgba(243, 156, 18, 0.25);
    border-color: rgba(243, 156, 18, 0.3);
}

/* ========== SECTION BACKGROUNDS ========== */
.visa-page section {
    position: relative;
}

.visa-page .section-padding {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    margin: 2rem 0;
    padding: 4rem 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.8);
}

/* ========== VISA HERO SECTION ========== */
.visa-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.9), rgba(230, 126, 34, 0.9)),
                url('https://images.unsplash.com/photo-1569154941061-e231b4725ef1?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    margin-bottom: 3rem;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}

.visa-hero::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: waveMove 20s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.visa-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.visa-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.visa-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.visa-hero .btn {
    background: white;
    color: #f39c12;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease-out;
}

.visa-hero .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* ========== VISA CARD IMAGE ENHANCEMENT ========== */
.visa-page .visa-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.visa-page .visa-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.visa-page .visa-card-landing:hover .visa-img-wrapper img {
    transform: scale(1.15) rotate(2deg);
}

/* Gradient overlay on image */
.visa-page .visa-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
}

/* ========== VISA BADGE ENHANCEMENT ========== */
.visa-page .visa-badge {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 4px 16px rgba(243, 156, 18, 0.5);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========== VISA CONTENT ENHANCEMENT ========== */
.visa-page .visa-content {
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,1));
}

.visa-page .visa-content h4 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== VISA PRICE BOX ENHANCEMENT ========== */
.visa-page .visa-price-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    border: 2px solid rgba(243, 156, 18, 0.2);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.15);
}

/* ========== FLOATING ELEMENTS ========== */
.visa-floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.visa-floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.05;
    animation: floatIcon 20s ease-in-out infinite;
}

.visa-floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.visa-floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.visa-floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.visa-floating-icon:nth-child(4) {
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(30px) rotate(270deg);
    }
}

/* ========== SECTION HEADER ENHANCEMENT ========== */
.visa-page .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.visa-page .section-heading p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    body.visa-page {
        background-attachment: scroll;
    }
    
    .visa-hero {
        background-attachment: scroll;
        min-height: 350px;
        padding: 3rem 1.5rem;
        border-radius: 0 0 30px 30px;
    }
    
    .visa-page .section-padding {
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .visa-floating-icons {
        display: none;
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.visa-page .visa-card-landing {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.visa-page .visa-card-landing:nth-child(1) { animation-delay: 0.1s; }
.visa-page .visa-card-landing:nth-child(2) { animation-delay: 0.2s; }
.visa-page .visa-card-landing:nth-child(3) { animation-delay: 0.3s; }
.visa-page .visa-card-landing:nth-child(4) { animation-delay: 0.4s; }
