/* ==========================================================================
   BASSMAH FRONT PAGE STYLES
   ========================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --brand: #2f5aae;
    --brand-light: #338eaa;
    --green: #27ae60;
    --green-light: #2ecc71;
    --gold: #f39c12;
    --red: #e74c3c;
    --purple: #9b59b6;
    --dark: #0c1a2a;
    --dark-blue: #102a43;
    --light-bg: #f0f4f8;
    --text: #1a1a2e;
    --text-light: #64748b;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);
    --radius: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}
.section-badge.green { background: linear-gradient(135deg, var(--green), var(--green-light)); }

.section-title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}
.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.9;
}

/* ===== GOLD BADGE BUTTON ===== */
.btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #f39c12, #e67e22, #d4a017);
    color: #fff; padding: 14px 30px; border-radius: 50px;
    font-size: 18px; font-weight: 700; font-family: 'Tajawal', sans-serif;
    cursor: default;
    box-shadow: 0 8px 30px rgba(243,156,18,0.3);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff; padding: 14px 30px; border-radius: 50px;
    font-size: 18px; font-weight: 700; font-family: 'Tajawal', sans-serif;
    border: none; cursor: pointer;
    box-shadow: 0 8px 30px rgba(39,174,96,0.3);
    transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(39,174,96,0.4); }
.btn-primary.green {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    box-shadow: 0 8px 30px rgba(39,174,96,0.3);
}
.btn-primary.green:hover { box-shadow: 0 12px 40px rgba(39,174,96,0.4); }
.btn-wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}
.btn-wa:hover { box-shadow: 0 12px 40px rgba(37,211,102,0.4); }

/* ===== KEYFRAMES ===== */
@keyframes heroGlow { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-5%, 3%); } }
@keyframes orbFloat1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-30px, 30px) scale(1.1); } }
@keyframes orbFloat2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(20px, -20px) scale(1.05); } }
@keyframes decoFloat1 { 0%,100% { transform: translateY(0) rotate(-15deg); } 50% { transform: translateY(-20px) rotate(-10deg); } }
@keyframes decoFloat2 { 0%,100% { transform: translateY(0) rotate(10deg); } 50% { transform: translateY(-15px) rotate(5deg); } }
@keyframes decoFloat3 { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(8deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ==========================================================================
   SECTION 1: ABOUT (HERO)
   ========================================================================== */
.about-section {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #e8f4fd 70%, #f0f4f8 100%);
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(47,90,174,0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(51,142,170,0.06) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
}
.about-grid-pattern {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}
.about-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; z-index: 1; }
.about-orb.orb-1 { width: 400px; height: 400px; background: rgba(47,90,174,0.12); top: -100px; right: -100px; animation: orbFloat1 8s ease-in-out infinite; }
.about-orb.orb-2 { width: 300px; height: 300px; background: rgba(51,142,170,0.1); bottom: -50px; left: 10%; animation: orbFloat2 10s ease-in-out infinite; }

.about-deco { position: absolute; z-index: 1; opacity: 0.1; pointer-events: none; }
.about-deco svg { width: 100%; height: 100%; }
.about-deco.ad-1 { width: 130px; height: 130px; top: 8%; right: 4%; animation: decoFloat1 7s ease-in-out infinite; }
.about-deco.ad-2 { width: 100px; height: 100px; bottom: 10%; left: 3%; animation: decoFloat2 6s ease-in-out infinite; }
.about-deco.ad-3 { width: 80px; height: 80px; top: 50%; left: 8%; animation: decoFloat3 8s ease-in-out infinite; }
.about-deco.ad-4 { width: 70px; height: 70px; top: 15%; left: 25%; animation: decoFloat1 9s ease-in-out infinite; }
.about-deco.ad-5 { width: 90px; height: 90px; bottom: 15%; right: 10%; animation: decoFloat2 5s ease-in-out infinite; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.about-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.about-visual img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.5);
}
.about-visual::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(47,90,174,0.1), rgba(51,142,170,0.08));
    border-radius: 32px;
    filter: blur(40px);
    z-index: -1;
}
.about-float-card {
    position: absolute;
    background: #fff;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 12px;
    animation: float 4s ease-in-out infinite;
    border: 1px solid #e8ecf1;
}
.about-float-card.afc-1 { top: 20px; right: -30px; }
.about-float-card.afc-2 { bottom: 40px; left: -30px; animation-delay: 2s; }
.about-float-card .afc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-float-card .afc-icon.blue { background: rgba(47,90,174,0.1); }
.about-float-card .afc-icon.green { background: rgba(39,174,96,0.1); }
.about-float-card .afc-text strong { display: block; font-size: 16px; color: var(--dark); }
.about-float-card .afc-text span { font-size: 14px; color: var(--text-light); }

