/* ============================================
   UMRAH PAGE ENHANCEMENTS
   Beautiful Background, Animations & Effects
   ============================================ */

/* ========== UMRAH PAGE BODY BACKGROUND ========== */
body.umrah-page {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(248, 249, 250, 0.93)),
                url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

/* Subtle pattern overlay */
body.umrah-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(243, 156, 18, 0.03) 35px, rgba(243, 156, 18, 0.03) 70px);
    pointer-events: none;
    z-index: 0;
}

/* ========== FLOATING ISLAMIC ICONS ========== */
.umrah-floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.umrah-floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.04;
    animation: floatIcon 20s ease-in-out infinite;
    color: #f39c12;
}

.umrah-floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.umrah-floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.umrah-floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.umrah-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);
    }
}

/* ========== CONTENT WRAPPER ========== */
.umrah-page .wrapper {
    position: relative;
    z-index: 1;
}

/* ========== UMRAH HERO SECTION ========== */
.umrah-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.92), rgba(46, 125, 50, 0.92)),
                url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?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;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.umrah-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); }
}

.umrah-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.umrah-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;
}

.umrah-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;
}

.umrah-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;
}

.umrah-hero .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* ========== UMRAH CARDS ENHANCEMENT ========== */
.umrah-page .umrah-card,
.umrah-page .tour-block,
.umrah-page .main-block {
    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);
    animation: fadeInUp 0.6s ease-out;
}

.umrah-page .umrah-card:hover,
.umrah-page .tour-block:hover,
.umrah-page .main-block: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);
}

/* ========== IMAGE ENHANCEMENT ========== */
.umrah-page .main-img,
.umrah-page .card-image {
    position: relative;
    overflow: hidden;
}

.umrah-page .main-img img,
.umrah-page .card-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.umrah-page .umrah-card:hover .main-img img,
.umrah-page .tour-block:hover .main-img img,
.umrah-page .main-block:hover .main-img img {
    transform: scale(1.15) rotate(2deg);
}

/* Gradient overlay on image */
.umrah-page .main-img::after,
.umrah-page .card-image::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;
}

/* ========== SECTION BACKGROUNDS ========== */
.umrah-page section {
    position: relative;
}

.umrah-page .section-padding {
    background: rgba(255, 255, 255, 0.65);
    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);
}

/* ========== PRICE BADGE ENHANCEMENT ========== */
.umrah-page .offer-price,
.umrah-page .offer-price-2 {
    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); }
}

/* ========== SECTION HEADER ENHANCEMENT ========== */
.umrah-page .page-heading h2,
.umrah-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;
}

.umrah-page .page-heading p,
.umrah-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);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========== BUTTON ENHANCEMENTS ========== */
.umrah-page .btn-orange,
.umrah-page .btn-default {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.umrah-page .btn-orange::before,
.umrah-page .btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.umrah-page .btn-orange:hover::before,
.umrah-page .btn-default:hover::before {
    width: 300px;
    height: 300px;
}

.umrah-page .btn-orange:hover,
.umrah-page .btn-default:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(243, 156, 18, 0.4);
}

/* ========== OWL CAROUSEL ENHANCEMENT ========== */
.umrah-page .owl-carousel .owl-item {
    animation: fadeIn 0.6s ease-out;
}

/* ========== RATING STARS ========== */
.umrah-page .rating .fa-star {
    color: #ffa726;
    transition: all 0.3s ease;
}

.umrah-page .rating:hover .fa-star {
    transform: scale(1.2);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    body.umrah-page {
        background-attachment: scroll;
    }
    
    .umrah-hero {
        background-attachment: scroll;
        min-height: 350px;
        padding: 3rem 1.5rem;
        border-radius: 0 0 30px 30px;
    }
    
    .umrah-page .section-padding {
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .umrah-floating-icons {
        display: none;
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.umrah-page .umrah-card,
.umrah-page .tour-block,
.umrah-page .main-block {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.umrah-page .umrah-card:nth-child(1),
.umrah-page .tour-block:nth-child(1) { animation-delay: 0.1s; }
.umrah-page .umrah-card:nth-child(2),
.umrah-page .tour-block:nth-child(2) { animation-delay: 0.2s; }
.umrah-page .umrah-card:nth-child(3),
.umrah-page .tour-block:nth-child(3) { animation-delay: 0.3s; }
.umrah-page .umrah-card:nth-child(4),
.umrah-page .tour-block:nth-child(4) { animation-delay: 0.4s; }

/* ========== HOVER GLOW EFFECT ========== */
.umrah-page .umrah-card:hover,
.umrah-page .tour-block:hover,
.umrah-page .main-block:hover {
    box-shadow: 0 24px 60px rgba(243, 156, 18, 0.25),
                0 0 40px rgba(243, 156, 18, 0.1);
}
