/* Services Page Styles */
.hero-services { padding: 150px 0 100px; background: var(--gradient-dark); position: relative; overflow: hidden; }
.hero-services::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 30% 40%, rgba(0, 217, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(114, 9, 183, 0.15) 0%, transparent 50%); pointer-events: none; }
.hero-content { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 1; animation: fadeInUpInstant 1s ease forwards; }
@keyframes fadeInUpInstant { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content h1 { font-size: 48px; font-weight: 800; background: var(--gradient-neon); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; }
.hero-content p { font-size: 18px; color: var(--text-secondary); }
.hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; color: var(--bg-dark); overflow: hidden; }
.hero-wave svg { width: 100%; height: 100px; }

.services-section { padding: 100px 0; background: var(--bg-dark); min-height: 60vh; }
.loading-state { text-align: center; padding: 80px 20px; }
.loader { width: 60px; height: 60px; margin: 0 auto 30px; border: 5px solid rgba(0, 217, 255, 0.2); border-top-color: var(--text-accent); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-state p { color: var(--text-secondary); font-size: 16px; }
.empty-state { text-align: center; padding: 100px 20px; color: var(--text-secondary); }
.empty-state svg { margin-bottom: 30px; opacity: 0.5; }
.empty-state h3 { font-size: 24px; margin-bottom: 15px; color: var(--text-primary); }
.empty-state p { font-size: 16px; line-height: 1.6; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; margin-top: 50px; }
.service-card { background: var(--bg-glass); border: 1px solid rgba(0, 217, 255, 0.2); border-radius: 20px; padding: 40px; transition: all 0.3s ease; opacity: 0; transform: translateY(30px); animation: fadeInUp 0.6s ease forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:hover { transform: translateY(-10px); border-color: rgba(0, 217, 255, 0.4); box-shadow: var(--glow-cyan); }
.service-icon { width: 80px; height: 80px; margin-bottom: 25px; color: var(--text-accent); }
.service-content { flex: 1; display: flex; flex-direction: column; }
.service-title { font-size: 24px; font-weight: 700; margin-bottom: 15px; color: var(--text-primary); }
.service-excerpt { color: var(--text-secondary); line-height: 1.7; margin-bottom: 25px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-accent); font-weight: 600; text-decoration: none; transition: all 0.3s ease; font-size: 15px; }
.service-link svg { transition: transform 0.3s ease; }
.service-link:hover { gap: 12px; color: var(--text-primary); }
.service-link:hover svg { transform: translateX(5px); }

@media (max-width: 768px) { .hero-content h1 { font-size: 32px; } .services-grid { grid-template-columns: 1fr; } .service-card:hover { transform: translateY(-5px); } }
@media (max-width: 480px) { .hero-services { padding: 120px 0 80px; } .hero-content h1 { font-size: 28px; } .service-card { padding: 30px; } .service-title { font-size: 20px; } }

