/* ============================================================
   Fountain City Land Services — Shared Stylesheet v2
   fclandservices.com
   ============================================================ */

:root {
  --charcoal: #2e3640;
  --charcoal-dark: #1e252d;
  --green: #4e7e3a;
  --green-dark: #3a5f2b;
  --green-light: #6a9f50;
  --blue-steel: #4a7fa5;
  --blue-light: #7ab8cc;
  --off-white: #f5f4f0;
  --warm-gray: #e8e5e0;
  --text-dark: #1e252d;
  --text-mid: #4a5260;
  --text-light: #7a8290;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(30,37,45,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.nav-logo-fallback {
  display: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 17px;
  color: #fff; letter-spacing: 0.5px; line-height: 1.1;
}
.nav-logo-fallback span {
  display: block; color: var(--green-light);
  font-weight: 600; font-size: 11px; letter-spacing: 2.5px;
}
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-light); }
.nav-cta {
  background: var(--green) !important; color: #fff !important;
  padding: 9px 20px; border-radius: 3px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

/* Mobile nav */
.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,0.8); border-radius: 2px;
}
.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--charcoal-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px 28px;
  z-index: 99; flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 16px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--green-light); }
.mobile-menu a.mobile-cta {
  margin-top: 16px; background: var(--green);
  color: #fff; text-align: center;
  padding: 14px; border-radius: 3px; border-bottom: none;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green); color: #fff;
  padding: 15px 32px; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 3px; transition: background 0.2s, transform 0.15s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 15px 32px; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px; transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ── SECTION BASE ── */
section { padding: 96px 60px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--green); flex-shrink: 0;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05; color: var(--charcoal-dark);
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.section-body {
  font-size: 16px; line-height: 1.8;
  color: var(--text-mid); max-width: 600px; font-weight: 300;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 140px 60px 80px;
  background: var(--charcoal-dark);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(46,54,64,0.97) 0%, rgba(30,37,45,0.94) 60%, rgba(74,127,165,0.12) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.page-hero .section-label { color: var(--green-light); }
.page-hero .section-label::before { background: var(--green-light); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(40px, 6vw, 68px);
  line-height: 1.0; color: #fff;
  letter-spacing: -0.5px; margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--green-light); }
.page-hero p {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 580px; font-weight: 300;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--green-dark);
  padding: 18px 60px;
  display: flex; align-items: center;
  justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item {
  color: rgba(255,255,255,0.9);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
}
.trust-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.35); border-radius: 50%;
}

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.service-card {
  background: #fff; padding: 36px 32px;
  border-top: 3px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-top-color: var(--green);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  position: relative; z-index: 1;
}
.service-card-icon {
  width: 44px; height: 44px; background: var(--off-white);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; font-size: 20px;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px;
  color: var(--charcoal-dark); margin-bottom: 10px;
}
.service-card p { font-size: 14px; line-height: 1.65; color: var(--text-mid); font-weight: 300; }

/* ── DIFF SECTION ── */
.diff-section { background: var(--charcoal-dark); color: #fff; }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.diff-content .section-label { color: var(--blue-light); }
.diff-content .section-label::before { background: var(--blue-light); }
.diff-content .section-title { color: #fff; }
.diff-content .section-body { color: rgba(255,255,255,0.55); max-width: 100%; }
.diff-points { margin-top: 40px; }
.diff-point {
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; gap: 20px; align-items: flex-start;
}
.diff-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 28px;
  color: var(--green-light); line-height: 1;
  min-width: 40px; opacity: 0.6;
}
.diff-point-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 17px; color: #fff; margin-bottom: 5px;
}
.diff-point-text p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; font-weight: 300; }
.diff-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 28px; text-align: center;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 48px;
  color: var(--green-light); line-height: 1;
  display: block; margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.4; }

/* ── ENV SECTION ── */
.env-section { background: #fff; }
.env-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.env-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.env-item { display: flex; gap: 16px; align-items: flex-start; }
.env-item-icon {
  width: 36px; height: 36px; background: rgba(78,126,58,0.1);
  border-radius: 4px; display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0; margin-top: 2px;
}
.env-item-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px; color: var(--charcoal-dark); margin-bottom: 3px;
}
.env-item-text p { font-size: 13px; color: var(--text-light); line-height: 1.5; font-weight: 300; }
.env-callout {
  background: var(--charcoal-dark); border-radius: 6px;
  padding: 40px; color: #fff; position: sticky; top: 88px;
}
.env-callout-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 16px;
}
.env-callout blockquote {
  font-family: 'Libre Baskerville', serif;
  font-style: italic; font-size: 19px; line-height: 1.6;
  color: rgba(255,255,255,0.88); margin-bottom: 24px;
  border-left: 3px solid var(--green-light); padding-left: 20px;
}
.env-callout-body {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.7; font-weight: 300; margin-bottom: 28px;
}

/* ── QUOTE SECTION ── */
.quote-section { background: var(--green-dark); padding: 80px 60px; text-align: center; }
.quote-section .section-label { justify-content: center; color: rgba(255,255,255,0.6); }
.quote-section .section-label::before { background: rgba(255,255,255,0.35); }
.quote-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(30px, 4vw, 52px);
  color: #fff; margin-bottom: 14px; letter-spacing: -0.5px;
}
.quote-section > p {
  color: rgba(255,255,255,0.65); font-size: 16px;
  margin-bottom: 36px; font-weight: 300;
  max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

/* ── QUOTE FORM ── */
.quote-form {
  max-width: 680px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px; padding: 40px; text-align: left;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-group label .req { color: var(--green-light); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px; padding: 12px 14px;
  color: #fff; font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group select option { background: var(--charcoal-dark); color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-light); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-submit {
  margin-top: 20px; width: 100%;
  background: #fff; color: var(--green-dark);
  border: none; padding: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 3px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--off-white); transform: translateY(-1px); }
.form-note { text-align: center; margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.38); font-weight: 300; }
.form-note a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ── FOOTER ── */
footer { background: var(--charcoal-dark); padding: 64px 60px 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 48px; filter: brightness(0) invert(1); opacity: 0.75; margin-bottom: 18px; display: block; }
.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 18px;
  color: rgba(255,255,255,0.85); letter-spacing: 0.3px;
  line-height: 1.2; margin-bottom: 14px;
}
.footer-brand-name span { display: block; color: var(--green-light); font-weight: 600; font-size: 12px; letter-spacing: 2.5px; }
.footer-brand > p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; font-weight: 300; max-width: 230px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; font-weight: 300; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-col ul li span { color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 300; }
.footer-bottom {
  max-width: 1200px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); font-weight: 300; }
.footer-bottom a { color: rgba(255,255,255,0.28); text-decoration: none; font-size: 12px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate   { animation: fadeUp 0.6s ease both; }
.delay-1   { animation-delay: 0.1s; }
.delay-2   { animation-delay: 0.2s; }
.delay-3   { animation-delay: 0.3s; }
.delay-4   { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 64px 24px; }
  .page-hero { padding: 110px 24px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 48px; }
  .diff-stats { grid-template-columns: repeat(2,1fr); }
  .env-grid { grid-template-columns: 1fr; }
  .env-callout { position: static; }
  .quote-section { padding: 64px 24px; }
  .quote-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .trust-bar { padding: 16px 24px; gap: 20px; }
  .trust-dot { display: none; }
  footer { padding: 48px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .diff-stats { grid-template-columns: 1fr 1fr; }
}
