/* ==========================================================================
   Back Care Branches - Complete Stylesheet
   ========================================================================== */

/* الحاوية الرئيسية */
.bc-branches-wrapper {
    direction: rtl;
    text-align: right;
    font-family: inherit;
    margin: 20px 0;
}

/* --------------------------------------------------------------------------
   1. بنر هيدر الشعار العلوي (Hero Header)
   -------------------------------------------------------------------------- */
.bc-hero-header {
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
    border-radius: 16px;
    padding: 30px 25px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.15);
    border-bottom: 4px solid #D32F2F; /* إطار سفلي باللون الأحمر البراند */
}

.bc-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* إطار الشعار داخل البنر */
.bc-hero-logo-wrapper {
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-hero-logo {
    max-height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* نصوص الهيدر */
.bc-hero-text {
    color: #ffffff;
    text-align: right;
}

.bc-hero-title {
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.bc-hero-subtitle {
    color: #d1e3f8;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   2. قسم المنطقة والعنوان
   -------------------------------------------------------------------------- */
.bc-region-title {
    color: #003366; /* الأزرق الملكي لـ Back Care */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid #D32F2F; /* خط أحمر أسفل اسم المنطقة */
    display: flex;
    align-items: center;
    gap: 10px;
}

.bc-region-title i {
    color: #D32F2F; /* الأحمر لهوية البراند */
}

/* --------------------------------------------------------------------------
   3. شبكة وبطاقات الفروع (Grid & Cards)
   -------------------------------------------------------------------------- */
.bc-branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.bc-branch-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bc-branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.15);
    border-color: #003366;
}

/* رأس البطاقة */
.bc-card-header {
    background-color: #003366; /* الأزرق */
    color: #ffffff;
    padding: 15px;
}

.bc-branch-name {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-branch-name i {
    color: #ffffff;
}

/* محتوى البطاقة */
.bc-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
    justify-content: space-between;
}

/* بيانات الاتصال */
.bc-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bc-phone-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.bc-icon-phone {
    color: #2E7D32; /* الأخضر للاتصال */
    font-size: 1.2rem;
}

.bc-phone-link {
    color: #1A1A1A;
    font-weight: bold;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bc-phone-link:hover {
    color: #D32F2F;
}

.bc-ext-badge {
    background-color: #f0f4f8;
    color: #003366;
    font-size: 0.85rem;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #d0dbe5;
}

/* زر خرائط جوجل */
.bc-btn-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: #D32F2F; /* الأحمر البراند */
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.bc-btn-map:hover {
    background-color: #b71c1c;
}

.bc-no-branches {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    padding: 20px 0;
}

/* --------------------------------------------------------------------------
   4. التجاوب مع الجوال (Responsive)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .bc-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .bc-hero-text {
        text-align: center;
    }
    
    .bc-hero-title {
        font-size: 1.4rem;
    }
    
    .bc-hero-subtitle {
        font-size: 0.95rem;
    }
}