/* ============================================================
   sections.css — About, Services, Why Us
   ============================================================ */

/* ---- ABOUT ---- */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-visual { position: relative; }
.about-card-main {
  background: var(--navy);
  border-radius: 12px; padding: 3rem; color: var(--white);
}
.about-card-main h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--gold-light); margin-bottom: 1rem;
}
.about-card-main p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.8; }

.about-card-main {
  padding-bottom: 20rem;
}
.about-accent-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 600; line-height: 1;
}
.about-accent-label { font-size: 12px; font-weight: 500; margin-top: 4px; opacity: 0.8; }
.about-points { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.about-points li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--text-body); line-height: 1.6;
}
.about-points li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-top: 8px;
}

/* ---- SERVICES ---- */
.services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px; padding: 2rem 2rem 2.5rem;
  transition: box-shadow 0.25s, transform 0.2s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(13,27,42,0.1); transform: translateY(-3px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 22px;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; font-weight: 500; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.25rem; }
.service-tag {
  font-size: 11px; padding: 4px 10px;
  background: var(--gray-light); border-radius: 2px;
  color: var(--text-muted); font-weight: 500;
}
.service-card.featured {
  background: var(--navy); border-color: var(--navy);
}
.service-card.featured h3 { color: var(--gold-light); }
.service-card.featured p { color: rgba(255,255,255,0.65); }
.service-card.featured .service-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }
.service-card.featured::after { background: var(--gold-light); }

/* ---- WHY US ---- */
.why { background: var(--navy); }
.why .section-title { color: var(--white); }
.why .section-tag { color: var(--gold-light); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem;
}
.why-item { text-align: center; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 600; color: var(--gold);
  line-height: 1; margin-bottom: 0.5rem;
}
.why-label { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
.why-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-accent { position: static; margin-top: 1rem; display: inline-block; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
