/* =========================
   RESET & BASE
   ========================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: #fdfdfd;
  color: #333;
}
.tiny { font-size: 0.9rem; color: #777; }

/* =========================
   HEADER
   ========================= */
.site-header {
  text-align: center;
  padding: 22px 16px 14px;
}
.site-header img { display: block; margin: 0 auto 12px; }
.site-header h1 {
  font-size: 2.2rem;
  margin-bottom: 6px;
  color: #2c3e50;
}
.site-header p { font-size: 1.06rem; color: #555; }
.site-header.small { padding: 16px 16px 8px; }
.site-header.small h1 { font-size: 1.8rem; }

/* =========================
   NAVIGATION
   ========================= */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: #2c3e50; padding: 12px 16px;
  display: flex; align-items: center; gap: 16px;
}
.site-nav .nav-list {
  list-style: none; display: flex; gap: 28px; margin-left: auto;
}
.site-nav a {
  color: #fff; text-decoration: none;
  font-weight: 500; font-size: 1.05rem;
}
.site-nav a:hover { color: #f39c12; }
.site-nav a.active {
  border-bottom: 2px solid #f39c12; padding-bottom: 2px;
}
.nav-cta {
  margin-left: 8px;
  background: #f39c12; color: #fff;
  padding: 8px 14px; border-radius: 8px;
  font-weight: 700; text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover { background: #d35400; }
.menu-toggle {
  display: none; background: transparent; color: #fff;
  border: 0; font-size: 1.6rem; cursor: pointer;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  position: relative;
  height: 70vh;
  background: url("../img/hero.jpg") no-repeat center center/cover;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,.4);
}
.hero-content {
  position: relative; z-index: 1; max-width: 800px; padding: 0 20px;
}
.hero-content h2 {
  font-size: 3rem; margin-bottom: 20px; font-weight: 800;
}
.hero-content p { font-size: 1.25rem; margin-bottom: 26px; }
.cta-btn {
  display: inline-block; padding: 12px 24px;
  background: #f39c12; color: #fff; font-size: 1.1rem;
  font-weight: 600; text-decoration: none; border-radius: 8px;
  transition: background .2s ease;
}
.cta-btn:hover { background: #d35400; }

/* =========================
   CONTENT SECTIONS
   ========================= */
section { max-width: 900px; margin: 40px auto; text-align: center; padding: 0 20px; }
section img {
  display: block; margin: 0 auto 18px;
  max-width: 300px; width: 100%; height: auto;
  border-radius: 8px;
}

/* FOCUS PORTRAIT */
.focus-portrait {
  display: block; margin: 20px auto;
  max-width: 480px; width: 100%; height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* =========================
   CARDS (services grid)
   ========================= */
.cards {
  max-width: 1100px; margin: 28px auto; padding: 0 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.card {
  background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 18px;
  text-align: left; box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.card h3 { color: #2c3e50; margin-bottom: 8px; font-size: 1.2rem; }
.card p { color: #555; }

/* =========================
   CONTACT FORM
   ========================= */
.contact-form { display: grid; gap: 14px; margin-top: 14px; }
.contact-form label {
  text-align: left; display: grid; gap: 6px;
  color: #2c3e50; font-weight: 600;
}
.contact-form input, .contact-form textarea {
  padding: 10px 12px; border: 1px solid #ccc; border-radius: 8px;
  font-size: 1rem; width: 100%;
}
.contact-form button {
  padding: 12px 18px; border: 0; border-radius: 8px;
  background: #2c3e50; color: #fff; font-weight: 700; cursor: pointer;
}
.contact-form button:hover { background: #1f2e3b; }

/* Calendar wrapper */
.calendar-wrap { max-width: 900px; margin: 20px auto; }

/* =========================
   FOOTER
   ========================= */
.site-footer {
  text-align: center; padding: 22px;
  border-top: 1px solid #e8e8e8; color: #777;
}
.site-footer a { color: #2c3e50; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1200px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .site-nav { justify-content: space-between; }
  .site-nav .nav-list {
    position: absolute; left: 0; right: 0; top: 56px;
    background: #2c3e50; display: none; flex-direction: column; gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .site-nav .nav-list.show { display: flex; }
  .site-nav .nav-list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .site-nav .nav-list a { display: block; padding: 12px 16px; }
  .nav-cta { display: none; }

  .hero { height: 52vh; }
  .hero-content h2 { font-size: 2.1rem; }
  .hero-content p { font-size: 1rem; }

  .cards { grid-template-columns: 1fr; }
  .focus-portrait { max-width: 420px; }
}
@media (max-width: 480px) {
  .hero { height: 42vh; }
  .hero-content h2 { font-size: 1.6rem; }
  .hero-content p { font-size: 0.95rem; }
  .focus-portrait { max-width: 360px; }
}

/* Basic fallback */
header { text-align: center; }
nav ul { list-style: none; }
/* Center appointment form layout */
.appointment-container {
  max-width: 600px;         /* keep it readable */
  margin: 60px auto;        /* centers horizontally */
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: "Segoe UI", Arial, sans-serif;
}

.appointment-container h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
}

.appointment-container label {
  font-weight: 600;
  display: block;
  margin-top: 12px;
}

.appointment-container input,
.appointment-container select {
  width: 100%;
  padding: 8px 10px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.appointment-container input[type="submit"],
.appointment-container button {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background-color: #2c7a7b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.appointment-container input[type="submit"]:hover,
.appointment-container button:hover {
  background-color: #205e5f;
}
/* Zen Button Style */
<h3 style="text-align:center; color:#4caf50; margin-top:30px;">
  Begin Your Secure Video Session
</h3>
.zen-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #4caf50, #81c784);
  border: none;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

.zen-button:hover {
  background: linear-gradient(135deg, #43a047, #66bb6a);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(67, 160, 71, 0.4);
}

.zen-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(67, 160, 71, 0.2);
}

/* Dashboard alignment */
.session-controls {
  text-align: center;
  margin-top: 40px;
}
