/* ========== SERVICES.CSS - Services Page ========== */

:root {
  --primary: #0066ff;
  --secondary: #00d4ff;
  --dark: #0a0e27;
  --darker: #050812;
  --text: #e8eef7;
  --text-muted: #a0aec0;
  --border: #1a2042;
  --success: #10b981;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: linear-gradient(135deg, var(--darker) 0%, #0f1438 100%); color: var(--text); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== HEADER ========== */
.header { background: rgba(10, 14, 39, 0.95); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 20px 0; position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5em; font-weight: 800; text-decoration: none; display: flex; align-items: center; gap: 12px; }
.logo-img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.3)); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-size: 1em; font-weight: 800; line-height: 1.2; }
.logo-tagline { font-size: 0.65em; color: var(--text-muted); font-weight: 300; line-height: 1.2; }
.tagline { font-size: 0.75em; color: var(--text-muted); margin-left: 10px; }
.nav { display: flex; gap: 30px; }
.nav a { color: var(--text-muted); text-decoration: none; font-size: 0.95em; transition: all 0.3s ease; }
.nav a.active { color: var(--secondary); }
.nav a:hover { color: var(--secondary); }

/* ========== PAGE INTRO ========== */
.page-intro { padding: 80px 0; text-align: center; background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05)); }
.page-intro h1 { font-size: 3em; font-weight: 800; margin-bottom: 20px; background: linear-gradient(135deg, var(--secondary), var(--primary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.intro-text { font-size: 1.2em; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

/* ========== SERVICES GRID ========== */
.services-section { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }

.service-card { background: linear-gradient(135deg, rgba(26, 32, 66, 0.8), rgba(15, 20, 56, 0.8)); border: 1px solid var(--border); border-radius: 12px; padding: 40px; transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-15px); border-color: var(--secondary); box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2); background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.05)); }

.service-icon { font-size: 3.5em; color: var(--secondary); margin-bottom: 20px; display: block; transition: all 0.3s ease; }
.service-card:hover .service-icon { transform: scale(1.3) rotateY(180deg); }

.service-card h3 { font-size: 1.4em; margin-bottom: 15px; color: var(--text); }
.service-desc { color: var(--text-muted); margin-bottom: 25px; line-height: 1.8; }

.service-features { list-style: none; }
.service-features li { color: var(--text-muted); display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.service-features i { color: var(--success); }

/* ========== WHY CHOOSE ========== */
.why-choose { padding: 100px 0; background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 102, 255, 0.05)); }
.why-choose h2 { font-size: 2.5em; margin-bottom: 60px; text-align: center; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.benefit { background: rgba(26, 32, 66, 0.6); border: 1px solid var(--border); border-radius: 12px; padding: 35px; text-align: center; transition: all 0.3s ease; }
.benefit:hover { transform: translateY(-10px); border-color: var(--primary); background: rgba(0, 102, 255, 0.1); }
.benefit i { font-size: 2.8em; color: var(--secondary); margin-bottom: 15px; display: block; }
.benefit h3 { margin-bottom: 12px; }
.benefit p { color: var(--text-muted); }

/* ========== PRICING ========== */
.pricing { padding: 80px 0; text-align: center; }
.pricing h2 { font-size: 2.5em; margin-bottom: 15px; }
.pricing-intro { color: var(--text-muted); margin-bottom: 40px; font-size: 1.1em; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn { padding: 14px 32px; border: none; border-radius: 8px; font-size: 1em; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 102, 255, 0.5); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: rgba(0, 102, 255, 0.1); }

/* ========== FOOTER ========== */
.site-footer { background: rgba(5, 8, 18, 0.95); border-top: 1px solid var(--border); padding: 40px 0; }
.site-footer .container { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.site-footer p { margin: 0; }
.social-links { display: flex; gap: 20px; }
.social-links a { color: var(--text-muted); font-size: 1.2em; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(0, 102, 255, 0.1); border-radius: 50%; }
.social-links a:hover { color: var(--secondary); background: rgba(0, 102, 255, 0.3); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: linear-gradient(135deg, #25d366, #20ba5a); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8em; text-decoration: none; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: all 0.3s ease; z-index: 50; animation: bounce 2s infinite; }
.whatsapp-float:hover { transform: scale(1.15); animation: none; }

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 768px) {
  .page-intro h1 { font-size: 2em; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
