/* =============================================================================
   styles.css — Main Stylesheet
   =============================================================================
   Written mobile-first. That means styles are for small screens by default,
   and @media (min-width: ...) queries add desktop styles on top.

   Why mobile-first for SEO? Google uses mobile-first indexing — it crawls
   and ranks your site based on how it looks/performs on mobile. If your mobile
   experience is bad, your rankings suffer even for desktop searches.

   No CSS framework (Bootstrap, Tailwind) is used here intentionally.
   Frameworks add 30-100KB of unused CSS. A hand-written stylesheet like this
   can be under 15KB, which loads much faster — better Core Web Vitals scores,
   which directly impact Google rankings.
   ============================================================================= */

/* =============================================================================
   1. CSS CUSTOM PROPERTIES (Variables)
   Think of these as "named colors" you can reuse everywhere. Change one value
   here and it updates across the whole site.
   ============================================================================= */
:root {
  /* Colors */
  --blue:          #1a4e8f;   /* Primary brand blue — professional, trustworthy */
  --blue-dark:     #0f3068;   /* Hover state for blue elements */
  --blue-light:    #e8f0fd;   /* Light blue for backgrounds */
  --orange:        #e05c1a;   /* CTA color — urgency, action */
  --orange-dark:   #c44e14;   /* Hover state for orange */
  --red:           #dc2626;   /* Emergency callouts */
  --green:         #16a34a;   /* Success states, checkmarks */
  --text:          #111827;   /* Main body text */
  --text-muted:    #6b7280;   /* Secondary text, captions */
  --bg:            #ffffff;   /* Page background */
  --bg-light:      #f8fafc;   /* Alternate section backgrounds */
  --border:        #e5e7eb;   /* Dividers, borders */

  /* Typography */
  /* System font stack — loads instantly, no external request needed */
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale */
  --space-xs:  0.25rem;   /*  4px */
  --space-sm:  0.5rem;    /*  8px */
  --space-md:  1rem;      /* 16px */
  --space-lg:  1.5rem;    /* 24px */
  --space-xl:  2rem;      /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 5rem;      /* 80px */

  /* Layout */
  --max-width: 1100px;
  --radius:    6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
}

/* =============================================================================
   2. RESET & BASE
   ============================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover { text-decoration: underline; }

ul { list-style: none; }

/* =============================================================================
   3. LAYOUT UTILITIES
   ============================================================================= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--bg-light);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}

.section__subtitle {
  margin-top: var(--space-sm);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================================
   4. HEADER
   ============================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  gap: var(--space-md);
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.logo__tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--orange);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.header-phone:hover {
  background: var(--orange-dark);
  text-decoration: none;
}

.header-nav {
  display: none;
}

.header-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: #fff;
  text-decoration: none;
}

/* Hamburger menu — mobile only */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--blue-dark);
  padding: var(--space-md) var(--space-lg);
  gap: var(--space-sm);
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* =============================================================================
   5. HERO SECTION
   The most important part of the page — first thing visitors see.
   Goal: Get them to call or scroll to the form immediately.
   ============================================================================= */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1e6bbf 100%);
  color: #fff;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay for visual depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: var(--space-xs) var(--space-md);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.95);
  width: fit-content;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__title em {
  color: #f9b84e;
  font-style: normal;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem var(--space-xl);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(224, 92, 26, 0.4);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  text-decoration: none;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn--full { width: 100%; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

.hero__trust-item svg {
  color: #4ade80;
  flex-shrink: 0;
}

/* =============================================================================
   6. TRUST BAR (Stats Strip)
   Social proof — numbers make people feel confident in making a decision.
   ============================================================================= */
.trust-bar {
  background: var(--blue-dark);
  color: #fff;
  padding: var(--space-xl) 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.trust-bar__item {}

.trust-bar__number {
  font-size: 2rem;
  font-weight: 900;
  color: #f9b84e;
  display: block;
  line-height: 1;
}

.trust-bar__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================================================
   7. SERVICES SECTION
   Each card links to a dedicated service page — important for SEO.
   Each service page targets different keyword variations.
   ============================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.25s;
  text-decoration: none;
  color: var(--text);
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform 0.25s;
  transform-origin: bottom;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  text-decoration: none;
}

.service-card:hover::before { transform: scaleY(1); }

.service-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--blue);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card--emergency {
  background: #fef2f2;
  border-color: #fca5a5;
}

.service-card--emergency::before { background: var(--red); }
.service-card--emergency .service-card__title { color: var(--red); }
.service-card--emergency:hover { border-color: var(--red); }

/* =============================================================================
   8. HOW IT WORKS
   Reduces friction by showing the process is simple. Important for conversion.
   ============================================================================= */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: relative;
}

