
/* Section */
.services-section {
  padding: 21px 0;
}

/* Cards */
.service-card {
  padding: 40px;
  height: 100%;
  /* border-radius: 14px; */
  text-align: center;
}

.service-card.dark {
  background: #ffffff;
  color: black !important;
}

.service-card.light {
  background: #fdfaf6;
  color: #2f2f2f;
}

/* Arch image */
.arch-img {
  width: 180px;
  height: 220px;
  margin: 0 auto 25px;
  border-radius: 100px 100px 0 0;
  overflow: hidden;
}

.arch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* Button */
.explore-btn {
  border: 1px solid currentColor;
  padding: 8px 22px;
  font-size: 14px;
  border-radius: 30px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.explore-btn:hover {
  background: #1e7f5c !important;
  color: white !important;
}

/* Image only cards */
.service-image-only {
  position: relative;
  /* border-radius: 14px; */
  overflow: hidden;
  height: 100%;
}

.service-image-only img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.service-image-only:hover img {
  transform: scale(1.08);
}
.services-section .col-lg-6 {
  padding: 0 !important;
}


/* Play Button */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.play-btn::before {
  content: "";
  border-left: 14px solid #425a50;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.service-image-only:hover .play-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .service-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .arch-img {
    width: 150px;
    height: 190px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
  }
}



/* TITLE */
.top {
  text-align: center;
  margin-bottom: 60px;
}

.top small {
  font-size: 11px;
  letter-spacing: 2px;
  color: #c9a45c;
}

.top h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.2;
  margin-top: 12px;
}

/* GRID LAYOUT */
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 28px;
}

/* CARD BASE */
.card {
  position: relative;
  border-radius: 26px;
  padding: 34px;
  overflow: hidden;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 14px 0;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 240px;
}

/* STEP NUMBER */
.step {
  font-size: 22px;
  font-weight: 700;
}

/* COLORS */
.green {
  background: #465f54;
  color: white !important;
}

.green p {
  color: #e6efea;
}

.cream {
  background: #f2efe9;
}

.yellow {
  background: #ffd36d;
}

/* HEIGHT CONTROL */
.tall {
  min-height: 420px;
  padding-bottom: 90px; /* space for bottom text */
}

/* BOTTOM-LEFT TEXT (01 & 04) */
.tall p {
  position: absolute;
  bottom: 32px;
  right: 34px;
  font-size: 18px;
  color: white;
}

/* MIDDLE COLUMN */
.middle {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
}

/* DECORATIVE LEAF */
.card::after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: 10px;
  width: 200px;
  height: 200px;
 background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 320'%3E%3Cpath d='M60 300 C58 260 60 210 64 160 C68 110 78 70 90 30' fill='none' stroke='%23ffffff' stroke-opacity='0.38' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M70 210 C95 200 120 190 145 175' fill='none' stroke='%23ffffff' stroke-opacity='0.34' stroke-width='0.9' stroke-linecap='round'/%3E%3Cpath d='M68 180 C90 170 110 160 132 145' fill='none' stroke='%23ffffff' stroke-opacity='0.32' stroke-width='0.9' stroke-linecap='round'/%3E%3Cpath d='M66 150 C85 138 100 125 118 110' fill='none' stroke='%23ffffff' stroke-opacity='0.3' stroke-width='0.85' stroke-linecap='round'/%3E%3Cpath d='M88 95 C110 85 130 78 150 70' fill='none' stroke='%23ffffff' stroke-opacity='0.28' stroke-width='0.8' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;


  background-size: contain;
}

.cream::after {
  opacity: 0.15;
}

.yellow::after {
  opacity: 0.15;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .middle {
    grid-template-rows: auto;
  }

  .tall {
    min-height: auto;
    padding-bottom: 34px;
  }

  .tall p {
    position: static;
  }
}
.section {
  max-width: 1500px;
  margin: auto;
  /* padding: 90px 20px; */
}

/* SECTION */
.spa-section {
  max-width: 1400px;
  margin: auto;
  padding: 90px 20px;
}



.spa-header span {
  font-size: 13px;
  letter-spacing: 2px;
  color: #6f8b4c;
  text-transform: uppercase;
  font-weight: 700;
}

.spa-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 14px 0;
  color: #1f1f1f;
  line-height: 1.2;
}

.spa-header p {
  color: #777;
  font-size: 15px;
  line-height: 1.7;
}

/* ROW LAYOUT */
.spa-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: flex-start;
  margin-bottom: 30px;
}

/* IMAGE */
.spa-image img {
  width: 100%;
  display: block;
}

@media (min-width: 1200px) {
  .spa-card {
  background: #ffffff;
  padding: 38px 40px;
  max-width: 720px;
  margin-left: -90px;   /* overlap onto image */
  margin-top: 80px;    /* push card to bottom */
  box-shadow: 0 22px 44px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  height: 355px !important;
}
}

li{
  font-size: 16px !important;
}


/* CONTENT CARD */
.spa-card {
  background: #ffffff;
  padding: 38px 40px;
  max-width: 720px;
  margin-left: -90px;   /* overlap onto image */
  margin-top: 80px;    /* push card to bottom */
  box-shadow: 0 22px 44px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  /* height: 355px !important; */
}

.spa-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 14px;
}

.spa-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
}

.spa-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.spa-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

.spa-card ul li::before {
  content: "✓";
  color: #6f8b4c;
  margin-right: 8px;
  font-weight: bold;
}

.spa-card a {
  display: inline-block;
  font-size: 14px;
  color: #6f8b4c;
  font-weight: 700;
  text-decoration: none;
}

/* ICON */
.icon-tag {
  width: 36px;
  height: 36px;
  background: #6f8b4c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -18px;
  left: -18px;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .spa-row {
    grid-template-columns: 1fr;
  }

  .spa-card {
    margin: -60px auto 0;
  }
}
.spa-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr; /* same row desktop */
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.spa-header-row h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  margin: 0;
  color: #1f1f1f;
}

.spa-header-row p {
  font-size: 18px;
  line-height: 1.7;
  color: #777;
  margin: 0;
  max-width: 420px;
}

/* MOBILE STACK */
@media (max-width: 768px) {
  .spa-header-row {
    grid-template-columns: 1fr; /* one by one */
  }
}

/* MIRRORED ROW (content left, image right) */
.spa-row.reverse {
  grid-template-columns: 0.75fr 1.25fr;
}

.spa-row.reverse .spa-card {
  margin-left: 0;
  margin-right: -90px;   /* overlap onto image from left side */
  justify-self: end;
}

/* MOBILE FIX (same as first row) */
@media (max-width: 991px) {
  .spa-row.reverse {
    grid-template-columns: 1fr;
  }

  .spa-row.reverse .spa-card {
    margin: -60px auto 0;
  }
}
