/* GLOBAL */
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
a { text-decoration: none; }

/* NAV */
header {
  background: #111;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo a {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: #eee; }
.nav-btn {
  background: #ffbb00;
  color: #111;
  padding: 10px 18px;
  font-weight: 700;
}

/* HERO */
.hero {
  background: #222;
  background-image: url("hero-electrician.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
.hero h1 { font-size: 2.8rem; margin-bottom: 10px; }
.hero-btn {
  background: #ffbb00;
  margin-top: 15px;
  display: inline-block;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  text-align: center;
}
h2 { margin-bottom: 25px; color: #111; }

.services .service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: #fafafa;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
}

/* CONTACT */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
input, textarea {
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 4px;
}
button {
  background: #ffbb00;
  border: none;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #111;
  color: #eee;
  padding: 10px;
  font-size: 0.9rem;
}
