/* 
 * ملف CSS لصفحة الخدمات - وكالة الصقر للتسويق الرقمي
 * الإصدار النهائي مع التحسينات المطلوبة
 * Version: 2.0 Final
 */

/* متغيرات الألوان والخصائص الأساسية */
:root {
    --primary-color: #083B66;
    --secondary-color: #00A7B4;
    --accent-color: #C8A14F;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --background: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 8px 32px rgba(8, 59, 102, 0.1);
    --shadow-medium: 0 12px 40px rgba(8, 59, 102, 0.15);
    --shadow-heavy: 0 20px 60px rgba(8, 59, 102, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --gradient-hero: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* تأثيرات Glass Morphism */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* قسم Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 59, 102, 0.3);
}

.animated-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animated-particles::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 161, 79, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gradient-text {
    background: linear-gradient(45deg, var(--accent-color), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* قسم مقدمة الخدمات (لماذا تختار خدمات الصقر؟) */
.services-intro {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 1) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(248, 249, 250, 1) 100%);
    position: relative;
}

.services-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(8,59,102,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* المزايا الأساسية */
.intro-basic-features {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.basic-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.basic-feature-item {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.basic-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 161, 79, 0.1), transparent);
    transition: left 0.5s ease;
}

.basic-feature-item:hover::before {
    left: 100%;
}

.basic-feature-item .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: white;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.basic-feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-heavy);
}

.basic-feature-item h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.basic-feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05em;
}

/* خبرتنا في مختلف القطاعات */
.expertise-section {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.expertise-header {
    text-align: center;
    margin-bottom: 50px;
}

.expertise-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.expertise-subtitle {
    font-size: 1.1em;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.sector-item {
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sector-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sector-item:hover::before {
    opacity: 0.1;
}

.sector-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.sector-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.sector-item:hover .sector-icon {
    transform: scale(1.1);
    background: var(--gradient-primary);
}

.sector-item span {
    font-size: 1em;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.sector-item:hover span {
    color: var(--primary-color);
    font-weight: 600;
}

/* المزايا التنافسية المتقدمة */
.advanced-features {
    position: relative;
    z-index: 2;
}

.advanced-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advanced-feature-item {
    padding: 35px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advanced-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advanced-feature-item:hover::before {
    opacity: 0.05;
}

.advanced-feature-item .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.advanced-feature-item:hover .feature-icon {
    transform: scale(1.05) rotate(-5deg);
    background: var(--gradient-primary);
}

.advanced-feature-item h4 {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.advanced-feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05em;
    position: relative;
    z-index: 2;
}

/* قسم الخدمات الرئيسية */
.main-services {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(8, 59, 102, 0.02) 0%, 
        rgba(0, 167, 180, 0.02) 50%, 
        rgba(200, 161, 79, 0.02) 100%);
    position: relative;
}

.main-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(8,59,102,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

/* فلتر الخدمات */
.services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1em;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* شريط البحث */
.services-search {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.search-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-container i {
    color: var(--primary-color);
    font-size: 1.2em;
}

.search-container input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.1em;
    color: var(--text-dark);
    outline: none;
}

.search-container input::placeholder {
    color: var(--text-light);
}

/* شبكة الخدمات */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-secondary);
}

.service-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 1.05em;
    position: relative;
    z-index: 2;
}

/* أزرار الخدمات المحدثة */
.service-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 140px;
    justify-content: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-details {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-details:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* مخطط عملية العمل - نسخة معدلة ونهائية */
.work-process {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary); /* تأكد من أن هذا المتغير معرف لديك */
    border-radius: 2px;
    z-index: 1; /* <-- 1. تم تعديل هذه القيمة لتكون الطبقة الأساسية */
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2; /* <-- 2. تم إضافة هذا السطر لرفع البطاقة فوق الخط */
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary); /* تأكد من أن هذا المتغير معرف لديك */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2; /* z-index هنا ضروري أيضًا ليبقى الرقم فوق الخط */
    margin: 0 40px;
}

.step-content {
    flex: 1;
    padding: 30px;
    max-width: 300px;
    background: #ffffff; /* <-- 3. هذا السطر ضروري ليغطي الخط خلفه */
    border-radius: 8px; /* لتحسين الشكل الجمالي */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* لإضافة عمق للبطاقة */
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-content p {
    line-height: 1.6;
    color: var(--text-light);
}
/* خط الاتصال بين الخطوات */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    z-index: 1;
}

/* قسم CTA */
.cta-section {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1em;
    min-width: 180px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-buttons .btn-secondary {
    background: rgba(37, 211, 102, 0.8);
    color: white;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* الحركات والتأثيرات */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* تأثيرات إضافية للتفاعل */
.service-card:hover {
    animation: pulse 0.6s ease-in-out;
}

.sector-icon {
    animation: float 3s ease-in-out infinite;
}

.step-number {
    animation: float 4s ease-in-out infinite;
}

/* تحسينات الأداء */
.glass-card,
.btn,
.service-card,
.basic-feature-item,
.advanced-feature-item,
.sector-item {
    will-change: transform;
}

/* تحسين إمكانية الوصول */
.btn:focus,
.filter-btn:focus,
.service-btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* تأثيرات التمرير السلس */
html {
    scroll-behavior: smooth;
}

/* الاستجابة للأجهزة المختلفة */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3em;
    }
    
    .section-title {
        font-size: 2.4em;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .basic-features-grid,
    .advanced-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        min-height: auto;
        padding: 30px 25px;
    }
    
    .service-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-btn {
        width: 100%;
        min-width: auto;
    }
    
    .basic-features-grid,
    .advanced-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .process-step:nth-child(even) .step-content {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .step-content {
        margin-right: 0;
        margin-top: 20px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8em;
    }
    
    .basic-feature-item .feature-icon,
    .sector-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4em;
    }
    
    .advanced-feature-item .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2em;
    }
    
    .cta-content p {
        font-size: 1.1em;
    }
}

/* تحسين الطباعة */
@media print {
    .hero-section,
    .cta-section {
        background: var(--white) !important;
        color: var(--text-dark) !important;
    }
    
    .glass-card {
        background: var(--white) !important;
        border: 1px solid #ddd !important;
    }
    
    .btn {
        border: 1px solid var(--primary-color) !important;
        background: transparent !important;
        color: var(--primary-color) !important;
    }
}
 
/* تخصيص الفوتر في صفحة الخدمات ليكون أبيض بالكامل */
body.page-template-page-services-final footer#contact {
    background-color: #fff !important;   /* خلفية بيضاء */
    color: var(--saqqr-navy) !important; /* نص داكن مقروء */
}

/* الروابط */
body.page-template-page-services-final footer#contact a {
    color: var(--saqqr-navy) !important; /* داكن */
}
body.page-template-page-services-final footer#contact a:hover {
    color: var(--saqqr-turquoise) !important; /* التركواز عند الـ hover */
}

/* العناوين داخل الفوتر */
body.page-template-page-services-final footer#contact h4,
body.page-template-page-services-final footer#contact h3 {
    color: var(--saqqr-navy) !important;
}



