/* ============================================================
   Sebastian County Tornado Cleanup — greenwoodtornadocleanup.com
   Design: Steel Gray & Industrial Red
   Primary: #2B3A42  |  Accent: #B22222  |  BG: #F5F5F5  |  Text: #1A1A1A
   ============================================================ */

:root {
  --steel:      #2B3A42;
  --red:        #B22222;
  --red-dark:   #8B1A1A;
  --white:      #FFFFFF;
  --bg:         #F5F5F5;
  --bg-alt:     #EAEAEA;
  --text:       #1A1A1A;
  --text-light: #4A4A4A;
  --border:     #D0D0D0;
  --shadow:     0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:  0 6px 28px rgba(0,0,0,0.16);
  --radius:     8px;
  --radius-lg:  14px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Segoe UI', Arial, sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

/* ── TOPBAR ── */
.topbar { background: var(--steel); color: var(--white); font-size: 13px; padding: 7px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--white); font-weight: 700; }
.topbar a:hover { color: #f0a0a0; }

/* ── HEADER / NAV ── */
header { background: var(--steel); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo img { height: 48px; width: auto; }
nav ul { display: flex; align-items: center; gap: 4px; }
nav ul li a { color: var(--white); font-size: 14px; font-weight: 600; padding: 8px 12px; border-radius: var(--radius); transition: background var(--transition); white-space: nowrap; }
nav ul li a:hover, nav ul li a.active { background: rgba(255,255,255,0.12); color: var(--white); }
nav ul li a.nav-cta { background: var(--red); color: var(--white) !important; padding: 8px 16px; }
nav ul li a.nav-cta:hover { background: var(--red-dark); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── HERO ── */
.hero { position: relative; background: var(--steel); color: var(--white); overflow: hidden; min-height: 540px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.32; }
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 64px 20px; }
.hero-content .eyebrow { display: inline-block; background: var(--red); color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 16px; }
.hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.2; margin-bottom: 18px; }
.hero-content p { font-size: 1.1rem; opacity: 0.92; margin-bottom: 28px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: var(--radius); cursor: pointer; border: 2px solid transparent; transition: all var(--transition); text-align: center; white-space: nowrap; }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--steel); }
.btn-steel { background: var(--steel); color: var(--white); border-color: var(--steel); }
.btn-steel:hover { background: #1e2b32; border-color: #1e2b32; color: var(--white); }
.btn-gray { background: var(--bg-alt); color: var(--steel); border-color: var(--border); }
.btn-gray:hover { background: var(--border); color: var(--steel); }

/* ── EMERGENCY BANNER ── */
.emergency-banner { background: var(--red); color: var(--white); text-align: center; padding: 14px 20px; font-weight: 700; font-size: 1rem; }
.emergency-banner a { color: var(--white); text-decoration: underline; }

/* ── SECTIONS ── */
.section { padding: 72px 0; background: var(--white); }
.section-alt { padding: 72px 0; background: var(--bg); }
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading .eyebrow { display: inline-block; background: var(--red); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }
.section-heading h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--steel); }
.section-heading p { color: var(--text-light); max-width: 600px; margin: 12px auto 0; }

/* ── EYEBROW (inline) ── */
.eyebrow { display: inline-block; background: var(--red); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow); border-top: 4px solid var(--red); transition: transform var(--transition), box-shadow var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--steel); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.service-card a.card-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--red); }
.service-card a.card-link:hover { color: var(--red-dark); }

/* ── TRUST BADGES ── */
.trust-bar { background: var(--steel); padding: 20px 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 40px; }
.trust-badge { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 14px; font-weight: 700; }
.trust-badge .badge-icon { font-size: 1.5rem; }

