  /*footer*/


                /* تصميم الفوتر */
        footer {
            background: var(--gradient-blue);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
        }
        
        .footer-section {
            padding: 0 1rem;
        }
        
        .footer-heading {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
            font-weight: 700;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-red);
            border-radius: 3px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: #ff9e9e;
            transform: translateX(-5px);
        }
        
        .footer-links i {
            color: var(--primary-red);
            font-size: 0.9rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .contact-icon {
            background: var(--gradient-red);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-text {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .newsletter-input {
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            transition: all 0.3s ease;
        }
        
        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.25);
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 6px;
            background: var(--gradient-red);
            color: white;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(171, 36, 36, 0.3);
        }
        
        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(171, 36, 36, 0.4);
        }
        
        .footer-bottom {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* التكيف مع الشاشات الصغيرة */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1rem;
            }
            
            .footer-section {
                padding: 0;
            }
            
            .footer-heading {
                font-size: 1.3rem;
            }
            
            .social-links {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            nav {
                padding: 0 1rem;
            }
            
            .logo-icon {
                width: 42px;
                height: 42px;
            }
            
            .logo-text h1 {
                font-size: 1.3rem;
            }
            
            .content-placeholder {
                padding: 1.5rem;
            }
            
            .content-placeholder h2 {
                font-size: 1.5rem;
            }
            
            .footer-heading {
                font-size: 1.2rem;
            }
        }
