/* ========================================== */
/* إعدادات عامة */
/* ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Amazon Ember", Arial, sans-serif;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    /* direction: rtl; تمت إزالتها */
    background: #fff;
    color: #1a1a1a;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================== */
/* Hero Section - صورة كاملة */
/* ========================================== */

.hero-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: auto;
    padding: 0;
}

.hero-image-link {
    display: block;
    width: 100%;
    height: 65vh;
    /* ارتفاع مناسب للبنر */
    min-height: 350px;
    max-height: 650px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-image-link:hover .hero-image {
    transform: scale(1.03);
}

.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* ========================================== */
/* Section Headers */
/* ========================================== */

.section-header {
    text-align: center;
    margin-bottom: 40px;
    /* قرب الأقسام من بعض */
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ffe0e6 0%, #fff5f7 100%);
    color: #b42f4c;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* ========================================== */
/* Story Section (مرفوع من فوق) */
/* ========================================== */

.story-section {
    padding: 60px 0 70px;
    /* أقل من 100 علشان يقرب من الهيرو */
    background: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    /* تقليل المسافة */
    align-items: flex-start;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* تقليل الفراغ بين العناصر */
}

.story-item {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

.story-item:nth-child(1) {
    animation-delay: 0.2s;
}

.story-item:nth-child(2) {
    animation-delay: 0.4s;
}

.story-item:nth-child(3) {
    animation-delay: 0.6s;
}

.story-item:nth-child(4) {
    animation-delay: 0.8s;
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b42f4c 0%, #8d2439 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(180, 47, 76, 0.3);
}

.story-icon i {
    font-size: 24px;
    color: #fff;
}

.story-details h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.story-details p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.story-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
    gap: 15px;
}

.visual-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.visual-card:hover img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-overlay i {
    font-size: 22px;
    color: #ffd700;
}

.card-overlay p {
    font-size: 14px;
    font-weight: 700;
}

.card-1 {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
}

.card-2 {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: 100%;
}

.card-3 {
    grid-column: 1;
    grid-row: 2;
    height: 100%;
    margin-top: 0;
}

/* ========================================== */
/* Vision & Mission */
/* ========================================== */

.vision-mission-section {
    padding: 60px 0 70px;
    /* تقليل المسافات */
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vm-card {
    position: relative;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b42f4c 0%, #8d2439 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vm-icon i {
    font-size: 34px;
    color: #fff;
}

.vm-card h3 {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.vm-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}

.vm-decoration {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(180, 47, 76, 0.1) 0%, transparent 100%);
    border-radius: 50%;
}

/* ========================================== */
/* Values Section (مصغر + عرض أقل) */
/* ========================================== */

.values-section {
    padding: 40px 0 50px;
    /* تصغير المسافات */
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    /* تقليل المسافة بين الكروت */
    max-width: 950px;
    /* تحديد عرض أقصى */
    margin: 0 auto;
    /* وسط الصفحة */
}

.value-card {
    padding: 24px 20px;
    /* تصغير البادينج */
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    /* حواف أصغر */
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: #b42f4c;
    background: #fff;
    box-shadow: 0 12px 30px rgba(180, 47, 76, 0.12);
}

.value-icon {
    width: 55px;
    /* تصغير الأيقونة */
    height: 55px;
    background: linear-gradient(135deg, #ffe0e6 0%, #fff5f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    /* تقليل المسافة */
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #b42f4c 0%, #8d2439 100%);
    transform: scale(1.05);
}

.value-icon i {
    font-size: 24px;
    /* تصغير حجم الأيقونة */
    color: #b42f4c;
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: #fff;
}

.value-card h3 {
    font-size: 16px;
    /* تصغير العنوان */
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.value-card p {
    font-size: 12px;
    /* تصغير النص */
    line-height: 1.6;
    color: #666;
}

/* ========================================== */
/* Team Section (مصغر + عرض أقل) */
/* ========================================== */

.team-section {
    padding: 40px 0 50px;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 أعضاء جنب بعض */
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.member-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.06);
}

.member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 8px;
    background: linear-gradient(to top, rgba(180, 47, 76, 0.95) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s ease;
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #fff;
    color: #b42f4c;
    transform: translateY(-3px);
}

.member-info {
    padding: 16px 14px 18px;
    text-align: center;
}

.member-info h3 {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.member-role {
    font-size: 12px;
    color: #b42f4c;
    font-weight: 700;
    margin-bottom: 6px;
}

.member-bio {
    font-size: 11px;
    line-height: 1.5;
    color: #666;
}

/* ========================================== */
/* Achievements Section (مصغر + عرض أقل) */
/* ========================================== */

.achievements-section {
    padding: 40px 0 50px;
    /* تصغير المسافات */
    background: #fff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    /* تقليل المسافة بين الكروت */
    max-width: 950px;
    /* تحديد عرض أقصى */
    margin: 0 auto;
    /* وسط الصفحة */
}

.achievement-card {
    position: relative;
    padding: 22px 16px;
    /* تصغير البادينج */
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    /* حواف أصغر */
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-6px);
    border-color: #ffd700;
    background: linear-gradient(135deg, #fffbf0 0%, #fff 100%);
    box-shadow: 0 12px 28px rgba(255, 215, 0, 0.18);
}

.achievement-icon {
    width: 55px;
    /* تصغير الأيقونة */
    height: 55px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    /* تقليل المسافة */
}

.achievement-icon i {
    font-size: 24px;
    /* تصغير حجم الأيقونة */
    color: #1a1a1a;
}

.achievement-card h3 {
    font-size: 14px;
    /* تصغير العنوان */
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.achievement-card p {
    font-size: 11px;
    /* تصغير النص */
    line-height: 1.5;
    color: #666;
    margin-bottom: 10px;
}

.achievement-year {
    display: inline-block;
    padding: 4px 12px;
    /* تصغير البادينج */
    background: #b42f4c;
    color: #fff;
    border-radius: 14px;
    font-size: 11px;
    /* تصغير حجم الخط */
    font-weight: 700;
}


/* ========================================== */
/* Why Us + CTA (جنب بعض - بدون كروت) */
/* ========================================== */

.why-us-cta-section {
    padding: 20px 0 20px;
    /* المساحة من فوق 60px ومن تحت 20px فقط */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    /* المساحة الفاضية من بره القسم */
    margin: 0 80px 0px 80px;
    /* الغينا المسافة من تحت */
    border-radius: 20px 20px 0 0;
    /* زوايا دائرية من فوق فقط */
}

.why-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

/* ========================================== */
/* الجانب الأيمن: لماذا تختارنا */
/* ========================================== */

.why-us-side {
    color: #fff;
}

.why-us-side .section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(180, 47, 76, 0.3) 0%, rgba(141, 36, 57, 0.3) 100%);
    border: 1px solid rgba(180, 47, 76, 0.5);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.why-us-side h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
}

.why-us-side .intro-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* صف الـ Features */
.features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.why-feature i {
    font-size: 20px;
    color: #ffd700;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-feature h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 3px;
    color: #fff;
}

.why-feature p {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.85;
}

/* ========================================== */
/* الجانب الأيسر: CTA Box (بدون كروت) */
/* ========================================== */

.cta-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-box {
    width: 100%;
    background: linear-gradient(135deg, #b42f4c 0%, #8d2439 100%);
    border-radius: 20px;
    padding: 35px 35px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.cta-box h2 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cta-box>p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 22px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: #fff;
    color: #b42f4c;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* ========================================== */
/* Responsive */
/* ========================================== */

@media (max-width: 1200px) {
    .why-us-cta-section {
        margin: 0 60px 0px 60px;
    }
}

@media (max-width: 992px) {
    .why-us-cta-section {
        padding: 35px 0 20px;
        margin: 0 40px 0px 40px;
    }

    .why-cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-side {
        order: -1;
    }

    .why-us-side {
        text-align: center;
    }

    .main-feature-icon {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .why-us-side h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .why-us-side .intro-text {
        margin-bottom: 18px;
    }

    .why-features {
        gap: 15px;
    }

    .why-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .why-feature i {
        margin-left: auto;
        margin-right: auto;
    }

    .features-row {
        gap: 15px;
    }

    .cta-box {
        padding: 30px 25px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .cta-box>p {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .why-us-cta-section {
        margin: 0 30px 0px 30px;
        padding: 30px 0 18px;
    }

    .features-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-us-side h2 {
        font-size: 22px;
    }

    .why-us-side .intro-text {
        font-size: 13px;
    }

    .why-feature h4 {
        font-size: 15px;
    }

    .why-feature p {
        font-size: 12px;
    }

    .cta-box {
        padding: 25px 20px;
    }

    .cta-box h2 {
        font-size: 20px;
    }

    .cta-box>p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .cta-btn {
        padding: 12px 26px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-us-cta-section {
        padding: 30px 0 15px;
        margin: 0 15px 0px 15px;
        border-radius: 16px 16px 0 0;
    }

    .why-cta-grid {
        gap: 25px;
    }

    .why-us-side h2 {
        font-size: 20px;
    }

    .why-feature {
        gap: 10px;
    }

    .why-feature i {
        font-size: 18px;
    }
}





/* ========================================== */
/* Responsive */
/* ========================================== */

@media (max-width: 992px) {
    .why-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-side {
        order: -1;
        /* الـ CTA يطلع فوق على التابلت */
    }
}

@media (max-width: 768px) {
    .why-us-cta-section {
        padding: 40px 0 50px;
    }

    .why-us-side h2,
    .cta-box h2 {
        font-size: 24px;
    }

    .cta-box {
        padding: 30px 25px;
    }

    .floating-cards {
        display: none;
        /* إخفاء الكروت على الموبايل */
    }
}

@media (max-width: 480px) {

    .why-us-side h2,
    .cta-box h2 {
        font-size: 22px;
    }
}


.vision-mission-section {
    padding: 40px 0 45px;
    /* تصغير المسافة رأسياً */
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* تقليل المسافة بين الكروت */
}

.vm-card {
    position: relative;
    padding: 24px 22px;
    /* تصغير البادينج الداخلي */
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* الهيدر الجديد: الأيقونة + العنوان جنب بعض */
.vm-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.vm-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #b42f4c 0%, #8d2439 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vm-header-icon i {
    font-size: 18px;
    color: #fff;
}

.vm-card h3 {
    font-size: 20px;
    /* تصغير العنوان */
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.vm-card p {
    font-size: 14px;
    /* نص أصغر */
    line-height: 1.7;
    color: #666;
    margin-top: 4px;
}

.vm-decoration {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(180, 47, 76, 0.08) 0%, transparent 100%);
    border-radius: 50%;
}


/* ========================================== */
/* Responsive */
/* ========================================== */

@media (max-width: 1200px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .story-visual {
        order: -1;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        text-align: center;
    }

    .vm-header {
        flex-direction: column;
        justify-content: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-us-visual {
        display: none;
    }

    .story-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .story-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-image-link {
        height: 45vh;
        min-height: 260px;
    }

    .section-title {
        font-size: 28px;
    }

    .story-section,
    .vision-mission-section,
    .values-section,
    .team-section,
    .achievements-section,
    .why-us-section,
    .final-cta-section {
        padding: 45px 0 55px;
    }

    .values-grid,
    .team-grid-3,
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .story-visual {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .card-1,
    .card-2,
    .card-3 {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }
}


@media (max-width: 992px) {
    .team-grid {
        max-width: 600px;
        /* عرض أقل على التابلت */
    }

    .team-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 30px 0 40px;
    }

    .team-grid {
        max-width: 100%;
    }

    .team-grid-3 {
        grid-template-columns: 1fr;
        max-width: 350px;
        /* عرض واحد على الموبايل */
    }
}


@media (max-width: 1200px) {
    .achievements-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .achievements-section {
        padding: 30px 0 40px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        /* كارت واحد على الموبايل */
        gap: 16px;
    }

    .achievement-card {
        padding: 20px 14px;
    }
}



@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 650px;
        /* عرض أقل على التابلت */
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 30px 0 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        /* كارت واحد على الموبايل */
        gap: 16px;
    }

    .value-card {
        padding: 20px 18px;
    }
}






/* ========================================== */
/* Responsive - Team Section */
/* ========================================== */

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        /* عضوين جنب بعض على التابلت */
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 30px 0 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        /* عضو واحد على الموبايل */
        max-width: 350px;
    }

    .member-info {
        padding: 14px 12px 16px;
    }

    .member-info h3 {
        font-size: 15px;
    }

    .member-role {
        font-size: 11px;
    }

    .member-bio {
        font-size: 10px;
    }
}