﻿* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================= HEADER (LOCKED) ================= */

.site-header {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.logo {
  height: 120px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
}

.main-nav a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

.header-cta {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.btn {
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

.btn-call {
  background: #1f4fd8;
}

.btn-estimate {
  background: #c62828;
}

.header-badge {
  margin-left: 1.5rem;
}

/* ================= HERO (LOCKED) ================= */

.hero {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
}

.hero-text {
  color: #fff;
  max-width: 900px;
  margin-left: 4rem;
}

.hero-text h1 span {
  display: block;
  white-space: nowrap;
}

.hero-text p {
  font-size: 1.25rem;
}

/* ================= SERVICES OVERVIEW ================= */

.services-overview {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.service-card {
  display: block;
  border: 1px solid #ddd;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  border-color: #000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
