/* ===========================
   Umrah Visa Page Specific Styles
   =========================== */

/* Umrah Visa Hero Section */
.umrah-visa-hero {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d4a3a 50%, #1a5f3f 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.umrah-visa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="islamicPattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 5 L35 20 L20 35 L5 20 Z" fill="none" stroke="rgba(34,197,94,0.1)" stroke-width="1"/><circle cx="20" cy="20" r="3" fill="rgba(34,197,94,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23islamicPattern)"/></svg>');
    opacity: 0.3;
}

.islamic-greeting {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.arabic-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #22c55e;
    display: block;
    line-height: 1.4;
}

.kaaba-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.mecca-badge, .medina-badge, .prayer-times-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;
}

.mecca-badge {
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.medina-badge {
    bottom: 15%;
    left: 5%;
    animation-delay: 2s;
}

.prayer-times-badge {
    top: 50%;
    left: -5%;
    animation-delay: 4s;
}

.mecca-badge i, .medina-badge i, .prayer-times-badge i {
    font-size: 1.5rem;
    color: #22c55e;
    margin-right: 0.8rem;
}

.mecca-badge div, .medina-badge div, .prayer-times-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.mecca-badge strong, .medina-badge strong, .prayer-times-badge strong {
    font-size: 1.2rem;
    color: #1a5f3f;
}

.mecca-badge span, .medina-badge span, .prayer-times-badge span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Umrah Package Cards */
.umrah-package-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.umrah-package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.umrah-package-card.featured {
    border: 3px solid #22c55e;
    transform: scale(1.05);
}

.umrah-package-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.package-header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.umrah-package-card:hover .package-icon {
    transform: scale(1.1) rotate(10deg);
}

.package-icon i {
    font-size: 2rem;
    color: var(--white);
}

.package-header h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a5f3f;
    font-weight: 700;
}

.package-duration {
    background: rgba(34, 197, 94, 0.1);
    color: #1a5f3f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.package-duration i {
    margin-right: 0.5rem;
}

.package-body {
    padding: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--text-gray);
}

.package-features li i {
    color: #22c55e;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.package-price {
    text-align: center;
    margin: 2rem 0 1.5rem;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a5f3f;
}

.package-price small {
    display: block;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.requirements-list li i {
    color: #198754;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.requirements-note {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
}



.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green) !important;
    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-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    transition: var(--transition);
}

/* Umrah Stats Enhancement */
.umrah-stats .stat-card {
    border-left: 4px solid #22c55e;
}

.umrah-stats .stat-card h3 {
    color: #1a5f3f;
}

/* Guidelines Cards */
.guideline-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: var(--transition);
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-top: 4px solid #22c55e;
}

.guideline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.guideline-card:hover .guideline-icon {
    transform: scale(1.1);
}

.guideline-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.guideline-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a5f3f;
    font-weight: 600;
}

.guideline-card ul {
    list-style: none;
    padding: 0;
}

.guideline-card li {
    padding: 0.3rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.guideline-card li::before {
    content: '•';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Umrah Apply Section */
.umrah-apply-section {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d4a3a 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.umrah-apply-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.umrah-apply-section .container {
    position: relative;
    z-index: 2;
}

.islamic-quote {
    background: rgba(34, 197, 94, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #22c55e;
}

.islamic-quote .blockquote p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.islamic-quote .blockquote-footer {
    color: #22c55e;
    font-weight: 600;
}

/* Umrah Form Styling */
.umrah-form .form-control,
.umrah-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.umrah-form .form-control:focus,
.umrah-form .form-select:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
    transform: translateY(-2px);
}

.umrah-form .btn-success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.umrah-form .btn-success:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

/* Contact Options for Umrah */
.contact-options .contact-buttons .btn {
    margin-bottom: 1rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
}

.contact-options .contact-buttons .btn-success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
}

.contact-options .contact-buttons .btn-success:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Umrah FAQ Accordion */
.umrah-faq .accordion-button {
    background: var(--white);
    color: #1a5f3f;
    font-weight: 600;
    padding: 1.5rem;
    border: none;
}

.umrah-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
}

.umrah-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2322c55e'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.umrah-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.umrah-faq .accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Hero Features for Umrah */
.umrah-visa-hero .hero-features .feature-item {
    padding: 0.8rem 0;
    background: rgba(34, 197, 94, 0.1);
    margin-bottom: 0.8rem;
    border-radius: 10px;
    padding-left: 1rem;
    border-left: 3px solid #22c55e;
}

.umrah-visa-hero .hero-features .feature-item i {
    color: #22c55e;
}

/* Responsive for Umrah Page */
@media (max-width: 992px) {
    .umrah-visa-hero .hero-image-container {
        margin-top: 2rem;
    }
    
    .mecca-badge, .medina-badge, .prayer-times-badge {
        position: static;
        margin: 1rem auto;
        animation: none;
    }
    
    .umrah-package-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .arabic-text {
        font-size: 1.2rem;
    }
    
    .islamic-greeting {
        padding: 0.8rem;
    }
    
    .package-header {
        padding: 1.5rem 1rem 0.5rem;
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
    }
    
    .package-icon i {
        font-size: 1.5rem;
    }
    
    .package-price .price {
        font-size: 2rem;
    }
    
    .contact-options .contact-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto 1rem auto;
        display: block;
    }
    
    .guideline-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .guideline-icon {
        width: 60px;
        height: 60px;
    }
    
    .guideline-icon i {
        font-size: 1.5rem;
    }
}
