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

:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #000000;
  --bg-section: #111111;
  --bg-card: #1a1a1a;
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --text-light: #e8e8e8;
  --accent: #e6a817;
  --accent-hover: #f0b92a;
  --yellow: #f5c518;
  --border: #333333;
  --white: #fff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-darker);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ========== HEADER ========== */
header {
  background: var(--bg-darker);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.4px;
}
.logo span { color: var(--yellow); }

.logo img {
  height: 144px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
nav a {
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 0.15s;
}
nav a:hover { opacity: 1; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #111;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--accent-hover); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
}
.btn-outline:hover {
  background: white;
  color: #111;
  border-color: white;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.78)), url('images/dozer.jpg') center/cover no-repeat;
  color: white;
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
}

.hero .eyebrow {
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 14px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero .lead {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 32px;
  opacity: 0.88;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== STATS ========== */
.stats {
  background: var(--bg-darker);
  color: white;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item .number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.1;
}
.stat-item .label {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== SECTIONS ========== */
.section {
  padding: 72px 0;
  background: var(--bg-darker);
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.section-header p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.service-card h3 {
  color: #f5c518;
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: var(--white);
}
.service-card p {
  color: #c0c0c0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.service-card .enquire {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--yellow);
}
.service-card .enquire:hover {
  text-decoration: underline;
}

/* ========== ABOUT ========== */
.about {
  background: var(--bg-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-content h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
  color: var(--white);
}
.about-content p {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.badge {
  background: rgba(230, 168, 23, 0.15);
  color: var(--yellow);
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(230, 168, 23, 0.3);
}

.about-card {
  background: var(--bg-darker);
  color: white;
  padding: 34px 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.about-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.about-card .role {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 14px;
}
.about-card p {
  opacity: 0.9;
  margin-bottom: 20px;
  font-size: 0.98rem;
}
.about-card .big-stat {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.about-card .big-stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ========== WORK ========== */
.work {
  background: var(--bg-darker);
}

.work-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
}
.work-box p {
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.work-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== REVIEWS ========== */
.reviews {
  background: var(--bg-section);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--border);
}
.review-card .stars {
  color: var(--yellow);
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.review-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}
.review-card .author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.reviews-footer {
  text-align: center;
  margin-top: 32px;
}
.reviews-footer a {
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.95rem;
}
.reviews-footer a:hover { text-decoration: underline; }

/* ========== CONTACT ========== */
.contact {
  background: var(--bg-darker);
  color: white;
}
.contact .section-header h2 { color: white; }
.contact .section-header p { color: rgba(255,255,255,0.8); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 10px;
}

.contact-item {
  margin-bottom: 20px;
}
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-item a,
.contact-item span {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--yellow);
}
.contact-item a:hover { text-decoration: underline; }

.contact-note {
  margin-top: 24px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  font-size: 0.93rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* ========== FOOTER ========== */
footer {
  background: #000;
  color: rgba(255,255,255,0.55);
  padding: 28px 0;
  text-align: center;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer a { color: var(--yellow); }

/* ========== SERVICE PAGES ========== */
.service-hero {
  background: var(--bg-darker);
  color: white;
  padding: 70px 0 55px;
}
.service-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}
.service-hero p {
  opacity: 0.88;
  max-width: 600px;
  font-size: 1.08rem;
}
.service-content {
  padding: 55px 0;
  background: var(--bg-darker);
}
.service-content h2 {
  font-size: 1.5rem;
  margin: 28px 0 12px;
  color: var(--white);
}
.service-content p, .service-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}
.service-content ul {
  margin: 12px 0 20px 20px;
}
.cta-box {
  background: var(--bg-card);
  color: white;
  padding: 32px;
  border-radius: 10px;
  margin-top: 36px;
  text-align: center;
  border: 1px solid var(--border);
}
.cta-box p {
  opacity: 0.9;
  margin-bottom: 18px;
}
.breadcrumb {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--yellow);
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  nav { display: none; }
  .hero { padding: 64px 0 56px; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 52px 0; }
  .header-inner {
  padding: 18px 0; padding: 12px 0; }
}