/* ── STEPS GRID ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 22px; box-shadow: var(--shadow); text-align: center; }
.step-num { width: 48px; height: 48px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.3rem; margin: 0 auto 16px; }
.step-card h3 { font-size: 1rem; font-weight: 800; color: var(--steel); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-light); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.gallery-grid img { border-radius: var(--radius); width: 100%; height: 220px; object-fit: cover; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow); border-left: 4px solid var(--red); }
.testimonial-card .stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--text-light); font-style: italic; margin-bottom: 16px; }
.testimonial-card .reviewer { font-weight: 700; font-size: 13px; color: var(--steel); }

/* ── CTA BAND ── */
.cta-band { background: var(--steel); color: var(--white); text-align: center; padding: 64px 20px; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; margin-bottom: 14px; }
.cta-band p { font-size: 1.05rem; opacity: 0.88; max-width: 600px; margin: 0 auto 24px; }
.cta-phone { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: var(--red); margin-bottom: 24px; }
.cta-phone a { color: var(--red); }
.cta-phone a:hover { color: #e05050; }

/* ── PAGE HERO ── */
.page-hero { background: var(--steel); color: var(--white); padding: 56px 20px 48px; }
.page-hero .container { max-width: 900px; }
.page-hero .breadcrumb { font-size: 13px; opacity: 0.7; margin-bottom: 14px; }
.page-hero .breadcrumb a { color: var(--white); }
.page-hero .breadcrumb span { margin: 0 6px; }
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; opacity: 0.9; max-width: 700px; margin-bottom: 24px; }

/* ── ABOUT LAYOUT ── */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-layout img { border-radius: var(--radius-lg); width: 100%; }
.about-text h2 { font-size: 1.6rem; font-weight: 800; color: var(--steel); margin-bottom: 16px; }
.about-text p { color: var(--text-light); margin-bottom: 14px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.about-badge { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 6px 16px; font-size: 13px; font-weight: 700; color: var(--steel); }

/* ── FAQ ── */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { padding: 18px 0; font-weight: 700; color: var(--steel); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--red); flex-shrink: 0; margin-left: 12px; transition: transform var(--transition); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 18px; color: var(--text-light); font-size: 15px; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; align-items: start; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form h2 { font-size: 1.4rem; font-weight: 800; color: var(--steel); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--steel); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 15px; color: var(--text); background: var(--bg); transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { min-height: 110px; resize: vertical; }
.contact-info h2 { font-size: 1.4rem; font-weight: 800; color: var(--steel); margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-text strong { display: block; font-size: 13px; color: var(--steel); margin-bottom: 2px; }
.contact-info-text a, .contact-info-text span { font-size: 15px; color: var(--text-light); }
.contact-info-text a { color: var(--red); }

/* ── SERVICE AREA TAGS ── */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.area-tag { background: var(--red); color: var(--white); border-radius: 20px; padding: 6px 16px; font-size: 13px; font-weight: 700; }

/* ── FOOTER ── */
footer { background: var(--steel); color: var(--white); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 48px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; opacity: 0.75; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.75); font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-nap { font-size: 13px; line-height: 2; color: rgba(255,255,255,0.75); }
.footer-nap a { color: rgba(255,255,255,0.75); }
.footer-nap a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSE TIMELINE ── */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.timeline-dot { width: 44px; height: 44px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 900; font-size: 1rem; flex-shrink: 0; }
.timeline-content h3 { font-size: 1rem; font-weight: 800; color: var(--steel); margin-bottom: 4px; }
.timeline-content p { font-size: 14px; color: var(--text-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  nav ul { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--steel); padding: 16px 20px 24px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  nav ul.open { display: flex; }
  nav ul li a { display: block; padding: 10px 14px; font-size: 15px; }
  .hero-content { padding: 48px 20px; }
  .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section, .section-alt { padding: 48px 0; }
  .topbar .container { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .trust-bar .container { flex-direction: column; align-items: flex-start; padding: 0 20px; }
  .contact-form { padding: 24px 18px; }
  .cta-phone { font-size: 1.6rem; }
}
