/* ============================================
   Ryan Ras Lawn & Landscape — style.css
   Mobile-first | Raleway | No frameworks
   ============================================ */

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

:root {
  --teal:        #0d7a63;
  --teal-dark:   #085448;
  --teal-light:  #e6f4f1;
  --orange:      #e8792b;
  --orange-dark: #c9611a;
  --dark:        #1a1a1a;
  --gray:        #6b7280;
  --cream:       #f8f6f1;
  --white:       #ffffff;
  --light-border: rgba(0,0,0,0.07);

  --section-px-mobile: 1rem;
  --section-py-mobile: 3rem;
  --section-px: 2.5rem;
  --section-py: 5rem;

  --nav-height: 68px;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-pill: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: 'Inter', sans-serif; }

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--section-px-mobile);
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--gray);
  max-width: 520px;
  margin: 0.75rem auto 0;
  text-align: center;
}

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

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
}
.btn-white:hover {
  background: #f0f0f0;
  color: var(--orange-dark);
  transform: translateY(-1px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--dark);
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}

.nav-brand-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.nav-cta {
  display: none;
  background: var(--orange);
  color: var(--white) !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.nav-drawer.open {
  right: 0;
}

.nav-drawer a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-border);
}

.nav-drawer a:hover,
.nav-drawer a.active {
  color: var(--teal);
}

.nav-drawer .drawer-cta {
  display: block;
  margin-top: 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-btn);
  text-align: center;
}

.nav-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

.nav-drawer-overlay.open {
  display: block;
}

body.nav-open {
  overflow: hidden;
}

/* --- Hero Section --- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: calc(var(--nav-height) + 2rem) var(--section-px-mobile) 3rem;
  background: url('../images/lawn-care-eastern-iowa-sunrise.jpg') center center / cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-split {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  text-align: left;
  max-width: 560px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  max-width: 400px;
}

.hero-form-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.hero-form-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.hero-form-group {
  margin-bottom: 0.75rem;
}

.hero-form-group input,
.hero-form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: #f5f5f5;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-btn);
  outline: none;
  transition: border-color 0.2s;
}

.hero-form-group input:focus,
.hero-form-group select:focus {
  border-color: var(--teal);
  background: var(--white);
}

.hero-form-group input::placeholder {
  color: var(--gray);
}

.hero-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(0,0,0,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.hero-form-submit {
  width: 100%;
  padding: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s;
}

.hero-form-submit:hover {
  background: var(--orange-dark);
}

.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--teal);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Page Hero Banner (inner pages) --- */
.page-hero {
  background: var(--teal-dark);
  color: var(--white);
  text-align: center;
  padding: calc(var(--nav-height) + 2.5rem) var(--section-px-mobile) 2.5rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto;
}

/* --- Sections --- */
.section {
  padding: var(--section-py-mobile) var(--section-px-mobile);
}

.section--cream { background: var(--cream); }
.section--dark { background: var(--dark); color: var(--white); }
.section--teal-dark { background: var(--teal-dark); color: var(--white); }
.section--orange { background: var(--orange); color: var(--white); }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--dark);
  padding: 2rem var(--section-px-mobile);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.trust-stat-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
}

.trust-stat-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* --- Before & After --- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ba-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.ba-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.ba-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ba-badge--before {
  background: var(--white);
  color: var(--dark);
}

.ba-badge--after {
  background: var(--teal);
  color: var(--white);
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.testimonial-location {
  font-size: 13px;
  color: var(--gray);
}

/* --- Services Grid --- */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.services-grid .service-card {
  width: 100%;
  flex-shrink: 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.25rem;
}

.service-card-body h3 {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-card-body p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.service-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
}

.service-card-link:hover {
  color: var(--teal-dark);
}

/* --- Why Ryan --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.why-item {
  text-align: center;
}

.why-icon {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.why-item h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.why-item p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

/* --- Quote Form (dark bg) --- */
.form-section { background: var(--dark); }

.quote-form {
  max-width: 560px;
  margin: 2rem auto 0;
}

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

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-btn);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: var(--orange-dark);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--teal-light);
  border-radius: var(--radius-card);
  color: var(--teal-dark);
}

.form-success h3 {
  font-family: 'Inter', sans-serif;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--teal-dark);
  font-size: 14px;
}

/* Light form variant (contact page) */
.form-light .form-group label {
  color: var(--dark);
}

.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.15);
}

.form-light .form-group input:focus,
.form-light .form-group select:focus,
.form-light .form-group textarea:focus {
  border-color: var(--teal);
}

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

.form-light .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(0,0,0,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.form-light .form-group select option {
  background: var(--white);
  color: var(--dark);
}

/* --- CTA Band --- */
.cta-band {
  background: var(--orange);
  text-align: center;
  padding: var(--section-py-mobile) var(--section-px-mobile);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 15px;
}

/* --- Service Area --- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.area-cities li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 15px;
  color: var(--dark);
}

.area-check {
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.area-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 280px;
}

.area-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-quote {
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--teal-dark);
  font-size: 16px;
  line-height: 1.7;
}

/* Stats bar (about page) */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* --- Contact Info --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info-block {
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-card);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-icon {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contact-info-item strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 14px;
  color: var(--gray);
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem var(--section-px-mobile) 1.5rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.footer-tagline {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 1rem;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray);
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-contact-info p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 0.35rem;
}

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

/* --- Services Page Category Sections --- */
.service-category {
  margin-bottom: 3rem;
}

.service-category:last-child {
  margin-bottom: 0;
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

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

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

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

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* --- Scroll 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);
}

/* --- Sticky Mobile CTA --- */
@media (max-width: 767px) {
  .sticky-cta {
    display: block;
  }
  .footer {
    padding-bottom: 4rem;
  }
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  padding: 0.75rem 1rem;
  text-align: center;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}

.sticky-cta a {
  display: block;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

/* Honeypot */
.gotcha { display: none !important; }

/* ============================================
   Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }

  .section {
    padding: 4.5rem 3rem;
  }

  .trust-bar {
    padding: 2.5rem 3rem;
  }

  .hero-split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-left {
    flex: 1;
    max-width: 520px;
  }

  .hero-right {
    flex-shrink: 0;
    width: 380px;
  }

  .hero-form-card {
    max-width: 380px;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-card img {
    height: 320px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card {
    width: calc(50% - 0.625rem);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .about-img img {
    height: 400px;
  }

  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .cta-band {
    padding: 4.5rem 3rem;
  }
}

/* ============================================
   Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0 var(--section-px);
  }

  .section {
    padding: var(--section-py) var(--section-px);
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-block;
  }

  .hamburger {
    display: none;
  }

  .nav-inner {
    padding: 0 1.5rem;
  }

  .trust-bar {
    padding: 2.5rem var(--section-px);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid .service-card {
    width: calc(25% - 0.9375rem);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .cta-band {
    padding: var(--section-py) var(--section-px);
  }

  .page-hero {
    padding: calc(var(--nav-height) + 3.5rem) var(--section-px) 3rem;
  }
}
