/* ================================================================
   FRUITLAND, ID — Service Area Page Styles
   Idaho Build Group | Phase 6 | Premium Tier | ≥400 lines
   ================================================================ */

/* ── 1. HERO ──────────────────────────────────────────────────────── */
.fruitland-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: url('<?php echo $clientPhotos[9]; ?>');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}

.fruitland-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(16, 14, 14, 0.91) 0%,
    rgba(60, 57, 57, 0.68) 55%,
    rgba(43, 43, 42, 0.15) 100%
  );
  z-index: 1;
}

.fruitland-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.90' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.045'/%3E%3C/svg%3E");
  background-size: 190px 190px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.fruitland-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.fruitland-hero .fl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.fruitland-hero .fl-eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.fruitland-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-wrap: balance;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.fruitland-hero h1 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--color-secondary);
}

.fruitland-hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 570px;
  margin-bottom: var(--space-xl);
}

.fruitland-hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.fruitland-bc {
  position: relative;
  z-index: 2;
  margin-top: var(--space-lg);
}

.fruitland-bc ol {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.fruitland-bc a, .fruitland-bc span { font-size: 0.82rem; color: rgba(255,255,255,0.44); transition: color var(--transition); }
.fruitland-bc a:hover { color: rgba(255,255,255,0.82); }
.fruitland-bc .sep { color: rgba(255,255,255,0.24); }
.fruitland-bc .cur { color: rgba(255,255,255,0.72); }

/* ── 2. ANSWER BLOCK ──────────────────────────────────────────────── */
.fruitland-answer {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.fl-answer-card {
  background: var(--color-card-tint-3);
  border-left: 4px solid var(--color-secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--space-xl) var(--space-2xl);
  max-width: 820px;
  margin: 0 auto;
}

.fl-answer-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 800;
  color: var(--color-primary);
  text-wrap: balance;
  margin-bottom: var(--space-sm);
}

.fl-answer-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
}

/* ── 3. LOCAL CONTENT ─────────────────────────────────────────────── */
.fruitland-local {
  padding: var(--space-4xl) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.fruitland-local::before {
  content: 'FRUITLAND';
  position: absolute;
  top: 50%;
  right: -140px;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(43, 43, 42,0.04);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.fl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.fl-img-col {
  position: relative;
}

.fl-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.fl-img-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.fl-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-bg);
}

.fl-img-accent img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.fl-text-col .fl-sect-eyebrow {
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.fl-text-col h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  text-wrap: balance;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.fl-accent-sub {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--color-secondary);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.fl-text-col p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  max-width: 54ch;
}

.fl-facts {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.fl-facts li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.fl-facts li:last-child { border-bottom: none; }
.fl-facts li i, .fl-facts li svg { width: 17px; height: 17px; color: var(--color-secondary); flex-shrink: 0; margin-top: 2px; }

/* ── 4. SERVICES ──────────────────────────────────────────────────── */
.fruitland-services {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-alt);
}

.fruitland-services .fl-svc-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.fruitland-services .fl-svc-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--color-primary);
  text-wrap: balance;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.fruitland-services .fl-svc-header p {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.65;
}

.fl-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.fl-svc-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fl-svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.fl-svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-card-tint-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: background var(--transition);
}

.fl-svc-card:hover .fl-svc-icon { background: rgba(193, 118, 67,0.15); }
.fl-svc-icon i, .fl-svc-icon svg { width: 22px; height: 22px; color: var(--color-primary); transition: color var(--transition); }
.fl-svc-card:hover .fl-svc-icon i { color: var(--color-secondary); }

.fl-svc-card h3 { font-family: var(--font-heading); font-size: 0.93rem; font-weight: 700; color: var(--color-primary); margin-bottom: var(--space-xs); line-height: 1.3; }
.fl-svc-card p { font-size: 0.82rem; color: var(--color-text-light); line-height: 1.55; margin-bottom: var(--space-sm); flex: 1; }
.fl-svc-card a { font-size: 0.84rem; font-weight: 700; color: var(--color-secondary); transition: color var(--transition); }
.fl-svc-card a:hover { color: var(--color-primary); }

/* ── 5. SVG DIVIDER ───────────────────────────────────────────────── */
.fl-divider { display: block; overflow: hidden; line-height: 0; }
.fl-divider svg { display: block; width: 100%; }

/* ── 6. WHY US ────────────────────────────────────────────────────── */
.fruitland-why {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.fruitland-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(193, 118, 67,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.fl-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.fl-why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.fl-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: background var(--transition);
}

.fl-stat:hover { background: rgba(255,255,255,0.08); }

.fl-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.fl-stat-label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.42);
}

.fl-why-text .fl-why-eyebrow { display: inline-block; margin-bottom: var(--space-sm); color: rgba(255,255,255,0.5); }

.fl-why-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-wrap: balance;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.fl-why-text h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 300; color: var(--color-secondary); }
.fl-why-text p { font-size: 0.97rem; line-height: 1.75; color: rgba(255,255,255,0.62); margin-bottom: var(--space-md); max-width: 52ch; }

.fl-reasons {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.fl-reasons li { display: flex; gap: var(--space-md); align-items: flex-start; }

.fl-reason-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(193, 118, 67,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fl-reason-icon i, .fl-reason-icon svg { width: 18px; height: 18px; color: var(--color-secondary); }
.fl-reason-body strong { display: block; font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.88); margin-bottom: 3px; }
.fl-reason-body span { font-size: 0.83rem; color: rgba(255,255,255,0.48); line-height: 1.5; }

/* ── 7. FAQ ───────────────────────────────────────────────────────── */
.fruitland-faq { padding: var(--space-4xl) 0; background: var(--color-bg); }

.fruitland-faq .fl-faq-header { text-align: center; margin-bottom: var(--space-3xl); }

.fruitland-faq .fl-faq-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-primary);
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.fl-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.fl-faq-item {
  background: var(--color-card-tint-3);
  border-radius: var(--radius);
  border: 1px solid rgba(43, 43, 42,0.10);
  overflow: hidden;
}

.fl-faq-q {
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.fl-faq-q i, .fl-faq-q svg { width: 18px; height: 18px; color: var(--color-secondary); flex-shrink: 0; transition: transform var(--transition); }
.fl-faq-item.open .fl-faq-q i { transform: rotate(180deg); }
.fl-faq-a { padding: 0 var(--space-xl) var(--space-lg); font-size: 0.95rem; line-height: 1.75; color: var(--color-text); }

/* ── 8. CTA ───────────────────────────────────────────────────────── */
.fruitland-cta {
  padding: var(--space-4xl) 0;
  background: var(--color-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fruitland-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(130deg, rgba(0,0,0,0.15) 0%, transparent 55%); }
.fruitland-cta::after { content: ''; position: absolute; top: -70px; right: -70px; width: 300px; height: 300px; border-radius: 50%; border: 55px solid rgba(255,255,255,0.05); pointer-events: none; }

.fl-cta-inner { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }

.fl-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-wrap: balance;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.fl-cta-inner p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.65; margin-bottom: var(--space-xl); }

.fl-cta-btns { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* ── 9. RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1100px) { .fl-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .fl-split { grid-template-columns: 1fr; }
  .fl-img-col { order: -1; }
  .fl-img-accent { display: none; }
  .fl-why-grid { grid-template-columns: 1fr; }
  .fl-why-stats { order: -1; }
}
@media (max-width: 640px) {
  .fruitland-hero { min-height: 75vh; }
  .fl-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-why-stats { grid-template-columns: 1fr 1fr; }
  .fl-cta-btns { flex-direction: column; align-items: center; }
}
