/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

/* HEADER */
.site-header {
  background: #1a1a1a;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  font-weight: bold;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.main-nav a:hover {
  color: #ff6600;
}

/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  background: #1a1a1a;
  padding: 10px;
  list-style: none;
  top: 30px;
  left: 0;
  min-width: 200px;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li {
  margin-bottom: 10px;
}

.dropdown a {
  color: #fff;
}

.dropdown a:hover {
  color: #ff6600;
}

/* HERO */
.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 600px;
}

.btn-primary {
  background: #ff6600;
  color: #fff;
  padding: 12px 20px;
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  border-radius: 4px;
}

.btn-primary:hover {
  background: #cc5200;
}

/* SERVICES */
.services-overview {
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

.service-card img {
  width: 100%;
  border-radius: 6px;
}

.btn-secondary {
  background: #1a1a1a;
  color: #fff;
  padding: 10px 18px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 4px;
}

.btn-secondary:hover {
  background: #333;
}

/* ABOUT PREVIEW */
.about-preview {
  background: #fff;
  padding: 60px 0;
}

.about-inner {
  display: flex;
  gap: 40px;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
}

/* QUOTE FORM */
.quote-section {
  padding: 60px 0;
  background: #eee;
}

.jobber-form {
  width: 100%;
  height: 600px;
  border-radius: 6px;
}

/* FOOTER */
.site-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
