* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* HEADER */
header {
  background-color: #1f2933;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

nav a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  background: url("images/Landscape image.png") center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.btn-primary {
  display: inline-block;
  padding: 10px 24px;
  background-color: #f59e0b;
  color: #1f2933;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #d97706;
}

/* SECTIONS */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #6b7280;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-highlights {
  list-style: none;
}

.about-highlights li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.about-highlights li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.6rem;
  color: #f59e0b;
}

.about-image {
  background: url("images/concrete floor.JPG") center/cover no-repeat;
  width: 100%;
  border-radius: 8px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  border-top: 4px solid #f59e0b;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.project-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.project-image {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.project-content {
  padding: 15px;
}

/* CONTACT */
.contact-section {
  background-color: #111827;
  color: #e5e7eb;
  padding: 40px 20px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-info span {
  color: #fbbf24;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 12px;
  border-radius: 4px;
  border: 1px solid #4b5563;
  background-color: #111827;
  color: #e5e7eb;
}

.contact-form button {
  padding: 9px 20px;
  background-color: #f59e0b;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #d97706;
}

/* FOOTER */
footer {
  background-color: #030712;
  color: #9ca3af;
  text-align: center;
  padding: 15px;
  font-size: 0.8rem;
}

/* MOBILE */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

