/* =============================================
   SIMPLE STEP TECH CO. v2.0 – Senior-Friendly Stylesheet
   Inspired by AARP, Medicare, SSA design patterns
   High contrast · Large fonts · Clear hierarchy
   ============================================= */

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

:root {
  /* Senior-Friendly "Warm Pacific" Palette */
  --navy:         #1D568F;   /* Warmer royal blue — trustworthy, less cold than old navy */
  --navy-dark:    #153F6A;   /* Hover / darker */
  --navy-light:   #EBF3FA;   /* Light warm blue tint */
  --red:          #1E7B4D;   /* Forest Green CTAs — calming, "go-ahead" energy, no alarm */
  --red-dark:     #155C39;   /* Hover forest green */
  --red-light:    #E8F5EE;   /* Soft green tint for badges */
  --sky:          #0F6CB8;   /* Accent blue — links & focus */
  --sky-light:    #E3EFFC;   /* Light sky tint */
  --green:        #1E7B4D;   /* Same as new "red" — consistent checkmarks */
  --text:         #1C1917;   /* Warm near-black — easier on aging eyes */
  --text-muted:   #4D4740;   /* Warm muted text, still high contrast */
  --bg:           #FEFDF8;   /* Warm white — cream tint, easier than pure white */
  --bg-light:     #F4EFE7;   /* Warm cream for alternating sections */
  --bg-navy:      #1D568F;   /* Navy sections */
  --border:       #C8BEB6;   /* Warm gray border */
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px  rgba(29, 86, 143, 0.10);
  --shadow:       0 4px 20px rgba(29, 86, 143, 0.14);
  --shadow-lg:    0 8px 36px rgba(29, 86, 143, 0.20);
  --transition:   0.22s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 20px; /* Larger base — AARP uses ~18-20px; key for seniors */
}

body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

/* Focus styles — critical for keyboard/accessibility */
:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Utility ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.hidden { display: none !important; }

/* =============================================
   BUTTONS — Large, clear, high-contrast
   AARP uses 44px+ touch targets; we use 54px+
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  min-height: 54px; /* WCAG touch target */
  letter-spacing: 0.01em;
  text-decoration: none;
}

.btn-large {
  padding: 18px 38px;
  font-size: 1.1rem;
  min-height: 60px;
}

/* Primary — Red (AARP-style CTA) */
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.30);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200, 16, 46, 0.40);
}

/* Phone button — Navy */
.btn-phone {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(27, 58, 107, 0.25);
}
.btn-phone:hover, .btn-phone:focus-visible {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}

/* Outline — Navy border */
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  min-height: 54px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-navy:hover, .btn-outline-navy:focus-visible {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  font-size: 1.15rem;
  padding: 20px;
  min-height: 64px;
  border-radius: 8px;
}

/* ---- Sections ---- */
.section { padding: 88px 0; }
.section-light { background: var(--bg-light); }
.section-navy  { background: var(--navy); }

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

.section-header-light h2,
.section-header-light p { color: #fff; }

.section-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red-dark);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.section-tag-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}


/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--navy);
  color: #fff;
  padding: 10px 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.top-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: #FFD566;
  font-weight: 800;
  text-decoration: underline;
  font-size: 1rem;
}

.top-bar-right { color: rgba(255,255,255,0.75); }


/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg);
  border-bottom: 3px solid var(--navy);
  transition: box-shadow var(--transition);
}

#navbar.scrolled {
  box-shadow: var(--shadow);
}

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

.logo {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo span { color: var(--red); }

#nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--navy-light);
}

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 3px 12px rgba(200,16,46,0.28);
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
  min-width: 48px;
  min-height: 48px;
}


/* =============================================
   HERO — Large, clear, immediately actionable
   ============================================= */