.about-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
    border-right: 5px solid var(--brand);
    position: relative;
}
.about-card h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 900; color: var(--dark); margin-bottom: 16px; line-height: 1.4; }
.about-card p { font-size: 18px; color: var(--text-light); line-height: 2; margin-bottom: 24px; }

.about-trust { display: flex; align-items: center; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.about-trust-item { display: flex; align-items: center; gap: 8px; color: var(--text-light); font-size: 15px; }
.about-trust-item svg { color: var(--brand); }

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust-section { background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 50%, #f0f4f8 100%); padding: 70px 0; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.trust-box {
    background: #fff; border-radius: 24px; padding: 24px;
    box-shadow: var(--shadow); overflow: hidden;
}
.trust-slider {
    position: relative; width: 100%; aspect-ratio: 16/10;
    border-radius: 16px; overflow: hidden; margin-bottom: 18px;
}
.trust-slider img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transition: opacity 0.8s ease;
}
.trust-slider img.active { opacity: 1; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; margin-bottom: 12px; }
.slider-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; border: none; cursor: pointer; transition: var(--transition); }
.slider-dots .dot.active { background: var(--brand); width: 28px; border-radius: 5px; }
.trust-box p { font-size: 16px; color: var(--text); line-height: 1.9; text-align: center; }

/* ==========================================================================
   METHODOLOGY HOOK
   ========================================================================== */
.method-hook {
    background: linear-gradient(135deg, #27ae60, #1a8f4a, #338eaa);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.method-hook::before { content: ''; position: absolute; top: -60px; right: -60px; width: 250px; height: 250px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.method-hook::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.method-hook h2 {
    font-size: clamp(26px, 4.5vw, 44px); font-weight: 900;
    color: #fff; line-height: 1.6; margin: 0; position: relative; z-index: 2;
}
.method-hook .red { color: #fef3c7; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }

/* ==========================================================================
   SECTION 2: METHODOLOGY
   ========================================================================== */
.method-section { background: #fff; position: relative; overflow: hidden; }
.method-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-light), var(--brand-light));
}
.method-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.2; z-index: 0; }
.method-orb.mo-1 { width: 350px; height: 350px; background: rgba(39,174,96,0.12); top: -80px; left: -80px; animation: orbFloat1 10s ease-in-out infinite; }
.method-orb.mo-2 { width: 280px; height: 280px; background: rgba(46,204,113,0.1); bottom: -60px; right: 5%; animation: orbFloat2 8s ease-in-out infinite; }

.method-deco { position: absolute; z-index: 0; opacity: 0.12; pointer-events: none; }
.method-deco svg { width: 100%; height: 100%; }
.method-deco.md-1 { width: 120px; height: 120px; top: 5%; right: 3%; animation: decoFloat1 7s ease-in-out infinite; }
.method-deco.md-2 { width: 100px; height: 100px; bottom: 8%; left: 4%; animation: decoFloat2 8s ease-in-out infinite; }
.method-deco.md-3 { width: 80px; height: 80px; top: 40%; left: 2%; animation: decoFloat3 6s ease-in-out infinite; }
.method-deco.md-4 { width: 90px; height: 90px; bottom: 20%; right: 5%; animation: decoFloat1 9s ease-in-out infinite; }

