/* ===========================
   BethesdaConcierge — style.css
   =========================== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #1D9E75;
  --green-dark: #0F6E56;
  --green-light: #E1F5EE;
  --amber-light: #FAEEDA;
  --amber-dark: #854F0B;
  --blue-light: #E6F1FB;
  --blue-dark: #185FA5;
  --text-primary: #1a1a1a;
  --text-secondary: #6b7280;
  --text-tertiary: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f9f9f7;
  --border: rgba(0, 0, 0, 0.1);
  --radius-md: 8px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   NAV
   =========================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 0.5px solid var(--border);
  background: var(--bg-primary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.nav-logo span {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.15s !important;
}

.nav-cta:hover {
  opacity: 0.88;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-primary);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-primary);
  border-bottom: 0.5px solid var(--border);
}

.mobile-menu a {
  padding: 1rem 2rem;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 0.5px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

/* ===========================
   HERO
   =========================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 5rem 2rem 4rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  border: 0.5px solid var(--border);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.15s;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--bg-secondary);
}

/* Hero Visual Panel */
.hero-visual {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 0.5px solid var(--border);
}

.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.stat-card {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 0.5px solid var(--border);
}

.stat-card .label {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stat-card .value {
  font-size: 22px;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

.stat-card .sub {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.task-preview {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  border: 0.5px solid var(--border);
  overflow: hidden;
}

.task-header {
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
}

.task-item:last-child {
  border-bottom: none;
}

.task-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green  { background: var(--green); }
.dot-amber  { background: #EF9F27; }
.dot-blue   { background: #378ADD; }

.task-name {
  flex: 1;
  color: var(--text-primary);
}

.task-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 500;
}

.badge-done   { background: var(--green-light);  color: var(--green-dark); }
.badge-active { background: var(--amber-light);  color: var(--amber-dark); }
.badge-new    { background: var(--blue-light);   color: var(--blue-dark); }

/* ===========================
   DIVIDER
   =========================== */
.divider {
  height: 0.5px;
  background: var(--border);
  margin: 0 2rem;
}

/* ===========================
   SERVICES
   =========================== */
.services {
  padding: 5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 2.5rem;
  letter-spacing: -0.3px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.service-card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.service-card:hover {
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.service-icon {
  font-size: 22px;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how {
  padding: 5rem 2rem;
  background: var(--bg-secondary);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.how-inner {
  max-width: 960px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}

.step h3 {
  font-size: 15px;
  font-weight: 500;
}

.step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================
   APPLY TO BECOME A RUNNER
   =========================== */
.apply {
  padding: 5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.apply-inner {
  display: grid;
  gap: 1.5rem;
}

.section-copy {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 2rem;
}

.apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.apply-card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.apply-card h3 {
  font-size: 15px;
  margin-bottom: 0.75rem;
}

.apply-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.apply-form-card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.apply-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 1rem;
}

.payment-info {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.payment-info h3 {
  font-size: 16px;
  margin-bottom: 0.75rem;
}

.payment-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===========================
   BOOKING FORM
   =========================== */
.book {
  padding: 5rem 2rem;
  max-width: 640px;
  margin: 0 auto;
}

.book-card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.book-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.book-card .sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  padding: 14px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  margin-top: 0.75rem;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  opacity: 0.88;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--green-light);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.success-msg i {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

.success-msg p {
  font-size: 14px;
  color: var(--green-dark);
  line-height: 1.6;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  border-top: 0.5px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  background: var(--bg-primary);
}

footer strong {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2.5rem;
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: 34px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .services,
  .how-inner,
  .book {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .book-card {
    padding: 1.5rem;
  }
}
