
/* ==========================================================================
   VynPlan  theme layer on top of w3.css + Font Awesome
   Color scheme: dark teal blue
   ========================================================================== */

:root {
  --teal-900: #07262b;
  --teal-800: #0d3b40;
  --teal-700: #124f56;
  --teal-600: #1a6b73;
  --teal-500: #23868f;
  --teal-100: #eaf6f6;
  --ink:      #14262a;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
}

h1, h2, h3 { color: var(--teal-800); }
a { color: var(--teal-500); }

/* ---------- Nav ---------- */
.brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal-700);
}
.w3-bar-item.w3-button {
  color: var(--ink);
}
.w3-bar-item.w3-button:hover {
  color: var(--teal-500);
  background: none !important;
}
.nav-cta {
  background: var(--teal-500) !important;
  color: #fff !important;
  border-radius: 6px;
  margin: 8px 8px 8px 0;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.nav-cta:hover {
  background: var(--teal-600) !important;
  color: #fff !important;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--teal-500) !important;
  color: #fff !important;
}
.btn-primary:hover { background: var(--teal-600) !important; }
.btn-secondary {
  background: transparent !important;
  border: 2px solid var(--teal-600) !important;
  color: var(--teal-700) !important;
}
.btn-secondary:hover {
  background: var(--teal-600) !important;
  color: #fff !important;
}

/* ---------- Eyebrow labels ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-500);
}
.eyebrow-light { color: #9fd8dc; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,38,43,0.75), rgba(7,38,43,0.55));
}
.hero-content { color: #fff; max-width: 700px; padding: 0 24px; }
.hero-content h1 { color: #fff; font-size: 2.75rem; }
.hero-content .lead { font-size: 1.35rem; color: var(--teal-100); }
.hero-content .highlight { color: #6fd7de; font-weight: 700; }

/* ---------- Section backgrounds ---------- */
.solutions-bg { background: var(--teal-100); }
.contact-bg { background: var(--teal-800); color: var(--teal-100); }
.contact-bg h2, .contact-bg h3 { color: #fff; }
.footer-bg { background: var(--teal-900); color: var(--teal-100); }
.footer-bg p { margin: 0; }

/* ---------- Cards (solutions + how-it-works) ---------- */
.card { position: relative; text-align: left; }
.card img { aspect-ratio: 1 / 1; object-fit: cover; margin-bottom: 12px; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-500);
  color: #fff;
  font-size: 1.1rem;
  margin-top: -34px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(7,38,43,0.25);
}
.step-card { padding-top: 40px; }
.step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--teal-700);
  color: #fff;
  font-weight: 700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 1;
}

/* ---------- Contact form ---------- */
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 14px;
  color: var(--teal-100);
}
.contact-form input,
.contact-form textarea {
  background: #fff;
  color: var(--ink);
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  font-size: 0.85rem;
  margin-top: 16px;
  color: var(--teal-100);
}
.checkbox-label input { width: auto; margin-top: 3px; }

.info-block { margin-bottom: 24px; }
.info-block a { color: #6fd7de; }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .hero-content h1 { font-size: 2rem; }
}
