/*
==============================================
  ملف CSS الشامل لموقع مسراتي - Masraty
  الإصدار: 3.0.0
  التاريخ: 2025
==============================================
*/

/* ============================================
   1. HEADER STYLES - تنسيقات الهيدر
============================================ */

.site-header {
    background: #1A4D7C; /* اللون الأساسي */
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: #1A4D7C;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem; /* ارتفاع أكبر */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: block;
}

.logo-img {
    height: 60px; /* حجم أكبر للشعار */
    width: auto;
    display: block;
}

/* Navigation */
.main-navigation {
    flex: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #ffffff; /* العناوين باللون الأبيض */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu a:hover {
    background: #1FD9A6; /* اللون الثانوي للتمرير */
    color: #ffffff;
    transform: translateY(-2px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-login,
.btn-dashboard {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-login:hover,
.btn-dashboard:hover {
    background: #1FD9A6; /* اللون الثانوي */
    border-color: #1FD9A6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(31,217,166,0.3);
}

.btn-register,
.btn-logout {
    background: #1FD9A6; /* اللون الثانوي */
    color: #ffffff;
    border: 2px solid #1FD9A6;
}

.btn-register:hover,
.btn-logout:hover {
    background: #17c794;
    border-color: #17c794;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(31,217,166,0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   2. LAYOUT FIX - إصلاح التخطيط
============================================ */

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

#page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

/* ============================================
   3. CONTAINER - الحاوية
============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   4. SECTION TITLES - عناوين الأقسام
============================================ */

.section-title-enhanced {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle-enhanced {
    font-size: 1.2rem;
    color: #6B7280;
    text-align: center;
    margin-bottom: 3rem;
}

/* ============================================
   5. CATEGORIES - الفئات (عرض أيقوني أفقي)
============================================ */

.categories-section-enhanced {
    padding: 4rem 0;
    background: #F9FAFB;
}

.categories-carousel-wrapper {
    position: relative;
    padding: 0 3rem;
}

.categories-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
}

.categories-carousel::-webkit-scrollbar {
    display: none;
}

.category-card-iconic {
    flex: 0 0 180px;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    animation: fadeInUp 0.6s ease;
}

.category-card-iconic:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(26,77,124,0.15);
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.category-card-iconic:hover .category-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

.category-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.category-name-iconic {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.category-count-iconic {
    font-size: 0.9rem;
    color: #6B7280;
}

/* أزرار التنقل */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1A4D7C;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav-btn:hover {
    background: #1FD9A6;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev {
    right: 0;
}

.carousel-nav-btn.next {
    left: 0;
}


/* ============================================
   9. STATS - الإحصائيات
============================================ */

.stats-section-enhanced {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1A4D7C 0%, #1FD9A6 100%);
    color: #ffffff;
}

.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card-enhanced {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card-enhanced:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stat-icon-enhanced {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number-enhanced {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   10. CTA SECTION - دعوة لمقدمي الخدمات
============================================ */

.cta-section-enhanced {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A4D7C 0%, #1FD9A6 100%);
    color: #ffffff;
    text-align: center;
}

.cta-title-enhanced {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description-enhanced {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-btn-enhanced {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #1A4D7C;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ============================================
   11. ANIMATIONS - الأنيميشن
============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   12. RESPONSIVE - التصميم المتجاوب
============================================ */

@media (max-width: 992px) {
    /* Header */
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .main-navigation {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: #1A4D7C;
        padding: 2rem;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-menu a {
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn-header {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Sections */
    .section-title-enhanced {
        font-size: 2rem;
    }
    
    .categories-carousel-wrapper,
    .services-carousel-wrapper,
    .testimonials-carousel-wrapper {
        padding: 0 1rem;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .header-actions .btn-header span {
        display: none;
    }
    
    .section-title-enhanced {
        font-size: 1.75rem;
    }
    
    .section-subtitle-enhanced {
        font-size: 1rem;
    }
    
    .category-card-iconic {
        flex: 0 0 150px;
    }
    
    .service-card-enhanced {
        flex: 0 0 300px;
    }
    
    .testimonial-card-enhanced {
        flex: 0 0 320px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .stats-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn-header {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .section-title-enhanced {
        font-size: 1.5rem;
    }
    
    .carousel-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .category-card-iconic {
        flex: 0 0 130px;
        padding: 1.5rem 1rem;
    }
    
    .category-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-card-enhanced {
        flex: 0 0 280px;
    }
    
    .testimonial-card-enhanced {
        flex: 0 0 280px;
    }
    
    .stats-grid-enhanced {
        grid-template-columns: 1fr;
    }
}

/*
==============================================
  ملف CSS النهائي الشامل - Masraty Final
  يحل جميع مشاكل التضارب والعرض
  الإصدار: 4.0.0 Final
==============================================


/* ============================================
   4. SECTION TITLES - العناوين
============================================ */
.section-title-enhanced {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1F2937 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
}

.section-subtitle-enhanced {
    font-size: 1.2rem !important;
    color: #6B7280 !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
}


/* ============================================
   6. SERVICES - الخدمات (أفقي)
============================================ */
.services-section-enhanced {
    padding: 4rem 0 !important;
    background: #ffffff !important;
}

.services-carousel-wrapper {
    position: relative !important;
    padding: 0 3rem !important;
}

.services-carousel,
.services-grid-enhanced {
    display: flex !important;
    gap: 2rem !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 2rem 0 !important;
    scrollbar-width: none !important;
}

.services-carousel::-webkit-scrollbar,
.services-grid-enhanced::-webkit-scrollbar {
    display: none !important;
}

.service-card-enhanced {
    flex: 0 0 350px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    transition: all 0.4s ease !important;
    animation: fadeInUp 0.6s ease !important;
}

.service-card-enhanced:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 12px 35px rgba(26,77,124,0.15) !important;
}

.service-image-enhanced {
    position: relative !important;
    height: 220px !important;
    overflow: hidden !important;
}

.service-image-enhanced img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.service-card-enhanced:hover .service-image-enhanced img {
    transform: scale(1.1) !important;
}

.service-badge-enhanced {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%) !important;
    color: #ffffff !important;
    padding: 0.4rem 1rem !important;
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
}

.service-favorite-enhanced {
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    background: rgba(255,255,255,0.9) !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.service-favorite-enhanced:hover {
    background: #ffffff !important;
    transform: scale(1.1) !important;
}

.service-content-enhanced {
    padding: 1.5rem !important;
}

.service-title-enhanced {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1F2937 !important;
    margin-bottom: 0.75rem !important;
}

.service-meta-enhanced {
    display: flex !important;
    gap: 1rem !important;
    margin-bottom: 0.75rem !important;
}

.service-rating-enhanced {
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    color: #F59E0B !important;
    font-weight: 600 !important;
}

.service-location-enhanced {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: #6B7280 !important;
    font-size: 0.9rem !important;
}

.service-excerpt-enhanced {
    color: #6B7280 !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

.service-footer-enhanced {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 1rem !important;
    border-top: 1px solid #E5E7EB !important;
}

.service-price-enhanced {
    display: flex !important;
    flex-direction: column !important;
}

.price-label-enhanced {
    font-size: 0.8rem !important;
    color: #9CA3AF !important;
}

.price-amount-enhanced {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1A4D7C !important;
}

.service-btn-enhanced {
    background: linear-gradient(135deg, #1A4D7C 0%, #1FD9A6 100%) !important;
    color: #ffffff !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.service-btn-enhanced:hover {
    transform: translateX(-5px) !important;
    box-shadow: 0 4px 15px rgba(26,77,124,0.3) !important;
}

/* ============================================
   7. TESTIMONIALS - آراء العملاء (أفقي)
============================================ */
.testimonials-section-enhanced {
    padding: 4rem 0 !important;
    background: #F9FAFB !important;
}

.testimonials-carousel-wrapper {
    position: relative !important;
    padding: 0 3rem !important;
}

.testimonials-carousel {
    display: flex !important;
    gap: 2rem !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 2rem 0 !important;
    scrollbar-width: none !important;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none !important;
}

.testimonial-card-enhanced {
    flex: 0 0 380px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    transition: all 0.4s ease !important;
    animation: fadeInUp 0.6s ease !important;
}

.testimonial-card-enhanced:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 35px rgba(26,77,124,0.15) !important;
}

.testimonial-header-enhanced {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.testimonial-avatar-enhanced {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.testimonial-avatar-enhanced img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.testimonial-info-enhanced {
    flex: 1 !important;
}

.testimonial-name-enhanced {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1F2937 !important;
    margin-bottom: 0.25rem !important;
}

.testimonial-rating-enhanced {
    display: flex !important;
    gap: 0.25rem !important;
    color: #F59E0B !important;
}

.testimonial-text-enhanced {
    color: #6B7280 !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
}

/*
==============================================
  كود CSS للعرض الأفقي فقط
  أضف هذا الكود في نهاية ملف main.css
==============================================
*/

/* ============================================
   1. الفئات - عرض أفقي
============================================ */
.categories-grid-horizontal {
    display: flex !important;
    gap: 1.5rem !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 2rem 0 !important;
    scrollbar-width: thin !important;
    scrollbar-color: #1FD9A6 #F3F4F6 !important;
}

.categories-grid-horizontal::-webkit-scrollbar {
    height: 8px !important;
}

.categories-grid-horizontal::-webkit-scrollbar-track {
    background: #F3F4F6 !important;
    border-radius: 10px !important;
}

.categories-grid-horizontal::-webkit-scrollbar-thumb {
    background: #1FD9A6 !important;
    border-radius: 10px !important;
}

.category-card-horizontal {
    flex: 0 0 280px !important;
    min-width: 280px !important;
}

/* ============================================
   2. الخدمات - عرض أفقي
============================================ */
.services-grid-enhanced {
    display: flex !important;
    gap: 2rem !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 2rem 0 !important;
    scrollbar-width: thin !important;
    scrollbar-color: #1FD9A6 #F3F4F6 !important;
}

.services-grid-enhanced::-webkit-scrollbar {
    height: 8px !important;
}

.services-grid-enhanced::-webkit-scrollbar-track {
    background: #F3F4F6 !important;
    border-radius: 10px !important;
}

.services-grid-enhanced::-webkit-scrollbar-thumb {
    background: #1FD9A6 !important;
    border-radius: 10px !important;
}

.service-card-enhanced {
    flex: 0 0 350px !important;
    min-width: 350px !important;
}

/* ============================================
3. آراء العملاء - عرض أفقي (مُعدَّل)
============================================ */
.testimonials-grid-enhanced {
   display: flex !important;
   /* ✅ تمت الإضافة: منع العناصر من الالتفاف إلى سطر جديد */
    flex-wrap: nowrap !important;
    /* ✅ تمت الإضافة/التأكيد: ضمان أن الاتجاه أفقي */
    flex-direction: row !important; 
     gap: 2rem !important;
     overflow-x: auto !important;
     scroll-behavior: smooth !important;
      padding: 2rem 0 !important;
     scrollbar-width: thin !important;
     scrollbar-color: #1FD9A6 #F3F4F6 !important;
}

/* بطاقة آراء العملاء - ضمان عدم التمدد والانكماش */
.testimonial-card-enhanced {
    /* ✅ تم التعديل: استخدام flex-shrink: 0 لمنع الانكماش */
    /* flex: 0 0 380px يحدد: (لا تمدد, لا تنكمش, العرض الأساسي) */
     flex: 0 0 380px !important; 
     min-width: 380px !important;
     /* ✅ إضافة قوية للتأكيد */
    max-width: 380px !important;
}

/* تنسيقات شريط التمرير (لا تغيير ضروري) */
.testimonials-grid-enhanced::-webkit-scrollbar {
  height: 8px !important;
}

.testimonials-grid-enhanced::-webkit-scrollbar-track {
     background: #F3F4F6 !important;
     border-radius: 10px !important;
}

.testimonials-grid-enhanced::-webkit-scrollbar-thumb {
     background: #1FD9A6 !important;
     border-radius: 10px !important;
}

/* ============================================
   4. Responsive
============================================ */
@media (max-width: 768px) {
    .category-card-horizontal {
        flex: 0 0 240px !important;
        min-width: 240px !important;
    }
    
    .service-card-enhanced {
        flex: 0 0 300px !important;
        min-width: 300px !important;
    }
    
    .testimonial-card-enhanced {
        flex: 0 0 320px !important;
        min-width: 320px !important;
    }
}

@media (max-width: 576px) {
    .category-card-horizontal {
        flex: 0 0 200px !important;
        min-width: 200px !important;
    }
    
    .service-card-enhanced {
        flex: 0 0 280px !important;
        min-width: 280px !important;
    }
    
    .testimonial-card-enhanced {
        flex: 0 0 280px !important;
        min-width: 280px !important;
    }
}

/* ========================================
   جعل مربع الخدمة بالكامل قابل للنقر
======================================== */

/* تحويل مربع الخدمة إلى رابط */
.service-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* إخفاء الرابط الأصلي */
.service-card .service-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    text-indent: -9999px;
    opacity: 0;
}

/* تأثير hover على كامل المربع */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(26, 77, 124, 0.2);
}

/* تأثير على العنوان عند hover */
.service-card:hover .service-title {
    color: #1FD9A6;
}

/* تأثير على زر "عرض التفاصيل" عند hover */
.service-card:hover .service-btn {
    background: #1A4D7C;
    transform: translateY(-2px);
}

/* جعل الأزرار الداخلية قابلة للنقر */
.service-card .service-btn,
.service-card .service-favorite,
.service-card .service-share {
    position: relative;
    z-index: 20;
}

/* تحسين مظهر زر "عرض التفاصيل" */
.service-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #1FD9A6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    background: #1A4D7C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 124, 0.3);
}

/* تحسين مظهر العنوان */
.service-title {
    color: #1A4D7C;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

/* تحسين مظهر الوصف */
.service-description {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* تحسين مظهر السعر */
.service-price {
    color: #1A4D7C;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* تحسين مظهر التقييم */
.service-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-stars {
    color: #FFC107;
}

/* تحسين مظهر الموقع */
.service-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6B7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ========================================
   Responsive Design
======================================== */

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-price {
        font-size: 1.25rem;
    }
}

