/* ============================================
   LUSANS COMPANION CARE SERVICES
   Brand Colors from Logo:
   - Gold:        #C5A55A
   - Gold Light:  #D4BA7A
   - Gold Dark:   #A8893E
   - Green:       #1E3A2B
   - Green Light: #2D5A3F
   - Green Pale:  #E8F0EB
   - White:       #FFFFFF
   - Off-white:   #FAFAF8
   - Text:        #1A1A1A
   - Text Light:  #5A5A5A
   ============================================ */

:root {
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --gold-dark: #A8893E;
  --green: #1E3A2B;
  --green-light: #2D5A3F;
  --green-pale: #E8F0EB;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #F7F5F0;
  --text: #1A1A1A;
  --text-light: #5A5A5A;
  --text-lighter: #8A8A8A;
  --border: #E5E5E0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

/* Visually hidden, but available to search engines and screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAVIGATION ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo-img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--green-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  text-align: center;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-block {
  width: 100%;
}

/* ---- SECTION DEFAULTS ---- */

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- ABOUT ---- */

.section-about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--cream);
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.05);
}

.about-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--off-white);
  padding: 24px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.about-badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-text .section-tag { text-align: left; }
.about-text .section-title { text-align: left; }

.about-lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-stat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
}

.about-stat strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}

.about-stat span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-lighter);
}

/* ---- PAIN POINTS ---- */

.section-pain {
  background: var(--cream);
  padding: 80px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pain-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.pain-icon svg {
  width: 100%;
  height: 100%;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- SERVICES ---- */

.section-services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.service-card {
  padding: 40px 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-premium {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FDFBF6 0%, var(--white) 100%);
}

.service-premium-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(197, 165, 90, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.services-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--green-pale);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--green);
  line-height: 1.6;
}

.services-note-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--green);
}

.services-note-icon svg {
  width: 100%;
  height: 100%;
}

/* ---- PRICING ---- */

.section-pricing {
  background: var(--cream);
}

.pricing-rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 560px;
  margin: 0 auto 48px;
  box-shadow: var(--shadow-md);
}

.pricing-rate-figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.pricing-rate-amount {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.pricing-rate-unit {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

.pricing-rate-note {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 420px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-lighter);
}

.pricing-price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.pricing-unit {
  font-size: 0.95rem;
  color: var(--text-lighter);
  margin-left: 4px;
}

.pricing-features {
  flex: 1;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
  padding: 6px 0;
}

.pricing-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.pricing-travel {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 36px 40px;
}

.pricing-travel-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.pricing-travel-inner > div:first-child {
  flex: 1;
}

.pricing-travel h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
}

.pricing-travel p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.pricing-travel-price {
  text-align: center;
  flex-shrink: 0;
}

/* ---- WHY US ---- */

.section-why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-card {
  padding: 44px 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height var(--transition);
}

.why-card:hover::before {
  height: 100%;
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.why-card:hover .why-number {
  color: rgba(197, 165, 90, 0.2);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- QUOTE ---- */

.section-quote {
  background: var(--green);
  padding: 80px 0;
}

.quote-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  width: 48px;
  height: 48px;
  color: var(--gold);
  opacity: 0.3;
  margin: 0 auto 24px;
  display: block;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 20px;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ---- PROCESS ---- */

.section-process {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.process-line {
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- FAQ ---- */

.section-faq {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--green);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- CONTACT ---- */

.section-contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; }

.contact-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

.contact-detail span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-lighter);
}

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.15);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-lighter);
}

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

.form-radios {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  cursor: pointer;
}

.form-radio input[type="radio"] {
  width: auto;
  accent-color: var(--gold);
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-lighter);
  margin-top: 12px;
}

/* ---- FOOTER ---- */

.footer {
  background: var(--green);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-small {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---- ANIMATIONS ---- */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-text .section-tag,
  .about-text .section-title {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }

  .pricing-travel-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 400px;
    margin: 0 auto;
  }

  .process-line {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info .section-tag,
  .contact-info .section-title {
    text-align: center;
  }

  .contact-lead {
    text-align: center;
  }

  .contact-details {
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .section-pain,
  .section-quote {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* Tighten oversized desktop card padding on phones */
  .pain-card,
  .service-card,
  .why-card {
    padding: 28px 24px;
  }

  /* "What makes us different" runs very airy on mobile — tighten it */
  .why-grid {
    gap: 16px;
  }

  .why-card {
    padding: 24px 22px;
  }

  .why-number {
    font-size: 2rem;
    margin-bottom: 6px;
    color: rgba(168, 137, 62, 0.45);
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-rate {
    padding: 28px 24px;
    margin-bottom: 32px;
  }

  .pricing-travel {
    padding: 28px 24px;
  }

  .about-stats {
    margin-top: 24px;
    padding-top: 24px;
    gap: 16px;
  }

  .about-image {
    max-width: 300px;
  }

  /* On mobile: no overlap — a single-line green box centered under the logo */
  .about-badge {
    position: static;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin: 18px auto 0;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
  }

  .about-badge-number {
    font-size: 1.1rem;
    margin-top: 0;
  }

  .about-badge-text {
    font-size: 0.68rem;
    margin-top: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a {
    border-bottom: none;
    text-align: center;
    margin-top: 8px;
  }

  .nav-cta {
    display: block !important;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .form-radios {
    flex-direction: column;
    gap: 10px;
  }
}
