/* ملف style.css */
:root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: var(--text-color);
            line-height: 1.6;
            padding: 20px;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        header {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .search-container {
            margin: 20px 0;
            display: flex;
            justify-content: center;
        }
        
        #searchInput {
            width: 100%;
            max-width: 500px;
            padding: 12px 20px;
            border: none;
            border-radius: 30px;
            box-shadow: var(--card-shadow);
            font-size: 1rem;
            outline: none;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 10px 20px;
            background-color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            font-weight: bold;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        
        .card-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 15px;
            display: flex;
            align-items: center;
        }
        
        .card-icon {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
        }
        
        .card-icon i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        
        .card-title {
            font-size: 1.2rem;
            margin: 0;
        }
        
        .card-body {
            padding: 20px;
        }
        
        .card-desc {
            color: #666;
            margin-bottom: 15px;
        }
        
        .services {
            margin-top: 15px;
        }
        
        .services-title {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .services-title i {
            margin-left: 8px;
        }
        
        .services-list {
            list-style-type: none;
        }
        
        .services-list li {
            padding: 5px 0;
            border-bottom: 1px dashed #eee;
            position: relative;
            padding-right: 20px;
        }
        
        .services-list li:before {
            content: "•";
            color: var(--secondary-color);
            font-weight: bold;
            position: absolute;
            right: 0;
        }
        
        .card-footer {
            padding: 15px 20px;
            background-color: #f8f9fa;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .phone {
            display: flex;
            align-items: center;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .phone i {
            margin-left: 8px;
            color: var(--accent-color);
        }
        
        .details-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .details-btn:hover {
            background-color: #c0392b;
        }
        
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px;
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
        }
        
        .breadcrumb {
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .cards-container {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .card-footer {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .card-header {
                flex-direction: column;
                text-align: center;
            }
            
            .card-icon {
                margin: 0 0 10px 0;
            }
        }
        
        /* Schema.org microdata styling */
        [itemscope] {
            display: none; /* Hide from visual display, only for search engines */
        }
        
         /* أنماط الأيقونات العائمة */
    .floating-icons {
        position: fixed;
        bottom: 30px;
        left: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }
    
    .icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }
    
    .icon:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    }
    
    .phone-icon {
        background: linear-gradient(135deg, #25d366, #128c7e);
    }
    
    .whatsapp-icon {
        background: linear-gradient(135deg, #128c7e, #075e54);
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }
    
    .message {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #ff4757;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: bold;
        display: none;
        z-index: 1001;
    }
    
    @media (max-width: 768px) {
        .floating-icons {
            bottom: 20px;
            left: 20px;
        }
        
        .icon {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
    }