/* تنسيق عام */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* رأس الصفحة */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1 {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 700;
}

/* تأكد أن رابط الشعار بنفس لون العنوان وليس أزرق افتراضي */
.nav-brand h1 a {
    color: var(--accent-color);
    text-decoration: none;
}

.nav-brand h1 a:visited,
.nav-brand h1 a:hover,
.nav-brand h1 a:active {
    color: var(--accent-color);
    text-decoration: none;
}

/* إخفاء نص علامة الهيدر والإبقاء على الشعار فقط */
.header .nav-brand h1,
.header .nav-brand h1 a {
    font-size: 0;           /* يمنع أخذ مساحة للنص */
    color: transparent;     /* يجعل النص غير مرئي إن بقي تأثير ما */
    gap: 0;                 /* إزالة المسافة عند غياب النص */
}

.nav-brand i {
    margin-left: 10px;
    color: #ffd700;
}

/* استبدال الأيقونة في الهيدر بالشعار (logo.png) بدون تعديل HTML */
/* نخفي أيقونة Font Awesome داخل الهيدر فقط ونُظهر الشعار كخلفية قبل العنوان */
.header .nav-brand i.fa-spa {
    display: none !important;
}

/* نجعل العنوان مرناً لتجاور الشعار مع النص بشكل نظيف */
.header .nav-brand h1,
.header .nav-brand h1 a {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* مسافة بين الشعار والنص */
}

/* الشعار قبل النص: إن وُجد رابط داخل العنوان نضيفه على الرابط فقط */
.header .nav-brand h1 a::before {
    content: "";
    width: 140px; /* زيادة عرض الشعار ليظهر أوضح */
    height: 42px; /* مناسب لارتفاع الشريط */
    display: inline-block;
    background: url('../logo.png') no-repeat center / contain;
}

/* وإن لم يوجد رابط داخل العنوان نضيف الشعار على h1 نفسه */
.header .nav-brand h1:not(:has(a))::before {
    content: "";
    width: 140px; /* زيادة عرض الشعار ليظهر أوضح */
    height: 42px;
    display: inline-block;
    background: url('../logo.png') no-repeat center / contain;
}

