/* ============================================
   EXTRAS.CSS - Al-Haseen Insurance
   New Pages + Technical Enhancements
   ============================================ */

/* ===== TRACK CLAIM PAGE ===== */
.track-form-wrapper { max-width: 700px; margin: 0 auto; }
.track-form-card { background: #fff; border-radius: 20px; padding: 50px 40px; text-align: center; box-shadow: 0 20px 60px rgba(26,58,92,0.08); border: 1px solid #e8edf2; }
.track-form-icon { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #1a3a5c, #2d5a87); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #fff; font-size: 32px; }
.track-form-card h2 { color: #1a3a5c; margin-bottom: 10px; font-size: 1.8rem; }
.track-form-card > p { color: #6b7b8d; margin-bottom: 30px; }
.track-input-group { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.track-input-group input { flex: 1; padding: 15px 20px; border: 2px solid #e8edf2; border-radius: 12px; font-size: 1rem; font-family: 'Cairo', sans-serif; direction: ltr; text-align: center; transition: border-color 0.3s; }
.track-input-group input:focus { outline: none; border-color: #c8a415; }
.track-input-group button { padding: 15px 30px; background: linear-gradient(135deg, #c8a415, #dab82e); color: #fff; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; font-family: 'Cairo', sans-serif; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.track-input-group button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,164,21,0.3); }
.track-hint { margin-top: 15px; color: #6b7b8d; font-size: 0.85rem; }
.track-hint i { color: #c8a415; }

.track-result { margin-top: 40px; background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 20px 60px rgba(26,58,92,0.08); border: 1px solid #e8edf2; animation: fadeInUp 0.6s ease; }
.track-result-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #e8edf2; }
.track-result-info h3 { color: #1a3a5c; font-size: 1.3rem; margin-bottom: 10px; }
.track-meta { display: flex; flex-wrap: wrap; gap: 15px; }
.track-meta span { font-size: 0.9rem; color: #6b7b8d; }
.track-meta strong { color: #1a3a5c; }
.track-status-badge { padding: 8px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; }
.status-processing { background: #fff3cd; color: #856404; }

.track-timeline { position: relative; padding-right: 40px; margin: 30px 0; }
.track-timeline::before { content: ''; position: absolute; right: 15px; top: 0; bottom: 0; width: 3px; background: #e8edf2; border-radius: 3px; }
.timeline-item { position: relative; margin-bottom: 30px; padding-right: 30px; }
.timeline-dot { position: absolute; right: -33px; top: 5px; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; z-index: 1; }
.timeline-item.completed .timeline-dot { background: #10b981; color: #fff; }
.timeline-item.active .timeline-dot { background: #c8a415; color: #fff; animation: pulse 2s infinite; }
.timeline-item.pending .timeline-dot { background: #e8edf2; color: #9ca3af; }
.timeline-content { background: #f8fafc; border-radius: 12px; padding: 20px; border-right: 3px solid transparent; }
.timeline-item.completed .timeline-content { border-right-color: #10b981; }
.timeline-item.active .timeline-content { border-right-color: #c8a415; background: #fffbeb; }
.timeline-item.pending .timeline-content { opacity: 0.6; }
.timeline-date { font-size: 0.8rem; color: #6b7b8d; margin-bottom: 5px; }
.timeline-content h4 { color: #1a3a5c; margin-bottom: 5px; }
.timeline-content p { color: #6b7b8d; font-size: 0.9rem; margin: 0; }

.track-support { display: flex; align-items: center; gap: 15px; background: #f0f7ff; border-radius: 12px; padding: 20px; margin-top: 30px; }
.track-support > i { font-size: 2rem; color: #1a3a5c; }
.track-support h4 { color: #1a3a5c; margin-bottom: 3px; }
.track-support p { color: #6b7b8d; margin: 0; font-size: 0.9rem; }
.track-support a { color: #1a3a5c; font-weight: 600; }

/* ===== PLANS COMPARISON PAGE ===== */
.plan-type-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.plan-tab { padding: 12px 28px; border: 2px solid #e8edf2; border-radius: 50px; background: #fff; font-family: 'Cairo', sans-serif; font-size: 1rem; font-weight: 600; color: #6b7b8d; cursor: pointer; transition: all 0.3s; }
.plan-tab:hover { border-color: #1a3a5c; color: #1a3a5c; }
.plan-tab.active { background: #1a3a5c; color: #fff; border-color: #1a3a5c; }
.plan-tab i { margin-left: 8px; }

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.plan-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(26,58,92,0.06); border: 2px solid #e8edf2; transition: all 0.4s; position: relative; }
.plan-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(26,58,92,0.12); }
.plan-card.plan-popular { border-color: #c8a415; transform: scale(1.02); }
.plan-card.plan-popular:hover { transform: scale(1.02) translateY(-8px); }
.plan-badge-popular { position: absolute; top: 15px; left: 15px; background: linear-gradient(135deg, #c8a415, #dab82e); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; z-index: 2; }
.plan-header { padding: 30px 25px; text-align: center; color: #fff; }
.plan-basic { background: linear-gradient(135deg, #6b7b8d, #8b9bab); }
.plan-standard { background: linear-gradient(135deg, #1a3a5c, #2d5a87); }
.plan-premium { background: linear-gradient(135deg, #c8a415, #dab82e); }
.plan-icon { font-size: 2.5rem; margin-bottom: 10px; }
.plan-header h3 { font-size: 1.5rem; margin-bottom: 5px; }
.plan-header p { opacity: 0.9; font-size: 0.9rem; margin: 0; }
.plan-price { text-align: center; padding: 25px; border-bottom: 1px solid #e8edf2; }
.price-amount { font-size: 2.5rem; font-weight: 900; color: #1a3a5c; }
.price-currency { display: block; color: #6b7b8d; font-size: 0.9rem; }
.plan-features { list-style: none; padding: 25px; margin: 0; }
.plan-features li { padding: 10px 0; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; border-bottom: 1px solid #f5f7fa; }
.plan-features li:last-child { border-bottom: none; }
.plan-features li.included i { color: #10b981; }
.plan-features li.excluded { color: #9ca3af; }
.plan-features li.excluded i { color: #ef4444; }
.plan-btn { display: block; text-align: center; padding: 15px; margin: 0 25px 25px; border-radius: 12px; background: #f5f7fa; color: #1a3a5c; font-weight: 700; text-decoration: none; transition: all 0.3s; font-family: 'Cairo', sans-serif; }
.plan-btn:hover { background: #1a3a5c; color: #fff; }
.plan-btn-primary { background: linear-gradient(135deg, #c8a415, #dab82e); color: #fff; }
.plan-btn-primary:hover { background: linear-gradient(135deg, #b89312, #c8a415); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,164,21,0.3); }

/* ===== HISTORY TIMELINE ===== */
.history-section { background: #f8fafc; }
.history-timeline { position: relative; max-width: 900px; margin: 0 auto 60px; padding: 20px 0; }
.history-line { position: absolute; right: 50%; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, #c8a415, #1a3a5c); border-radius: 4px; transform: translateX(50%); }
.history-item { display: flex; align-items: center; margin-bottom: 50px; position: relative; opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.history-item.visible { opacity: 1; transform: translateY(0); }
.history-item:nth-child(odd) { flex-direction: row-reverse; padding-left: 55%; }
.history-item:nth-child(even) { padding-right: 55%; }
.history-year { position: absolute; right: 50%; transform: translateX(50%); background: linear-gradient(135deg, #1a3a5c, #2d5a87); color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; z-index: 2; border: 4px solid #fff; box-shadow: 0 4px 15px rgba(26,58,92,0.2); }
.history-card { background: #fff; border-radius: 16px; padding: 25px; box-shadow: 0 10px 30px rgba(26,58,92,0.06); border: 1px solid #e8edf2; width: 100%; transition: all 0.3s; }
.history-card:hover { box-shadow: 0 15px 40px rgba(26,58,92,0.12); transform: translateY(-3px); }
.history-card-icon { width: 45px; height: 45px; border-radius: 12px; background: linear-gradient(135deg, #c8a415, #dab82e); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.history-card h3 { color: #1a3a5c; margin-bottom: 8px; font-size: 1.1rem; }
.history-card p { color: #6b7b8d; font-size: 0.9rem; margin-bottom: 10px; line-height: 1.7; }
.history-tag { display: inline-block; background: #f0f4f8; color: #1a3a5c; padding: 3px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }

.history-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; }
.history-stat-card { background: #fff; border-radius: 16px; padding: 30px; text-align: center; box-shadow: 0 10px 30px rgba(26,58,92,0.06); border: 1px solid #e8edf2; }
.history-stat-icon { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #1a3a5c, #2d5a87); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; margin: 0 auto 15px; }
.history-stat-number { font-size: 2.5rem; font-weight: 900; color: #c8a415; margin-bottom: 5px; }
.history-stat-label { color: #6b7b8d; font-size: 0.9rem; }

/* ===== TIPS PAGE ===== */
.tips-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.tip-filter-btn { padding: 10px 22px; border: 2px solid #e8edf2; border-radius: 30px; background: #fff; font-family: 'Cairo', sans-serif; font-size: 0.9rem; font-weight: 600; color: #6b7b8d; cursor: pointer; transition: all 0.3s; }
.tip-filter-btn:hover { border-color: #1a3a5c; color: #1a3a5c; }
.tip-filter-btn.active { background: #1a3a5c; color: #fff; border-color: #1a3a5c; }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.tip-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(26,58,92,0.06); border: 1px solid #e8edf2; transition: all 0.4s; }
.tip-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(26,58,92,0.12); }
.tip-card-image { height: 140px; display: flex; align-items: center; justify-content: center; position: relative; }
.tip-card-icon { font-size: 3rem; color: rgba(255,255,255,0.9); }
.tip-card-category { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.2); backdrop-filter: blur(5px); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.tip-card-content { padding: 25px; }
.tip-card-content h3 { color: #1a3a5c; font-size: 1.1rem; margin-bottom: 10px; line-height: 1.5; }
.tip-card-content p { color: #6b7b8d; font-size: 0.9rem; line-height: 1.7; margin-bottom: 15px; }
.tip-card-footer { display: flex; justify-content: space-between; align-items: center; }
.tip-read-time { font-size: 0.8rem; color: #9ca3af; }
.tip-read-time i { margin-left: 5px; }

/* ===== RIGHTS PAGE ===== */
.rights-intro { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.rights-intro-icon { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #1a3a5c, #2d5a87); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #fff; font-size: 2rem; }
.rights-intro h2 { color: #1a3a5c; margin-bottom: 15px; }
.rights-intro p { color: #6b7b8d; line-height: 1.8; }
.rights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; margin-bottom: 60px; }
.right-card { background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 8px 30px rgba(26,58,92,0.06); border: 1px solid #e8edf2; position: relative; overflow: hidden; transition: all 0.3s; }
.right-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(26,58,92,0.1); border-color: #c8a415; }
.right-card-number { position: absolute; top: 15px; left: 15px; font-size: 2.5rem; font-weight: 900; color: rgba(26,58,92,0.05); }
.right-card-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, #c8a415, #dab82e); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; margin-bottom: 15px; }
.right-card h3 { color: #1a3a5c; margin-bottom: 10px; font-size: 1.05rem; }
.right-card p { color: #6b7b8d; font-size: 0.9rem; line-height: 1.7; margin: 0; }

.obligations-section { background: #f8fafc; border-radius: 20px; padding: 40px; margin-bottom: 50px; }
.obligations-section h2 { color: #1a3a5c; margin-bottom: 25px; text-align: center; }
.obligations-section h2 i { color: #c8a415; margin-left: 10px; }
.obligations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.obligation-item { display: flex; align-items: flex-start; gap: 12px; padding: 15px; background: #fff; border-radius: 12px; }
.obligation-item > i { color: #10b981; font-size: 1.2rem; margin-top: 3px; }
.obligation-item h4 { color: #1a3a5c; margin-bottom: 3px; }
.obligation-item p { color: #6b7b8d; font-size: 0.85rem; margin: 0; }

.complaint-process { text-align: center; }
.complaint-process h2 { color: #1a3a5c; margin-bottom: 30px; }
.complaint-process h2 i { color: #c8a415; margin-left: 10px; }
.complaint-steps { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.complaint-step { background: #fff; border-radius: 16px; padding: 25px 20px; width: 180px; box-shadow: 0 8px 25px rgba(26,58,92,0.06); border: 1px solid #e8edf2; }
.complaint-step-num { width: 35px; height: 35px; border-radius: 50%; background: linear-gradient(135deg, #c8a415, #dab82e); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 10px; }
.complaint-step h4 { color: #1a3a5c; margin-bottom: 5px; font-size: 0.95rem; }
.complaint-step p { color: #6b7b8d; font-size: 0.8rem; margin: 0; }
.complaint-arrow { color: #c8a415; font-size: 1.2rem; }

/* ===== OFFERS PAGE ===== */
.offers-countdown-section { padding: 30px 0; }
.countdown-banner { background: linear-gradient(135deg, #1a3a5c, #0f2440); border-radius: 20px; padding: 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.countdown-content { color: #fff; }
.countdown-badge { display: inline-block; background: rgba(200,164,21,0.2); color: #c8a415; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.countdown-content h2 { font-size: 1.6rem; margin-bottom: 10px; }
.countdown-content p { opacity: 0.8; margin-bottom: 15px; }
.countdown-timer { display: flex; gap: 8px; align-items: center; }
.countdown-item { text-align: center; background: rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 18px; min-width: 65px; }
.countdown-item span { display: block; font-size: 2rem; font-weight: 900; color: #c8a415; }
.countdown-item label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.countdown-separator { font-size: 2rem; color: rgba(255,255,255,0.5); font-weight: 700; }
.countdown-btn { display: inline-block; background: linear-gradient(135deg, #c8a415, #dab82e); color: #fff; padding: 15px 35px; border-radius: 12px; font-weight: 700; text-decoration: none; font-size: 1.1rem; transition: all 0.3s; white-space: nowrap; }
.countdown-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(200,164,21,0.4); }

.section-header-center { text-align: center; margin-bottom: 40px; }
.section-badge { display: inline-block; background: rgba(26,58,92,0.08); color: #1a3a5c; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.section-header-center h2 { color: #1a3a5c; font-size: 2rem; }

.offers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; margin-bottom: 60px; }
.offer-card { background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 8px 30px rgba(26,58,92,0.06); border: 1px solid #e8edf2; position: relative; overflow: hidden; transition: all 0.3s; }
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(26,58,92,0.12); }
.offer-card.offer-hot { border-color: #ef4444; }
.offer-card.offer-hot::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 4px; background: linear-gradient(90deg, #ef4444, #f97316); }
.offer-badge { position: absolute; top: 15px; left: 15px; background: #ef4444; color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.offer-badge-blue { background: #3b82f6; }
.offer-badge-green { background: #10b981; }
.offer-badge-purple { background: #8b5cf6; }
.offer-badge-orange { background: #f97316; }
.offer-badge-teal { background: #14b8a6; }
.offer-icon { width: 55px; height: 55px; border-radius: 14px; background: linear-gradient(135deg, #f0f4f8, #e8edf2); display: flex; align-items: center; justify-content: center; color: #1a3a5c; font-size: 1.5rem; margin-bottom: 15px; }
.offer-card h3 { color: #1a3a5c; margin-bottom: 10px; }
.offer-card p { color: #6b7b8d; font-size: 0.9rem; line-height: 1.7; margin-bottom: 15px; }
.offer-details { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.offer-details span { font-size: 0.8rem; color: #6b7b8d; display: flex; align-items: center; gap: 5px; }
.offer-details i { color: #c8a415; }
.offer-btn { display: block; text-align: center; padding: 12px; background: linear-gradient(135deg, #1a3a5c, #2d5a87); color: #fff; border-radius: 10px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.offer-btn:hover { background: linear-gradient(135deg, #c8a415, #dab82e); transform: translateY(-2px); }

.loyalty-section { background: linear-gradient(135deg, #1a3a5c, #0f2440); border-radius: 20px; padding: 50px; text-align: center; color: #fff; }
.loyalty-icon { font-size: 3rem; color: #c8a415; margin-bottom: 15px; }
.loyalty-section h2 { margin-bottom: 10px; }
.loyalty-section > p { opacity: 0.8; margin-bottom: 30px; }
.loyalty-tiers { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.loyalty-tier { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 20px 30px; min-width: 120px; position: relative; }
.loyalty-tier.tier-gold { background: rgba(200,164,21,0.2); border: 2px solid #c8a415; }
.tier-years { font-size: 0.85rem; opacity: 0.8; margin-bottom: 5px; }
.tier-discount { font-size: 2rem; font-weight: 900; color: #c8a415; }
.tier-label { position: absolute; top: -10px; right: 50%; transform: translateX(50%); background: #c8a415; color: #fff; padding: 2px 10px; border-radius: 10px; font-size: 0.7rem; font-weight: 700; }

/* ===== TEAM PAGE ===== */
.team-section-title { text-align: center; margin-bottom: 40px; }
.team-section-title h2 { color: #1a3a5c; font-size: 2rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; margin-bottom: 50px; }
.team-grid-leadership { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 40px; }
.team-card { background: #fff; border-radius: 16px; padding: 30px; text-align: center; box-shadow: 0 8px 30px rgba(26,58,92,0.06); border: 1px solid #e8edf2; transition: all 0.3s; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(26,58,92,0.1); }
.team-card-ceo { border: 2px solid #c8a415; }
.team-avatar { margin-bottom: 15px; }
.team-avatar-placeholder { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, #1a3a5c, #2d5a87); display: flex; align-items: center; justify-content: center; margin: 0 auto; color: #fff; font-size: 2rem; }
.team-card-ceo .team-avatar-placeholder { width: 110px; height: 110px; background: linear-gradient(135deg, #c8a415, #dab82e); font-size: 2.5rem; }
.team-info h3 { color: #1a3a5c; margin-bottom: 5px; }
.team-role { display: inline-block; background: rgba(200,164,21,0.1); color: #c8a415; padding: 3px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 10px; }
.team-info p { color: #6b7b8d; font-size: 0.85rem; line-height: 1.6; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 12px; }
.team-social a { width: 35px; height: 35px; border-radius: 50%; background: #f0f4f8; display: flex; align-items: center; justify-content: center; color: #1a3a5c; transition: all 0.3s; text-decoration: none; }
.team-social a:hover { background: #1a3a5c; color: #fff; }

.team-values { background: #f8fafc; border-radius: 20px; padding: 50px; text-align: center; }
.team-values h2 { color: #1a3a5c; margin-bottom: 30px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; }
.value-item { padding: 20px; }
.value-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #c8a415, #dab82e); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: #fff; font-size: 1.3rem; }
.value-item h4 { color: #1a3a5c; margin-bottom: 5px; }
.value-item p { color: #6b7b8d; font-size: 0.85rem; margin: 0; }

/* ===== MAP PAGE ===== */
.map-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: start; margin-bottom: 80px; }
.libya-map-container { background: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 10px 40px rgba(26,58,92,0.06); border: 1px solid #e8edf2; }
.libya-map { width: 100%; height: auto; }
.libya-outline { transition: fill 0.3s; }
.map-marker { cursor: pointer; transition: all 0.3s; }
.map-marker:hover circle:first-child, .map-marker.active circle:first-child { r: 15; fill: #c8a415; filter: drop-shadow(0 4px 8px rgba(200,164,21,0.4)); }
.map-label { font-family: 'Cairo', sans-serif; font-size: 12px; font-weight: 700; fill: #1a3a5c; }
.map-sublabel { font-family: 'Cairo', sans-serif; font-size: 9px; fill: #c8a415; font-weight: 600; }

.branch-info-panel { background: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 10px 40px rgba(26,58,92,0.06); border: 1px solid #e8edf2; position: sticky; top: 100px; }
.branch-info-default { text-align: center; }
.branch-default-icon { font-size: 3rem; color: #c8a415; margin-bottom: 15px; }
.branch-info-default h3 { color: #1a3a5c; margin-bottom: 8px; }
.branch-info-default p { color: #6b7b8d; margin-bottom: 20px; }
.branch-stats-mini { display: flex; justify-content: center; gap: 20px; }
.branch-stats-mini div { text-align: center; }
.branch-stats-mini strong { display: block; font-size: 1.5rem; color: #1a3a5c; }
.branch-stats-mini span { font-size: 0.8rem; color: #6b7b8d; }
.branch-close { position: absolute; top: 15px; left: 15px; background: #f0f4f8; border: none; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #6b7b8d; }
.branch-detail-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.branch-detail-header i { font-size: 1.5rem; color: #c8a415; }
.branch-detail-header h3 { color: #1a3a5c; font-size: 1.1rem; }
.branch-detail-item { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid #f0f4f8; }
.branch-detail-item i { color: #1a3a5c; width: 20px; text-align: center; }
.branch-detail-item span { color: #6b7b8d; font-size: 0.9rem; }
.branch-contact-btn { display: block; text-align: center; margin-top: 20px; padding: 12px; background: linear-gradient(135deg, #1a3a5c, #2d5a87); color: #fff; border-radius: 10px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.branch-contact-btn:hover { background: linear-gradient(135deg, #c8a415, #dab82e); }

/* ===== INFOGRAPHIC ===== */
.infographic-section { padding-top: 60px; }
.infographic-steps { display: flex; align-items: center; justify-content: center; gap: 5px; flex-wrap: wrap; }
.infographic-step { text-align: center; padding: 25px 15px; width: 150px; }
.infographic-step-icon { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, #1a3a5c, #2d5a87); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: #fff; font-size: 1.5rem; transition: all 0.3s; }
.infographic-step:hover .infographic-step-icon { background: linear-gradient(135deg, #c8a415, #dab82e); transform: scale(1.1); }
.infographic-step-num { width: 25px; height: 25px; border-radius: 50%; background: #c8a415; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; margin: -15px auto 10px; position: relative; z-index: 1; }
.infographic-step h4 { color: #1a3a5c; font-size: 0.95rem; margin-bottom: 5px; }
.infographic-step p { color: #6b7b8d; font-size: 0.8rem; margin: 0; }
.infographic-connector { color: #c8a415; font-size: 1rem; position: relative; }
.connector-line { width: 30px; height: 2px; background: #e8edf2; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* ===== GLOBAL ENHANCEMENTS ===== */

/* WhatsApp Floating Button */
.whatsapp-float { position: fixed; bottom: 25px; left: 25px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.8rem; box-shadow: 0 8px 25px rgba(37,211,102,0.4); z-index: 9999; text-decoration: none; transition: all 0.3s; animation: whatsappPulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,0.5); }

/* Back to Top Button */
.back-to-top { position: fixed; bottom: 25px; right: 25px; width: 50px; height: 50px; background: linear-gradient(135deg, #1a3a5c, #2d5a87); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; box-shadow: 0 8px 25px rgba(26,58,92,0.3); z-index: 9999; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.4s; border: none; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: linear-gradient(135deg, #c8a415, #dab82e); transform: translateY(-3px); }

/* Scroll Progress Bar */
.scroll-progress { position: fixed; top: 0; right: 0; height: 3px; background: linear-gradient(90deg, #c8a415, #1a3a5c); z-index: 99999; transition: width 0.1s; width: 0%; }

/* Loading Screen */
.loading-screen { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 999999; transition: opacity 0.5s, visibility 0.5s; }
.loading-screen.hidden { opacity: 0; visibility: hidden; }
.loading-logo { width: 80px; height: 80px; background: linear-gradient(135deg, #1a3a5c, #2d5a87); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2rem; margin-bottom: 20px; animation: loadingPulse 1.5s infinite; }
.loading-text { color: #1a3a5c; font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1.1rem; }
.loading-bar { width: 200px; height: 4px; background: #e8edf2; border-radius: 4px; margin-top: 15px; overflow: hidden; }
.loading-bar-fill { height: 100%; background: linear-gradient(90deg, #c8a415, #1a3a5c); border-radius: 4px; animation: loadingBar 1.5s ease forwards; }

/* Animations */
@keyframes whatsappPulse { 0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); } 50% { box-shadow: 0 8px 25px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); } }
@keyframes loadingPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes loadingBar { 0% { width: 0; } 100% { width: 100%; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(200,164,21,0.4); } 50% { box-shadow: 0 0 0 10px rgba(200,164,21,0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .map-layout { grid-template-columns: 1fr; }
    .branch-info-panel { position: static; }
    .history-item:nth-child(odd), .history-item:nth-child(even) { padding: 0 0 0 80px; flex-direction: row; }
    .history-year { right: auto; left: 0; transform: none; }
    .history-line { right: 30px; transform: none; }
    .countdown-banner { text-align: center; justify-content: center; }
    .countdown-timer { justify-content: center; }
    .plans-grid { grid-template-columns: 1fr; }
    .plan-card.plan-popular { transform: none; }
    .complaint-steps { flex-direction: column; }
    .complaint-arrow { transform: rotate(-90deg); }
    .infographic-steps { flex-direction: column; }
    .infographic-connector { transform: rotate(-90deg); }
    .track-input-group { flex-direction: column; }
    .loyalty-tiers { flex-direction: column; align-items: center; }
}

/* ===== ANNOUNCEMENT TICKER BAR ===== */
.announcement-ticker {
    background: linear-gradient(90deg, #1a3a5c, #2a5a8c);
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    overflow: hidden;
}
.ticker-content {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 0 20px;
}
.ticker-item i {
    color: #c8a45a;
}
.ticker-close {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.ticker-close:hover {
    background: rgba(255,255,255,0.4);
}
@keyframes ticker-scroll {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== OFFER POP-UP ===== */
.offer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.3s;
}
.offer-popup {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: popIn 0.4s ease;
}
.popup-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f0f0f0;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #666;
    transition: all 0.3s;
}
.popup-close:hover {
    background: #e0e0e0;
    color: #333;
}
.popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8a45a, #e8c97a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
}
.offer-popup h3 {
    font-size: 1.5rem;
    color: #1a3a5c;
    margin-bottom: 12px;
}
.offer-popup p {
    color: #666;
    margin-bottom: 16px;
    font-size: 1rem;
}
.popup-code {
    background: #f8f4e8;
    border: 2px dashed #c8a45a;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c8a45a;
    letter-spacing: 3px;
    margin: 16px 0;
    display: inline-block;
}
.popup-note {
    font-size: 0.85rem !important;
    color: #999 !important;
}
.popup-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a3a5c, #2a5a8c);
    color: white;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    transition: all 0.3s;
}
.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26,58,92,0.3);
}
@keyframes popIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,164,90,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(200,164,90,0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== GLASSMORPHISM CARDS ===== */
.glass-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 30px;
}

/* ===== GRADIENT BORDERS ===== */
.gradient-border {
    position: relative;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #c8a45a, #1a3a5c, #c8a45a);
}
.gradient-border-inner {
    background: white;
    border-radius: 14px;
    padding: 24px;
}