.hero {
  padding: 72px 28px 80px;
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-content { flex: 1; max-width: 600px; }

.hero-badge {
  display: inline-block;
  background: var(--navy-light);
  color: var(--navy);
  border: 2px solid var(--border);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 22px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--red);
  border-bottom: 5px solid #FFD566;
  padding-bottom: 2px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-image {
  flex: 1;
  max-width: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: 320px; height: 320px;
  background: linear-gradient(135deg, var(--navy-light), var(--sky-light));
  border-radius: 50%;
  border: 4px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-emoji { font-size: 8rem; line-height: 1; }

.hero-card {
  position: absolute;
  background: #fff;
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  z-index: 2;
  bottom: 24px;
  left: -24px;
  min-width: 280px;
  max-width: 300px;
  /* Static — no animation (reduces distraction for seniors) */
}

.card-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }

.card-text { display: flex; flex-direction: column; gap: 4px; }
.card-text strong { font-size: 0.88rem; font-weight: 800; color: var(--navy); line-height: 1.4; }
.card-text span   { font-size: 0.8rem; color: var(--text-muted); font-weight: 700; }


/* =============================================
   HOW IT WORKS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.step-card {
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  color: #fff;
  position: relative;
  transition: background var(--transition);
}

.step-card:hover {
  background: rgba(255,255,255,0.16);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.30);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  margin-top: 10px;
  display: block;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #fff;
}

.step-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-weight: 600;
}

.step-card strong { color: #FFD566; }

.steps-cta {
  text-align: center;
}


/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 4-topic layout — clean 2×2 grid */
.services-grid-4 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--navy);
}

.service-card-featured {
  border: 3px solid var(--navy);
  background: var(--navy-light);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 5px 18px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 10px rgba(200,16,46,0.30);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.service-card ul { display: flex; flex-direction: column; gap: 7px; }

.service-card ul li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  font-weight: 700;
  line-height: 1.5;
}

.service-card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.82rem;
}


/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

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

.pricing-featured {
  border: 3px solid var(--navy);
  background: var(--navy-light);
  transform: scale(1.03);
}

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

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 5px 22px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(200,16,46,0.30);
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--navy);
}

.price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 14px;
}

.dollar { font-size: 1.6rem; vertical-align: super; }
.per    { font-size: 0.95rem; color: var(--text-muted); font-weight: 700; }

.pricing-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 600;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.pricing-features li::before { content: none; }

.check {
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-top: 1px;
}

.pricing-banner {
  margin-top: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 36px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.pricing-banner strong { color: #FFD566; font-weight: 900; }


/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-top: 5px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

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

.stars {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #F59E0B;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 600;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  font-size: 1.8rem;
  width: 54px; height: 54px;
  background: var(--navy-light);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 900;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 700;
}


/* =============================================
   ABOUT
   ============================================= */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.85;
  font-weight: 600;
}

.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
}

.stat strong {
  font-size: 2rem;
  font-weight: 900;
  color: #FFD566;
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}

.team-cards h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 22px;
  color: var(--navy);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.team-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--navy);
  transform: translateY(-3px);
}

.team-avatar {
  font-size: 2.4rem;
  margin-bottom: 10px;
  display: block;
}

.team-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 2px;
}

.team-card span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 600;
}


/* =============================================
   FAQ
   ============================================= */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  color: #fff;
  transition: background var(--transition);
}

.faq-item:hover {
  background: rgba(255,255,255,0.16);
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #FFD566;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.78;
  font-weight: 600;
}

.faq-item strong { color: #FFD566; }


/* =============================================
   BOOKING — Acuity Embed
   ============================================= */
.booking-wrapper { max-width: 900px; margin: 0 auto; }

.acuity-embed-wrapper {
  background: var(--bg);
  border: 2px solid var(--border);
  border-top: 5px solid var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.acuity-embed-wrapper iframe {
  display: block;
  min-height: 800px;
}

/* ---- Phone call option above embed ---- */
.booking-phone-option {
  background: var(--navy-light);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.phone-option-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.phone-option-text {
  flex: 1;
  min-width: 200px;
}

.phone-option-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 2px;
}

.phone-option-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.booking-divider {
  text-align: center;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 700;
  position: relative;
}

.booking-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.booking-divider span {
  background: var(--bg);
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.booking-form {
  background: var(--bg);
  border: 2px solid var(--border);
  border-top: 5px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: var(--shadow);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.form-row .form-group { margin-bottom: 0; }

label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.required { color: var(--red); }
.optional { color: var(--text-muted); font-size: 0.8rem; font-weight: 600; }

.field-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: -2px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
  padding: 14px 18px;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  min-height: 52px; /* Large touch targets */
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(27, 58, 107, 0.12);
  background: #fff;
}

input.error,
select.error,
textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.10);
}

textarea { resize: vertical; min-height: 120px; line-height: 1.7; }

.checkbox-group { margin-bottom: 28px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.checkbox-label input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}

.form-note {
  text-align: center;
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.7;
}

.form-note a { color: var(--navy); font-weight: 800; text-decoration: underline; }

/* Success message */
.booking-success {
  background: var(--bg);
  border: 3px solid var(--navy);
  border-top: 6px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 72px 52px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.success-icon { font-size: 5rem; margin-bottom: 20px; }

.booking-success h3 {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
}

.booking-success p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.8;
  font-weight: 600;
}

.booking-success p a { color: var(--navy); font-weight: 800; text-decoration: underline; }
.booking-success button { margin-top: 28px; }


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-dark);
  color: #C8D5E8;
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  color: #fff !important;
  font-size: 1.7rem;
  display: block;
  margin-bottom: 16px;
}

