/* ===========================
   UAE Visa Section
   =========================== */
.uae-visa-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.uae-visa-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"><circle cx="50" cy="50" r="2" fill="rgba(220,38,38,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

.uae-visa-section .container {
    position: relative;
    z-index: 2;
}

.visa-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.visa-card-padding {
    padding:1.5rem !important;
}

.visa-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.visa-card.featured {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    transform: scale(1.05);
    border: 2px solid var(--primary-red);
}

.visa-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.visa-card.business {
    border: 2px solid var(--primary-red);
}

.visa-badge {
    position: absolute;
    top: 25px;
    right: -45px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 3;
}

.visa-badge.featured-badge {
    background: var(--white);
    color: var(--primary-red);
}

.visa-badge.business-badge {
    background: var(--primary-black);
}

.visa-header {
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.visa-card.featured .visa-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.visa-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.visa-card.featured .visa-icon {
    background: var(--white);
}

.visa-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.visa-card.featured .visa-icon i {
    color: var(--primary-red);
}

.visa-card:hover .visa-icon {
    transform: scale(1.1) rotate(10deg);
}

.visa-header h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.visa-card.featured .visa-header h4 {
    color: var(--white);
}

.visa-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.visa-card.featured .visa-price {
    color: var(--white);
}

.visa-body {
    padding: 1.5rem;
}

.visa-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visa-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    color: var(--text-gray);
}

.visa-card.featured .visa-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.visa-features li:last-child {
    border-bottom: none;
}

.visa-features li i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 0.9rem;
}

.visa-card.featured .visa-features li i {
    color: var(--white);
}

.visa-footer {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visa-cta {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.visa-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.visa-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}


/* ===========================
   UAE Visa Page Specific Styles
   =========================== */

/* UAE Visa Hero Section */
.uae-visa-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--light-black) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.uae-visa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(220,38,38,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-features {
    margin: 2rem 0;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hero-features .feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.hero-image-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visa-badge-float, .processing-time-badge {
    position: absolute;
    background: var(--white);
    color: var(--primary-black);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    display: flex;
    align-items: center;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.visa-badge-float {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.processing-time-badge {
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

.visa-badge-float i, .processing-time-badge i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-right: 0.5rem;
}

/* Stats Section */
.visa-stats {
    background: var(--light-gray);
}

.stat-card {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-gray);
    margin: 0;
    font-weight: 600;
}

/* Visa Validity Info */
.visa-validity {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.visa-card.featured .visa-validity {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

/* Requirements Section */
.requirements-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: var(--transition);
}

.requirements-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.requirements-card h4 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li i {
    color: var(--primary-red);
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.requirements-note {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
}

.requirements-note i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.requirements-note p {
    margin: 0;
}

/* Processing Steps */
.step-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.step-card p {
    color: var(--text-gray);
    margin: 0;
}

/* Pricing Table */
.pricing-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.pricing-table th {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-gray));
    color: var(--white);
    font-weight: 600;
    padding: 1.5rem 1rem;
    border: none;
}

.pricing-table td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
    border-color: var(--border-color);
}

.featured-row {
    background: rgba(220, 38, 38, 0.05);
}

.price-cell {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-red);
}

.price-cell::before {
    content: 'AED ';
    font-size: 0.9rem;
    font-weight: 600;
}

/* Apply Now Section */
.apply-now-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 50%, var(--primary-red) 100%);
    position: relative;
    overflow: hidden;
}

.apply-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.apply-now-section .container {
    position: relative;
    z-index: 2;
}

.apply-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-heavy);
}

.apply-form .form-label {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.apply-form .form-control,
.apply-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.apply-form .form-control:focus,
.apply-form .form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.contact-options {
    margin-top: 3rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FAQ Section */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--primary-black);
    font-weight: 600;
    font-size: 1.3rem;
    padding: 1.5rem;
    border: none;
    border-radius: 15px 15px 0 0;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-red);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Page Hero (for other UAE visa pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-gray));
    color: var(--white);
    text-align: center;
}

.page-hero .section-title {
    color: var(--white);
}

.page-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles for UAE Visa Page */
@media (max-width: 992px) {
    .hero-image-container {
        height: 300px;
        margin-top: 2rem;
    }
    
    .visa-badge-float, .processing-time-badge {
        position: static;
        margin: 1rem auto;
        animation: none;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features .feature-item {
        font-size: 1rem;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
    
    .apply-form-container {
        padding: 1.5rem;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 1rem 0.5rem;
    }
}
