/* mathlat-jedak.css — مستخرج من page-mathlat-jedak-judah.php */

@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@300;400;600;700;900&display=swap');

    :root {
        --gold-main: #D4AF37;
        --gold-dark: #8E6D2F;
        --bg-dark: #000000;
        --text-light: #f3f4f6;
    }

    body { font-family: 'Noto Kufi Arabic', sans-serif; background-color: var(--bg-dark); color: #fff; direction: rtl; overflow-x: hidden; }

    /* Typography & Gradients */
    .gold-gradient { background: linear-gradient(135deg, #D4AF37, #f3e2b3, #8e6d2f); }
    .gold-text, .gold-gradient-text { 
        background: linear-gradient(90deg, #D4AF37, #f3e2b3, #8e6d2f); 
        -webkit-background-clip: text; 
        -webkit-text-fill-color: transparent; 
        font-family: system-ui, 'Noto Kufi Arabic', sans-serif !important;
        font-weight: 800;
    }
    
    /* Hero Slider */
    .hero-slider { height: 85vh; width: 100%; }
    .swiper-slide { position: relative; overflow: hidden; }
    .slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 8s ease; will-change: transform; }
    .swiper-slide-active .slide-bg { transform: scale(1.1); }
    .slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,1) 10%, rgba(0,0,0,0.4) 100%); }

    /* Cards */
    .feature-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 20px; transition: 0.3s; }
    .feature-card:hover { border-color: var(--gold-main); transform: translateY(-5px); }

    /* Responsive Table */
    @media (max-width: 768px) {
        .responsive-table thead { display: none; }
        .responsive-table tr { display: block; margin-bottom: 1rem; border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 12px; padding: 10px; }
        .responsive-table td { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .responsive-table td::before { content: attr(data-label); color: var(--gold-main); font-weight: bold; }
        h1.main-hero-title { font-size: 2rem !important; line-height: 1.3 !important; }
        .hero-slider { height: 65vh; }
    }

    /* Mobile Sticky Bar (CSS Only) */
    .mobile-sticky-bar {
        position: fixed; bottom: 0; left: 0; right: 0; 
        background: rgba(0, 0, 0, 0.95); border-top: 1px solid #D4AF37;
        z-index: 1000; display: none; padding: 10px 15px; gap: 10px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }
    @media (max-width: 768px) { .mobile-sticky-bar { display: flex; } }
    
    .sticky-btn { 
        flex: 1; display: flex; align-items: center; justify-content: center; 
        gap: 8px; padding: 12px; border-radius: 8px; font-weight: 700; font-size: 14px; 
        color: #fff; text-decoration: none; 
    }
    .sticky-btn.call { background: var(--gold-main); color: #000; }
    .sticky-btn.whatsapp { background: #25d366; }

    /* Content Area Styling */
    .content-area h2 { color: var(--gold-main); font-size: 1.75rem; margin-bottom: 1rem; margin-top: 2rem; }
    .content-area p { line-height: 1.8; color: #d1d5db; margin-bottom: 1.2rem; }
    .content-area ul li { position: relative; padding-right: 1.5rem; margin-bottom: 0.5rem; color: #e5e7eb; }
    .content-area ul li::before { content: "✓"; color: var(--gold-main); position: absolute; right: 0; }