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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background: #000;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 50px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.cta {
  background: #f26522;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('images/hero-placeholder.jpg') center center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
}

.btn {
  padding: 10px 20px;
  background: #f26522;
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  border-radius: 4px;
  font-weight: bold;
}

.btn-secondary {
  background: #444;
}

/* Services */
.services {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-box img {
  width: 60px;
  margin-bottom: 15px;
}

/* Why Choose Us */
.why {
  padding: 40px 20px;
  background: #f4f4f4;
  text-align: center;
}

.why-list {
  list-style: none;
  margin-top: 20px;
}

.why-list li {
  margin: 10px 0;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.testimonial {
  max-width: 600px;
  margin: 20px auto;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
}

/* Quote Form */
.quote {
  padding: 60px 20px;
  background: #f26522;
  color: #fff;
  text-align: center;
}

.quote form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.quote input,
.quote textarea,
.quote select {
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 100%;
}

.quote button {
  background: #000;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}

.socials a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .btn {
    display: block;
    margin: 10px auto;
  }
}