/*.features-section {
  padding: 2rem 1rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, #ffffff 50%, rgba(248, 250, 252, 0.3) 100%);
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  margin: 1.5rem 0;
}

.features-container {
  max-width: 1152px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  max-width: 672px;
  margin: 0 auto 1.5rem auto;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(33, 78, 207, 0.1);
  color: #214ecf;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(33, 78, 207, 0.2);
  margin-bottom: 0.5rem;
}

.features-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.brand-blue {
  color: #214ecf;
  font-weight: 900;
}

.features-subtitle {
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-card {
  padding: 1.25rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-blue { background-color: #eff6ff; color: #2563eb; }
.icon-indigo { background-color: #e0e7ff; color: #4f46e5; }
.icon-cyan { background-color: #ecfeff; color: #0891b2; }

.badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  background-color: #f1f5f9;
  color: #475569;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.375rem;
}

.card-desc {
  color: #475569;
  font-size: 0.8125rem;
  line-height: 1.5;
} ==========================================================================
   Itqan Salla Roadmap & Tabs - Modern Redesign (Drop-in Replacement)
   ========================================================================== */

/* 1. Root Variables & Reset Scope */
:root {
    --itqan-primary: #214ECF;
    --itqan-primary-bg: #F8FAFF;
    --itqan-border: #E5E7EB;
    --itqan-border-hover: #CBD5E1;
    --itqan-text: #1F2937;
    --itqan-text-muted: #6B7280;
    --itqan-bg-white: #FFFFFF;
    --itqan-radius-pill: 999px;
    --itqan-radius-card: 14px;
    --itqan-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --itqan-shadow-md: 0 8px 20px -4px rgba(0, 0, 0, 0.08);
    --itqan-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Level Tabs */
#itqan-level-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0;
    align-items: center;
}

#itqan-level-tabs .itqan-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--itqan-bg-white);
    border: 1px solid var(--itqan-border);
    border-radius: var(--itqan-radius-pill);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--itqan-text);
    cursor: pointer;
    transition: var(--itqan-transition);
    box-shadow: var(--itqan-shadow-sm);
    user-select: none;
}

#itqan-level-tabs .itqan-tab:hover {
    transform: translateY(-2px);
    border-color: var(--itqan-border-hover);
    box-shadow: var(--itqan-shadow-md);
}

#itqan-level-tabs .itqan-tab::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--itqan-transition);
}

/* ألوان المستويات */
.level-all::before { background: #9CA3AF; box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.2); }
.level-1::before   { background: #22C55E; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
.level-2::before   { background: #3B82F6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); }
.level-3::before   { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2); }
.level-4::before   { background: #EF4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2); }

#itqan-level-tabs .itqan-tab-active {
    border-color: var(--itqan-primary);
    background: var(--itqan-primary-bg);
    color: var(--itqan-primary);
    box-shadow: 0 6px 18px rgba(33, 78, 207, 0.14);
}

/* 3. Course Tabs */
#itqan-course-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 30px;
    align-items: center;
}

.course-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--itqan-bg-white);
    border: 1px solid var(--itqan-border);
    border-radius: var(--itqan-radius-pill);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--itqan-text);
    cursor: pointer;
    transition: var(--itqan-transition);
    box-shadow: var(--itqan-shadow-sm);
    user-select: none;
}

.course-tab:hover {
    transform: translateY(-2px);
    border-color: var(--itqan-border-hover);
    box-shadow: var(--itqan-shadow-md);
}

.course-tab::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--itqan-transition);
}

