/* HEADER */
.site-header {
  background: #1a3540;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
body{
  margin: 0px;
  box-sizing: border-box;
}
.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.logo img {
  height: 50px;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 800;
}
.main-nav ul li a:hover {
  color: #ff7b00;
}
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  color: black;
  top: 30px;
  left: 0;
  padding: 10px 0;
  border-radius: 6px;
  min-width: 200px;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #1a3540;
}
.dropdown-content a:hover {
  background: #f3f3f3;
}
.call-btn {
  background: #ff7b00;
  padding: 8px 15px;
  border-radius: 6px;
  color: white !important;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: white;
}

/* HERO SECTION */
.hero-section {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}
.hero-text {
  color: white;
  max-width: 55%;
}
.hero-text h1 span {
  color: #ff7b00;
}
.cta {
  background: #ff7b00;
  padding: 10px 20px;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

/* FORM */
.quote-form {
  background: #ff7b00;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  color: white;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  padding: 8px;
}
.quote-form button {
  width: 100%;
  background: #1a3540;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    background: #1a3540;
  }
  .main-nav.active ul {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-content {
    flex-direction: column;
  }
  .hero-text,
  .quote-form {
    max-width: 100%;
  }
}
