/* ================================================================
   styles.css - Online One | VIP Digital Services
   ================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6; color: #1e293b; background: #f8fafc;
  min-height: 100vh; display: flex; flex-direction: column;
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  position: relative;
}
.brand-logo {
  display: block;
  width: 190px;
  height: auto;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  text-decoration: none; color: #cbd5e1; font-size: 0.9rem;
  font-weight: 500; padding: 8px 16px; border-radius: 8px;
  transition: all 0.2s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta {
  background: #3b82f6; color: #fff !important; border-radius: 8px;
  padding: 8px 20px; font-weight: 600;
}
.nav-cta:hover { background: #2563eb !important; transform: translateY(-1px); }
.nav-cta-outline {
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.2); color: #e2e8f0 !important;
}
.nav-cta-outline:hover { border-color: #3b82f6 !important; color: #fff !important; }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: #e2e8f0; border-radius: 2px; transition: all 0.2s ease;
}

.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff; padding: 80px 24px; text-align: center;
}
.hero-content { max-width: 700px; margin: 0 auto; }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: #60a5fa;
  margin-bottom: 12px;
}
.hero h1 {
  font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 8px;
  background: linear-gradient(to right, #f8fafc, #93c5fd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h2 { font-size: 1.25rem; font-weight: 400; color: #94a3b8; margin-bottom: 16px; }
.hero-copy {
  font-size: 1.05rem; color: #cbd5e1; max-width: 580px;
  margin: 0 auto; line-height: 1.7;
}
.vip-panel {
  display: inline-block; margin-top: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  padding: 28px 36px; text-align: left;
}
.vip-panel-header { margin-bottom: 16px; }
.vip-panel-header span {
  display: block; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: #60a5fa; margin-bottom: 4px;
}
.vip-panel-header strong { font-size: 1.1rem; color: #f1f5f9; }
.vip-list { display: flex; flex-direction: column; gap: 10px; }
.vip-list > div { display: flex; align-items: center; gap: 12px; }
.vip-list span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(59,130,246,0.2); color: #60a5fa;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.vip-list p { color: #cbd5e1; font-size: 0.95rem; }

.section-pad { padding: 64px 24px; }
.section-heading { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-heading h2 { font-size: 1.8rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.section-heading p { color: #64748b; font-size: 1rem; }

.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 32px 28px; transition: all 0.25s ease;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-3px); border-color: #c7d2fe;
}
.service-card .icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: #eef2ff; color: #4f46e5; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.5px; margin-bottom: 16px;
}
.service-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: #0f172a; }
.service-card p { color: #64748b; font-size: 0.9rem; line-height: 1.6; }

.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; max-width: 900px; margin: 0 auto;
}
.feature-item {
  display: flex; align-items: center; gap: 12px; background: #fff;
  border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px 24px;
  font-weight: 500; color: #1e293b; transition: all 0.2s ease;
}
.feature-item:hover {
  border-color: #93c5fd; box-shadow: 0 4px 12px rgba(59,130,246,0.08);
}
.feature-item span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: #eef2ff; color: #4f46e5; font-size: 0.7rem;
  font-weight: 700; flex-shrink: 0;
}

.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.step {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 32px 28px; text-align: center; transition: all 0.25s ease;
}
.step:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-3px); }
.step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #4f46e5);
  color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: #0f172a; }
.step p { color: #64748b; font-size: 0.9rem; line-height: 1.6; }

.contact-card {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff; border-radius: 20px; padding: 48px;
}
.contact-card .eyebrow { color: #60a5fa; }
.contact-card h2 { color: #f1f5f9; font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.contact-card > div:first-child p:last-child { color: #94a3b8; font-size: 0.95rem; margin-bottom: 28px; }
.contact-list { display: grid; gap: 14px; }
.contact-list p { color: #cbd5e1; font-size: 0.95rem; }
.contact-list strong { color: #f1f5f9; }

.seo-content { background: #fff; border-top: 1px solid #e2e8f0; }
.seo-content h2 { font-size: 1.3rem; font-weight: 700; color: #0f172a; margin-bottom: 12px; text-align: center; }
.seo-content p { max-width: 800px; margin: 0 auto 12px; color: #64748b; font-size: 0.9rem; text-align: center; line-height: 1.7; }
.disclaimer { font-size: 0.8rem !important; color: #94a3b8 !important; font-style: italic; }

/* ================================================================
   🚀 FOOTER
   ================================================================ */
.site-footer {
  margin-top: auto;
  background: linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
  color: #94a3b8; border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), rgba(99,102,241,0.5), transparent);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 56px 24px 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { display: block; height: 40px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: #64748b; line-height: 1.6; margin-bottom: 6px; }
.footer-tagline { display: block; font-size: 0.8rem; color: #475569; letter-spacing: 0.5px; margin-bottom: 20px; }
.footer-heading {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: #475569; margin-bottom: 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: #94a3b8; text-decoration: none; font-size: 0.9rem;
  transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 6px;
}
.footer-nav a::before { content: ""; width: 0; height: 1.5px; background: #3b82f6; transition: width 0.2s ease; }
.footer-nav a:hover { color: #e2e8f0; transform: translateX(4px); }
.footer-nav a:hover::before { width: 12px; }

/* ===== CONTACT - Simple & Clean ===== */
.footer-contact p {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}
.footer-contact p:hover {
  color: #cbd5e1;
  transform: translateX(3px);
}
.footer-contact .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(59,130,246,0.1);
  color: #60a5fa;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.footer-contact strong {
  color: #cbd5e1;
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1px;
}
.footer-contact span {
  color: #94a3b8;
  font-size: 0.85rem;
  display: block;
}
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.82rem; color: #475569; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #475569; text-decoration: none; font-size: 0.82rem; transition: color 0.2s ease; }
.footer-legal a:hover { color: #94a3b8; }

/* ================================================================
   📱 MOBILE POPUP MENU
   ================================================================ */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .navbar { height: 64px; }
  .brand-logo { width: 165px; height: auto; }
  body.menu-open { overflow: hidden; }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 64px;
    left: 5%;
    right: 5%;
    width: auto;
    background: rgba(15,23,42,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 0 20px 20px;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .nav-links.is-open { display: flex !important; }

  .nav-links a {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s ease;
  }
  .nav-links a:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
  }

  .nav-links .nav-cta {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border: none;
    padding: 16px 20px;
    font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(59,130,246,0.3);
    margin-top: 4px;
  }

  .nav-links .nav-cta-outline {
    background: rgba(255,255,255,0.06) !important;
    border: 1.5px solid rgba(255,255,255,0.18) !important;
  }

  .hero h1 { font-size: 2rem; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
@media (max-width: 480px) {
  .brand-logo { width: 155px; }
}