/* ================================================
   RURAL CONTAINER — Stylesheet
   Colors: Deep Forest Green + Earthy Tan + Rust Orange
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2C4A2E;
  --green-dark:  #1a2e1b;
  --green-light: #3d6b40;
  --tan:         #C8A96E;
  --tan-light:   #e8d5b0;
  --rust:        #B85C2A;
  --rust-light:  #d4714a;
  --cream:       #F5F0E8;
  --dark:        #1a1a1a;
  --gray:        #6b7280;
  --gray-light:  #f3f4f6;
  --white:       #ffffff;
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --radius:      8px;
  --shadow:      0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--rust); color: var(--white); border-color: var(--rust); }
.btn-primary:hover { background: var(--rust-light); border-color: var(--rust-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(184,92,42,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; text-align: center; }
.btn-submit { width: 100%; font-size: 1.1rem; padding: 18px; margin-top: 8px; }

/* ─── LAYOUT ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--green-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px;
  height: 68px;
}
.nav-logo { height: 52px; width: auto; filter: brightness(0) invert(1); }
.nav-phone {
  margin-left: auto;
  color: var(--tan-light);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.nav-phone:hover { color: var(--white); }
.nav-cta { margin-left: 12px; padding: 10px 22px; font-size: 0.9rem; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1a2e1b 0%, #2C4A2E 40%, #3d5c30 70%, #5a7a3a 100%);
  padding-top: 68px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184,92,42,0.06) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><path d="M0 30h60M30 0v60" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; padding: 60px 24px;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero-sub {
  font-size: 1.25rem;
  color: var(--tan-light);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--tan);
  padding: 20px 0;
}
.trust-items {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  text-transform: uppercase;
}
.trust-item:not(:last-child)::after {
  content: '|';
  margin-left: 8px;
  opacity: 0.4;
}
.trust-icon { font-size: 1.2rem; }

/* ─── PRODUCTS ─── */
.products { padding: 90px 0; background: var(--cream); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 52px;
  line-height: 1.7;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 4px solid var(--green);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column; gap: 12px;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-badge {
  position: absolute; top: -1px; right: 20px;
  background: var(--rust);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}
.product-icon { font-size: 2.4rem; }
.product-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.product-dims {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 12px;
}
.product-features {
  list-style: none;
  font-size: 0.9rem;
  color: var(--dark);
  display: flex; flex-direction: column; gap: 5px;
}
.product-features li::before { content: '✓  '; color: var(--green); font-weight: 700; }
.product-use {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--gray-light);
}

/* ─── WHY US ─── */
.why-us { padding: 90px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 20px;
}
.why-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.75; }
.why-list {
  list-style: none;
  margin: 20px 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.why-list li { font-size: 0.95rem; color: var(--dark); }
.why-visual {
  display: flex; flex-direction: column; gap: 20px;
}
.why-card {
  background: var(--green);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.why-stat {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--tan);
  line-height: 1;
}
.why-stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── QUOTE FORM ─── */
.quote-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--green) 100%);
}
.quote-section .section-title { color: var(--white); }
.quote-section .section-sub { color: var(--tan-light); }
.form-wrapper {
  max-width: 780px; margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.quote-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 8px;
}

/* ─── FOOTER ─── */
.footer { background: var(--green-dark); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 64px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.footer-contact h4,
.footer-links h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tan);
  margin-bottom: 16px;
}
.footer-contact p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 6px; }
.footer-contact a { color: var(--tan-light); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--tan); }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--tan); }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-phone { display: none; }
  .nav-inner { justify-content: space-between; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .trust-item:not(:last-child)::after { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { flex-direction: row; flex-wrap: wrap; }
  .why-card { flex: 1; min-width: 140px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-wrapper { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .product-grid { grid-template-columns: 1fr; }
}
