/* ================================================================
   VMA — Service Page Shared Styles
   Extends vma-styles.css for interior service pages
================================================================ */

/* ---- Page Hero ---- */
.page-hero {
  margin-top: 88px;
  background: var(--navy);
  padding: 80px 40px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2A5F79 0%, #31708E 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,154,75,0.1) 0%, transparent 70%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.page-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero > .page-hero-inner > p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.page-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.page-tag {
  background: rgba(199,154,75,0.15);
  border: 1px solid rgba(199,154,75,0.4);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
}

/* ---- Feature Band ---- */
.feature-band {
  background: var(--off-white);
  padding: 48px 40px;
}
.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-card-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ---- Two-Column Content ---- */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.content-col h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.content-col p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-col ul.check-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.content-col ul.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-body);
}
.content-col ul.check-list li::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.process-step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; padding-bottom: 0; }
.process-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.process-step p  { font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* Sidebar Box */
.sidebar-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.sidebar-box h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}
.sidebar-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.sidebar-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 20px 0;
}
.sidebar-box .btn-primary {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--navy);
  max-width: 1120px;
  margin: 0 auto 56px;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .feature-grid     { grid-template-columns: 1fr 1fr; }
  .content-section  { grid-template-columns: 1fr; gap: 40px; padding: 56px 20px; }
  .cta-banner       { margin: 0 20px 56px; padding: 32px 24px; }
  .page-hero        { padding: 64px 20px 48px; }
  .feature-band     { padding: 48px 20px; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
}
