/********SERVICE PAGE*****/

.support-image {
  max-width: 80%;
  opacity: 0.9;
}

/* Floating circle */
.additional-services-circle {
  position: absolute;
  top: 20%;
  right: 45%;
  width: 260px;
  height: 260px;
  background-color: #DAA520;
  border-radius: 50%;
  padding:2.5rem;
  z-index: 10;
  text-align: center;
}

.additional-services-circle ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.additional-services-circle li {
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  .additional-services-circle {
    position: static;
    margin: 30px auto 0;
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}

/* Floating button */
.float-btn {
  position: absolute;
  top: 70%;
  right: 45%;
  border-radius: 50%;
  padding:2.5rem;
  z-index: 5;
  text-align: center;
}



.service-fit h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.service-fit-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: #444;
}


/* subtle editorial bullet */
.service-fit-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #b6a89c; /* warm accent */
}

.service-fit-list em {
  font-style: italic;
}

.service-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem 4.5rem 1.5rem;
  background-color: #f7f5f2; /* or image */
   position: relative;

}

.service-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  

}



.service-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a8f86;
  margin-bottom: 1rem;
}

.service-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.75rem;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 1.5rem;
  color: #444;
}

.service-value {
  font-style: italic;
  color: #788639;
  margin-bottom: 2.5rem;
}

.service-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid #7c726a;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.service-cta:hover {
  background: #7c726a;
  color: #fff;
}




@media (max-width: 600px) {
  .service-fit {
    padding-top: 1rem;
  }

  .service-fit-text h2 {
    font-size: 1.75rem;
  }

  .service-fit-intro {
    font-size: 1rem;
    line-height: 1.6;
  }

  .service-fit-list li {
    font-size: 0.95rem;
  }
}


.service-includes {
  padding: 4rem 1.5rem;
  background-color: #fffdf9;
}

.service-includes-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.includes-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #333;
}

.includes-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid for three phases */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

/* Individual card styling */
.includes-card {
  background: #fdfcf7;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.includes-card:hover {
  transform: translateY(-5px);
}

.includes-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #5e692e; /* accent color */
}

.includes-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.includes-card ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.includes-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b6a89c; /* subtle warm accent */
}

/* Responsive: stack vertically on smaller screens */
@media (max-width: 900px) {
  .includes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Container */
.service-fit-images {
  position: relative;
  height: 450px; /* desired collage height */

}



/* Hover lift effect on wrapper */
.service-img-wrapper:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 900px) {
  .service-fit-images {
    position: static;
    display: flex;
    justify-content: center;
    gap: 1rem;
    height: auto;
  }

}

.service-lg-img {
position: relative;
width: 40rem;
height: 100%;
}

.float-img{
  position: absolute;
}


/* Grid Container */
.service-fit {
  position: relative;
  overflow: visible; /* allow image bleed */
}

.service-fit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 95%;
  margin: 0 auto;
}


/* Column 1: Large Image */



.fit-image-wrapper {

  max-height: 700px;     /* max height to control vertical bleed */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  position: relative;
  top: -60px;            /* spills into hero above */
  z-index: 99;
   right: 5rem;
}

.fit-image-wrapper img {
  width: 100%;
  height: auto;          /* keep natural aspect ratio */
  max-width: none;       /* prevent browser downscaling */
  object-fit: cover;     /* fills wrapper without distortion */
  display: block;
 
}



/* Column 2: Text */
.fit-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2f2f2f;
}

.service-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-fit-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

.list-accent {
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background-color: #6a8a6b;
  border-radius: 50%;
}

/* Column 3: Floating Images */
.fit-floating-images {
  position: relative;
  height: 300px;
}

.service-img-wrapper {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.img-1-wrapper { top: 0; left: 0; width: 140px; height: 140px; z-index: 3; }
.img-2-wrapper { top: 60px; left: 40px; width: 140px; height: 140px; z-index: 2; }
.img-3-wrapper { top: 120px; left: 80px; width: 140px; height: 140px; z-index: 1; }

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-img-wrapper:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 900px) {

  .service-fit-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fit-image-wrapper {
    top: 0;
    right: 0;
    max-height: none;
    width: 100%;
  }

  .fit-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .container-service {
    padding-top: 2.5rem;
  }

  .fit-floating-images {
    position: static;
    display: flex;
    justify-content: center;
    gap: 1rem;
    height: auto;
  }

  .service-img-wrapper {
    position: static;
    width: 45%;
    height: auto;
  }

  .section-bottom-bar {
    visibility: hidden;
  }

}

.section-bottom-bar { 
  position: relative;
   top: -5rem;
    left: 0; 
    width: 100%;
     height: 6px;
      background-color: #DAA520; 
      border-radius: 3px;
       box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        z-index: 1; }

.container-service {
  padding-top: 10rem
}

@media (max-width: 900px) {
  .container-service{
    padding-top: 2.5rem;
  }
}

/* mustuard Trail Container */
.mustard-trail {
  position: absolute;
  right: -40px;   /* was left */
  left: auto;
  top: 50px;
  width: 0;
  z-index: 0;
  pointer-events: none;
}


/* Generic Circle */
.mustard-circle {
  display: block;
  position: absolute;
  border-radius: 50%;
  background-color: #DAA520;
  opacity: 0.15;
}

/* Individual circle positions & sizes */
.circle-1 {
  width: 12rem;
  height: 12rem;
  top: 4rem;
  right: 3rem;
}

.circle-2 {
  width: 5rem;
  height: 5rem;
  top: 15rem;
  right: 5rem;
}

.circle-3 {
  width: 8rem;
  height: 8rem;
  top: 18rem;
  right: 0;
}

.circle-4 {
  width: 18rem;
  height: 18rem;
  top: 22rem;
  right: 0;
}

.circle-5 {
  width: 4rem;
  height: 4rem;
  top: 40rem;
  right: 5rem;
}


/* Optional: Slight variation in opacity */
.circle-2 { opacity: 0.1; }
.circle-3 { opacity: 0.18; }
.circle-4 { opacity: 0.12; }
.circle-5 { opacity: 0.14; }

