/* === MAIN Styles === */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #dfdfe7;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #15143E;
  color: white;
  padding: 1rem 0rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid white;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* adjust spacing between logo & title */
}

.logo-title img {
  width: 60px;
  height: auto;
  padding: 1rem 0 1rem 1.5rem;
}


header img {
  width: 100px;
  padding-right: 0rem;
}

.title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  max-width: 230px;
}

.title:hover {
  color: #29C86C;
}

.phone {
  font-size: 1.3rem;
  text-align: center;
  color: #df4f5b;
}

.phone a {
  padding: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 1.5rem;
}

nav a:hover {
  color: #29C86C;
  text-decoration: underline;
}

.estimate-btn {
  font-weight: bold;
  font-size: 120%;
  color: #29C86C;
  white-space: wrap;
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.estimate-btn:hover {
  transform: scale(1.2);
  color: #29C86C;
}

.hero {
  background: #15143E;
  text-align: center;
  padding: 3rem 1rem;
  color: white;
  
}

#home .hero img{
  width: 50%
}

.hero img {
    width: 30%;
    max-width: 40rem;
    min-width: 200px;
    padding-bottom: 1rem;
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  background: #187940;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: none;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cta:hover {
  background-color: #29C86C;
}

.menu-toggle {
  display: none; /* hide hamburger icon on larger screens */
}

.line {
  margin-bottom: 2rem;
  border-bottom: 4px solid #15143E;
}



/* === Banner Styles === */
.banner {
  background: linear-gradient(135deg, #f9fafc, #e9ecf2);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1800px;
  gap: 2rem;
}

.banner img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 2px solid #15143E;
}

.banner-text, .service-text {
  flex: 1 1 400px;
  color: #333;
}

.banner-text h2, .service-text h2 {
  color: #15143E;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.banner-text p, .service-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}


/* === Services Preview Layout === */
.services-preview .service-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.services-preview .service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.services-preview .service-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.services-btn-container {
  text-align: center;
  margin-top: 2rem;
}

.services-btn {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}


/* === Service Areas Section === */
.service-areas {
  text-align: center;
  background: #ffffff;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem 2rem 2rem 3.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.service-areas-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: left;
}

.areas-text {
  flex: 1 1 55%;
}

.areas-image {
  flex: 1 1 40%;
  text-align: center;
}

.areas-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.service-areas h2 {
  font-size: 2rem;
  color: #15143E;
  margin-bottom: 1rem;
}

.service-areas p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-areas .phone {
  font-size: 1rem;
}

.areas-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.4rem 1.5rem;
}

.areas-list li {
  font-size: 1rem;
  color: #15143E;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid #e6e6e6;
}

.areas-list li::before {
  content: "▸";
  color: #29C86C;
  margin-right: 0.5rem;
  font-size: 1rem;
  line-height: 1;
}

.areas-list li:last-child {
  border-bottom: none;
}

.areas-list li:hover {
  color: #187940;
}


.service-areas .cta.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: #187940;
  color: white;
  text-decoration: none;
  transition: background 0.2s ease;
}

.service-areas .cta.small:hover {
  background: #29C86C;
}



/* === FOOTER === */
footer {
  background: #15143E;
  color: white;
  padding: 1.5rem;
  text-align: center;
  margin-top: 3rem;
}

footer nav a {
  margin: 0 1rem;
  color: #ccc;
  text-decoration: none;
}

footer nav a:hover {
  color: #29C86C;
}

/* Style phone links the same as .phone text */
.phone a,
footer a[href^="tel:"] {
  color: #df4f5b;
  text-decoration: none;
  font-weight: normal;
}

.phone a:hover,
footer a[href^="tel:"]:hover {
  text-decoration: underline;
}



/* === PHONE and Small Screen Styles === */
@media (max-width: 1200px) {
  header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
  }

  .title {
    font-size: 1rem;
    flex: 1 1 auto;
    max-width: 300px;
  }

  .menu-toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: white;
  }

  nav.mobile-nav {
    flex-direction: column;
    width: 100%;
    display: none;
    background: #15143E;
    padding: 0 1rem 1rem 0;
  }

  nav.mobile-nav.show {
    display: flex;
  }

  nav.mobile-nav a {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav.mobile-nav a:first-child {
    border-top: none;
  }

  .logo-title img {
    padding: 1rem 0;
  }

  .estimate-btn:hover {
  transform: scale(1.05);
  color: #29C86C;
  }

  .banner h2 {
    font-size: 1.5rem;
  }
}


@media (max-width: 700px) {
  .about-banner .banner-content {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
  }

  .phone {
    font-size: 1.2rem;
    margin: 0;
    white-space: nowrap;
    text-align: center;
    order: 2;
    flex: 1 1 100%;
  }

  .banner img {
    width: 70%;
    max-width: 300px;
  }

  .banner-text {
    text-align: center;
    padding: 0 1rem;
  }

  .services-preview {
    padding: 1.5rem 1rem;
  }

  .services-preview .banner-content {
    gap: 1rem;
  }

  .services-preview .service-item {
    padding: 1rem;
  }

  .areas-text h2 {
    font-size: 1.5rem;
  }
}