:root {
  --red: #c81e1e;
  --facebook: #1877f2;
  --facebook-dark: #145dc4;
  --red-dark: #9e1717;
  --green: #2f6b3a;
  --dark: #1e2320;
  --bg: #ffffff;
  --bg-alt: #f5f4f1;
  --text: #2b2b2b;
  --text-light: #6b6b66;
  --border: #e5e3dd;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

h1, h2, h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

section {
  padding: 80px 0;
}

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

.eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
}

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

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-head p { color: var(--text-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200, 30, 30, 0.35); }

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--dark); transform: translateY(-2px); }

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: #000; transform: translateY(-2px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand .brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--red);
}
.brand .brand-name span { color: var(--dark); }

.brand .brand-tag {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--red); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--dark);
}
.phone-link svg { width: 20px; height: 20px; stroke: var(--red); flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--dark); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(20, 24, 20, 0.72), rgba(20, 24, 20, 0.55)), url('../images/hero-dumptruck.jpg') center/cover no-repeat;
}

.hero-content { max-width: 700px; }

.hero-eyebrow {
  color: #ffd479;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: block;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.15rem;
  color: #eee;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Equipment strip */
.equipment-strip {
  background: var(--dark);
  color: #fff;
  padding: 28px 0;
}
.equipment-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.equipment-item { display: flex; align-items: center; gap: 12px; }
.equipment-item svg { width: 32px; height: 32px; stroke: var(--red); flex-shrink: 0; }
.equipment-item span { font-weight: 600; }

/* About / Welcome */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-grid .contact-form { box-shadow: var(--shadow); }

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 30, 30, 0.1);
}
.service-icon svg { width: 30px; height: 30px; stroke: var(--red); }

.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.92rem; }

/* Reviews */
.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.rating-summary .stars { font-size: 1.3rem; }
.rating-summary p { color: var(--text-light); font-weight: 600; font-size: 0.95rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card .stars { color: #f5a623; letter-spacing: 2px; font-size: 0.95rem; }
.review-card p { color: var(--text); font-size: 0.92rem; flex: 1; }
.review-card .reviewer { font-weight: 700; font-size: 0.88rem; color: var(--text-light); }

.rating-summary .thumbs { font-size: 1.3rem; }
.review-card .thumbs { font-size: 1.1rem; }
.fb-grid .review-card { border-color: #dbe9fe; }

.btn-facebook {
  background: var(--facebook);
  color: #fff;
}
.btn-facebook:hover { background: var(--facebook-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35); }

/* Featured photo break */
.photo-break {
  padding: 56px 24px;
  display: flex;
  justify-content: center;
  background: var(--bg);
}
.photo-break-inner {
  max-width: 620px;
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}
.photo-break-inner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.photo-break-caption {
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gallery-pair img { height: 420px; object-fit: cover; }

/* Why choose us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.why-item svg { width: 28px; height: 28px; stroke: var(--green); flex-shrink: 0; }
.why-item h3 { font-size: 1rem; margin-bottom: 6px; }
.why-item p { color: var(--text-light); font-size: 0.9rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-banner p { margin-bottom: 28px; color: #ffe1e1; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-detail svg { width: 24px; height: 24px; stroke: var(--red); flex-shrink: 0; }
.contact-detail a, .contact-detail span { font-weight: 600; }

.contact-form {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 10px; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-name { color: var(--red); font-size: 1.3rem; }
.footer-brand p { color: #999; margin-top: 12px; max-width: 320px; }
.site-footer h4 { color: #fff; margin-bottom: 16px; font-size: 0.95rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: #888;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Mobile */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-pair { grid-template-columns: 1fr; }
  .gallery-pair img { height: 260px; }
  .header-actions .phone-link span { display: none; }
  .photo-break { padding: 40px 16px; }
  .photo-break-inner { padding: 14px; }
}
