/* ============================================================
   Arkansas River Corridor Storm Cleanup
   mayflowerstormcleanup.com
   Color Scheme: Midnight & Safety Orange
   Primary: #1A1A2E | Accent: #FF6600 | BG: #F7F7F7 | Text: #1A1A1A
   ============================================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #F7F7F7;
  color: #1A1A1A;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #FF6600; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.btn {
  display: inline-block;
  background: #FF6600;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn:hover { background: #e05500; text-decoration: none; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid #FF6600;
  color: #FF6600;
}
.btn-outline:hover { background: #FF6600; color: #fff; }
.btn-white {
  background: #fff;
  color: #FF6600;
}
.btn-white:hover { background: #f0f0f0; }
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.accent { color: #FF6600; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---- TOPBAR ---- */
.topbar {
  background: #1A1A2E;
  color: #ccc;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #FF6600; font-weight: 600; }
.topbar a:hover { color: #fff; text-decoration: none; }

/* ---- HEADER / NAV ---- */
header {
  background: #1A1A2E;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo img { height: 56px; width: auto; }
nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}
nav ul li a {
  color: #e0e0e0;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
nav ul li a:hover,
nav ul li a.active {
  background: #FF6600;
  color: #fff;
  text-decoration: none;
}
.nav-cta { background: #FF6600 !important; color: #fff !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #1A1A2E;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 20px;
}
.hero-badge {
  display: inline-block;
  background: #FF6600;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero h1 span { color: #FF6600; }
.hero p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: #FF6600;
  padding: 16px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.trust-item svg { flex-shrink: 0; }

/* ---- SERVICES GRID ---- */
.services-section { padding: 70px 0; background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 2rem;
}
.service-card {
  background: #F7F7F7;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 20px; }
.service-card-body h3 { font-size: 1.15rem; color: #1A1A2E; margin-bottom: 8px; }
.service-card-body p { color: #555; font-size: 0.95rem; margin-bottom: 14px; }
.service-card-body a { font-weight: 700; color: #FF6600; font-size: 0.9rem; }

/* ---- WHY CHOOSE US ---- */
.why-section { padding: 70px 0; background: #F7F7F7; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}
.why-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 22px;
  border-left: 4px solid #FF6600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.why-card .icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1.05rem; color: #1A1A2E; margin-bottom: 8px; }
.why-card p { color: #555; font-size: 0.92rem; }

/* ---- CTA BAND ---- */
.cta-band {
  background: #1A1A2E;
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { font-size: 2rem; color: #fff; margin-bottom: 12px; }
.cta-band p { color: #aaa; font-size: 1.05rem; margin-bottom: 28px; }
.cta-band .phone-big {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: #FF6600;
  margin-bottom: 20px;
  text-decoration: none;
}
.cta-band .phone-big:hover { color: #fff; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 70px 0; background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}
.testimonial-card {
  background: #F7F7F7;
  border-radius: 8px;
  padding: 28px;
  border-top: 4px solid #FF6600;
}
.stars { color: #FF6600; font-size: 1.2rem; margin-bottom: 12px; }
.testimonial-card p { color: #444; font-style: italic; margin-bottom: 16px; }
.reviewer { font-weight: 700; color: #1A1A2E; font-size: 0.9rem; }

/* ---- SERVICE AREA MAP ---- */
.map-section { padding: 70px 0; background: #F7F7F7; }
.map-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 2rem;
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 8px;
}
.map-info h3 { font-size: 1.3rem; color: #1A1A2E; margin-bottom: 12px; }
.map-info p { color: #555; margin-bottom: 16px; }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.area-tag {
  background: #1A1A2E;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ---- ABOUT SECTION ---- */
.about-section { padding: 70px 0; background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img img { border-radius: 8px; width: 100%; }
.about-text h2 { font-size: 2rem; color: #1A1A2E; margin-bottom: 16px; }
.about-text p { color: #555; margin-bottom: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.stat-box {
  background: #1A1A2E;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
.stat-box .num { font-size: 2rem; font-weight: 900; color: #FF6600; }
.stat-box .label { font-size: 0.85rem; color: #ccc; }

/* ---- GALLERY ---- */
.gallery-section { padding: 70px 0; background: #F7F7F7; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 2rem;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-grid img:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ---- CONTACT FORM ---- */
.contact-section { padding: 70px 0; background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 2rem;
}
.contact-form { background: #F7F7F7; padding: 36px; border-radius: 8px; }
.contact-form h3 { font-size: 1.4rem; color: #1A1A2E; margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; color: #1A1A2E; margin-bottom: 6px; font-size: 0.9rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #1A1A1A;
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF6600;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 16px; font-size: 1.05rem; }
.contact-info h3 { font-size: 1.4rem; color: #1A1A2E; margin-bottom: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail .icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail h4 { font-size: 0.9rem; color: #888; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 1rem; color: #1A1A1A; font-weight: 600; }
.contact-detail a:hover { color: #FF6600; }
.map-embed-contact { margin-top: 24px; }
.map-embed-contact iframe { width: 100%; height: 280px; border: none; border-radius: 8px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: #1A1A2E;
  padding: 60px 0 50px;
  text-align: center;
}
.page-hero h1 { font-size: 2.2rem; color: #fff; margin-bottom: 12px; }
.page-hero p { color: #aaa; font-size: 1.05rem; max-width: 600px; margin: 0 auto 20px; }
.breadcrumb { font-size: 0.85rem; color: #888; }
.breadcrumb a { color: #FF6600; }
.breadcrumb span { color: #666; margin: 0 6px; }

/* ---- SERVICE PAGE CONTENT ---- */
.service-content { padding: 70px 0; background: #fff; }
.service-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}
.service-main h2 { font-size: 1.7rem; color: #1A1A2E; margin: 28px 0 14px; }
.service-main h3 { font-size: 1.3rem; color: #1A1A2E; margin: 22px 0 10px; }
.service-main p { color: #555; margin-bottom: 16px; }
.service-main ul { margin: 12px 0 20px 0; }
.service-main ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: #444;
}
.service-main ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF6600;
  font-weight: 700;
}
.service-sidebar { position: sticky; top: 100px; }
.sidebar-cta {
  background: #1A1A2E;
  color: #fff;
  padding: 28px;
  border-radius: 8px;
  margin-bottom: 24px;
  text-align: center;
}
.sidebar-cta h3 { font-size: 1.2rem; margin-bottom: 12px; }
.sidebar-cta .phone { font-size: 1.5rem; font-weight: 900; color: #FF6600; display: block; margin: 12px 0; }
.sidebar-services {
  background: #F7F7F7;
  padding: 24px;
  border-radius: 8px;
}
.sidebar-services h4 { font-size: 1rem; color: #1A1A2E; margin-bottom: 14px; font-weight: 700; }
.sidebar-services ul li {
  border-bottom: 1px solid #e8e8e8;
  padding: 8px 0;
}
.sidebar-services ul li a { color: #1A1A1A; font-size: 0.9rem; font-weight: 500; }
.sidebar-services ul li a:hover { color: #FF6600; text-decoration: none; }

/* ---- FAQ SECTION ---- */
.faq-section { padding: 70px 0; background: #F7F7F7; }
.faq-list { margin-top: 2rem; }
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
.faq-question {
  padding: 18px 22px;
  font-weight: 700;
  color: #1A1A2E;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: #FF6600; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---- FOOTER ---- */
footer {
  background: #1A1A2E;
  color: #aaa;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: #888; margin-bottom: 16px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; border-bottom: 2px solid #FF6600; padding-bottom: 8px; display: inline-block; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #888; font-size: 0.9rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: #FF6600; text-decoration: none; }
.footer-nap { font-size: 0.9rem; line-height: 1.8; }
.footer-nap a { color: #FF6600; }
.footer-bottom {
  border-top: 1px solid #2a2a3e;
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #666;
}
.footer-bottom a { color: #888; }

/* ---- COMMERCIAL PAGE ---- */
.commercial-intro { padding: 70px 0; background: #fff; }
.commercial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.commercial-grid img { border-radius: 8px; width: 100%; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .map-wrap, .contact-grid, .service-content-grid, .commercial-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 700px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #1A1A2E; padding: 16px 20px; gap: 4px; }
  nav ul.open { display: flex; }
  nav ul li a { display: block; padding: 10px 14px; }
  .hamburger { display: flex; }
  header { position: relative; }
  .hero h1 { font-size: 1.7rem; }
  .hero-cta-group { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 14px; }
  .section-title { font-size: 1.6rem; }
  .cta-band h2 { font-size: 1.5rem; }
  .cta-band .phone-big { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .hero { min-height: 400px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ---- FORM SUCCESS MESSAGE ---- */
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 6px;
  margin-top: 16px;
  font-weight: 600;
}
