
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background-color: white;
  font-weight: bold;
}

.nav-logo {
  font-size: 1.2rem;
}

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: #444;
  font-size: 0.9rem;
}

.hero {
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: white;
  background: #111;
  display: inline-block;
  padding: 0.6em 1.2em;
  margin-bottom: 1em;
}

.btn {
  display: inline-block;
  background: #111;
  color: white;
  padding: 0.6em 1.4em;
  text-decoration: none;
  font-size: 0.9rem;
  border: none;
}

.btn.small {
  font-size: 0.8rem;
  padding: 0.5em 1.2em;
  margin-top: 1em;
}

.slogan {
  text-align: center;
  padding: 60px 20px;
}

.slogan .subtext {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
}

.slogan h2 {
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.6rem;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 40px;
  align-items: center;
}

.about-grid.reversed {
  flex-direction: row-reverse;
}

.about-left, .about-right {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-right img {
  width: 100%;
  border-radius: 8px;
}

.contact {
  text-align: center;
  padding: 60px 20px;
  border: 2px solid #111;
  margin: 40px 20px;
  border-radius: 15px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f8f8f8;
  font-size: 0.9rem;
}

.quote-section {
  max-width: 700px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.quote-section form {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-top: 30px;
}

.quote-section label {
  font-weight: bold;
  margin: 10px 0 5px;
}

.quote-section input,
.quote-section textarea {
  padding: 10px;
  font-size: 1rem;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.quote-section button.btn {
  background: #111;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
}

.quote-section button.btn:hover {
  background: #333;
}

.services-hero {
  text-align: center;
  padding: 60px 20px 20px;
  background: #f4f4f4;
}

.services-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.services-hero p {
  font-size: 1.1rem;
  color: #555;
}

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

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.service-card h3 {
  font-size: 1.2rem;
  margin: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  margin: 0 15px 20px;
}

.cta-quote {
  text-align: center;
  margin: 60px auto;
}

.cta-quote .btn {
  background: #111;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
}
