/* Garcia Dumpster Rental LLC — site styles
   Palette pulled from the shop's ad: black, red, white, gray */

:root {
  --black: #131313;
  --near-black: #1c1c1c;
  --red: #e2231a;
  --red-dark: #b81913;
  --gray: #8a8a8a;
  --gray-ad: #999999;
  --gray-ad-dark: #7a7a7a;
  --gray-light: #ececea;
  --gray-mid: #dcdcdc;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Verdana, Arial, sans-serif;
  background: var(--gray-light);
  color: var(--near-black);
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--black);
  color: var(--gray-mid);
  font-size: 0.85rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: space-between;
}

.topbar a.phone-link {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.topbar a.phone-link:hover {
  color: var(--red);
}

.topbar .free-estimates {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--near-black);
  border-bottom: 4px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 88px;
  width: auto;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  display: block;
  padding: 10px 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--white);
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--red);
  color: var(--white);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 1.4rem;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(226, 35, 26, 0.35), transparent 55%);
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 70px 24px;
}

.hero-copy .eyebrow {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-copy h1 span {
  color: var(--red);
}

.hero-copy p {
  color: var(--gray-mid);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--red);
}

/* ---------- Home hero: light variant (behind logo) ---------- */
.hero-light {
  background: linear-gradient(160deg, #ffffff 0%, #ffffff 35%, var(--gray-light) 65%, #999999 100%);
  color: var(--near-black);
}

.hero-light::before {
  content: none;
}

.hero-light .hero-copy h1 {
  color: var(--near-black);
}

.hero-light .hero-copy p {
  color: #444;
}

.hero-light .hero-badges .badge {
  color: var(--near-black);
}

.hero-light .btn-outline {
  border-color: var(--near-black);
  color: var(--near-black);
}

.hero-light .btn-outline:hover {
  background: var(--near-black);
  color: var(--white);
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}

.hero-logo img {
  max-height: 340px;
  width: auto;
  margin: 0 auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.hero-badges .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.hero-badges .badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  display: inline-block;
  transform: rotate(45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-size: 0.95rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--red);
}

/* ---------- Sections ---------- */
section {
  padding: 70px 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--near-black);
  color: var(--white);
}

.section-gray {
  background: var(--gray-ad);
  color: var(--near-black);
  border-top: 1px solid var(--gray-ad-dark);
  border-bottom: 1px solid var(--gray-ad-dark);
}

.section-gray .section-head p {
  color: #333;
}

.section-gray .eyebrow {
  color: var(--black);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.section-head .eyebrow {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 14px;
  text-transform: uppercase;
  font-weight: 900;
}

.section-head p {
  color: #555;
  margin: 0;
}

.section-dark .section-head p {
  color: var(--gray-mid);
}

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
  width: 100%;
  height: 260px;
  margin: 0;
  background: var(--black);
  border-radius: 0;
  border: none;
  border-bottom: 4px solid var(--red);
  overflow: hidden;
}

.service-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 18px 20px 24px;
}

.service-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.service-card p {
  color: #555;
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Strip / CTA ---------- */
.cta-strip {
  background: var(--red);
  color: var(--white);
  padding: 40px 0;
}

.cta-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-strip h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 900;
}

.cta-strip p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- Steps / process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 60px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step h4 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: #555;
  font-size: 0.92rem;
}

.section-dark .step p {
  color: var(--gray-mid);
}

/* ---------- About page bits ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.about-hero img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 3px solid var(--red);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--gray-light);
  border-radius: 6px;
  padding: 26px;
  border-left: 4px solid var(--red);
}

.value-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1rem;
}

.value-card p {
  margin: 0;
  color: #555;
  font-size: 0.92rem;
}

/* ---------- Pricing ---------- */
.price-note {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
  color: #555;
  font-size: 0.95rem;
}

.section-dark .price-note {
  color: var(--gray-mid);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.price-table {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--red);
}

.price-table h3 {
  margin: 0;
  padding: 16px 20px;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  background: var(--black);
  color: var(--white);
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
}

.price-table td {
  padding: 12px 20px;
  font-size: 0.92rem;
  color: var(--near-black);
  border-bottom: 1px solid var(--gray-mid);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:nth-child(even) td {
  background: var(--gray-light);
}

.price-table td:last-child {
  text-align: right;
  font-weight: 800;
  color: var(--red);
  font-size: 1rem;
  white-space: nowrap;
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fee-grid .value-card {
  text-align: left;
  padding: 32px 34px;
}

.fee-grid .value-card h3 {
  color: var(--red);
  font-size: 1.15rem;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-mid);
}

.fee-grid .value-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #333;
  font-size: 1rem;
  line-height: 1.55;
}

.fee-grid .value-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}

.fee-grid .value-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
}

.fee-grid .value-card li:last-child {
  margin-bottom: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 30px 20px;
  text-align: center;
}

.stat-row .stat strong {
  display: block;
  font-size: 2.1rem;
  color: var(--red);
  font-weight: 900;
}

.stat-row .stat span {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--near-black);
}

/* ---------- Service area list ---------- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.area-list span {
  background: var(--white);
  color: var(--near-black);
  border: 1px solid var(--gray-mid);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--black);
  color: var(--gray-mid);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.footer-grid h4 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  margin: 0 0 16px;
}

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a {
  font-size: 0.9rem;
  color: var(--gray-mid);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--red);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 18px;
  background: #1877F2;
  color: var(--white);
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88rem;
}

.footer-social:hover {
  background: #145dbf;
}

.footer-bottom {
  padding-top: 18px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 16px;
}

.footer-credit a {
  color: var(--gray-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit a:hover {
  color: var(--red);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .brand-logo {
    height: 60px;
  }

  nav.main-nav a {
    padding: 10px 10px;
    font-size: 0.8rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .fee-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--near-black);
    display: none;
    border-bottom: 4px solid var(--red);
  }

  nav.main-nav.open {
    display: block;
  }

  nav.main-nav ul {
    flex-direction: column;
    padding: 10px 20px 20px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip .container {
    flex-direction: column;
    text-align: center;
  }
}
