/* ==========================================================
   SERVICE PAGE – ENTERPRISE FRONTEND (CVAC)
   Status: FINAL / PRODUCTION
   Philosophy:
   - Clear hierarchy
   - Engineering tone
   - Warm industrial palette
   - Zero visual noise
========================================================== */

/* ==========================================================
   GLOBAL BASE
========================================================== */
.service-content {
  width: 100%;
  background: #ffffff;
  color: var(--mt-text-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.service-content p {
  margin-bottom: 16px;
  line-height: 1.9;
  color: var(--mt-text-muted);
}

.service-content strong {
  font-weight: 600;
  color: var(--mt-text-dark);
}

/* ==========================================================
   HERO (LOCKED – STRUCTURE ONLY)
========================================================== */
.service-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.service-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.service-hero h1 {
  margin-bottom: 12px;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.service-hero .subtitle {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
}

/* ==========================================================
   TRANSITION BAND (WARM NEUTRAL)
========================================================== */
.service-transition-band {
  padding: 48px 0;
  background: #faf6f2;
}

.service-transition-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.service-transition-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(225,90,31,0.35),
    transparent
  );
}

.service-transition-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a6558;
}

/* ==========================================================
   SUMMARY SECTION – WARM INDUSTRIAL
========================================================== */
.service-summary-section {
  padding: 56px 0;
  background: linear-gradient(
    180deg,
    #faf6f2 0%,
    #ffffff 100%
  );
}

.service-summary-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-summary-block {
  padding: 44px 52px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ede3dc;
  box-shadow: 0 20px 45px rgba(0,0,0,0.10);
}

.service-summary-title {
  margin-bottom: 18px;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1f140e;
}

.service-summary-block p {
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ==========================================================
   MEDIA SECTION (IMAGE + TEXT)
========================================================== */
.service-media-section {
  padding: 96px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #faf6f2 100%
  );
}

.service-media-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-media {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.service-media-body {
  flex: 1;
  min-width: 0;
}

.service-media-title {
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #1f140e;
}

.service-media-text {
  color: #6b5c52;
  font-size: 1.02rem;
  line-height: 1.85;
}

.service-media-visual {
  flex: 0 0 440px;
  max-width: 440px;
}

.service-media-visual img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

/* ==========================================================
   TEXT CONTENT SECTIONS
========================================================== */
.service-text-section {
  position: relative;
  padding: 64px 0;
}

.service-text-section:nth-of-type(odd) {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #faf6f2 100%
  );
}

.service-text-section:nth-of-type(even) {
  background: #f4ede7;
}

.service-text-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.service-text-block {
  width: 100%;
  max-width: 1040px;
  padding: 46px 52px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ede3dc;
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.service-text-block::after {
  content: "\f0c1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 160px;
  color: var(--mt-brand-primary);
  opacity: 0.04;
  pointer-events: none;
}

.service-text-title {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #1f140e;
  position: relative;
  z-index: 2;
}

.service-text-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #6b5c52;
  max-width: 720px;
  position: relative;
  z-index: 2;
}

/* feature list */
.service-text-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 18px;
}

.service-text-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.service-text-content li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--mt-brand-primary);
}

/* ==========================================================
   CTA TRANSITION
========================================================== */
.service-content-sections::after {
  content: "";
  display: block;
  height: 80px;
  background: linear-gradient(
    to bottom,
    #ffffff,
    #0f0c0a
  );
}

/* ==========================================================
   RESPONSIVE SAFETY
========================================================== */
@media (max-width: 992px) {
  .service-media {
    flex-direction: column;
  }

  .service-media-visual {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .service-text-block::after {
    display: none;
  }

  .service-text-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .service-text-section {
    padding: 56px 0;
  }

  .service-text-block {
    padding: 30px 22px;
  }

  .service-media-title,
  .service-text-title {
    font-size: 1.35rem;
  }

  .service-content p {
    font-size: 1rem;
  }
}
