* {
  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;
}/* ===== MOBILE FIX: QUOTE FORM LAYOUT ===== */
@media (max-width: 768px) {

  .quote-section form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .quote-section label {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
  }

  .quote-section input,
  .quote-section select,
  .quote-section textarea {
    width: 100% !important;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .quote-section textarea {
    min-height: 120px;
  }

  .quote-section button {
    width: 100% !important;
    padding: 14px;
    font-size: 18px;
    border-radius: 10px;
  }

}

.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 FIX: HERO SECTION ===== */
@media (max-width: 768px) {

  .hero {
    padding: 50px 15px;
    text-align: center;
  }

  .hero h2 {
    font-size: 26px;
    line-height: 1.2;
  }

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

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 14px;
    border-radius: 10px;
  }
}
}/* ===== STICKY CALL/TEXT BAR (MOBILE + DESKTOP) ===== */
.sticky-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 10px;
  z-index: 9999;
  border-top: 2px solid #ff7a00;
}

.sticky-contact-bar a {
  flex: 1;
  text-align: center;
  margin: 0 6px;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  color: white;
}

.sticky-contact-bar .call-btn {
  background: #ff7a00;
}

.sticky-contact-bar .text-btn {
  background: #444;
}

/* Mobile sizing */
@media (max-width: 768px) {
  .sticky-contact-bar a {
    font-size: 15px;
    padding: 14px 8px;
  }
}/* ===== FIX: Prevent sticky bar from covering content ===== */
body {
  padding-bottom: 80px;
/* ===== UPGRADED SMS LEAD CTA (MARKETING STYLE) ===== */

.sms-lead {
  background: linear-gradient(135deg, #111, #000);
  padding: 70px 20px;
  text-align: center;
  border-top: 2px solid rgba(255,165,0,0.3);
  border-bottom: 2px solid rgba(255,165,0,0.3);
}

.sms-lead h2 {
  color: #ff7a00;
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sms-lead p {
  color: #ddd;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.sms-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a00, #ffb100);
  color: #000;
  padding: 18px 40px;
  font-size: 22px;
  font-weight: 900;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0px 10px 25px rgba(255, 122, 0, 0.35);
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.15);
}

.sms-btn:hover {
  transform: scale(1.06);
  box-shadow: 0px 15px 35px rgba(255, 122, 0, 0.55);
}

.sms-btn:active {
  transform: scale(0.98);
}

/* Adds a subtle glow animation */
@keyframes glowPulse {
  0% { box-shadow: 0px 10px 25px rgba(255, 122, 0, 0.35); }
  50% { box-shadow: 0px 15px 40px rgba(255, 122, 0, 0.75); }
  100% { box-shadow: 0px 10px 25px rgba(255, 122, 0, 0.35); }
}

.sms-btn {
  animation: glowPulse 2s infinite;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .sms-lead h2 {
    font-size: 28px;
  }

  .sms-lead p {
    font-size: 16px;
  }

  .sms-btn {
    width: 100%;
    max-width: 340px;
    font-size: 18px;
    padding: 16px 20px;
  }
}
}/* ===== SMS LEAD SECTION ===== */
.sms-lead {
  background: #111;
  padding: 60px 20px;
  text-align: center;
}

.sms-lead h2 {
  color: #ff7a00;
  font-size: 32px;
  margin-bottom: 15px;
}

.sms-lead p {
  color: #ddd;
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.5;
}





  

  
  

.sms-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a00, #ffb100);
  color: #000;
  padding: 18px 40px;
  font-size: 22px;
  font-weight: 900;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0px 10px 25px rgba(255, 122, 0, 0.35);
  transition: all 0.25s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.15);
  animation: glowPulse 2s infinite;
}

.sms-btn:hover {
  transform: scale(1.06);
  box-shadow: 0px 15px 35px rgba(255, 122, 0, 0.55);
}

.sms-btn:active {
  transform: scale(0.98);
}

@keyframes glowPulse {
  0% { box-shadow: 0px 10px 25px rgba(255, 122, 0, 0.35); }
  50% { box-shadow: 0px 15px 40px rgba(255, 122, 0, 0.75); }
  100% { box-shadow: 0px 10px 25px rgba(255, 122, 0, 0.35); }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .sms-btn {
    width: 100%;
    max-width: 340px;
    font-size: 18px;
    padding: 16px 20px;
  }
}/* ====== STICKY SMS LEAD BAR ====== */
.sticky-sms-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.92);
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 9999;
  border-top: 2px solid #ff7a00;
  backdrop-filter: blur(10px);
}

.sticky-sms-btn {
  flex: 1;
  text-align: center;
  background: linear-gradient(135deg, #ff7a00, #ffb100);
  color: #000;
  font-weight: 900;
  padding: 14px 10px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0px 6px 20px rgba(255, 122, 0, 0.45);
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
}

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

@media (max-width: 768px) {
  .sticky-sms-btn {
    font-size: 15px;
    padding: 16px 10px;
  }
}