:root {
  --green:#28a745;
  --orange:#ff6600;
  --black:#111;
  --white:#fff;
}

html{
  scroll-behavior: smooth;
}

* { margin:0; padding:0; box-sizing:border-box; font-family:'Montserrat',sans-serif;}
body { background:var(--white); color:var(--black); scroll-behavior:smooth;}
a { text-decoration:none; color:inherit; }

/* NAVBAR */
nav { display:flex; justify-content:space-between; align-items:center; padding:20px 10%; background: rgba(255,255,255,0.95); position:sticky; top:0; z-index:100; box-shadow:0 2px 10px rgba(0,0,0,0.05);}
nav .logo { font-weight:700; font-size:1.8rem; color:var(--green);}
nav ul { display:flex; gap:30px; font-family:'Montserrat',sans-serif;}
nav ul li { list-style:none; font-weight:600; position:relative; cursor:pointer; font-family:'Montserrat',sans-serif;}
nav ul li::after { content:''; position:absolute; width:0%; height:2px; background:var(--orange); left:0; bottom:-5px; transition:0.3s; }
nav ul li:hover::after { width:100%; }
nav ul li.nav-btn::after{
  display: none;
}
nav .get-quote-btn { background:var(--orange); color:#fff; padding:10px 20px; border-radius:5px; font-weight:600; transition:0.3s; text-decoration: none;  box-shadow: 0 4px 12px rgba(249,115,22,0.3);}
nav .get-quote-btn:hover { background:var(--green);   text-decoration: none;box-shadow: 0 6px 18px rgba(22,163,74,0.4);}
.hamburger { display:none; flex-direction:column; cursor:pointer; gap:5px; }
.hamburger span { width:25px; height:3px; background:var(--black); transition:0.3s; }
.hamburger.active span:nth-child(1){
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2){
  opacity: 0;
}

.hamburger.active span:nth-child(3){
  transform: rotate(-45deg) translate(6px, -6px);
}

/* LOGO STYLING */
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #111;
}

.logo img{
  height: 80px;
  width: auto;
  object-fit: cover;
  transition: 0.3s;
}

/* slightly smaller on mobile */
@media (max-width: 768px){
  .logo img{
    height: 50px;
  }
}

/* OPTIONAL: brand color accent */
.logo span{
  background: linear-gradient(90deg, #16a34a, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo img{
  transition: 0.3s;
}

.logo:hover img{
  transform: rotate(-5deg) scale(1.05);
}


/* MOBILE NAV */
@media (max-width: 900px){

  nav{
    padding: 15px 6%;
  }

  /* SHOW HAMBURGER */
  .hamburger{
    display: flex;
  }

  /* HIDE DESKTOP MENU */
  nav ul{
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    
    background: white;
    flex-direction: column;
    align-items: flex-start;

    padding: 25px 30px;
    gap: 20px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  /* WHEN OPEN */
  nav ul.show{
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  /* NAV ITEMS */
  nav ul li{
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }

  nav ul li:last-child{
    border-bottom: none;
  }

  /* LINKS */
  nav ul li a{
    display: block;
    width: 100%;
    font-size: 1rem;
  }

  /* BUTTON FIX */
  .get-quote-btn{
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}





/* =======================
   CONTACT SECTION WRAPPER
======================= */
.contact-section {
  margin: 50px auto; /* less big space */
  padding: 40px;
  max-width: 1200px;
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 12px;
 
  flex-wrap: wrap;
  font-family:'Inter',sans-serif;
}



.contact-left h2 {
  font-size: 1.8rem;
  color: #28a745;
  margin-bottom: 25px;
  margin-top: 55px;
}

.contact-left p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 12px;
  line-height: 1.6;
   font-family:'Inter',sans-serif;
}



/* LEFT COLUMN */
.contact-left {
  flex: 1;
  min-width: 280px;
  border-right: 1px solid #e5e7eb;
  padding-right: 30px;
}

/* RIGHT COLUMN */
.contact-right {
  flex: 2;
  min-width: 300px;
 
    min-width: 300px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  
}

/* HEADER IMAGE */
.form-header-image {
  width: 100%;
  max-width: 450px;   /* prevents overflow */
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.form-header-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* MAP STYLING */
.contact-right iframe {
  width: 100%;
  height: 800px;
  border: 0;
  border-radius: 12px;
  margin-top: 20px;
  
}

/* =======================
   RESPONSIVE BREAKPOINT
======================= */
@media (max-width: 768px) {

  .contact-section {
    flex-direction: column;
    padding: 20px;
  }

  .contact-left {
    border-right: none;
    padding-right: 0;
    text-align: center;
  }

  .contact-right {
    padding-left: 0;
  }

  .form-header-image {
    max-width: 300px;
  }

  .contact-right iframe {
    height: 900px; /* taller for mobile scrolling */
  }
}



  .highlight {
      color: #f97316;
      font-weight: 600;
    }

    /* ======================= FAQ SECTION ======================== */
.faq-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-section h2 {
  font-size: 1.8rem;
  color: #28a745;
  margin-bottom: 25px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: black;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg); /* changes + to x */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
  color: #4b5563;
  font-size: 1rem;
   font-family:'Inter',sans-serif;
  line-height: 1.6;
}

.faq-answer p {
  margin: 10px 0 15px 0;
   font-family:'Inter',sans-serif;
  
}

/* When active */
.faq-answer.show {
  max-height: 500px; /* large enough to show content */
  padding: 10px 0;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px; /* increased for mobile + long answers */
}

.faq-item.active .icon {
  transform: rotate(45deg);
}



/* =======================
   RESPONSIVE DESIGN
======================= */
@media (max-width: 768px) {

  .faq-section {
    padding: 60px 20px;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-subtext {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 18px 0;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {

  .faq-section {
    padding: 50px 15px;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-question .icon {
    font-size: 1.3rem;
  }
}


/* --------------------
   FOOTER
-------------------- */

.footer {
  background: #ffffff;
  padding: 90px 10% 35px 10%;
  border-top: 1px solid #e5e7eb;
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 70px; /* more spacing */
  align-items: start;
}

/* Branding */
.footer-branding img {
  width: 190px; /* smaller logo */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  font-size: 14px;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
  font-weight: 600;
}

.footer-socials a:hover {
  color: #f97316;
}

/* Columns */
.footer-column h3 {
  margin-bottom: 20px;
  color: #f97316;
  font-size: 16px;
}

.footer-column a {
  display: block;
  margin-bottom: 12px;
  color: #111;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.footer-column a:hover {
  color: #f97316;
  transform: translateX(4px);
}

.footer-column p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
  font-weight: 600;
}

.footer-small {
  margin-top: 15px;
  font-size: 13px;
  color: #111;
  font-weight: 600;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 55px 0 30px 0;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #111;
  font-weight: 600;
}

.footer-legal a {
  margin-left: 25px;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
  font-weight: 600;
  
}

.footer-legal a:hover {
  color: #f97316;
}

/* --------------------
   RESPONSIVE
-------------------- */

@media (max-width: 900px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-branding img {
    margin: 0 auto 20px auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

}