.service-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-hero-image img {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  display: block;
}

/* optional: keep spacing nice */
.service-hero {
  padding: 60px 0;
}

.cs-price-block {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
  align-items: end;
}

.cs-price {
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.cs-duration {
  font-size: 18px;
  color: white;
}

.service-how-it-works {
  background-color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 120px;
}

.service-how-it-works .cs-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

/* ****************************** */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.how-card {
  background: #fff;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.how-icon {
  font-size: 20px;
  margin-bottom: 10px;
}

.how-card ul {
  padding-left: 18px;
}

.how-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.how-card p,
.how-card ul li {
  font-size: 18px;
  color: var(--dark);
}

.how-card li {
  margin-bottom: 6px;
  list-style-type: disc;
}

/* ****************************** */


/* ****************************** */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-block: 120px;
}

.details-card {
  text-align: center;
  padding: 30px;
  background: var(--surface);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.details-card i {
  font-size: 22px;
  margin-bottom: 10px;

}

.details-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.details-card p {
  font-size: 18px;
}

/* ****************************** */

/* ****************************** */

.ritual-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 120px;
}

.ritual-steps {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ritual-intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ritual-intro ol {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ritual-intro li strong {
    font-size: 18px;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.step-number {
  color: #fff;
  width: 34px;
  height: 34px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.ritual-image img {
  width: 100%;
  border-radius: 12px;
  height: 720px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.ritual-content h2 {
  margin-bottom: 40px;
}

.ritual-intro h1,
.ritual-intro h2,
.ritual-intro h3,
.ritual-intro h4,
.ritual-intro h5,
.ritual-intro h6 {
  font-size: 22px;
  margin-bottom: 8px;
}

.ritual-intro p {
  font-size: 18px;
}

/* ****************************** */

/* ****************************** */
.care-section {
  background-color: var(--surface);
}

.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-block: 120px;
}

.care-card {
  background: #fff;
  padding: 40px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.care-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;

}

.care-header h3 {
  font-size: 24px;
}

.care-header i {
  font-size: 18px;
}

.care-content ul {
  padding-left: 18px;
}

.care-content p,
.care-content h3 {
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 12px !important;
}

.care-content h3 {
  margin-top: 40px;
}

.care-content li {
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 16px;
  list-style-type: disc;
}

/* ****************************** */

/* ****************************** */

.maintenance-section {
  padding-block: 120px;
}

.maintenance-content {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

.maintenance-content h2 {
  margin-bottom: 15px;
}

.maintenance-content p {
  margin-bottom: 15px;
}

.maintenance-tips {
  margin-top: 40px;
  background-color: var(--my-black);
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.maintenance-tips h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: white;

}

.maintenance-products ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 0;
  padding-left: 18px;
}

.maintenance-products li {
  margin-bottom: 10px;
  color: white;
  list-style-type: disc;
}

.maintenance-tips small {
  margin-top: 18px;
	color:white;
}

.product-note {

  font-size: 22px;
}

/* ****************************** */

/* ****************************** */


.service-gallery {
  background-color: var(--surface);
  padding-block: 120px;

}

.service-gallery .cs-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.cs-section-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-teaser-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-teaser-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

/* overlay */
.gallery-teaser-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.gallery-teaser-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* hover effect */
.gallery-teaser-item:hover img {
  transform: scale(1.05);
}

.gallery-teaser-item:hover .gallery-teaser-overlay {
  opacity: 1;
}



/* ****************************** */

/* ****************************** */

.service-newsletter {
  background:var(--surface);
  padding-block: 120px;
}

.newsletter-wrapper {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.newsletter-wrapper h2 {
  margin-bottom: 10px;
}

.newsletter-wrapper p {
  margin-bottom: 20px;
  
}

.newsletter-form{
  margin-top: 60px;
}
.tnp-field{
  display: flex;
  flex-direction: column;
  align-items: start;
}


/* ****************************** */


/* ****************************** */
.service-final-cta {
    background: var(--surface);
    
    text-align: center;
    padding: 80px 20px;
}

.service-final-cta h2 {
    margin-bottom: 15px;
}

.cta-description {
    max-width: 600px;
    margin: 0 auto 25px;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 40px !important;
}

.btn-large {
    padding: 14px 30px;
    font-size: 16px;
}
/* ****************************** */


/* mobile */
@media (max-width: 768px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .gallery-teaser-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-teaser-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }

  .newsletter-form button,
  .newsletter-form input[type="submit"] {
    width: 100%;
  }
}