/**
 * Heaven Four - Service Pages Styling
 * All service page components (replaces inline styles)
 */

/* Base button styles */
.h4-btn {
  background: #E3967E;
  color: #fff !important;
  padding: 14px 32px;
  text-decoration: none !important;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.h4-btn:hover {
  background: #D4856D;
}

.h4-btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}


.h4-btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff !important;
}

.h4-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ====== STANDARD SERVICE PAGE HERO (h4-svc-hero) ====== */
.h4-svc-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  max-height: 600px;
  overflow: hidden;
  margin: 0;
}

.h4-svc-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h4-svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  REMOVED
  align-items: center;
  REMOVED
  text-align: center;
  padding: 20px;
}

/* FIX: Target ALL heading types in hero */
.h4-svc-hero .h4-svc-hero-overlay h1,
.h4-svc-hero .h4-svc-hero-overlay h2,
.h4-svc-hero .h4-svc-hero-overlay .hero-title,
.h4-svc-hero h1,
.h4-svc-hero h2,
.h4-svc-hero .hero-title {
  color: #ffffff !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(2rem, 4.5vw, 3rem) !important;
  font-weight: 300 !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6) !important;
}

.h4-svc-hero p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 15px !important;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4) !important;
}

/* ====== MEN'S PAGE HERO (h4-men-hero) ====== */
.h4-men-hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  max-height: 650px;
  overflow: hidden;
  margin: 0;
}

.h4-men-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h4-men-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  REMOVED
  align-items: center;
  REMOVED
  text-align: center;
  padding: 20px;
}

/* FIX: White text for men's hero */
.h4-men-hero .h4-men-hero-overlay h1,
.h4-men-hero .h4-men-hero-overlay h2,
.h4-men-hero .h4-men-hero-overlay .hero-title,
.h4-men-hero h1,
.h4-men-hero h2,
.h4-men-hero .hero-title {
  color: #ffffff !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(2rem, 4.5vw, 3rem) !important;
  font-weight: 300 !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6) !important;
}

.h4-men-hero p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 15px !important;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4) !important;
}

/* ====== SHARED CONTENT SECTIONS ====== */

/* Intro section */
.h4-intro {
  padding: 20px 20px;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.h4-intro h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  margin: 0 0 15px 0;
  color: #2D2D2D;
}

.h4-intro p {
  color: #6A6A6A;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 auto 12px;
}

/* Types/Pricing section */
.h4-types {
  padding: 30px 20px;
  background: #FAF8F5;
}

.h4-types h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 15px 0;
  color: #2D2D2D;
}

.h4-pricing {
  max-width: 700px;
  margin: 0 auto;
}

.h4-pricing-item {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.h4-pricing-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 8px 0;
  color: #2D2D2D;
}

.h4-pricing-item p {
  color: #6A6A6A;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.h4-pricing-item .price {
  color: #E3967E;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 8px;
}

/* Benefits section */
.h4-benefits {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.h4-benefits h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 35px 0;
  color: #2D2D2D;
}

.h4-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

.h4-benefits ul li {
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
  color: #6A6A6A;
  font-size: 14px;
  line-height: 1.7;
}

.h4-benefits ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E3967E;
  font-weight: 600;
  font-size: 16px;
}

/* CTA section */
.h4-cta {
  background: #E3967E;
  padding: 50px 20px;
  text-align: center;
}

.h4-cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 8px 0;
}

.h4-cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin: 0 0 20px 0;
}

.h4-cta .h4-btn {
  background: #fff;
  color: #2D2D2D !important;
}

.h4-cta .h4-btn:hover {
  background: #FAF8F5;
}

/* Men's page specific sections */
.h4-services {
  padding: 50px 20px;
  background: #FAF8F5;
}

.h4-services h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 45px 0;
  color: #2D2D2D;
}

.h4-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .h4-services-grid {
    grid-template-columns: 1fr;
  }
}

.h4-service-card {
  background: #fff;
  padding: 35px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.h4-service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 12px 0;
  color: #2D2D2D;
}

.h4-service-card p {
  color: #6A6A6A;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 12px 0;
}

