/* ==========================================================
   EFFECTUSX360 SERVICE PAGE SPECIFIC STYLES
   ----------------------------------------------------------
   Inherits design variables from main styles.css
   ========================================================== */

/* Align service page containers with main page wraps */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.service-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--signal);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--signal-hover);
}

.service-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.service-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--slate);
  max-width: 800px;
  line-height: 1.6;
  font-weight: 400;
}

.service-content {
  padding: 80px 0;
  background-color: var(--paper);
}

.content-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 60px;
}

.main-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  margin-top: 0;
}

.main-content h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--ink);
  margin: 44px 0 18px;
}

.main-content h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.main-content p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.feature {
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--signal-dim);
}

.feature h4 {
  color: var(--signal);
  margin-bottom: 12px;
}

.feature p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.service-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--effect);
  font-weight: 700;
  font-size: 1.1rem;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cta-box {
  background: linear-gradient(135deg, var(--signal) 0%, var(--effect) 100%);
  color: var(--surface);
  padding: 44px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-box h3 {
  font-size: 1.45rem;
  margin: 0 0 12px;
  color: var(--surface);
  font-weight: 600;
}

.cta-box p {
  font-size: 0.95rem;
  margin-bottom: 28px;
  opacity: 0.9;
  line-height: 1.5;
}

.cta-box .btn {
  background: var(--surface);
  color: var(--signal);
  font-weight: 600;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-box .btn:hover {
  background-color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.info-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.info-box h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 20px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 12px;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box ul li {
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.info-box ul li:last-child {
  border-bottom: none;
}

.service-links li a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: var(--transition);
}

.service-links li a:hover {
  color: var(--signal);
  padding-left: 4px;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .service-hero-title {
    font-size: 2.2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }
}

@media (max-width: 640px) {
  .service-hero {
    padding: 100px 0 60px;
  }

  .service-hero-title {
    font-size: 1.8rem;
  }

  .service-hero-subtitle {
    font-size: 1rem;
  }

  .main-content h2 {
    font-size: 1.45rem;
  }

  .main-content h3 {
    font-size: 1.25rem;
  }
}
