/* ===== Floral Hero Section ===== */

.floral-hero {
  padding: 120px 5%;
  background-color: #788639;
  overflow: hidden;
}

.floral-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* ===== Text Styling ===== */

.floral-hero-text {
  max-width: 520px;
}

.floral-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #DAA520;
  margin-bottom: 16px;
}

.floral-hero-text h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: white;
}

.floral-hero-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgb(205, 201, 201);
}

/* ===== Floating Image Layout ===== */

.floral-hero-images {
  position: relative;
  width: 100%;
  height: 420px;
}

.floral-img {
  position: absolute;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Main image */
.img-one {
  width: 280px;
  height: 360px;
  top: 0;
  right: 0;
  z-index: 1;
}

/* Overlapping image */
.img-two {
  width: 220px;
  height: 280px;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

/* Accent image */
.img-three {
  width: 180px;
  height: 220px;
  bottom: -70px;
  right: 160px;
  z-index: 3;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .floral-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .floral-hero-images {
    height: 360px;
  }

  .img-one {
    right: 20px;
  }

  .img-three {
    right: 120px;
  }
}

@media (max-width: 600px) {
  .floral-hero {
    padding: 80px 5%;
  }

  .floral-hero-text h1 {
    font-size: 2.2rem;
  }

  .floral-hero-images {
    height: 320px;
  }

  .img-one {
    display: none;
  }

  .img-two {
  width: 240px;
    height: 320px;
    z-index: 5;
    top: 2rem;
    left: revert-layer;
  }

  .img-three {
      width: 200px;
    height: 250px;
    left: 11rem;
    top:-2rem;
    z-index:6;
  }
}

/* ===== Floral Services Section ===== */

.floral-services {
  padding: 100px 5%;
  background-color: #ffffff;
}

.floral-services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Header ===== */

.services-header {
  max-width: 620px;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a8f84;
  margin-bottom: 16px;
}

.services-header h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #2f2f2f;
}

.services-header p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* ===== Cards ===== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  padding: 40px 32px;
  background-color: #f9f7f4;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #2f2f2f;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

/* Subtle hover — refined, not flashy */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .services-header h2 {
    font-size: 2rem;
  }
}

/* Lists */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.service-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #9a8f84;
}

/* Paragraph cards */
.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

/* Image-enhanced cards */


.image-wrapper {
  height: 200px;          /* uniform card image height */
  overflow: hidden;
  border-radius: 12px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;      /* fills wrapper without stretching */
}

/* ===== Floral CTA Section ===== */
.floral-cta {
  padding: 100px 5%;
  background-color: #fdfcf7;
  overflow: hidden;
}

.floral-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ===== CTA Text ===== */
.cta-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2f2f2f;
}

.cta-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #555;
}

.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background-color: #DAA520; 
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}


.cta-button:hover {
  background-color: #9c8772;
  transform: translateY(-3px);
}

/* ===== Floating Images Wrapper ===== */
.cta-images {
  position: relative;
  width: 100%;
  height: 400px; /* overall container height */
}

.cta-img-wrapper {
  position: absolute;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Position & size each wrapper */
.img-one-wrapper {
  top: 0;
  right: 0;
  width: 280px;
  height: auto; /* natural height, preserves quality */
}

.img-two-wrapper {
  bottom: 40px;
  left: 40px;
  width: 220px;
  height: auto;
}

.img-three-wrapper {
  bottom: -10px;
  right: 160px;
  width: 200px; /* slightly larger than before for crispness */
  height: auto;
}

  /* Image itself fills wrapper but keeps natural resolution */
.cta-img-wrapper img {
width: auto;     /* maintain natural width */
  height: 100%;    /* fill wrapper height */
  max-width: 100%; /* prevent overflow */
  object-fit: cover;
  image-rendering: auto;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .floral-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

 @media (max-width: 600px) {
  .cta-button{
   
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
  .cta-images {
    height: 340px; /* give room for stacking */
  }

  .img-one-wrapper {
  display: none;
  }

  .img-two-wrapper {
    width: 200px;
  
    left: 10px;
    bottom: auto;
    z-index: 5;
  }

  .img-three-wrapper {
    width: 200px;
    top: 160px;
    right: 10px;
    bottom: auto;
    display: block; /* or none if you want hidden */
    z-index: 27;
  }
}


@media (max-width: 600px) {
  .cta-text h2 { font-size: 2rem; }

}

.section-accent {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #6a8a6b; /* soft green */
  border-radius: 2px;
  margin: 16px 0 32px 0;
}
}

/* Green Trail Container */
.green-trail {
  position: absolute;
  left: -40px; /* slightly off the page */
  top: 50px;
  width: 0; /* circles positioned individually */
  z-index: 0; /* behind content */
  pointer-events: none; /* so clicks go through */
}

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

/* Individual circle positions & sizes */
.circle-1 {
  width: 12rem;
  height: 12rem;
  top: 0;
  left: 0;
}

.circle-2 {
 width: 5rem;
    height: 5rem;
    top: 10rem;
    left: 5rem;
}

.circle-3 {
 width: 8rem;
    height: 8rem;
    top: 13rem;
}

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

.circle-5 {
    width: 4rem;
    height: 4rem;
    top: 35rem;
    left: 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; }

/* Make sure section has relative positioning */
.floral-services {
  position: relative;
  padding: 100px 5%;
  background-color: #f9f7f4;}