/* ===========================
   MACON FOUNDATION PROS
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #c0392b;
  --red-dark: #962d22;
  --red-light: #e74c3c;
  --charcoal: #1a1a1a;
  --charcoal2: #242424;
  --charcoal3: #2e2e2e;
  --cream: #faf9f7;
  --warm-gray: #f4f2ef;
  --border: #e8e4df;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===========================
   ANNOUNCE BAR
   =========================== */
.announce-bar {
  background: var(--charcoal);
  color: #ccc;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announce-bar .sep { color: #555; }
.announce-phone {
  color: var(--red-light);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-svg { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-size: 15px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--charcoal); background: var(--warm-gray); }
.nav-phone {
  color: var(--red) !important;
  font-weight: 700 !important;
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 18px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-large { padding: 16px 36px; font-size: 16px; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,10,8,0.88) 0%, rgba(20,10,8,0.75) 50%, rgba(20,10,8,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(192,57,43,0.25);
  border: 1px solid rgba(192,57,43,0.5);
  color: #ff8a80;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-accent { color: var(--red-light); }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.trust-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Form */
.form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.form-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.form-group { margin-bottom: 12px; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--red); background: var(--white); }
.btn-form {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.btn-form:hover { background: var(--red-dark); }
.form-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-light);
  margin-top: 10px;
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--charcoal);
  padding: 0;
}
.trust-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  flex: 1;
}
.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.trust-item span {
  font-size: 12px;
  color: #888;
}
.trust-icon { font-size: 24px; }
.trust-divider {
  width: 1px;
  background: #333;
  align-self: stretch;
}

/* ===========================
   SECTIONS
   =========================== */
.section { padding: 88px 0; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* ===========================
   WARNING SIGNS
   =========================== */
.signs-section { background: var(--warm-gray); }
.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.sign-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.sign-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.sign-icon { font-size: 32px; margin-bottom: 14px; }
.sign-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.sign-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.signs-cta { text-align: center; }
.signs-cta p { font-size: 17px; font-weight: 600; margin-bottom: 20px; color: var(--charcoal); }

/* ===========================
   SERVICES
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.service-body { padding: 24px; }
.service-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  transition: color 0.15s;
}
.service-link:hover { color: var(--red-dark); }

/* ===========================
   SOIL SECTION
   =========================== */
.soil-section { background: var(--charcoal); }
.soil-section .section-label { color: #e57373; }
.soil-section h2 { color: var(--white); }
.soil-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.soil-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.soil-list {
  list-style: none;
  margin-bottom: 32px;
}
.soil-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.soil-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.soil-img-wrap img { width: 100%; height: 420px; object-fit: cover; }

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-section { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow 0.2s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(192,57,43,0.1);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   PROCESS
   =========================== */
.process-section { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--warm-gray);
  border: 1px solid var(--border);
  position: relative;
}
.process-num {
  width: 52px;
  height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin: 0 auto 16px;
}
.process-line { display: none; }
.process-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ===========================
   SERVICE AREAS
   =========================== */
.areas-section { background: var(--warm-gray); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s;
}
.area-card:hover {
  border-color: var(--red);
  background: rgba(192,57,43,0.04);
  transform: translateY(-2px);
}
.area-card strong { font-size: 15px; font-weight: 700; }
.area-card span { font-size: 12px; color: var(--text-muted); }

/* ===========================
   FAQ
   =========================== */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--red); }
.faq-q span {
  font-size: 22px;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-q.open span { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1448630360428-65456885c650?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,5,5,0.92) 0%, rgba(192,57,43,0.6) 100%);
}
.cta-inner { position: relative; z-index: 2; }
.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--charcoal2); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--red-light);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: #aaa;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-address {
  margin-top: 20px;
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}
.footer-address a { color: var(--red-light); }
.footer-bottom {
  border-top: 1px solid #2e2e2e;
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #555;
}

/* ===========================
   MOBILE
   =========================== */
@media (max-width: 1024px) {
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item { min-width: 45%; }
  .trust-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 16px; gap: 4px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-inner { position: relative; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-form { order: -1; }
  .hero h1 { font-size: 36px; }

  .signs-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .soil-inner { grid-template-columns: 1fr; }
  .soil-img-wrap { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .signs-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .trust-item { min-width: 100%; }
}
