/* =====================
   Houston Junk Removal Co — style.css
   ===================== */

:root {
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --orange: #e87722;
  --text: #222;
  --gray: #666;
  --light: #f5f5f5;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

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

/* HEADER */
header {
  background: var(--green-dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

nav ul li a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

nav ul li a:hover { opacity: 1; }

.btn-nav {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700 !important;
  opacity: 1 !important;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 620px;
  margin: 0 auto 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: #cf6510; }

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #fff;
  display: inline-block;
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* SERVICES STRIP */
.services-strip {
  padding: 72px 0;
  background: var(--light);
}

.services-strip h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--green-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray);
}

.center { text-align: center; margin-top: 36px; }

/* WHY US */
.why-us {
  padding: 72px 0;
  background: #fff;
}

.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.why-text p {
  color: var(--gray);
  margin-bottom: 20px;
}

.why-list {
  list-style: none;
  margin-bottom: 28px;
}

.why-list li {
  padding: 6px 0;
  color: var(--text);
  font-weight: 500;
}

.why-image .placeholder-image {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

/* AREAS */
.areas {
  background: var(--light);
  padding: 72px 0;
  text-align: center;
}

.areas h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.areas p {
  color: var(--gray);
  margin-bottom: 32px;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.areas-grid a {
  background: #fff;
  border: 2px solid var(--green);
  color: var(--green-dark);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.areas-grid a:hover {
  background: var(--green);
  color: #fff;
}

/* CTA BANNER */
.cta-banner {
  background: var(--green-dark);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 28px;
  font-size: 1.1rem;
}

/* CONTENT SECTION */
.content-section {
  padding: 72px 0;
}

.content-section h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.content-section p {
  color: var(--gray);
  margin-bottom: 16px;
  max-width: 760px;
}

/* CONTACT FORM */
.contact-form {
  padding: 72px 0;
  background: var(--light);
}

.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-wrap h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-wrap p { color: var(--gray); margin-bottom: 24px; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group textarea { height: 120px; resize: vertical; }

.form-submit {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

.form-submit:hover { background: #cf6510; }

/* FOOTER */
footer {
  background: #111;
  color: #ccc;
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col p { font-size: 0.9rem; line-height: 1.7; }

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: #ccc;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-col a { color: #ccc; }

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* LOCATIONS GRID */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.location-card {
  display: block;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  color: var(--text);
}

.location-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.location-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.location-card p {
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 14px;
}

.location-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .why-us .container { grid-template-columns: 1fr; }
  .why-image { display: none; }
  nav ul { gap: 14px; }
  .logo a { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  nav ul li:not(:last-child) { display: none; }
  .hero h1 { font-size: 1.5rem; }
}
