* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0b0b0b;
  color: white;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP BAR */
.top-bar {
  background: #000;
  padding: 18px 0;
  border-bottom: 3px solid #ff7a00;
}

.logo h1 {
  font-size: 28px;
  color: #ff7a00;
  font-weight: bold;
}

.logo p {
  font-size: 14px;
  color: #ddd;
  margin-top: 5px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* BUTTONS */
.btn {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.2s ease;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  transform: scale(1.05);
}

.btn.call {
  background: #ff7a00;
  color: black;
}

.btn.text {
  background: #222;
  border: 2px solid #ff7a00;
  color: white;
}

.btn.quote {
  background: #ff7a00;
  color: black;
}

.btn.services {
  background: transparent;
  border: 2px solid #ff7a00;
  color: white;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
    url("images/hero-tree.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
}

.hero h2 {
  font-size: 42px;
  color: #ff7a00;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: #ddd;
  max-width: 800px;
  margin: auto;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* TRUST SECTION */
.trust {
  padding: 50px 0;
  background: #111;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-box {
  background: #000;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #ff7a00;
  text-align: center;
}

.trust-box h3 {
  color: #ff7a00;
  margin-bottom: 10px;
}

/* SERVICES */
.services-section {
  padding: 60px 0;
  background: #0b0b0b;
  text-align: center;
}

.services-section h2 {
  font-size: 36px;
  color: #ff7a00;
  margin-bottom: 10px;
}

.subtitle {
  color: #ccc;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.service-card {
  background: #111;
  border-radius: 12px;
  padding: 25px;
  border: 2px solid #222;
  transition: 0.2s ease;
}

.service-card:hover {
  border: 2px solid #ff7a00;
  transform: translateY(-5px);
}

.service-card h3 {
  color: #ff7a00;
  margin-bottom: 10px;
}

/* SERVICE AREA */
.service-area {
  background: #111;
  padding: 60px 0;
  text-align: center;
}

.service-area h2 {
  font-size: 34px;
  color: #ff7a00;
  margin-bottom: 10px;
}

.service-area ul {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.service-area li {
  font-size: 18px;
  margin: 10px 0;
  color: #eee;
}

.homebase {
  margin-top: 10px;
  color: #ccc;
}

/* QUOTE FORM */
.quote-section {
  padding: 70px 0;
  text-align: center;
  background: #0b0b0b;
}

.quote-section h2 {
  color: #ff7a00;
  font-size: 34px;
  margin-bottom: 10px;
}

.quote-form {
  max-width: 600px;
  margin: 30px auto 0 auto;
  text-align: left;
  background: #111;
  padding: 30px;
  border-radius: 14px;
  border: 2px solid #222;
}

.quote-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #ff7a00;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #333;
  background: #000;
  color: white;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border: 2px solid #ff7a00;
}

.quote-btn {
  margin-top: 20px;
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* REVIEWS */
.reviews {
  background: #111;
  padding: 60px 0;
  text-align: center;
}

.reviews h2 {
  color: #ff7a00;
  font-size: 32px;
  margin-bottom: 10px;
}

.reviews p {
  color: #ddd;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 40px 0;
  border-top: 3px solid #ff7a00;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.footer h3 {
  color: #ff7a00;
  margin-bottom: 10px;
}

.footer p {
  color: #ccc;
  margin-bottom: 8px;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #ff7a00;
}

.bottom {
  margin-top: 25px;
  text-align: center;
  color: #777;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h2 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .logo h1 {
    font-size: 22px;
  }
}