/* ================================================
   SERVICES PAGE — services.html
   ================================================ */

/* FILTER TABS */
.filter-bar { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 22px; border-radius: 50px; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; border: 1.5px solid var(--sage); background: transparent; color: var(--sage);
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.filter-btn.active, .filter-btn:hover { background: var(--sage); color: white; }

/* SERVICE CARDS */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.service-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(123,63,173,0.1); transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(123,63,173,0.1); }
.service-card-header { padding: 1.75rem 2rem 1.25rem; display: flex; align-items: flex-start; gap: 1rem; }
.service-icon { font-size: 2rem; flex-shrink: 0; }
.service-card-header h3 { font-size: 1.1rem; margin-bottom: 6px; }
.tag { display: inline-block; font-size: 0.7rem; font-weight: 500; padding: 3px 10px; border-radius: 50px; margin-right: 4px; }
.tag-ndis { background: var(--sage-light); color: var(--sage); }
.tag-aged { background: #e8f7ee; color: #00A651; }
.service-card-body { padding: 0 2rem 1.75rem; border-top: 1px solid rgba(123,63,173,0.08); }
.service-card-body p { font-size: 0.9rem; color: var(--text-mid); font-weight: 300; line-height: 1.8; margin: 1.25rem 0; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; color: var(--text-mid); }
.service-list li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.svc-learn-more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.25rem; color: var(--sage); font-size: 0.88rem; font-weight: 600; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: gap 0.2s; }
.svc-learn-more:hover { gap: 0.65rem; }
.svc-learn-more svg { width: 14px; height: 14px; stroke-width: 2.5; }
.svc-learn-more::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.btn-secondary { position: relative; z-index: 2; }

/* HOW IT WORKS */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.process-card { background: white; border-radius: var(--radius); padding: 2rem; text-align: center; border: 1px solid rgba(123,63,173,0.1); }
.step-circle {
  width: 44px; height: 44px; border-radius: 50%; background: var(--sage); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 600; margin: 0 auto 1rem;
}
.process-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.process-card p  { font-size: 0.83rem; color: var(--text-mid); font-weight: 300; line-height: 1.7; margin: 0; }

/* NDIS CATEGORIES */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.category-card { background: white; border-radius: var(--radius); padding: 1.25rem 1.5rem; border: 1px solid rgba(123,63,173,0.1); }
.cat-num { font-size: 0.72rem; color: var(--sage); background: var(--sage-light); padding: 2px 10px; border-radius: 50px; display: inline-block; margin-bottom: 8px; font-family: monospace; font-weight: 600; }
.category-card h4 { font-size: 0.9rem; margin-bottom: 5px; }
.category-card p  { font-size: 0.82rem; color: var(--text-mid); font-weight: 300; line-height: 1.6; margin: 0; }

/* FAQ */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(123,63,173,0.1); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.4rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Lora', serif; font-size: 1rem; font-weight: 600; color: var(--text-dark); gap: 1rem;
}
.faq-q:hover { color: var(--sage); }
.faq-icon { color: var(--sage); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-a { font-size: 0.9rem; color: var(--text-mid); font-weight: 300; line-height: 1.8; padding-bottom: 1.4rem; display: none; }
.faq-item.open .faq-a    { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* SERVICE CARD IMAGES */
.service-card-img { height: 160px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }

/* PHOTO STRIP */
.services-photo-strip { position: relative; height: 260px; overflow: hidden; }
.services-photo-strip img { width: 100%; height: 100%; object-fit: cover; display: block; }
.services-photo-strip::after { content: ''; position: absolute; inset: 0; background: rgba(31,41,55,0.55); }
.services-photo-strip-content {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; text-align: center; padding: 2rem;
}
.services-photo-strip-content h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: white; margin-bottom: 0.5rem; }
.services-photo-strip-content p  { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 500px; font-weight: 300; }

/* ICONS */
.service-icon { color: var(--sage); }
.service-icon svg { width: 28px; height: 28px; stroke-width: 1.75; }