.footer-logo span { color: #FFD566 !important; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 600;
  color: #A8BEDC;
}

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

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #FFD566;
  text-decoration: underline;
  transition: color var(--transition);
}

.footer-phone:hover { color: #fff; }

.footer-contact a:not(.footer-phone) {
  font-size: 0.9rem;
  color: #A8BEDC;
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition);
}

.footer-contact a:not(.footer-phone):hover { color: #fff; }

.footer-contact span {
  font-size: 0.88rem;
  color: #A8BEDC;
  font-weight: 600;
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: #A8BEDC;
  margin-bottom: 10px;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-links a:hover { color: #FFD566; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(168,190,220,0.7);
  font-weight: 600;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  html { font-size: 19px; }

  .services-grid,
  .services-grid-4,
  .pricing-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid .step-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }

  .pricing-featured { transform: none; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 18px; }

  .hamburger { display: flex; }

  #nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(27,58,107,0.97);
    padding: 90px 28px 36px;
    gap: 6px;
    z-index: 998;
    overflow-y: auto;
  }

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

  .nav-link {
    color: #fff;
    font-size: 1.1rem;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    min-height: 56px;
  }

  .nav-link:hover, .nav-link.active {
    background: rgba(255,255,255,0.12);
    color: #FFD566;
  }

  .nav-cta {
    color: #fff !important;
    background: var(--red);
    font-size: 1.1rem;
    min-height: 56px;
    margin-top: 8px;
  }

  .hero {
    flex-direction: column;
    padding: 40px 24px 60px;
    gap: 36px;
  }

  .hero h1 { font-size: 2.4rem; }
  .hero-image { display: none; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid .step-card:last-child { grid-column: auto; max-width: none; }

  .services-grid,
  .services-grid-4,
  .pricing-grid,
  .testimonials-grid,
  .faq-grid { grid-template-columns: 1fr; }

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

  .booking-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .booking-phone-option {
    flex-direction: column;
    text-align: center;
  }

  .section-header h2 { font-size: 1.8rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { gap: 14px; }

  .top-bar-right { display: none; }
  .top-bar-inner { justify-content: center; }
  .font-size-controls { display: none; }
}


/* =============================================
   FONT SIZE TOGGLE (in top bar)
   ============================================= */
.top-bar-right-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.font-size-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.font-size-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 4px;
}

.font-btn {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  transition: all 0.2s;
  min-height: 30px;
  padding: 2px 9px;
  line-height: 1.4;
}
.font-btn[data-size="20"] { font-size: 0.78rem; }
.font-btn[data-size="22"] { font-size: 0.90rem; }
.font-btn[data-size="25"] { font-size: 1.02rem; }

.font-btn.active,
.font-btn:hover,
.font-btn:focus-visible {
  background: rgba(255,255,255,0.25);
  border-color: #FFD566;
  color: #FFD566;
}


/* =============================================
   FLOATING CALL BUTTON (bottom-right corner)
   ============================================= */
.floating-call-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--red);
  color: #fff;
  padding: 15px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(30, 123, 77, 0.45);
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s ease;
  min-height: 54px;
  letter-spacing: 0.01em;
}

.floating-call-btn:hover,
.floating-call-btn:focus-visible {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30, 123, 77, 0.50);
}

@media (max-width: 480px) {
  .floating-call-btn {
    bottom: 16px;
    right: 16px;
    padding: 13px 20px;
    font-size: 0.92rem;
  }
}


/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background var(--transition);
}

.faq-item:hover {
  background: rgba(255,255,255,0.14);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: #FFD566;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.4;
  transition: all var(--transition);
  min-height: 56px;
}

.faq-question:hover,
.faq-question:focus-visible {
  color: #fff;
}

.faq-question:focus-visible {
  outline: 3px solid #FFD566;
  outline-offset: -3px;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
  color: rgba(255,255,255,0.70);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 22px;
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
  line-height: 1.78;
  font-weight: 600;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer strong { color: #FFD566; }
