/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.written-section { background: var(--card-white); }
.video-section { background: var(--off-white); }
.review-section { background: var(--card-white); }
/* Keep the sections alternating while the video section is hidden. */
.written-section + .review-section { background: var(--off-white); }
.section-label,
.section-title { text-align: center; }
.section-subtitle { margin: 0 auto 3rem; text-align: center; }

/* ── VIDEO TESTIMONIALS ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1.75rem;
}
.video-card { display: flex; flex-direction: column; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  text-align: center; padding: 1rem;
}
.video-placeholder svg { opacity: 0.5; }
.video-card figcaption { margin-top: 0.9rem; }
.video-card figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
}
.video-card figcaption span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ── REVIEW FORM ── */
.review-wrap { max-width: 600px; margin: 0 auto; }
.contact-form {
  background: var(--card-white);
  border-radius: 14px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(28,170,90,0.08);
  text-align: left;
}
.form-group { display: grid; gap: 0.5rem; margin-bottom: 1.2rem; }
.form-group label {
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.form-checkbox label { margin: 0; cursor: pointer; }
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--green);
  flex-shrink: 0;
}
.privacy-notice {
  background: rgba(28,170,90,0.05);
  border-left: 4px solid var(--green);
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--green); color: #fff;
  font-family: var(--display);
  font-weight: 600; font-size: 1rem;
  padding: 1.1rem 2.4rem; border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-primary svg { flex-shrink: 0; }
.form-submit { width: 100%; margin-top: 0.5rem; }

