/* =========================
   PRINTING PAGE GLOBAL STYLES
========================= */

/* The printing page uses the existing site font and creates a clean premium canvas. */
body {
  background: #f8fafc;
  color: #101828;
  font-family: "Poppins", sans-serif;
}

/* =========================
   PRINTING HERO STYLES
========================= */

/* The hero introduces the printing category before the detailed service rows. */
.printing-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(8, 68, 164, 0.16), transparent 30%),
    linear-gradient(135deg, #eef1f7 0%, #ffffff 100%);
  min-height: 58vh;
  overflow: hidden;
  padding: 96px 0;
  position: relative;
}

.printing-eyebrow {
  color: #0844a4;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.printing-hero-title {
  color: #062f6f;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.printing-hero-text {
  color: #5b6472;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  max-width: 760px;
}

/* =========================
   PRINTING SERVICE ROW STYLES
========================= */

/* Each row gives one printing product its own clear space for easier scanning. */
.printing-services {
  background: linear-gradient(180deg, #ffffff 0%, #eef1f7 100%);
  padding: 90px 0;
}

.printing-service-row {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
  margin-bottom: 28px;
  overflow: hidden;
  padding: 34px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.printing-service-row:last-child {
  margin-bottom: 0;
}

/* The visual block acts like an image area while staying fast and easy to edit. */
.printing-service-visual {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(8, 68, 164, 0.94), rgba(8, 167, 216, 0.94)),
    #0844a4;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  min-height: 240px;
  justify-content: center;
}

.printing-service-visual i {
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
  transition: transform 0.35s ease;
}

.printing-service-content {
  padding: 12px 8px;
}

.printing-service-number {
  color: #08a7d8;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.printing-service-title {
  color: #102a56;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 18px;
}

.printing-service-text {
  color: #667085;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 680px;
}

/* =========================
   HOVER EFFECTS
========================= */

/* Hover movement makes the page feel modern without distracting from content. */
.printing-service-row:hover {
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  transform: translateY(-6px);
}

.printing-service-row:hover .printing-service-visual i {
  transform: scale(1.08) rotate(-2deg);
}

/* =========================
   JAVASCRIPT REVEAL ANIMATION
========================= */

/* Rows start hidden and JavaScript reveals them when they enter the viewport. */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet spacing keeps each row comfortable without becoming too tall. */
@media (max-width: 991.98px) {
  .printing-hero {
    min-height: 48vh;
    padding: 82px 0;
  }

  .printing-services {
    padding: 72px 0;
  }

  .printing-service-row {
    padding: 28px;
  }

  .printing-service-visual {
    min-height: 210px;
  }
}

/* Mobile layout stacks the visual and text with button-like spacing. */
@media (max-width: 575.98px) {
  .printing-hero {
    padding: 70px 0;
  }

  .printing-services {
    padding: 56px 0;
  }

  .printing-service-row {
    padding: 20px;
  }

  .printing-service-visual {
    min-height: 170px;
  }

  .printing-service-text {
    font-size: 1rem;
  }
}
