/* Reset */
* {
  box-sizing: border-box;
}

/* Base */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  color: #1f2933;
  line-height: 1.6;
  background-color: #ffffff;
}

/* Layout */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

/* Logo — base (homepage + default) */
.logo-img {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
}


/* Hero */
.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text-content {
  flex: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 2rem;
  color: #4b5563;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Buttons */
.cta-button,
button {
  font-family: inherit;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.cta-button:hover,
button:hover {
  background-color: #1e4ed8;
}

/* Sections */
section {
  padding: 3rem 0;
}

h2 {
  margin-bottom: 1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.service-card {
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #ffffff;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Forms */
form {
  max-width: 500px;
}

label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-family: inherit;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e7eb;
  margin-top: 5rem;
  padding: 2rem 0;
  background-color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-left {
  text-align: left;
  color: #6b7280;
}

.footer-brand {
  color: #2563eb;
  font-weight: 600;
}

.footer-center {
  text-align: center;
  color: #4b5563;
  font-weight: 500;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-logo {
  max-width: 120px;
  height: auto;
}

/* Mobile */
@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
    margin-top: 0.5rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-tagline {
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    text-align: center;
    margin-top: 2rem;
  }
}
/*how it works*/
/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.step-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.step-number {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.step-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* =========================
   Intake Page (Scoped Styles)
   ========================= */

.intake-section {
  min-height: 100vh;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f7fb;
}

.intake-card {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  padding: 40px;
  border-radius: 12px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.10),
    0 10px 25px rgba(0, 0, 0, 0.06);
}

.intake-card .form-header {
  text-align: center;
  margin-bottom: 30px;
}

.intake-card .form-header h1 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.intake-card .form-header p {
  color: #6b7280;
  margin: 0;
}

#intakeForm {
  width: 100%;
}

#intakeForm input,
#intakeForm select,
#intakeForm textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  background: #ffffff;
  font-family: inherit;
}

#intakeForm textarea {
  min-height: 140px;
  resize: vertical;
}

#intakeForm input:focus,
#intakeForm select:focus,
#intakeForm textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.form-logo {
  display: block;
  margin: 0 auto 25px;
  width: 130px;
  height: auto;
}

/* Thank You Page */

.thankyou-section {
  min-height: 100vh;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f7fb;
}

.thankyou-card {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 12px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.10),
    0 10px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.thankyou-card h1 {
  margin-bottom: 20px;
}

.thankyou-card p {
  color: #4b5563;
  margin-bottom: 16px;
}
.thankyou-logo {
  max-width: 140px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}