.method-intro { font-size: 19px; color: var(--text); line-height: 2; max-width: 900px; margin: 0 auto 40px; text-align: center; position: relative; z-index: 2; }
.method-banner {
    background: linear-gradient(135deg, var(--green), #1a8f4a, var(--green-light));
    color: #fff;
    padding: 36px 44px;
    border-radius: 24px;
    text-align: center;
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 900;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(39,174,96,0.25);
    border: 2px solid rgba(255,255,255,0.15);
}
.method-banner .banner-highlight { color: #fef3c7; font-size: clamp(26px, 4vw, 36px); display: block; margin-bottom: 4px; }
.method-banner .banner-sub { font-size: clamp(16px, 2vw, 20px); font-weight: 600; opacity: 0.9; display: block; margin-top: 8px; }
.method-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.method-banner::after {
    content: '';
    position: absolute;
    bottom: -90px; left: -90px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
}
.method-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; position: relative; z-index: 2; }
.method-pillar {
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--green);
}
.method-pillar:nth-child(1) { background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); }
.method-pillar:nth-child(2) { background: linear-gradient(180deg, #ecfdf5 0%, #fff 100%); }
.method-pillar:nth-child(3) { background: linear-gradient(180deg, #f0fff4 0%, #fff 100%); }
.method-pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    opacity: 0;
    transition: var(--transition);
}
.method-pillar:hover::before { opacity: 1; }
.method-pillar:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.method-pillar-num {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900;
    position: absolute;
    top: -14px; right: 20px;
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
    z-index: 3;
}
.method-pillar-icon { width: 80px; height: 80px; margin: 0 auto 18px; border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.method-pillar-icon.mp-1 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.method-pillar-icon.mp-2 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.method-pillar-icon.mp-3 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.method-pillar-icon img { width: 44px; height: 44px; }
.method-pillar h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.4; }
.method-pillar p { font-size: 16px; color: var(--text-light); line-height: 1.9; }
.method-closing { font-size: 18px; color: var(--text); line-height: 2; max-width: 900px; margin: 0 auto 30px; text-align: center; position: relative; z-index: 2; }

/* ==========================================================================
   SECTION 3: ACTIVITIES
   ========================================================================== */
.activities-section {
    background: #fff;
    position: relative; overflow: hidden;
}
.activities-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-light), var(--gold));
}
.activities-deco { position: absolute; z-index: 0; opacity: 0.06; pointer-events: none; }
.activities-deco svg { width: 100%; height: 100%; }
.activities-deco.actd-1 { width: 110px; height: 110px; top: 6%; right: 3%; animation: decoFloat1 7s ease-in-out infinite; }
.activities-deco.actd-2 { width: 90px; height: 90px; bottom: 8%; left: 4%; animation: decoFloat2 6s ease-in-out infinite; }
.activities-deco.actd-3 { width: 70px; height: 70px; top: 50%; left: 2%; animation: decoFloat3 8s ease-in-out infinite; }

.activities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 2; }
.activity-card {
    border-radius: 20px;
    padding: 28px 22px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
    cursor: default;
}
.activity-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    opacity: 0;
    transition: var(--transition);
}
.activity-card:hover::after { opacity: 1; }
.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.activity-card h4 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 8px; line-height: 1.5; }
.activity-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.activity-card .card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 700;
    color: var(--brand);
    transition: var(--transition);
}
.activity-card .card-link:hover { gap: 10px; color: var(--brand-light); }

