/* =========================================
   SERVICE PAGE LAYOUT (Optimized)
========================================= */

/* Hero Layout */
.hero-service {
  padding: 8rem 2.5rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--surface-strong);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-service h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-service h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-3), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-note {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-note em {
  color: var(--accent);
  font-style: italic;
}

/* Price Card */
.price-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 3.5rem;
  background: var(--surface);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.price-currency {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-period {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Mystical Button */
.mystical-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: color 0.4s ease, border-color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
}

.mystical-button > span, .mystical-button > svg { position: relative; z-index: 2; }

.mystical-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, var(--accent) 0%, var(--accent-3) 50%, var(--accent-2) 100%);
  transform: translateX(-101%);
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.mystical-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.mystical-button:hover {
  color: var(--bg);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(138, 107, 74, 0.3);
}

.mystical-button:hover::before { transform: translateX(0); }
.mystical-button:hover svg { transform: translateX(4px); }

/* Section Styles */
.section-service {
  padding: 6rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1rem;
}

.section-head .subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  padding: 2rem;
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3), var(--accent-2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin-bottom: 1.25rem;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--accent);
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.05);
}

.feature-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-muted); line-height: 1.7; }

.feature-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  padding: 0.35rem 0.85rem;
  background: rgba(212, 166, 122, 0.12);
  border: 1px solid rgba(212, 166, 122, 0.25);
  border-radius: 999px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--accent);
}

/* Benefits Section */
.benefits-section {
  background: var(--surface);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2.5rem;
}

.benefits-container { max-width: 1200px; margin: 0 auto; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.benefit-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  border-radius: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg);
}

.benefit-content h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.benefit-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* Experience Section */
.experience-section { position: relative; overflow: hidden; }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.experience-card {
  position: relative;
  padding: 2rem;
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.experience-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.experience-card:hover .experience-icon {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.1);
}

.experience-card p {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

/* Quote Section */
.quote-section {
  text-align: center;
  padding: 5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.quote-text em { color: var(--accent); font-style: italic; }

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 6rem 2.5rem;
  background: var(--surface);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}

.cta-section h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.cta-section .subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}


/* Ensure single fields inside the form stretch full width */
.contact-form > .form-field {
  width: 100%;
}

/* Footer */
.footer {
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(20px);
}

.footer p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .hero-service { padding: 6rem 1.5rem 4rem; }
  .section-service, .benefits-section { padding: 4rem 1.5rem; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-service { padding: 4rem 1.25rem 3rem; }
  .section-service, .benefits-section { padding: 3.5rem 1.25rem; }
  .features-grid, .experience-grid { grid-template-columns: 1fr; }
  .price-card { padding: 2rem 2.5rem; }
  .price-value { font-size: 2.75rem; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}