/* =========================
   info.css — Client info page styles
========================= */

:root {
  --primary: #9DC8B0;
  --primary-dark: #7fb89e;
  --bg: #0f0f10;
  --text: #4A4A4A;
  --wa-green: #25D366;
  --wa-dark: #1ebe5d;
  --glass-border: rgba(255,255,255,0.28);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rubik', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.9);
  background: var(--bg);
  min-height: 100vh;
  padding-bottom: 40px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("/bg-mobile-768w.webp") center/cover no-repeat;
}
@media (min-width: 769px) {
  body::before {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
      url("../bg-desktop-1600w.webp") center/cover no-repeat;
  }
}
.container { max-width: 720px; margin: 0 auto; padding: 0 18px; }

/* ── Header ── */
.page-header { text-align: center; padding: 40px 18px 20px; }
.page-header img {
  width: 140px; height: auto; margin: 0 auto 16px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.3));
}
.page-header h1 {
  font-size: 1.5rem; font-weight: 800; color: #fff;
  line-height: 1.3; margin-bottom: 6px;
}
.page-header .subtitle {
  font-size: 0.95rem; color: rgba(255,255,255,0.7); font-weight: 400;
}

/* ── Website link ── */
.site-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 16px auto 0; padding: 10px 22px;
  background: rgba(255,255,255,0.1); border: 1px solid var(--glass-border);
  border-radius: 999px; color: var(--primary);
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  width: fit-content; backdrop-filter: blur(6px); transition: background 0.2s;
}
.site-link:hover { background: rgba(255,255,255,0.18); }

/* ── Cards ── */
.card {
  background: rgba(255,255,255,0.97); border-radius: 18px;
  padding: 26px 22px; margin-top: 22px; color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.card h2 {
  font-size: 1.2rem; font-weight: 800; color: #222;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.card h2 .emoji { font-size: 1.4rem; }
.card p { margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

/* ── Method cards ── */
.method {
  background: rgba(157,200,176,0.08); border: 1px solid rgba(157,200,176,0.2);
  border-radius: 14px; padding: 18px 16px; margin-bottom: 14px;
}
.method:last-child { margin-bottom: 0; }
.method h3 {
  font-size: 1.05rem; font-weight: 700; color: #2a5a3e;
  margin-bottom: 6px; display: flex; align-items: center; gap: 8px;
}
.method p { font-size: 0.95rem; color: #555; margin-bottom: 0; }

/* ── Highlight box ── */
.highlight {
  background: linear-gradient(135deg, rgba(157,200,176,0.15), rgba(157,200,176,0.05));
  border: 1px solid rgba(157,200,176,0.3); border-radius: 14px;
  padding: 18px; margin-top: 14px;
}
.highlight p { font-size: 0.95rem; margin-bottom: 8px; }
.highlight strong { color: #2a5a3e; }

/* ── Info grid ── */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px;
}
.info-item {
  background: rgba(157,200,176,0.08); border-radius: 12px;
  padding: 14px; text-align: center;
}
.info-item .label { font-size: 0.8rem; color: #888; margin-bottom: 4px; }
.info-item .value { font-size: 1.1rem; font-weight: 700; color: #222; }

/* ── Contact Form ── */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 500;
  color: var(--text); margin-bottom: 4px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid rgba(0,0,0,0.15); border-radius: 12px;
  font-family: 'Rubik', sans-serif; font-size: 0.95rem;
  background: rgba(255,255,255,0.9); transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(157,200,176,0.25);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.submit-btn {
  width: 100%; padding: 14px; background: var(--primary);
  color: #fff; border: none; border-radius: 14px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  font-family: 'Rubik', sans-serif;
  transition: background 0.2s, transform 0.1s; margin-top: 6px;
}
.submit-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-msg {
  margin-top: 10px; padding: 12px; border-radius: 12px;
  text-align: center; font-size: 0.9rem; display: none;
}
.form-msg.success {
  display: block; background: rgba(157,200,176,0.2);
  color: #2a7a4b; border: 1px solid rgba(157,200,176,0.4);
}
.form-msg.error {
  display: block; background: rgba(220,53,69,0.1);
  color: #dc3545; border: 1px solid rgba(220,53,69,0.2);
}

/* ── WhatsApp button ── */
.wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px; background: var(--wa-green);
  color: #fff; border: none; border-radius: 14px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  font-family: 'Rubik', sans-serif; text-decoration: none;
  transition: background 0.2s, transform 0.1s; margin-top: 12px;
}
.wa-btn:hover { background: var(--wa-dark); transform: translateY(-1px); }
.wa-btn svg { width: 22px; height: 22px; fill: #fff; }

.or-divider {
  display: flex; align-items: center; margin: 16px 0;
  color: #999; font-size: 0.85rem;
}
.or-divider::before,
.or-divider::after {
  content: ''; flex: 1; border-bottom: 1px solid rgba(0,0,0,0.1);
}
.or-divider span { padding: 0 12px; }

/* ── Mentor note ── */
.mentor-note {
  background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 20px; margin-top: 22px;
  text-align: center; color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
}
.mentor-note p { font-size: 0.9rem; margin-bottom: 8px; }
.mentor-note a { color: var(--primary); text-decoration: underline; }

/* ── Footer ── */
.page-footer {
  text-align: center; margin-top: 36px; padding: 20px;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
}
.page-footer a { color: var(--primary); text-decoration: none; }

/* ── Desktop ── */
@media (min-width: 769px) {
  .page-header { padding-top: 60px; }
  .page-header img { width: 180px; }
  .page-header h1 { font-size: 1.8rem; }
  .card { padding: 32px 28px; }
}