/* Light colored glass cards */
.activity-card:nth-child(1)  { background: linear-gradient(145deg, #eff6ff, #dbeafe); border-color: #bfdbfe; }
.activity-card:nth-child(2)  { background: linear-gradient(145deg, #fffbeb, #fef3c7); border-color: #fde68a; }
.activity-card:nth-child(3)  { background: linear-gradient(145deg, #ecfdf5, #d1fae5); border-color: #a7f3d0; }
.activity-card:nth-child(4)  { background: linear-gradient(145deg, #faf5ff, #ede9fe); border-color: #c4b5fd; }
.activity-card:nth-child(5)  { background: linear-gradient(145deg, #eef2ff, #e0e7ff); border-color: #c7d2fe; }
.activity-card:nth-child(6)  { background: linear-gradient(145deg, #f0fdf4, #dcfce7); border-color: #bbf7d0; }
.activity-card:nth-child(7)  { background: linear-gradient(145deg, #f8fafc, #f1f5f9); border-color: #e2e8f0; }
.activity-card:nth-child(8)  { background: linear-gradient(145deg, #fdf2f8, #fce7f3); border-color: #fbcfe8; }
.activity-card:nth-child(9)  { background: linear-gradient(145deg, #ecfeff, #cffafe); border-color: #a5f3fc; }
.activity-card:nth-child(10) { background: linear-gradient(145deg, #fef2f2, #fee2e2); border-color: #fecaca; }
.activity-card:nth-child(11) { background: linear-gradient(145deg, #f0f9ff, #e0f2fe); border-color: #bae6fd; }
.activity-card:nth-child(12) { background: linear-gradient(145deg, #fff7ed, #ffedd5); border-color: #fed7aa; }

.activity-card:nth-child(1)::after  { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.activity-card:nth-child(2)::after  { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.activity-card:nth-child(3)::after  { background: linear-gradient(90deg, #10b981, #34d399); }
.activity-card:nth-child(4)::after  { background: linear-gradient(90deg, #a855f7, #c084fc); }
.activity-card:nth-child(5)::after  { background: linear-gradient(90deg, #6366f1, #818cf8); }
.activity-card:nth-child(6)::after  { background: linear-gradient(90deg, #22c55e, #4ade80); }
.activity-card:nth-child(7)::after  { background: linear-gradient(90deg, #64748b, #94a3b8); }
.activity-card:nth-child(8)::after  { background: linear-gradient(90deg, #ec4899, #f472b6); }
.activity-card:nth-child(9)::after  { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.activity-card:nth-child(10)::after { background: linear-gradient(90deg, #ef4444, #f87171); }
.activity-card:nth-child(11)::after { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.activity-card:nth-child(12)::after { background: linear-gradient(90deg, #f97316, #fb923c); }

.activity-card-icon {
    width: 64px; height: 64px; margin-bottom: 16px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.6);
}
.activity-card-icon img { width: 36px; height: 36px; }

/* ==========================================================================
   SECTION 4: SERVICES
   ========================================================================== */
.services-section { background: var(--light-bg); position: relative; overflow: hidden; }
.services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--gold), var(--brand-light));
}
.services-grid-pattern {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--brand);
    position: relative;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-light));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.service-num {
    position: absolute;
    top: -16px;
    right: 20px;
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    color: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 900;
    box-shadow: 0 4px 15px rgba(47,90,174,0.3);
    z-index: 3;
}
.service-icon {
    width: 80px; height: 80px;
    margin: 0 auto 18px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
}
.service-icon img { width: 44px; height: 44px; }
.service-icon.si-1 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.service-icon.si-2 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.service-icon.si-3 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.service-icon.si-4 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.service-icon.si-5 { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.service-icon.si-6 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.service-icon.si-7 { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.service-icon.si-8 { background: linear-gradient(135deg, #fdf2f8, #fbcfe8); }
.service-card h4 { font-size: 18px; font-weight: 800; color: var(--dark); line-height: 1.5; }

/* ==========================================================================
   SECTION 5: EXPERT & TEAM
   ========================================================================== */
.expert-section { background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 50%, #f0f4f8 100%); position: relative; overflow: hidden; }
.expert-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 40% 60%, rgba(47,90,174,0.04) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
}
.expert-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.2; z-index: 0; }
.expert-orb.eo-1 { width: 350px; height: 350px; background: rgba(47,90,174,0.1); top: -80px; right: -80px; animation: orbFloat1 9s ease-in-out infinite; }
.expert-orb.eo-2 { width: 280px; height: 280px; background: rgba(51,142,170,0.08); bottom: -60px; left: 10%; animation: orbFloat2 11s ease-in-out infinite; }

.expert-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; margin-bottom: 60px; position: relative; z-index: 2; }
.expert-img-wrap { position: relative; text-align: center; }
.expert-img-wrap img {
    max-width: 380px;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}
.expert-img-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(47,90,174,0.08), rgba(51,142,170,0.06));
    border-radius: 32px;
    filter: blur(40px);
    z-index: -1;
}
.expert-info { position: relative; z-index: 2; }
.expert-info h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; color: var(--dark); margin-bottom: 16px; line-height: 1.4; }
.expert-info p { font-size: 18px; color: var(--text-light); line-height: 2; margin-bottom: 20px; }
.expert-bio {
    font-size: 17px; color: var(--text); line-height: 2; margin-bottom: 24px;
    background: rgba(47,90,174,0.04);
    border-right: 4px solid var(--brand);
    padding: 18px 22px;
    border-radius: 0 14px 14px 0;
}

.team-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-bottom: 40px; position: relative; z-index: 2; }
.team-icon { width: 44px; height: 44px; margin-bottom: 10px; }
.team-item {
    background: #fff;
    border-radius: 20px;
    padding: 28px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid #e8ecf1;
    position: relative;
    overflow: hidden;
}
.team-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-light));
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px 20px 0 0;
}
.team-item:hover::before { opacity: 1; }
.team-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.team-item .team-num { font-size: 36px; font-weight: 900; color: var(--brand); margin-bottom: 6px; display: block; }
.team-item h4 { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.5; }
.expert-closing {
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    color: #fff;
    padding: 28px 36px;
    border-radius: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.expert-closing::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.expert-closing::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

/* ==========================================================================
   SECTION 6: SOCIAL MEDIA
   ========================================================================== */
.social-section { background: #fff; position: relative; overflow: hidden; }
.social-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-light));
}
.social-intro { font-size: 19px; color: var(--text); line-height: 2; max-width: 900px; margin: 0 auto 40px; text-align: center; }
.social-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.social-stat {
    background: #fff;
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid #e8ecf1;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.social-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-light));
    opacity: 0;
    transition: var(--transition);
}
.social-stat:hover::before { opacity: 1; }
.social-stat:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.social-stat-icon {
    width: 80px; height: 80px;
    margin: 0 auto 16px;
    border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
}
.social-stat-icon.ssi-1 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.social-stat-icon.ssi-2 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.social-stat-icon.ssi-3 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.social-stat-icon img { width: 40px; height: 40px; }
.social-stat .stat-num { font-size: 42px; font-weight: 900; color: var(--brand); margin-bottom: 8px; display: block; }
.social-stat h4 { font-size: 18px; font-weight: 700; color: var(--dark); }
.social-trust {
    font-size: 18px; color: var(--text); line-height: 2;
    max-width: 800px; margin: 0 auto 30px;
    text-align: center;
    background: rgba(47,90,174,0.04);
    border-right: 4px solid var(--brand);
    padding: 22px 28px;
    border-radius: 0 16px 16px 0;
}

/* ==========================================================================
   FLYER SLIDER
   ========================================================================== */
.flyer-section { padding: 60px 0; background: var(--light-bg); }
.flyer-slider {
    position: relative; max-width: 900px; margin: 0 auto;
    border-radius: 20px; overflow: hidden; aspect-ratio: 16/10;
}
.flyer-slider img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: contain; opacity: 0; transition: opacity 0.8s ease;
    background: #fff;
}
.flyer-slider img.active { opacity: 1; }
.flyer-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.flyer-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; border: none; cursor: pointer; transition: var(--transition); }
.flyer-dots .dot.active { background: var(--brand); width: 28px; border-radius: 5px; }

/* ==========================================================================
   SECTION 7: WEB DEV
   ========================================================================== */
.webdev-section { background: var(--light-bg); position: relative; overflow: hidden; }
.webdev-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--brand-light), var(--brand)); }
.webdev-intro { font-size: 19px; color: var(--text); line-height: 2; max-width: 900px; margin: 0 auto 40px; text-align: center; }
.webdev-points { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto 40px; }
.webdev-point {
    background: #fff;
    border-radius: 20px;
    padding: 24px 28px;
    display: flex; gap: 16px; align-items: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid #e8ecf1;
    position: relative;
    overflow: hidden;
}
.webdev-point::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-light));
    opacity: 0;
    transition: var(--transition);
}
.webdev-point:hover::before { opacity: 1; }
.webdev-point:hover { transform: translateX(-6px); border-color: var(--brand); box-shadow: var(--shadow-lg); }
.webdev-point .point-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.webdev-point .point-icon svg { width: 26px; height: 26px; fill: #fff; }
.webdev-point h4 { font-size: 18px; font-weight: 700; color: var(--dark); }
.webdev-value {
    font-size: 20px; color: #fff; line-height: 2;
    max-width: 850px; margin: 0 auto 30px;
    text-align: center;
    background: linear-gradient(135deg, #27ae60, #1a8f4a, #338eaa);
    padding: 32px 40px;
    border-radius: 20px;
    border: none;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(39,174,96,0.2);
    position: relative;
    overflow: hidden;
}
.webdev-value img.wv-icon {
    width: 50px; height: 50px;
    display: block; margin: 0 auto 14px;
    filter: brightness(0) invert(1);
}
.webdev-value::after {
    content: ''; position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

/* ==========================================================================
   SECTION 8: ECOMMERCE
   ========================================================================== */
.ecommerce-section { background: #fff; position: relative; overflow: hidden; }
.ecommerce-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--brand), var(--brand-light));
}
.ecommerce-intro { font-size: 19px; color: var(--text); line-height: 2; max-width: 900px; margin: 0 auto 40px; text-align: center; }
.ecommerce-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto 40px; }
.ecommerce-point {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex; gap: 18px; align-items: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
.ecommerce-point::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    opacity: 0;
    transition: var(--transition);
}
.ecommerce-point:hover::before { opacity: 1; }
.ecommerce-point:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); background: #fff; }
.ecommerce-point .ep-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ecommerce-point .ep-icon svg { width: 22px; height: 22px; fill: #fff; }
.ep-img-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ep-img-icon img { width: 36px; height: 36px; }
.ecommerce-point h4 { font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.6; }

/* ==========================================================================
   AD PACKAGES
   ========================================================================== */
/* ==========================================================================
   PACKAGES — Premium Redesign
   ========================================================================== */
.packages-section {
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 50%, #f0f4f8 100%);
    position: relative; overflow: hidden;
}
.packages-section::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(47,90,174,0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(39,174,96,0.04) 0%, transparent 50%);
}
.packages-intro {
    font-size: 20px; color: var(--text); line-height: 2.1;
    max-width: 800px; margin: 0 auto 50px; text-align: center; font-weight: 500;
    background: rgba(255,255,255,0.7); backdrop-filter: blur(10px);
    padding: 28px 36px; border-radius: 20px;
    border: 1px solid rgba(47,90,174,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: relative; z-index: 2;
}
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 2; }
.package-card {
    border-radius: 24px; padding: 44px 30px; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
    border: 2px solid rgba(47,90,174,0.12);
    backdrop-filter: blur(10px);
}
.package-card:nth-child(1) { background: linear-gradient(160deg, #eff6ff, #dbeafe, #fff); }
.package-card:nth-child(2) { background: linear-gradient(160deg, #ecfdf5, #d1fae5, #fff); }
.package-card:nth-child(3) { background: linear-gradient(160deg, #fffbeb, #fef3c7, #fff); }
.package-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    opacity: 0; transition: var(--transition);
}
.package-card:nth-child(1)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.package-card:nth-child(2)::before { background: linear-gradient(90deg, #27ae60, #2ecc71); }
.package-card:nth-child(3)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.package-card:hover::before { opacity: 1; }
.package-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.package-num {
    position: absolute; top: -16px; right: 24px;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900;
    box-shadow: 0 4px 15px rgba(39,174,96,0.3); z-index: 3;
}
.package-icon {
    width: 100px; height: 100px; margin: 0 auto 24px;
    border-radius: 24px; display: flex; align-items: center; justify-content: center;
}
.package-icon img { width: 56px; height: 56px; }
.package-card:nth-child(1) .package-icon { background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(96,165,250,0.08)); }
.package-card:nth-child(2) .package-icon { background: linear-gradient(135deg, rgba(39,174,96,0.12), rgba(46,204,113,0.08)); }
.package-card:nth-child(3) .package-icon { background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(251,191,36,0.08)); }
.package-card h3 { font-size: 22px; font-weight: 900; color: var(--dark); margin-bottom: 18px; line-height: 1.5; }
.package-card .pkg-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff; padding: 12px 32px; border-radius: 50px;
    font-size: 16px; font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(39,174,96,0.25);
}
.package-card .pkg-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(39,174,96,0.35); }

@media (max-width: 768px) {
    .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ==========================================================================
   CONTACT FORM — Premium Redesign
   ========================================================================== */
.contact-section {
    background: linear-gradient(160deg, #f0f4f8 0%, #e8eeff 30%, #f8fbff 70%, #eaf7f0 100%);
    padding: 80px 0;
    position: relative; overflow: hidden;
}
.contact-section::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(39,174,96,0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(47,90,174,0.06) 0%, transparent 50%);
}
.contact-section .contact-form-wrap { position: relative; z-index: 2; }
.contact-form-wrap {
    max-width: 700px; margin: 0 auto;
    background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.5);
}
.contact-form-wrap h2 {
    font-size: clamp(22px, 3.5vw, 30px); font-weight: 900;
    color: #fff; text-align: center; margin-bottom: 36px; line-height: 1.5;
    background: linear-gradient(135deg, var(--green), #1a8f4a, var(--brand-light));
    padding: 28px 36px; border-radius: 20px;
    box-shadow: 0 10px 35px rgba(39,174,96,0.2);
    position: relative; overflow: hidden;
}
.contact-form-wrap h2::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 150px; height: 150px; background: rgba(255,255,255,0.08); border-radius: 50%;
}
.contact-form-wrap h2::after {
    content: ''; position: absolute; bottom: -60px; left: -60px;
    width: 180px; height: 180px; background: rgba(255,255,255,0.06); border-radius: 50%;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-weight: 700; margin-bottom: 8px;
    font-size: 16px; color: var(--dark);
}
.form-group label::after { content: ' *'; color: #e74c3c; font-weight: 900; }
.form-group input {
    width: 100%; padding: 16px 20px; border: 2px solid #e2e8f0;
    border-radius: 16px; font-family: 'Tajawal', sans-serif;
    font-size: 16px; transition: var(--transition); direction: rtl;
    background: rgba(255,255,255,0.8);
}
.form-group input:focus {
    outline: none; border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(39,174,96,0.1);
    background: #fff;
}
.form-submit {
    display: block; width: 100%; padding: 16px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff; border: none; border-radius: 50px;
    font-size: 20px; font-weight: 800; cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    box-shadow: 0 8px 30px rgba(39,174,96,0.3);
    transition: var(--transition); margin-top: 10px;
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(39,174,96,0.4); }
.ads-packages-btn {
    display: block; max-width: 400px; margin: 30px auto 0;
    padding: 18px 30px; text-align: center;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff; border-radius: 50px;
    font-size: 22px; font-weight: 900;
    box-shadow: 0 8px 30px rgba(39,174,96,0.3);
    transition: var(--transition);
}
.ads-packages-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(39,174,96,0.4); }

/* ===== ANIMATE.CSS INTEGRATION ===== */
.reveal { opacity: 0; }
.reveal.animated { opacity: 1; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .section-title { font-size: clamp(28px, 6vw, 38px); }
    .section-subtitle { font-size: 18px; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-card { border-right: none; border-bottom: 5px solid var(--brand); }
    .about-float-card { display: none; }
    .about-orb { display: none; }
    .about-trust { justify-content: center; }
    .method-pillars { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 50px; }
    .method-orb { display: none; }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .expert-grid { grid-template-columns: 1fr; text-align: center; }
    .expert-img-wrap { order: -1; }
    .expert-bio { border-right: none; border-bottom: 4px solid var(--brand); border-radius: 14px 14px 0 0; }
    .expert-orb { display: none; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .social-stats { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
    .social-trust { border-right: none; border-bottom: 4px solid var(--brand); border-radius: 16px; text-align: center; }
    .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .section-padding { padding: 50px 0; }
    .activities-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-visual img { min-height: 280px; }
    .expert-img-wrap img { max-width: 100%; }
    .expert-section h2 { max-width: 90%; margin-left: auto; margin-right: auto; }
    .ecommerce-points { grid-template-columns: 1fr; }
    .btn-primary { font-size: 16px; padding: 12px 24px; }
    .about-deco { opacity: 0.05; }
    .method-deco { opacity: 0.06; }
    .activities-deco { opacity: 0.04; }
}
@media (max-width: 576px) {
    .section-title { font-size: 26px; }
    .about-section { padding: 50px 0 40px; }
    .about-card { padding: 28px 22px; }
    .about-card p { font-size: 16px; }
    .method-banner { font-size: 18px; padding: 22px 24px; }
    .method-intro { font-size: 17px; }
    .method-pillar { padding: 28px 20px; }
    .expert-closing { font-size: 17px; padding: 22px 24px; }
    .social-intro { font-size: 17px; }
    .webdev-intro { font-size: 17px; }
    .ecommerce-intro { font-size: 17px; }
}
