/* ==========================================================================
   تنسيقات صفحة من نحن - نادي الصقور
   ========================================================================== */

:root {
    /* الألوان الأساسية */
    --primary-color: #0a2463;
    --secondary-color: #d00000;
    --accent-color: #ff9500;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
    
    /* ظلال */
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
    /* حواف مستديرة */
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 20px;
    --border-radius-circle: 50%;
    
    /* انتقالات */
    --transition-fast: all 0.2s ease;
    --transition-medium: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* المسافات البادئة */
    --section-padding: 80px 0;
}

/* ==========================================================================
   تنسيقات البريدكرمب
   ========================================================================== */
.breadcrumb-container {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 30px;
    margin-top: 15px;
}

.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   قسم الهيرو - من نحن
   ========================================================================== */
.about-hero-section {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.9) 0%, rgba(10, 36, 99, 0.8) 100%), url('../images/pattern-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    color: #fff;
    margin-bottom: 50px;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: var(--border-radius-circle);
    background: rgba(255, 149, 0, 0.1);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.about-hero-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: var(--border-radius-circle);
    background: rgba(208, 0, 0, 0.1);
    bottom: -50px;
    left: -50px;
    z-index: 0;
}

.about-hero-section h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: var(--text-shadow);
    position: relative;
    z-index: 1;
}

.about-hero-section .section-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   قسم المحتوى - من نحن
   ========================================================================== */
.about-content-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.about-card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-medium);
    padding: 30px;
    margin-bottom: 60px;
}

.about-card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-medium);
    transform: scale(1);
}

.about-card:hover .about-image img {
    transform: scale(1.05);
}

.image-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.2) 0%, rgba(208, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-medium);
}

.about-card:hover .image-pattern {
    opacity: 1;
}

.about-content {
    padding: 20px 0;
}

.about-content .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.about-content .content-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

/* ==========================================================================
   قسم الأسئلة الشائعة
   ========================================================================== */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #edf2f7 100%);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: var(--border-radius-circle);
    background: rgba(10, 36, 99, 0.03);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: var(--border-radius-circle);
    background: rgba(208, 0, 0, 0.03);
    bottom: -50px;
    left: -50px;
    z-index: 0;
}

.faq-section .section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-section .section-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
}

.faq-category {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
}

.faq-category i {
    margin-left: 15px;
    font-size: 1.2rem;
}

.faq-category h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.category-questions {
    margin-bottom: 40px;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius-md) !important;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-medium);
}

.accordion-item:hover {
    box-shadow: var(--hover-shadow);
}

.accordion-button {
    padding: 20px;
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(10, 36, 99, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a2463'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-icon {
    margin-left: 15px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.accordion-button:not(.collapsed) .faq-icon {
    color: #fff;
}

.accordion-body {
    padding: 20px;
    background-color: #fff;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

/* تصميم متجاوب */
@media (max-width: 991.98px) {
    .about-hero-section {
        padding: 80px 0;
    }
    
    .about-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .about-content .section-title {
        font-size: 1.8rem;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero-section {
        padding: 60px 0;
    }
    
    .about-hero-section h1 {
        font-size: 2rem;
    }
    
    .about-card {
        padding: 20px;
    }
    
    .about-content .section-title {
        font-size: 1.5rem;
    }
    
    .about-content .content-text {
        font-size: 1rem;
    }
    
    .faq-category h3 {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px;
    }
}