.h4-service-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}

.h4-service-card ul li {
  padding-left: 22px;
  position: relative;
  color: #6A6A6A;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.h4-service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #E3967E;
  font-weight: bold;
}

.h4-why {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.h4-why h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 35px 0;
  color: #2D2D2D;
}

.h4-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

.h4-why-list li {
  margin-bottom: 18px;
  padding-left: 32px;
  position: relative;
  color: #6A6A6A;
  font-size: 15px;
  line-height: 1.7;
}

.h4-why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E3967E;
  font-weight: 600;
  font-size: 16px;
}

/* Certification Bar - Top of page - FIXED */
.h4-cert-bar {
  REMOVED
  align-items: center;
  REMOVED
  gap: 24px;
  padding: 12px 20px;
  background: #f9f7f4;
  border-bottom: 1px solid #e8e4dc;
  flex-wrap: nowrap;
}

.cert-label {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cert-logo {
  height: 40px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.cert-text {
  font-size: 13px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .h4-cert-bar {
    REMOVED
    padding: 10px 12px;
    REMOVED
    REMOVED
  }
  .cert-logo {
    height: 30px;
    max-width: 70px;
  }
  .cert-label {
    font-size: 10px;
  }
}
/* ====== GENERIC HERO (h4-hero) - For non-service pages ====== */
.h4-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
  margin: 0;
}

.h4-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h4-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.h4-hero h1,
.h4-hero h2,
.h4-hero .hero-title {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  margin: 0 0 10px 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.h4-hero p {
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

/* ====== PRICING GRID (for sauna, etc.) ====== */
.h4-pricing-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .h4-pricing-grid {
    grid-template-columns: 1fr;
  }
}

.h4-pricing-card {
  background: #fff;
  padding: 25px;
  border-radius: 4px;
}

.h4-pricing-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 10px 0;
  color: #2D2D2D;
}

.h4-pricing-card p {
  color: #6A6A6A;
  font-size: 13px;
  margin: 0 0 10px;
  line-height: 1.6;
}

.h4-pricing-card .price {
  color: #E3967E;
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 8px;
  display: block;
}

/* ====== TYPE CARDS GRID (for massage overview) ====== */
.h4-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .h4-types-grid {
    grid-template-columns: 1fr;
  }
}

.h4-type-card {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
}

.h4-type-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 10px 0;
  color: #2D2D2D;
}

.h4-type-card p {
  color: #6A6A6A;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ====== TRUST BADGES (certification bar variant) ====== */
.h4-trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding: 15px;
  background: rgba(227, 150, 126, 0.1);
  border-radius: 8px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.h4-trust-badges span {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.h4-trust-badges img {
  height: 30px;
  filter: grayscale(30%);
}

/* ====== PRICE & DESCRIPTION helpers ====== */
.h4-price {
  color: #E3967E;
  font-weight: 600;
  font-size: 1rem;
}

.h4-desc {
  color: #6A6A6A;
  font-size: 14px;
  line-height: 1.6;
}

/* ====== FAQ STYLING ====== */
.h4-faq {
  padding: 50px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.h4-faq h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 30px 0;
  color: #2D2D2D;
}

.h4-faq-item {
  border-bottom: 1px solid #e8e4dc;
  padding: 15px 0;
}

.h4-faq-item summary {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2D2D2D;
  cursor: pointer;
  list-style: none;
}

.h4-faq-item summary::-webkit-details-marker {
  display: none;
}

.h4-faq-item summary::before {
  content: "+";
  margin-right: 10px;
  color: #E3967E;
  font-weight: bold;
}

.h4-faq-item[open] summary::before {
  content: "−";
}

.h4-faq-item p {
  color: #6A6A6A;
  font-size: 14px;
  line-height: 1.7;
  margin: 10px 0 0 20px;
}

/* Tight spacing for intro paragraph in treatment pages */
p.h4-intro {
  margin: 0 auto 20px;
  padding: 0 20px;
  max-width: 850px;
  text-align: center;
  color: #6A6A6A;
  font-size: 14px;
  line-height: 1.7;
}