@media (max-width: 480px) {
    .header .nav-brand h1 a::before,
    .header .nav-brand h1:not(:has(a))::before {
        width: 110px; /* شعار أكبر على الشاشات الصغيرة أيضاً */
        height: 36px;
    }
    .footer .footer-section h3:has(i.fa-spa)::before {
        width: 110px; /* نفس مقاس الشعار في الهيدر للموبايل */
        height: 36px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* القسم الرئيسي */
.hero {
    background: linear-gradient(rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)), 
                url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3') center/cover;
    min-height: 100vh; /* حتى لا يزيد الارتفاع عند إضافة حشوة علوية */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px; /* بدلاً من الهامش لمنع ظهور خط/فجوة أسفل الهيدر الثابت */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.search-container {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-container input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #333;
    font-family: 'Tajawal', sans-serif;
}

.search-container button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 15px 25px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.search-container button:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* قسم التصفية */
.filters-section {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filters-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

.filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filters select {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    background: white;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s;
    min-width: 150px;
}

.filters select:focus {
    outline: none;
    border-color: #667eea;
}

/* قسم الأقسام */
.services-section {
    background: white;
    padding: 4rem 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 600;
    font-size: 2.5rem;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-category {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.service-category.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.category-icon {
    width: 100px;
    height: 100px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #667eea;
    transition: all 0.3s;
}

.service-category.active .category-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.service-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-category.active h3 {
    color: white;
}

.service-category p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-category.active p {
    color: rgba(255,255,255,0.9);
}

.category-link {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 1rem;
}

.category-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* قسم مقدمي الخدمات */
.providers-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.providers-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 600;
    font-size: 2.5rem;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.provider-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.provider-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.provider-info {
    padding: 1.5rem;
}

.provider-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.provider-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.provider-location {
    color: #666;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.provider-services {
    margin-bottom: 1rem;
}

.service-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.2rem;
}

.provider-price {
    font-weight: 600;
    color: #667eea;
    font-size: 1.1rem;
}

/* عدم وجود نتائج */
.no-results {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* تذييل الصفحة */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    box-shadow: 0 -2px 10px var(--shadow);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

/* اجعل شعار الفوتر مطابقاً لشعار الهيدر (logo.png قبل النص) */
/* اجعل تنسيق العنوان المرئي (محاذاة مع الشعار) ينطبق فقط عندما يحتوي العنوان على أيقونة السبا */
.footer .footer-section h3:has(i.fa-spa) {
    display: inline-flex;
    align-items: center;
    gap: 0;               /* لا حاجة لمسافة لأن النص سيتم إخفاؤه */
    font-size: 0;         /* إخفاء النص بجانب الشعار */
    color: transparent;   /* ضمان عدم ظهور أي لون للنص */
}

/* أخفِ أيقونة Font Awesome في عنوان شعار الفوتر */
.footer .footer-section h3 i.fa-spa {
    display: none !important;
}

/* أضف صورة الشعار قبل نص العنوان */
/* أضف صورة الشعار فقط لعناوين الفوتر التي تحتوي على أيقونة السبا (قسم العلامة التجارية) */
.footer .footer-section h3:has(i.fa-spa)::before {
    content: "";
    width: 140px; /* مطابق لمقاس شعار الهيدر */
    height: 42px;
    display: inline-block;
    background: url('../logo.png') no-repeat center / contain;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.85);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s;
    padding: 4px 8px;
    border-radius: 6px;
}

.footer-section ul li a:hover {
    color: #ffd700;
    background-color: rgba(255,255,255,0.1);
}



.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.social-links a:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 1rem 0;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
        border-radius: 10px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .search-container {
        max-width: 90%;
    }
    
    .filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filters select {
        width: 100%;
        max-width: 300px;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px; /* استبدال الهامش بحشوة لتختفي الفجوة تحت الهيدر */
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .providers-section {
        padding: 2rem 0;
    }
    
    .providers-section h2 {
        font-size: 2rem;
    }
}

/* تأثيرات متحركة */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.provider-card {
    animation: fadeIn 0.6s ease-out;
}

/* تحسينات إضافية للتصميم العربي */
.provider-card {
    text-align: right;
}

.provider-rating {
    justify-content: flex-start;
}

input, select, button {
    font-family: 'Tajawal', sans-serif;
}

/* ألوان مخصصة للعلامة التجارية */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #ffd700;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0,0,0,0.1);
}

/* ===================== */
/* Advertise page styles  */
/* ===================== */
.ad-hero {
    min-height: auto;
    padding-top: 110px; /* to clear fixed header */
    padding-bottom: 60px;
}

.ad-hero .hero-content {
    max-width: 980px;
    margin: 0 auto;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.btn-secondary {
    background: #ffffff;
    color: #333;
}

.btn-secondary:hover {
    background: #f7f7f7;
    transform: translateY(-2px);
}

.ad-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.ad-badge {
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
}

.ad-section {
    padding: 60px 0;
}

.ad-section h2 {
    text-align: center;
    margin-bottom: 24px;
}

.ad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.ad-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.ad-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-bottom: .75rem;
}

.ad-card h3 {
    color: #333;
    margin: .5rem 0 0.5rem;
    font-size: 1.15rem;
}

.ad-card p {
    color: #666;
    line-height: 1.7;
}

.ad-card ul {
    margin-top: 10px;
    color: #555;
    line-height: 1.9;
    padding-inline-start: 18px;
}

.ad-pricing .ad-card {
    border-top: 4px solid var(--primary-color);
}

.ad-pricing .ad-card.tier-2 { border-top-color: var(--secondary-color); }
.ad-pricing .ad-card.tier-3 { border-top-color: #28a745; }

.ad-cta {
    text-align: center;
    padding: 50px 0 80px;
}

.ad-cta p { color: #666; margin: 10px 0 18px; }

.ad-cta .cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .ad-hero { padding-top: 100px; padding-bottom: 40px; }
}