.step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step__number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.step__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =============================================================================
   9. SERVICE AREAS
   Mentioning specific neighborhoods is critical for local SEO. Google looks
   for geographic specificity to determine local relevance.
   ============================================================================= */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.area-tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  color: var(--text);
  text-align: center;
  transition: all 0.2s;
}

.area-tag:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}

/* =============================================================================
   10. LEAD CAPTURE FORM
   The centerpiece of the site. Clear, simple, not intimidating.
   ============================================================================= */
.form-section {
  background: var(--blue);
  color: #fff;
}

.form-section .section__title { color: #fff; }
.form-section .section__subtitle { color: rgba(255,255,255,0.8); }

.lead-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.form-label .required { color: var(--red); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.75rem var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 78, 143, 0.15);
}

.form-control.error { border-color: var(--red); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

/* Urgency radio buttons — more visual than a select */
.urgency-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.urgency-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.urgency-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.urgency-option:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-light);
}

.urgency-option--emergency:has(input:checked) {
  border-color: var(--red);
  background: #fef2f2;
}

.urgency-icon { font-size: 1.2rem; }

.urgency-label { font-weight: 600; font-size: 0.95rem; }
.urgency-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 1px; }

.form-error {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: var(--space-xs);
  display: none;
}

.form-error.visible { display: block; }

.form-submit-area { margin-top: var(--space-xl); }

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

/* Form success/error messages */
.form-message {
  display: none;
  padding: var(--space-md);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}

.form-message.success {
  display: block;
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}

.form-message.error-msg {
  display: block;
  background: #fef2f2;
  color: var(--red);
  border: 1px solid #fca5a5;
}

/* =============================================================================
   11. TESTIMONIALS
   ============================================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.testimonial__stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial__text {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.testimonial__author {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* =============================================================================
   12. FAQ — Accordion
   FAQ content targets long-tail search queries ("how much does a plumber
   cost in Seattle?"). Google often shows these directly in search results
   as "People Also Ask" rich results, which drives extra traffic.
   ============================================================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--bg);
  border: none;
  padding: var(--space-lg);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--bg-light); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-weight: 700;
}

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

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

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================================================
   13. FOOTER
   ============================================================================= */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: var(--space-2xl) 0 var(--space-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo__name { color: #fff; }
.footer-brand .logo__tagline { color: rgba(255,255,255,0.5); }

.footer-brand p {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-heading {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; text-decoration: none; }

/* NAP = Name, Address, Phone — this specific group of info matters for local SEO.
   Keep it consistent everywhere your business appears online. */
.footer-nap {
  font-size: 0.875rem;
  line-height: 2;
}

.footer-nap a { color: rgba(255,255,255,0.65); }
.footer-nap a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================================================
   14. RESPONSIVE — Tablet and up (min-width: 640px)
   ============================================================================= */
@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; }
  .btn--full { width: auto; }
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .urgency-group { flex-direction: row; }
  .urgency-option { flex: 1; flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================================
   15. RESPONSIVE — Desktop (min-width: 1024px)
   ============================================================================= */
@media (min-width: 1024px) {
  .header-nav { display: flex; align-items: center; gap: var(--space-xs); }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .hero__inner { flex-direction: row; align-items: center; gap: var(--space-3xl); }
  .hero__content { flex: 1; }
  .hero__form-wrap { flex: 0 0 380px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { gap: 0; }
  .steps--horizontal {
    flex-direction: row;
    gap: var(--space-xl);
  }
  .step { flex-direction: column; text-align: center; flex: 1; }
  .step__number { margin: 0 auto var(--space-md); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================================
   16. ACCESSIBILITY & PRINT
   ============================================================================= */

/* Focus styles — important for keyboard navigation accessibility */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  background: var(--orange);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus { top: var(--space-md); }

@media print {
  .site-header, .hero__ctas, .form-section, .site-footer { display: none; }
}

/* =============================================================================
   17. PAGE-SPECIFIC: SERVICE PAGES
   ============================================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: var(--space-2xl) 0;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto var(--space-xl);
}

.content-with-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.content-body h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  margin: var(--space-xl) 0 var(--space-md);
}

.content-body h2:first-child { margin-top: 0; }

.content-body p {
  margin-bottom: var(--space-md);
  line-height: 1.75;
  color: var(--text);
}

.content-body ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.content-body ul li {
  margin-bottom: var(--space-xs);
  color: var(--text);
}

.sidebar-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: 80px;
}

.sidebar-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }

@media (min-width: 1024px) {
  .content-with-sidebar {
    flex-direction: row;
    align-items: flex-start;
  }
  .content-body { flex: 1; }
  .sidebar-card { flex: 0 0 300px; }
}

/* =============================================================================
   18. THANK YOU PAGE
   ============================================================================= */
.thankyou-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: var(--space-3xl) 0;
}

.thankyou-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
}

.thankyou-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
}

.thankyou-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}
