/* Galena Park Pressure Washing — styles.css */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --accent: #ef4444;
  --accent-dark: #dc2626;
  --dark: #0f172a;
  --dark2: #1e3a5f;
  --text: #1e293b;
  --text-light: #475569;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: var(--text);
  line-height: 1.75;
  background: var(--bg);
}

h1 { font-family: 'Bebas Neue', cursive; font-size: 96px; line-height: 1; color: inherit; }
h2 { font-family: 'Bebas Neue', cursive; font-size: 56px; line-height: 1.1; color: inherit; }
h3 { font-family: 'Bebas Neue', cursive; font-size: 32px; line-height: 1.2; color: inherit; }
h4 { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 700; color: inherit; }

@media (max-width: 768px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  h3 { font-size: 28px; }
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px; font-size: 16px;
  font-weight: 700; cursor: pointer; text-decoration: none;
  border: none; transition: all 0.2s; white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #ffffff;
}
.btn-primary:hover { background: var(--accent-dark); color: #ffffff; text-decoration: none; }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #ffffff; text-decoration: none; }
.btn-white {
  background: #ffffff; color: var(--dark);
}
.btn-white:hover { background: #f0f9ff; color: var(--dark); text-decoration: none; }
.btn-lg { padding: 18px 40px; font-size: 18px; }

/* NAV */
.nav {
  background: var(--dark); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  font-family: 'Bebas Neue', cursive; font-size: 28px; color: #ffffff;
  text-decoration: none; letter-spacing: 1px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: #e2e8f0; font-weight: 600; font-size: 15px; text-decoration: none; }
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-cta {
  background: var(--accent); color: #ffffff; padding: 10px 22px;
  border-radius: 5px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); color: #ffffff; text-decoration: none; }
.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: #ffffff; border-radius: 2px; }
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark); flex-direction: column; padding: 20px 24px; gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 60px;
  align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.hero-badge {
  display: inline-block; background: var(--accent); color: #ffffff;
  padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.hero h1 { color: #ffffff; margin-bottom: 20px; }
.hero-sub {
  color: #cbd5e1; font-size: 20px; margin-bottom: 32px; max-width: 560px;
}
.hero-phone {
  display: inline-flex; align-items: center; gap: 12px;
  color: #ffffff; font-size: 22px; font-weight: 700; margin-bottom: 32px;
  text-decoration: none;
}
.hero-phone:hover { color: var(--accent); text-decoration: none; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.trust-item { color: #94a3b8; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}

/* FORM */
.form-card {
  background: #ffffff; border-radius: 12px; padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-card h3 { color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: 6px; font-size: 16px; font-family: inherit;
  color: var(--text); background: #fff; transition: border 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.hp { display: none !important; }
.form-submit {
  width: 100%; padding: 16px; background: var(--accent); color: #ffffff;
  border: none; border-radius: 6px; font-size: 18px; font-weight: 700;
  cursor: pointer; transition: background 0.2s; font-family: inherit;
}
.form-submit:hover { background: var(--accent-dark); }
.form-msg { margin-top: 12px; padding: 12px; border-radius: 6px; font-size: 15px; font-weight: 600; display: none; }
.form-msg.success { background: #dcfce7; color: #166534; display: block; }
.form-msg.error { background: #fee2e2; color: #991b1b; display: block; }

/* TRUST BAR */
.trust-bar {
  background: var(--bg-light); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.trust-bar-inner {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.trust-bar-item { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 600; }
.trust-icon { width: 36px; height: 36px; background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }

/* SERVICES GRID */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px; transition: all 0.2s;
}
.service-card:hover { border-color: var(--accent); box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.service-card h3 { color: var(--dark); margin-bottom: 12px; }
.service-card p { color: var(--text-light); margin-bottom: 20px; }
.service-card a { color: var(--accent); font-weight: 700; text-decoration: none; }
.service-card a:hover { text-decoration: underline; }
.service-icon {
  width: 52px; height: 52px; background: var(--accent);
  border-radius: 10px; margin-bottom: 20px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* PROCESS STEPS */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px;
}
.step {
  text-align: center; padding: 24px;
  background: var(--bg-light); border-radius: 12px;
  border: 1px solid var(--border);
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: #ffffff;
  font-family: 'Bebas Neue', cursive; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { color: var(--dark); margin-bottom: 8px; font-size: 18px; }
.step p { color: var(--text-light); font-size: 15px; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* REVIEWS */
.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px;
}
.review-card {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px;
}
.review-stars { color: #f59e0b; font-size: 20px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: var(--text); font-size: 17px; margin-bottom: 16px; font-style: italic; }
.reviewer { font-weight: 700; color: var(--dark); }
.reviewer-loc { color: var(--text-light); font-size: 14px; }
@media (max-width: 700px) { .reviews-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { margin-top: 40px; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; padding: 20px 24px;
  text-align: left; font-size: 17px; font-weight: 700; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-icon { font-size: 22px; color: var(--accent); transition: transform 0.2s; flex-shrink: 0; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { color: var(--text); padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 400px; padding-top: 4px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 0; text-align: center;
}
.cta-band h2 { color: #ffffff; margin-bottom: 16px; }
.cta-band p { color: #cbd5e1; font-size: 20px; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-band .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* MAP */
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.map-wrap iframe { width: 100%; height: 450px; border: none; display: block; }

/* LOCATIONS GRID */
.locations-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px;
}
.location-link {
  display: block; padding: 20px; border: 1px solid var(--border);
  border-radius: 8px; text-align: center; font-weight: 600;
  color: var(--text); text-decoration: none; background: var(--bg-light);
  transition: all 0.2s;
}
.location-link:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; background: #fff; }
@media (max-width: 768px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }

/* IMAGE ROW */
.img-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.img-row img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (max-width: 768px) { .img-row { grid-template-columns: 1fr; } }

/* BREADCRUMB */
.breadcrumb { padding: 16px 0; background: var(--bg-light); border-bottom: 1px solid var(--border); }
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-size: 14px;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-light); }

/* FOOTER */
.footer { background: var(--dark); color: #94a3b8; padding: 60px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 40px;
}
.footer-brand-name {
  font-family: 'Bebas Neue', cursive; font-size: 24px; color: #ffffff;
  margin-bottom: 12px; display: block;
}
.footer-desc { font-size: 15px; margin-bottom: 20px; }
.footer-phone { color: var(--accent); font-weight: 700; font-size: 18px; text-decoration: none; }
.footer-phone:hover { color: #ffffff; }
.footer h4 { color: #ffffff; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: #94a3b8; text-decoration: none; font-size: 15px; }
.footer ul li a:hover { color: #ffffff; text-decoration: none; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 24px 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 14px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* STICKY BAR */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark); border-top: 2px solid var(--accent);
  display: flex; align-items: stretch; box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 14px 20px; font-weight: 700; font-size: 15px;
  text-decoration: none; gap: 8px; text-align: center;
  transition: background 0.2s;
}
.sticky-call {
  background: var(--accent); color: #ffffff; border-right: 1px solid rgba(255,255,255,0.2);
}
.sticky-call:hover { background: var(--accent-dark); color: #ffffff; text-decoration: none; }
.sticky-est { background: #1e3a5f; color: #ffffff; }
.sticky-est:hover { background: #1e293b; color: #ffffff; text-decoration: none; }

/* INNER PAGE HERO */
.inner-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 60px 0; text-align: center;
}
.inner-hero h1 { color: #ffffff; font-size: 72px; margin-bottom: 16px; }
.inner-hero p { color: #cbd5e1; font-size: 20px; max-width: 600px; margin: 0 auto; }
@media (max-width: 768px) { .inner-hero h1 { font-size: 48px; } }

/* CONTENT PAGE */
.content-wrap { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.content-body h2 { margin: 48px 0 20px; color: var(--dark); }
.content-body h3 { margin: 36px 0 16px; color: var(--dark); }
.content-body p { margin-bottom: 20px; color: var(--text); }
.content-body ul { margin: 0 0 20px 24px; }
.content-body ul li { margin-bottom: 8px; color: var(--text); }

/* TWO COL LAYOUT */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* INLINE CTA */
.inline-cta {
  background: var(--bg-light); border-left: 4px solid var(--accent);
  padding: 24px 28px; border-radius: 0 8px 8px 0; margin: 40px 0;
}
.inline-cta p { margin: 0; color: var(--text); font-weight: 600; }
.inline-cta a { color: var(--accent); font-weight: 700; }

/* DARK SECTION */
.dark-section {
  background: var(--dark); color: #ffffff; padding: 80px 0;
}
.dark-section h2 { color: #ffffff; margin-bottom: 20px; }
.dark-section p { color: #cbd5e1; margin-bottom: 20px; }

/* BLOG GRID */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.blog-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-content { padding: 24px; }
.blog-content h3 { font-size: 22px; margin-bottom: 10px; color: var(--dark); }
.blog-content p { color: var(--text-light); font-size: 16px; margin-bottom: 16px; }
.blog-content a { color: var(--accent); font-weight: 700; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* UTILITY */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.pb-80 { padding-bottom: 80px; }

/* Sticky bar spacing */
body { padding-bottom: 56px; }
