/* ============ EDITING & PROOFREADING PAGE STYLES ============ */

/* === HERO SECTION === */
.service-hero {
  font-family: "Inter", sans-serif;
}

/* EDITING PAGE: Service icon containers */
.service-icon-container {
  width: 100%;
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(10, 25, 47, 0.9),
    rgba(31, 122, 140, 0.2)
  );
  border-radius: 16px;
  border: 1px solid rgba(31, 122, 140, 0.3);
}

/* EDITING PAGE: Responsive adjustments for text-heavy sections */
.editing-content-rich p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* EDITING PAGE: Animation keyframes (copied from bookcoverdesign.css for consistency) */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

@keyframes float-delayed {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-15px) translateX(-5px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* EDITING PAGE: Gradient text colors */
.text-\[\#4fc3d6\] {
  color: #4fc3d6;
}

/* EDITING PAGE: Dark background section */
.bg-gradient-to-b {
  position: relative;
  overflow: hidden;
}

/* EDITING PAGE: Process steps styling */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #1f7a8c 0%, #1a697a 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 6px 12px rgba(31, 122, 140, 0.2);
}

.step-content h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #1f2937;
}

.step-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .process-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .service-icon-container {
    height: 160px;
  }

  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    gap: 1rem;
  }

  .p-6,
  .p-8 {
    padding: 1rem;
  }

  .text-3xl,
  .text-4xl,
  .text-5xl {
    font-size: 1.875rem;
  }
}

@media (max-width: 640px) {
  .service-icon-container {
    height: 140px;
  }

  .flex-col-sm {
    flex-direction: column;
  }

  .gap-4 {
    gap: 0.75rem;
  }

  .text-lg {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
  }

  .service-icon-container {
    height: 120px;
  }
}
