/* ===================================
   Theli Tech – Service Landing Reusable Styles
   Shared components for dedicated service pages
====================================== */

/* Keep hero from getting too tall on mobile */
@media (max-width: 767px) {
  .sl-hero {
    min-height: 42vh;
    max-height: 420px;
  }
}

/* Card grid used for “What We Install / What We Provide” */
.sl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.sl-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.35rem 1.3rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.sl-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
  border-color: #ffb347;
}

.sl-card .sl-icon {
  color: #ffb347;
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.85rem;
}

.sl-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
  text-transform: none;
}

.sl-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* FAQ (simple, premium accordions) */
.sl-faq {
  max-width: 900px;
  margin: 0 auto;
}

.sl-faq details {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.sl-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.01em;
  list-style: none;
}

.sl-faq summary::-webkit-details-marker { display: none; }
.sl-faq summary::after {
  content: "+";
  float: right;
  color: #ffb347;
  font-weight: 800;
}
.sl-faq details[open] summary::after { content: "–"; }

.sl-faq .sl-faq-answer {
  margin-top: 0.75rem;
  color: #555;
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Two-column blocks that collapse cleanly */
.sl-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .sl-two-col { grid-template-columns: 1fr; }
}

