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

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 18px 28px;
  border-bottom: 1px solid #ddd;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 34px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
}

.nav a.active {
  color: #d71919;
  border-bottom: 3px solid #d71919;
  padding-bottom: 6px;
}

.phone-btn {
  background: #d71919;
  color: white;
  text-decoration: none;
  font-weight: 800;
  padding: 18px 28px;
  border-radius: 10px;
  display: inline-block;
}

.hero {
  position: relative;
  min-height: 760px;
  background-image: url("images/roof-work.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.92), rgba(0,0,0,0.70), rgba(0,0,0,0.15));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 60px 60px;
  color: white;
}

.hero-content h1 {
  font-size: 76px;
  line-height: 0.98;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-content h2 {
  font-size: 58px;
  color: #e01d1d;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 27px;
  line-height: 1.4;
  max-width: 700px;
  margin-bottom: 28px;
}

.estimate-bar {
  display: flex;
  max-width: 820px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.estimate-bar input {
  flex: 1;
  padding: 24px 22px;
  font-size: 20px;
  border: none;
  outline: none;
}

.estimate-bar button {
  background: #d71919;
  color: #fff;
  border: none;
  padding: 0 36px;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.trust-line {
  font-size: 18px;
  margin-bottom: 28px;
}

.call-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.call-btn {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 900;
  background: rgba(0,0,0,0.35);
}

.call-row span {
  font-size: 20px;
  max-width: 320px;
}

.trust-strip {
  background: #07090d;
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 34px 32px;
}

.trust-box {
  padding: 10px 22px;
}

.trust-box h3 {
  color: #e01d1d;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 900;
}

.trust-box p {
  color: #f0f0f0;
  font-size: 16px;
}

@media (max-width: 1100px) {
  .hero-content h1 {
    font-size: 58px;
  }

  .hero-content h2 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 22px;
  }

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

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 18px;
  }

  .logo {
    height: 72px;
  }

  .hero {
    min-height: auto;
    padding: 30px 0;
  }

  .hero-content {
    padding: 30px 20px 40px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content h2 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .estimate-bar {
    flex-direction: column;
  }

  .estimate-bar input {
    font-size: 18px;
  }

  .estimate-bar button {
    padding: 20px;
    font-size: 18px;
  }

  .call-row span {
    font-size: 18px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}
.services-hero {
  position: relative;
  min-height: 300px;
  background-image: url("images/roof-work.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.services-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.services-hero-content h1 {
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 18px;
}

.services-hero-content p {
  font-size: 22px;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.5;
}

.services-page {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 50px 36px;
  background: #fff;
}

.service-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card h2 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 900;
  color: #111;
}

.service-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.services-cta {
  background: #08090d;
  color: white;
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.services-cta h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
}

.services-cta p {
  font-size: 20px;
  color: #eee;
}

.services-buttons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.estimate-page-btn {
  background: #d71919;
  color: white;
  text-decoration: none;
  font-weight: 900;
  padding: 22px 36px;
  border-radius: 10px;
  font-size: 20px;
}

.call-page-btn {
  border: 2px solid rgba(255,255,255,0.8);
  color: white;
  text-decoration: none;
  font-weight: 900;
  padding: 18px 34px;
  border-radius: 10px;
  font-size: 20px;
  text-align: center;
}

.call-page-btn span {
  font-size: 18px;
}

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

  .services-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 40px;
  }

  .services-hero-content p {
    font-size: 18px;
  }

  .services-page {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .services-cta {
    padding: 34px 22px;
  }

  .services-cta h2 {
    font-size: 32px;
  }

  .estimate-page-btn,
  .call-page-btn {
    width: 100%;
    text-align: center;
  }
}