@keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        @keyframes pulse {
            0% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
            100% { opacity: 0.3; transform: scale(1); }
        }
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* إزالة أي مسافات بيضاء حول الفوتر */
        .main-footer {
            box-sizing: border-box;
        }
        
        /* حركة ظهور الأعمدة */
        .footer-col {
            animation: slideIn 0.8s ease forwards;
            opacity: 0;
        }
        /* أي زائر مش عايز حركات (motion sensitivity) أو لو الأنيميشن اتعطل لأي
           سبب، المحتوى الأساسي في الفوتر (بيانات التواصل والروابط القانونية)
           لازم يفضل ظاهر فورًا، مش يعتمد على الأنيميشن عشان يبان أصلًا. */
        @media (prefers-reduced-motion: reduce) {
            .footer-col {
                animation: none;
                opacity: 1;
            }
        }
        .footer-col:nth-child(1) { animation-delay: 0.1s; }
        .footer-col:nth-child(2) { animation-delay: 0.2s; }
        .footer-col:nth-child(3) { animation-delay: 0.3s; }
        .footer-col:nth-child(4) { animation-delay: 0.4s; }
        .footer-col:nth-child(5) { animation-delay: 0.5s; }
        
        .footer-col h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: #F59E0B;
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.5rem;
            transition: all 0.3s ease;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #F59E0B;
            transition: width 0.4s ease;
        }
        .footer-col:hover h4::after {
            width: 80px;
        }
        
        .footer-col p, .footer-col li, .footer-col a, .footer-col span {
            font-size: 1rem;
            line-height: 1.6;
            transition: all 0.3s ease;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .footer-links a:hover {
            color: #F59E0B;
            transform: translateX(8px);
        }
        
        .journey-card {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .journey-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }
        .journey-card:hover::before {
            left: 100%;
        }
        .journey-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        .journey-card p {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .journey-card small {
            opacity: 0.8;
            font-size: 0.85rem;
        }
        
        .social-links-footer {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }
        .social-link-footer {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .social-link-footer:hover {
            background: #F59E0B;
            color: #1E3A8A;
            transform: translateY(-8px) rotate(360deg);
        }
        
        .select-category {
            background: rgba(255,255,255,0.1);
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            width: 100%;
            cursor: pointer;
            font-size: 0.95rem;
            margin: 0.5rem 0 1rem;
            transition: all 0.3s ease;
        }
        .select-category:hover {
            background: rgba(255,255,255,0.2);
        }
        .select-category option {
            background: #1E3A8A;
            color: white;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            transition: transform 0.3s ease;
        }
        .contact-info-item:hover {
            transform: translateX(8px);
        }
        .contact-info-item i {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #F59E0B;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }
        .contact-info-item:hover i {
            background: #F59E0B;
            color: #1E3A8A;
            transform: rotate(360deg);
        }
        .contact-info-item a, .contact-info-item span {
            color: white;
            text-decoration: none;
            opacity: 0.9;
            word-break: break-word;
        }
        
        .google-business-card {
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.2);
            margin-top: 0.5rem;
            transition: all 0.4s ease;
        }
        .google-business-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .btn-google {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: #F59E0B;
            color: #1E3A8A;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.4s ease;
            border: 2px solid #F59E0B;
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
        }
        .btn-google:hover {
            transform: translateX(5px);
            background: transparent;
            color: white;
        }
        .btn-google::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }
        .btn-google:hover::before {
            left: 100%;
        }
        
        .legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0 1.5rem;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            justify-content: center;
        }
        .legal-link {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }
        .legal-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: #F59E0B;
            transition: width 0.3s ease;
        }
        .legal-link:hover::after {
            width: 100%;
        }
        .legal-link:hover {
            color: #F59E0B;
        }
        
        .copyright {
            text-align: center;
            opacity: 0.8;
            font-size: 0.9rem;
            margin-top: 1.5rem;
            padding: 0 1rem;
        }

        /* ملحوظة: قاعدة body{overflow-x:hidden} اتشالت من هنا — كانت موجودة عشان
           تخبي أي Scroll أفقي ناتج عن حيلة width:100vw في الفوتر (اللي اتشالت
           هي كمان). دلوقتي مفيش سبب حقيقي للمشكلة، فمفيش داعي لإخفائها. */

/* ===== next block ===== */

/* للشاشات الكبيرة (ديسكتوب) - 5 أعمدة */
    @media (min-width: 1024px) {
        .footer-grid {
            grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr !important;
        }
    }
    
    /* للشاشات المتوسطة (تابلت) - 3 أعمدة */
    @media (min-width: 640px) and (max-width: 1023px) {
        .footer-grid {
            grid-template-columns: repeat(3, 1fr) !important;
        }
    }
    
    /* للشاشات الصغيرة (موبايل) - عمود واحد */
    @media (max-width: 639px) {
        .footer-grid {
            grid-template-columns: 1fr !important;
        }
    }