/* ألوان المهارات والتصنيفات */
.course-1::before { background: #3B82F6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); }
.course-2::before { background: #22C55E; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
.course-3::before { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2); }
.course-4::before { background: #EF4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2); }
.course-5::before { background: #8B5CF6; box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2); }
.course-6::before { background: #06B6D4; box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2); }

.course-tab.active {
    border-color: var(--itqan-primary);
    background: var(--itqan-primary-bg);
    color: var(--itqan-primary);
    box-shadow: 0 6px 18px rgba(33, 78, 207, 0.14);
}

/* 4. Roadmap Layout Grid */
#itqan-roadmap {
    display: grid;
    grid-template-columns: 170px repeat(4, 160px);
    column-gap: 12px;
    row-gap: 28px;
    justify-content: center;
    align-items: center;
    margin: 32px 0;
}

/* Header Cells */
.cell.head {
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--itqan-bg-white);
    border: 1px solid var(--itqan-border);
    border-radius: var(--itqan-radius-card);
    font-weight: 700;
    font-size: 15px;
    color: var(--itqan-text);
    box-shadow: var(--itqan-shadow-sm);
}

.empty {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Skills Column Item */
.skill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--itqan-text);
    padding: 6px 0;
}

.skill .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.skill-speaking .dot  { background: #22C55E; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
.skill-reading .dot   { background: #3B82F6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); }
.skill-writing .dot   { background: #A855F7; box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2); }
.skill-listening .dot { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2); }
.skill-grammar .dot   { background: #EF4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2); }
.skill-exams .dot     { background: #06B6D4; box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2); }

/* 5. Course Cards */
.course-card {
    width: 160px;
    height: 95px;
    background: var(--itqan-bg-white);
    border: 1px solid var(--itqan-border);
    border-radius: var(--itqan-radius-card);
    box-shadow: var(--itqan-shadow-sm);
    transition: var(--itqan-transition);
    overflow: hidden;
    position: relative;
}

.course-card:hover {
    transform: translateY(-4px);
    border-color: rgba(33, 78, 207, 0.3);
    box-shadow: var(--itqan-shadow-md);
}

/* 6. Mobile & Responsive Design */
@media (max-width: 991px) {
    #itqan-roadmap {
        grid-template-columns: 1fr;
        row-gap: 16px;
        justify-content: stretch;
    }

    .cell.head {
        display: none;
    }

    .skill {
        margin-top: 16px;
        padding-bottom: 8px;
        border-bottom: 1px dashed var(--itqan-border);
    }

    .course-card {
        width: 100%;
        height: auto;
        min-height: 95px;
    }
}/* ==========================================================================
   Design System & Root Variables
   ========================================================================== */
:root {
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --primary-slate: #0F172A;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    
    /* Highlight Colors */
    --emerald-primary: #059669;
    --emerald-light: #ECFDF5;
    --amber-primary: #D97706;
    --amber-light: #FFFBEB;
    --blue-primary: #2563EB;
    --blue-light: #EFF6FF;
    --purple-primary: #7C3AED;
    --purple-light: #F5F3FF;
    
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-pill: 9999px;
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 8px 16px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 16px 32px rgba(15, 23, 42, 0.1);
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-main);
    color: var(--primary-slate);
    line-height: 1.6;
    padding: 40px 20px;
    direction: rtl;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================================================
   Header Styling
   ========================================================================== */
.main-header {
    text-align: center;
    margin-bottom: 36px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.logo-icon {
    font-size: 2.2rem;
}

.logo h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-slate);
}

.logo h1 span {
    color: var(--emerald-primary);
}

.subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* ==========================================================================
   Search & Filter Section
   ========================================================================== */
.filter-section {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 32px;
}

.search-sort-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.search-box {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 12px 44px 12px 16px;
    font-family: inherit;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-main);
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--emerald-primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.sort-box select {
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-main);
    color: var(--primary-slate);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.sort-box select:focus {
    border-color: var(--emerald-primary);
}

/* Skill Chips */
.skill-chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.skill-chips::-webkit-scrollbar {
    display: none;
}

.chip {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.chip:hover {
    border-color: var(--emerald-primary);
    color: var(--emerald-primary);
}

.chip.active {
    background: var(--primary-slate);
    color: #FFFFFF;
    border-color: var(--primary-slate);
}

/* ==========================================================================
   Courses Grid Layout
   ========================================================================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Responsive Grid Breakpoints */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
    .search-sort-row {
        flex-direction: column;
    }
}

/* ==========================================================================
   Course Card Component
   ========================================================================== */
.course-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.3);
}

/* Card Header & Badge */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.badge {
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Badge Color Themes */
.badge-speaking { background: var(--emerald-light); color: var(--emerald-primary); }
.badge-listening { background: var(--amber-light); color: var(--amber-primary); }
.badge-reading { background: var(--blue-light); color: var(--blue-primary); }
.badge-writing { background: var(--purple-light); color: var(--purple-primary); }
.badge-grammar { background: #FEF2F2; color: #DC2626; }
.badge-vocab { background: #F0FDF4; color: #16A34A; }

.level-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.course-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-slate);
    line-height: 1.4;
}

.course-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Stats */
.card-stats {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
    margin-bottom: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-rating {
    color: var(--amber-primary);
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.instructor {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.instructor-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-slate);
}

.btn-details {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    border: none;
    background: var(--bg-main);
    color: var(--primary-slate);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.course-card:hover .btn-details {
    background: var(--emerald-primary);
    color: #FFFFFF;
}

/* ==========================================================================
   Modal Styling
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: var(--transition);
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-hover);
    transform: translateY(0);
    transition: var(--transition);
}

.modal-overlay.hidden .modal-content {
    transform: translateY(20px);
}

.modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-header h2 {
    font-size: 1.4rem;
    margin: 10px 0 4px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.modal-body h4 {
    margin: 16px 0 8px;
    font-size: 1rem;
}

.modal-description {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-stats {
    display: flex;
    justify-content: space-around;
    background: var(--bg-main);
    padding: 12px;
    border-radius: var(--radius-md);
    margin: 16px 0;
    text-align: center;
}

.curriculum-list {
    list-style: none;
    font-size: 0.88rem;
}

.curriculum-list li {
    padding: 8px 12px;
    background: var(--bg-main);
    margin-bottom: 6px;
    border-radius: 6px;
    border-right: 3px solid var(--emerald-primary);
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: var(--emerald-primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #047857;
}

/* Empty State */
.no-results {
    text-align: center;
    padding: 48px;
    color: var(--text-muted);
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.hidden {
    display: none !important;
}/* ==========================================================================
   Hero Banner Styling
   ========================================================================== */
.hero-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 24px;
    padding: 48px;
    color: #FFFFFF;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

/* خلفية جمالية خفيفة */
.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #34D399;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.05rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 90%;
}

/* الأزرار التفاعلية */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #059669;
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

.btn-hero-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.6);
}

.btn-hero-primary svg {
    transition: transform 0.25s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(-4px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

/* الإحصائيات */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
}

.stat-label {
    font-size: 0.8rem;
    color: #94A3B8;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* العنصر البصري المتحرك */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(5, 150, 105, 0.2);
    border: 2px solid #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
}

.visual-content h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.visual-content p {
    font-size: 0.85rem;
    color: #94A3B8;
}

/* الشارات الطافية (Floating Badges) */
.floating-badge {
    position: absolute;
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

.floating-badge.top-right {
    top: -15px;
    right: -20px;
}

.floating-badge.bottom-left {
    bottom: -15px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* تجاوب البنر مع الشاشات الصغيرة */
@media (max-width: 992px) {
    .hero-banner {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-actions, .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-divider {
        display: none;
    }
}/* ==========================================================================
   Design Variables & Global Styles
   ========================================================================== */
:root {
    --bg-hero: #F8FAFC;
    --border-bottom: #E2E8F0;
    --badge-bg: #EFF6FF;
    --badge-text: #2563EB;
    --text-primary: #0F172A;
    --text-secondary: #EA9835;
    --text-muted: #64748B;
    --blue-primary: #2563EB;
    --blue-hover: #1D4ED8;
    --border-gray: #CBD5E1;
    --white: #FFFFFF;
    
    --green-check: #10B981;
    --orange-check: #EA9835;
    --blue-check: #2563EB;

    --radius-pill: 9999px;
    --radius-btn: 12px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #FFFFFF;
    direction: rtl;
    line-height: 1.6;
}

/* ==========================================================================
   Hero Layout
   ========================================================================== */
.hero-section {
    background-color: var(--bg-hero);
    border-bottom: 1px solid var(--border-bottom);
    padding: 64px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-container {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================================================
   Hero Typography & Badge
   ========================================================================== */
.hero-badge {
    background-color: var(--badge-bg);
    color: var(--badge-text);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    color: var(--text-primary);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}

.hero-title .brand-text {
    color: var(--blue-primary);
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 680px;
}

/* ==========================================================================
   CTA Buttons
   ========================================================================== */
.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 44px;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-btn);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

/* Primary Button */
.btn-primary {
    background-color: var(--blue-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    background-color: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--border-gray);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    background-color: #F1F5F9;
    border-color: #94A3B8;
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Button Icons */
.btn-icon {
    font-size: 1.1rem;
}

.arrow-icon {
    transition: transform 0.25s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(-4px);
}

/* ==========================================================================
   Value Bullets Footer
   ========================================================================== */
.hero-features-footer {
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid var(--border-bottom);
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.check-blue {
    background-color: rgba(37, 99, 235, 0.12);
    color: var(--blue-check);
}

.check-orange {
    background-color: rgba(234, 152, 53, 0.15);
    color: var(--orange-check);
}

.check-green {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--green-check);
}

}:root{
    --itqan-primary:#2563EB;
    --itqan-primary-dark:#1D4ED8;
    --itqan-orange:#EA9835;
    --itqan-green:#16A34A;

    --itqan-bg:#F8FAFC;
    --itqan-white:#ffffff;

    --itqan-title:#0F172A;
    --itqan-text:#64748B;

    --itqan-border:#E2E8F0;

    --itqan-shadow:0 18px 45px rgba(15,23,42,.08);
}

.itqan-hero{
    background:var(--itqan-bg);
    border-bottom:1px solid var(--itqan-border);
    padding:90px 20px;
    direction:rtl;
    font-family:'Almarai',sans-serif;
}

.itqan-container{
    max-width:800px;
    margin:auto;
    text-align:center;
}

/* Badge */

.itqan-badge{

    display:inline-flex;
    align-items:center;
    gap:.6rem;

    background:#EFF6FF;

    color:var(--itqan-primary);

    padding:.7rem 1.2rem;

    border-radius:999px;

    font-size:.9rem;

    font-weight:700;

    margin-bottom:1.8rem;
}

.itqan-badge i{

    color:var(--itqan-orange);

}

/* Title */

.itqan-title{

    font-size:clamp(2.3rem,6vw,4rem);

    line-height:1.2;

    font-weight:900;

    color:var(--itqan-title);

    margin:0;
}

.itqan-title span{

    color:var(--itqan-primary);

}

/* Subtitle */

.itqan-subtitle{

    margin:1.4rem 0;

    color:var(--itqan-orange);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.95rem;

    font-weight:800;

}

/* Description */

.itqan-description{

    max-width:700px;

    margin:0 auto 3rem;

    color:var(--itqan-text);

    line-height:1.9;

    font-size:1.08rem;

}

/* Buttons */

.itqan-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

/* Base Button */

.itqan-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    padding:15px 26px;

    border-radius:14px;

    font-weight:800;

    transition:.25s ease;

    font-size:15px;

}

/* Primary */

.itqan-btn-primary{

    background:var(--itqan-primary);

    color:#fff;

    box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.itqan-btn-primary:hover{

    background:var(--itqan-primary-dark);

    transform:translateY(-3px);

}

/* Secondary */

.itqan-btn-secondary{

    background:#fff;

    color:var(--itqan-title);

    border:1px solid var(--itqan-border);

}

.itqan-btn-secondary:hover{

    transform:translateY(-3px);

    box-shadow:var(--itqan-shadow);

}

.itqan-btn-primary i{

    color:#FFD54A;

}

.itqan-btn-secondary i{

    color:var(--itqan-primary);

}

/* Features */

.itqan-features{

    margin-top:4rem;

    padding-top:2rem;

    border-top:1px solid var(--itqan-border);

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

}

.itqan-feature{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--itqan-text);

    font-size:.95rem;

    font-weight:700;

}

.itqan-feature i{

    font-size:18px;

}

.itqan-feature .blue{

    color:var(--itqan-primary);

}

.itqan-feature .orange{

    color:var(--itqan-orange);

}

.itqan-feature .green{

    color:var(--itqan-green);

}

/* Responsive */

@media(max-width:768px){

    .itqan-hero{

        padding:70px 20px;

    }

    .itqan-title{

        font-size:2.3rem;

    }

    .itqan-description{

        font-size:1rem;

    }

    .itqan-buttons{

        flex-direction:column;

    }

    .itqan-btn{

        justify-content:center;

        width:100%;

    }

    .itqan-features{

        flex-direction:column;

        gap:18px;

    }

}.itqan-queen-banner{

    position:relative;

    max-width:700px;

    margin:40px auto;

    padding:28px 40px;

    background:linear-gradient(135deg,#FFF9E8,#FFF3C4);

    border:2px solid #F4D35E;

    border-radius:22px;

    text-align:center;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(234,152,53,.18);

    font-family:'Almarai',sans-serif;

}

.itqan-queen-banner h2{

    margin:0;

    font-size:2rem;

    font-weight:800;

    color:#9A6700;

    letter-spacing:.5px;

}

/* النجوم */

.star{

    position:absolute;

    color:#FFD54A;

    font-size:24px;

    animation:twinkle 2.5s infinite ease-in-out;

}

.star1{

    top:18px;

    right:40px;

}

.star2{

    top:30px;

    left:50px;

    animation-delay:.4s;

}

.star3{

    bottom:18px;

    right:70px;

    animation-delay:.8s;

}

.star4{

    bottom:28px;

    left:90px;

    animation-delay:1.2s;

}

.star5{

    top:50%;

    right:18px;

    transform:translateY(-50%);

    animation-delay:1.6s;

}

@keyframes twinkle{

    0%,100%{

        opacity:.4;

        transform:scale(.8);

    }

    50%{

        opacity:1;

        transform:scale(1.3);

    }

}

@media(max-width:768px){

    .itqan-queen-banner{

        padding:22px;

    }

    .itqan-queen-banner h2{

        font-size:1.5rem;

    }.products-list > *,
.product-list > *,
.s-products-list > * {
    flex: 0 0 145px !important;
    width: 145px !important;
}