/* umbrellas.css — مستخرج من page-umbrellas-jeddah.php */

@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100;300;400;600;700;900&display=swap');
        :root { --gold-primary: #D4AF37; --deep-black: #050505; --pure-black: #000000; --glass: rgba(255, 255, 255, 0.02); --glass-border: rgba(212, 175, 55, 0.15); }
        body { font-family: 'Noto Kufi Arabic', sans-serif; background-color: var(--deep-black); color: #e5e5e5; direction: rtl; line-height: 1.8; overflow-x: hidden; }
        @media (max-width: 768px) { body { padding-bottom: 70px; } }
        .gold-gradient-text { background: linear-gradient(135deg, #8E6D2F 0%, #C5A059 50%, #8E6D2F 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }
        .glass-card { background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 24px; transition: all 0.4s; }
        .glass-card:hover { border-color: var(--gold-primary); transform: translateY(-5px); }
        
        /* Updated Hero Animation & Interactions */
        @keyframes hero-bg-anim { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        .hero-premium-bg { 
            background: radial-gradient(70% 55% at 50% 8%, rgba(197,160,89,0.25), transparent 70%), 
                        linear-gradient(135deg, #17130c 0%, #2a2218 50%, #0a0906 100%);
            background-size: 100% 100%, 200% 200%;
            animation: hero-bg-anim 15s ease infinite;
        }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        .hero-entry { opacity: 0; animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.3s; }
        .delay-300 { animation-delay: 0.5s; }
        .delay-400 { animation-delay: 0.7s; }

        .blog-overlay { background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 100%); }
        .mobile-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background-color: #000; border-top: 2px solid var(--gold-primary); z-index: 99999; display: none; padding: 12px 15px; }
        @media (max-width: 768px) { .mobile-sticky-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; } }
        .sticky-btn { flex: 1; display: flex; align-items: center; justify-content: center; padding: 12px; border-radius: 8px; font-weight: 800; text-decoration: none; height: 48px; font-size: 14px; }
        .sticky-btn-call { background: var(--gold-primary); color: #000; }
        .sticky-btn-whatsapp { border: 1px solid var(--gold-primary); color: var(--gold-primary); }
        
        #zill-banner-scope {
            direction: rtl;
            padding: 1rem 0.5rem;
            font-family: 'system-ui', sans-serif;
            overflow: hidden;
        }

        .zill-slider-main {
            position: relative;
            width: 100%;
            max-width: 1320px;
            height: 550px;
            margin: 0 auto;
            border-radius: 2rem;
            overflow: hidden;
            background: #000;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        @media (max-width: 768px) {
            .zill-slider-main {
                height: 480px;
                border-radius: 1.5rem;
            }
        }

        .zill-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }

        .zill-slide.active {
            opacity: 1;
            z-index: 2;
        }

        .zill-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: transform 8s linear;
        }

        .zill-slide.active img {
            transform: scale(1);
        }

        .zill-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, 
                rgba(0,0,0,0.9) 0%, 
                rgba(0,0,0,0.5) 40%, 
                transparent 100%);
            z-index: 3;
        }

        .zill-content-box {
            position: absolute;
            right: 10%;
            bottom: 4rem;
            left: 10%;
            z-index: 10;
            max-width: 600px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.6s ease-out 0.3s;
            text-align: right;
        }

        @media (max-width: 640px) {
            .zill-content-box {
                bottom: 3.5rem;
                text-align: center;
                right: 5%;
                left: 5%;
            }
        }

        .zill-slide.active .zill-content-box {
            transform: translateY(0);
            opacity: 1;
        }

        .zill-title {
            color: var(--zill-gold);
            font-size: clamp(1.4rem, 5vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .zill-desc {
            color: #f0f0f0;
            font-size: clamp(0.9rem, 3vw, 1.1rem);
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .zill-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: var(--zill-gold);
            color: #000;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.2s;
            min-width: 160px;
        }

        .zill-cta-btn:active {
            transform: scale(0.95);
        }

        .zill-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 20;
        }

        .zill-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
        }

        .zill-dot.active {
            background: var(--zill-gold);
            width: 30px;
            border-radius: 10px;
        }

        .work-item {
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            user-select: none;
        }
        
        :root {
            --zill-gold: #D4AF37;
            --zill-black: #080808;
        }

        .work-item .work-overlay {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (min-width: 768px) and (hover: hover) {
            .work-item .work-overlay {
                opacity: 0;
                transform: translateY(20px);
            }
            .work-item:hover .work-overlay {
                opacity: 1;
                transform: translateY(0);
            }
            .work-item img {
                transition: transform 0.7s ease;
            }
            .work-item:hover img {
                transform: scale(1.1);
            }
        }

        @media (hover: none), (max-width: 767px) {
            .work-item .work-overlay {
                opacity: 1 !important;
                transform: translateY(0) !important;
                background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
            }
        }

        a[class*="bg-gold-primary"]:active, 
        a[class*="glass-card"]:active {
            transform: scale(0.95);
        }