/* ============================================================
   SERVICE PAGES (home loans, personal loans, vehicle loans,
   insurance, interior design, investment advisory)
   ============================================================ */

.service-hero {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: white;
  padding: 56px 0;
}
.service-hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .service-hero-grid { grid-template-columns: 1fr; } }
.service-hero h1 { color: white; font-size: clamp(28px, 3.6vw, 42px); margin-top: 14px; max-width: 640px; }
.service-hero-stats { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.service-hero-stats .stat-item { border-left-color: var(--orange-500); }
.service-hero-stats .stat-item strong { color: white; }
.service-hero-stats .stat-item span { color: rgba(255,255,255,0.62); }

/* ---- Benefit grid (icon + heading + text, 2 or 3 columns) ---- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit-card { padding: 4px 0; }
.benefit-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-950); color: var(--orange-400);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.benefit-card p { color: var(--slate); font-size: 14px; line-height: 1.6; }

/* ---- Process steps (numbered horizontal flow) ---- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr; gap: 28px; } }
.process-steps-5col { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .process-steps-5col { grid-template-columns: 1fr; } }
.process-step { position: relative; padding: 0 20px; }
.process-step:first-child { padding-left: 0; }
.process-step:last-child { padding-right: 0; }
.process-step::after {
  content: "";
  position: absolute; top: 22px; right: -8px;
  width: 16px; height: 2px; background: var(--hairline);
}
.process-step:last-child::after { display: none; }
@media (max-width: 900px) { .process-step::after { display: none; } }
.process-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-100); color: var(--orange-600);
  font-family: var(--font-mono); font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.process-step h4 { font-size: 15.5px; margin-bottom: 8px; }
.process-step p { color: var(--slate); font-size: 13.5px; line-height: 1.6; }

/* ---- Partner/bank logos strip (static, non-marquee) ---- */
.partner-logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 760px) { .partner-logo-grid { grid-template-columns: repeat(3, 1fr); } }
.partner-logo-chip {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-800);
}

/* ---- Coverage / plan comparison cards ---- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; } }
.plan-card {
  background: white; border: 1px solid var(--hairline); border-radius: var(--radius-md);
  padding: 28px; display: flex; flex-direction: column;
}
.plan-card.featured { border-color: var(--orange-500); box-shadow: var(--shadow-md); position: relative; }
.plan-card.featured::before {
  content: "MOST POPULAR";
  position: absolute; top: -11px; left: 24px;
  background: var(--orange-500); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 4px;
}
.plan-card h4 { font-size: 18px; margin-bottom: 6px; }
.plan-card .plan-desc { color: var(--slate); font-size: 13.5px; margin-bottom: 18px; }
.plan-card ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.plan-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--navy-900); padding: 8px 0; border-bottom: 1px dashed var(--hairline); }
.plan-card li:last-child { border-bottom: none; }
.plan-card li svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* ---- Interior design style gallery ---- */
.style-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .style-grid { grid-template-columns: repeat(2, 1fr); } }
.style-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; }
.style-card img { width: 100%; height: 100%; object-fit: cover; }
.style-card .style-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,26,51,0.85));
  color: white; padding: 32px 14px 14px; font-weight: 600; font-size: 14px;
}
