/* ─── OUR SERVICES PAGES — Shared Styles ─── */

/* Services Index hero */
.services-hero-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.service-hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 1.75rem;
  text-decoration: none; display: block;
  transition: background 0.2s;
}
.service-hero-card:hover { background: rgba(255,255,255,0.11); }
.service-hero-card-icon { font-size: 1.75rem; margin-bottom: 0.85rem; display: block; }
.service-hero-card-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem; font-weight: 700; color: white;
  margin-bottom: 0.35rem;
}
.service-hero-card-desc { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.service-hero-card-arrow { font-size: 0.82rem; color: #F2979A; font-weight: 600; margin-top: 0.75rem; display: block; }

/* Services index section */
.services-overview { background: var(--white); border-bottom: 1px solid var(--border); }
.services-overview .container { max-width: 1080px; margin: 0 auto; }

.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 5rem 0; border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 1.5rem;
}
.service-block h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1.1rem;
}
.service-block p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }
.service-block-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
.service-block-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.93rem; color: var(--text-mid); line-height: 1.55; }
.service-block-list li::before { content: '→'; color: var(--red); font-size: 0.78rem; flex-shrink: 0; margin-top: 3px; font-weight: 700; }
.service-block-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.93rem; font-weight: 600; color: var(--red);
  text-decoration: none; margin-top: 1.25rem;
  border-bottom: 1px solid rgba(192,39,45,0.3); transition: gap 0.2s, border-color 0.2s;
}
.service-block-link:hover { gap: 10px; border-color: var(--red); }

/* Visual card for service blocks */
.service-visual {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem; position: relative; overflow: hidden;
}
.service-visual::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(192,39,45,0.07) 0%, transparent 65%);
}
.service-visual-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem;
}
.service-feature-list { display: flex; flex-direction: column; gap: 0; }
.service-feature {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.service-feature:last-child { border-bottom: none; }
.service-feature-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.service-feature-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.service-feature-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Placeholder banner for missing content */
.coming-soon-banner {
  background: var(--navy); border-radius: 14px;
  padding: 2rem 2.5rem; margin: 3rem 0;
  display: flex; gap: 1.25rem; align-items: center;
}
.coming-soon-icon { font-size: 2rem; flex-shrink: 0; }
.coming-soon-text h4 { font-family: 'Lora', serif; font-size: 1.1rem; color: white; margin-bottom: 0.25rem; }
.coming-soon-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

@media (max-width: 900px) {
  .services-hero-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block.reverse { direction: ltr; }
}
