/* ========================================
   MARINE DETAILING — DEDICATED PAGE
   TidalShine — Wilmington NC
   Brunswick County, NC Coast
   ======================================== */

/* ---- HERO ---- */
.mh-hero {
  background: var(--navy);
  padding: 72px 48px 80px;
}

.mh-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 194, 184, 0.08);
  border: 1px solid rgba(0, 194, 184, 0.2);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.mh-hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--sand);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.mh-hero-sub {
  font-size: 18px;
  color: rgba(244, 238, 224, 0.6);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px;
}

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

.mh-cta-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}

.mh-cta-primary:hover { background: #00e2ce; transform: translateY(-2px); }
.mh-cta-sm { font-size: 13px; padding: 10px 20px; }
.mh-cta-lg { font-size: 16px; padding: 16px 36px; }

.mh-cta-ghost {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(244, 238, 224, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(244, 238, 224, 0.2);
  padding-bottom: 1px;
}

.mh-cta-ghost:hover { color: var(--sand); }

/* Hero card */
.mh-hero-card {
  background: var(--navy-mid);
  border: 1px solid rgba(0, 194, 184, 0.15);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mh-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
}

.mh-card-price {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--sand);
  line-height: 1;
  letter-spacing: -0.03em;
}

.mh-card-meta { font-size: 14px; color: rgba(244, 238, 224, 0.5); }
.mh-card-divider { height: 1px; background: rgba(0, 194, 184, 0.12); margin: 8px 0; }

.mh-card-perks { display: flex; flex-direction: column; gap: 8px; }

.mh-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(244, 238, 224, 0.7);
  line-height: 1.5;
}

.mh-perk-check { color: var(--teal); font-size: 12px; flex-shrink: 0; margin-top: 1px; }

/* ---- SHARED SECTIONS ---- */
.mh-section { background: var(--bg); padding: 88px 48px; }
.mh-section-inner { max-width: 1100px; margin: 0 auto; }
.mh-intro-text { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 680px; margin-bottom: 48px; }

/* Service types grid */
.mh-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.mh-type-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1.5px solid rgba(7, 26, 46, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mh-type-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(7, 26, 46, 0.12); }
.mh-type-card--featured { border-color: rgba(0, 80, 160, 0.2); }

.mh-type-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 80, 160, 0.08);
  color: #0050A0;
  width: fit-content;
}

.mh-type-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 194, 184, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mh-type-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.mh-type-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.mh-type-list { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-top: 4px; }

.mh-type-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.mh-type-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1.5px;
  background: var(--teal);
  border-radius: 1px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .mh-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .mh-types-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  .mh-hero { padding: 56px 24px 64px; }
  .mh-section { padding: 56px 24px; }
  .mh-hero-card { padding: 24px; }
  .mh-hero-actions { flex-direction: column; align-items: flex-start; }
  .mh-cta-primary, .mh-cta-ghost { width: 100%; text-align: center; }
  .mh-types-grid { grid-template-columns: 1fr; gap: 16px; }
  .mh-card-price { font-size: 36px; }
}