/* =====================================================
   SERVICE PAGES – SCROLL-SAFE & ANIMATION-SAFE
   ===================================================== */

/* 🔒 HARD SCROLL SAFETY (DO NOT REMOVE) */
html, body {
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

/* MAIN WRAPPER SAFETY */
main {
  display: block;
  min-height: auto;
  overflow: visible;
}

/* ================= SERVICE PAGE HERO ================= */
.service-hero {
  min-height: 70vh;
  padding: 160px 20px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: visible;
}

.service-hero h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 18px;
  color: #475569;
}

/* PRICE */
.service-price {
  font-size: 2.2rem;
  font-weight: 600;
}

.service-price span {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ================= SERVICE SECTIONS ================= */
.service-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 20px;
  position: relative;
  overflow: visible;
}

.service-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.service-section.dark {
  background: linear-gradient(135deg, #a8b2dd, #020617);
  color: #ffffff;
}

/* ================= GRIDS ================= */
.info-grid,
.feature-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* ================= BOXES ================= */
.info-box,
.feature-card,
.process-step {
  background: #ffffff;
  background: linear-gradient(135deg, #a8b2dd, #ffffff);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section.dark .info-box,
.service-section.dark .feature-card,
.service-section.dark .process-step {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.info-box:hover,
.feature-card:hover,
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

/* ================= LIST ================= */
.service-list {
  max-width: 600px;
  margin: 40px auto 0;
  list-style: none;
  text-align: center;
  padding: 0;
}

.service-list li {
  margin-bottom: 12px;
  color: #475569;
}

.service-section.dark .service-list li {
  color: #e5e7eb;
}

/* ================= CTA ================= */
.service-cta {
  text-align: center;
  padding: 110px 20px;
  position: relative;
}

.service-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 22px;
}

/* ================= REVEAL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ================= UPGRADE CTA ================= */
.service-upgrade {
  margin: 120px auto 60px;
  padding: 50px 20px;
  text-align: center;
  max-width: 900px;
  border-top: 1px solid #e2e8f0;
}

.upgrade-text {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 18px;
}

/* Upgrade Button */
.btn-upgrade {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1e3a8a, #020617);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-upgrade:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.25);
}

/* Premium Accent */
.btn-upgrade.premium {
  background: linear-gradient(135deg, #a8b2dd, #020617);
}
