/* mail-service.css — Mail Service page */

.ms-hero {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  min-height: min(520px, 70vh);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #0f1419;
}

.ms-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.ms-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 35, 0.92) 0%, rgba(10, 15, 35, 0.55) 50%, rgba(10, 15, 35, 0.25) 100%);
}

.ms-hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 72px;
  color: #fff;
  max-width: 760px;
}

.ms-hero-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  font-weight: 600;
  margin-bottom: 14px;
}

.ms-hero-title {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 14px;
}

.ms-hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  opacity: 0.92;
  max-width: 680px;
  margin-bottom: 18px;
}

.ms-hero-note {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.88;
  max-width: 680px;
  margin-bottom: 22px;
}

.ms-hero-note strong {
  color: #fff;
}

.ms-hero-badges {
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin-bottom: 28px;
}

.ms-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ms-hero-call {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.ms-hero-call:hover {
  text-decoration: underline;
}

.ms-content {
  padding: 56px 72px 72px;
}

.ms-section {
  margin-bottom: 56px;
}

.ms-section-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.ms-section-icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.ms-section-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.ms-section-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--accent-blue);
  margin-bottom: 12px;
  line-height: 1.25;
}

.ms-section-desc {
  max-width: 900px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.ms-section-desc strong {
  color: var(--text-dark);
  font-weight: 600;
}

.ms-rate-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-white);
}

.ms-rate-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.ms-rate-table thead th {
  background: var(--accent-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 18px;
}

.ms-rate-table tbody td {
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

.ms-rate-table tbody tr:nth-child(even) {
  background: var(--bg-warm);
}

.ms-rate-table tbody tr:last-child td {
  border-bottom: none;
}

.ms-rate-table .ms-service-name {
  font-weight: 600;
  color: var(--text-dark);
  min-width: 180px;
}

.ms-rate-table .ms-rate {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-gold);
  white-space: nowrap;
}

.ms-rate-table .ms-best-for {
  color: var(--text-muted);
  font-size: 13.5px;
}

@media (max-width: 960px) {
  .ms-hero-content,
  .ms-content {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 768px) {
  .ms-hero-content {
    padding: 40px 20px;
  }

  .ms-section-head {
    flex-direction: column;
    gap: 12px;
  }

  .ms-section-icon {
    width: 72px;
    height: 72px;
  }

  .ms-content {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .ms-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
