/* ============================================================
   GENIUS FIX — Services Page Styles
   File: css/services.css
   ============================================================ */

/* ── SERVICES GRID SECTION ── */
.services-list-section {
  background: var(--navy);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 146, 42, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  background: rgba(200, 146, 42, 0.1);
  border-color: rgba(200, 146, 42, 0.5);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.service-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.service-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.97rem;
  line-height: 1.75;
  font-weight: 300;
}
.service-badge {
  display: inline-block;
  margin-top: 16px;
  background: rgba(200, 146, 42, 0.2);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ── AMC SECTION ── */
.amc-section {
  background: var(--white);
}
.amc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.amc-features {
  list-style: none;
  margin-top: 2rem;
}
.amc-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}
.amc-features li:last-child {
  border-bottom: none;
}
.check-circle {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-circle svg {
  width: 13px; height: 13px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}
.amc-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.amc-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1;
}
.amc-card-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.amc-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.amc-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .amc-grid { grid-template-columns: 1fr; gap: 3rem; }
  .amc-card { position: static; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .amc-card { padding: 36px 28px; }
}
