/* Visa Details Styles */

:root {
    --visa-primary: #4c3398;
    --visa-accent: #7d5fff;
    --visa-bg: #f8f9fa;
    /* Light uniform background */
    --visa-card-bg: rgba(255, 255, 255, 0.7);
}

body {
    background-color: var(--visa-bg) !important;
}

.visa-hero {
    height: 60vh;
    min-height: 480px;
    background-image: url('https://images.unsplash.com/photo-1569154941061-e231b4725ef1?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.visa-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.visa-hero .container-fluid {
    position: relative;
    z-index: 2;
    padding-left: 10%;
    padding-right: 10%;
}

/* Glassmorphism Pricing Cards */
.pricing-section {
    padding: 60px 0;
}

.visa-pricing-card {
    background: var(--visa-card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.visa-pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(76, 51, 152, 0.12);
    border-color: var(--visa-accent);
}

.visa-pricing-card.featured {
    background: linear-gradient(135deg, var(--visa-primary) 0%, #341f97 100%);
    color: white;
    border: none;
}

.visa-pricing-card.featured .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.visa-pricing-card h4 {
    margin-bottom: 12px !important;
}

.price-tag {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.7;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.includes-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.includes-list li i {
    color: #2da44e;
}

.visa-pricing-card.featured .includes-list li i {
    color: #4ade80;
}

/* Badges */
.badge-processing {
    background: #eef2ff;
    color: #4338ca;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid #c7d2fe;
}

.visa-pricing-card.featured .badge-processing {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.badge-offer {
    background: #ff4757;
    color: white;
    font-size: 0.65rem;
    padding: 5px 15px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 50px;
    position: absolute;
    top: 25px;
    right: 25px;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.25);
    z-index: 5;
}

/* Enquiry Form */
.enquiry-section {
    padding: 60px 0;
}

.form-container-premium {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-form .form-label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.modern-form .form-control,
.modern-form .form-select {
    border: 2px solid #edf2f7;
    border-radius: 8px;
    padding: 15px 20px;
    background: #f8fafc !important;
    transition: all 0.3s ease;
}

.modern-form .form-control:focus,
.modern-form .form-select:focus {
    border-color: var(--visa-primary);
    background: white !important;
    box-shadow: 0 10px 25px rgba(76, 51, 152, 0.1);
}

/* Fix flex layout for input-group */
.modern-form .input-group {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.modern-form .input-group .form-control {
    flex: 1 1 auto;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.modern-form .input-group .form-select {
    flex: 0 0 130px;
    width: 130px;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

@media (max-width: 576px) {
    .modern-form .input-group .form-select {
        flex: 0 0 100px;
        width: 100px;
        font-size: 0.8rem;
    }
}

/* WhatsApp Book Section */
.whatsapp-book-card {
    background: #25d366;
    color: white;
    border-radius: 12px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-book-card:hover {
    transform: scale(1.01);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.3);
    color: white;
}

.whatsapp-icon-large {
    font-size: 3.5rem;
}

@media (max-width: 768px) {
    .visa-hero {
        height: 55vh;
        padding-top: 100px;
        text-align: left;
    }

    .visa-hero .container-fluid {
        padding-left: 5%;
        padding-right: 5%;
    }

    .visa-hero .d-flex {
        /* flex-direction: column; */
        gap: 15px;
    }

    .pricing-section,
    .enquiry-section {
        padding: 30px 0;
    }

    .form-container-premium {
        padding: 30px 20px;
    }

    .whatsapp-book-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .badge-offer {
        top: 15px;
        right: 15px;
        padding: 4px 12px;
        font-size: 0.6rem;
    }
}