  :root {
  --bg: #ffffff;
  --section-bg: #f8fbff;
  --primary: #5a8dee;
  --dark-blue: #1f4e79;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e6eef8;
  --soft-blue: #eef6ff;
  --shadow: 0 18px 45px rgba(31, 78, 121, 0.1);
  --header-height: 82px;

  /* Typography System */
  --ff-sans: "Inter", Arial, sans-serif;
  --ff-serif: "Playfair Display", Georgia, serif;

  --fs-h1: clamp(2rem, 3.8vw, 3rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.3rem);
  --fs-h3: clamp(1.2rem, 1.8vw, 1.45rem);
  --fs-h4: clamp(1.05rem, 1.4vw, 1.2rem);
  --fs-h5: clamp(0.95rem, 1.1vw, 1.05rem);
  --fs-h6: clamp(0.85rem, 0.9vw, 0.95rem);

  --fs-body: clamp(0.96rem, 1vw, 1.04rem);
  --fs-small: clamp(0.82rem, 0.9vw, 0.88rem);

  --lh-heading: 1.25;
  --lh-body: 1.7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

main > .section:first-of-type {
  padding-top: 30px !important;
}

.section-soft {
  background: var(--section-bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(31, 78, 121, 0.08);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: min(300px, 52vw);
  height: auto;
  max-height: 72px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-text {
  display: none;
}

.brand-text strong {
  color: var(--dark-blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-footer .footer-brand {
  color: var(--dark-blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.site-footer .footer-brand span {
  display: none;
}

.footer-logo {
  width: min(230px, 70vw);
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-text small {
  color: #69778a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--dark-blue);
}

/* Navigation Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle .dropdown-arrow {
  font-size: 1.15rem;
  transition: transform 200ms ease;
  pointer-events: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 0;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(79, 40, 120, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 1000;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.nav-dropdown-menu a:hover {
  background-color: var(--home-purple-soft, var(--about-purple-soft, var(--contact-purple-soft, var(--detail-purple-soft, #f7f1fb)))) !important;
  color: var(--home-purple, var(--about-purple, var(--contact-purple, var(--detail-purple, #4f2878)))) !important;
}

.nav-dropdown-menu .dropdown-all-services {
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
  padding-bottom: 12px;
}

/* Desktop Hover States */
@media (min-width: 761px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  
  .nav-dropdown:hover .nav-dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* Mobile Accordion States */
@media (max-width: 760px) {
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 20px;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
    transition: max-height 300ms ease;
    background-color: transparent;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 500px;
  }

  .nav-dropdown.is-open .nav-dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
  }
  
  .nav-dropdown-menu .dropdown-all-services {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 10px;
  }
}

.nav-button,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.nav-button {
  padding: 0 20px;
  background: var(--dark-blue);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--dark-blue);
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 96px 0 90px;
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.hero-copy,
.hero-art {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Golden eyebrow specifically on the Blog page (higher specificity) */
.blog-page .section-copy .eyebrow {
  color: #d4af37 !important;
}

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--text);
  font-family: var(--ff-serif);
  line-height: var(--lh-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

h1 {
  font-size: var(--fs-h1);
  margin-bottom: 20px;
  color: var(--dark-blue);
}

h2 {
  font-size: var(--fs-h2);
  margin-bottom: 22px;
}

h3 {
  font-size: var(--fs-h3);
  margin-bottom: 12px;
}

h4 {
  font-size: var(--fs-h4);
  margin-bottom: 10px;
}

h5 {
  font-size: var(--fs-h5);
  margin-bottom: 8px;
}

h6 {
  font-size: var(--fs-h6);
  margin-bottom: 6px;
}

.tagline {
  margin-bottom: 22px;
  color: var(--dark-blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.35;
}

.hero-description,
.section-copy p,
.contact-copy p,
.service-card p,
.feature-block p,
.site-footer p,
.site-footer a {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.hero-description {
  max-width: 660px;
  margin-bottom: 34px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  border: 1px solid transparent;
  padding: 0 28px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(90, 141, 238, 0.24);
}

.button-primary:hover {
  background: var(--dark-blue);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--dark-blue);
}

.button-secondary:hover {
  border-color: rgba(90, 141, 238, 0.45);
  box-shadow: 0 12px 28px rgba(31, 78, 121, 0.08);
}

.hero-art {
  position: relative;
  min-height: 500px;
  aspect-ratio: 1.08 / 1;
}

.floating-lotus-scene {
  background:
    radial-gradient(circle at 92% 92%, rgba(236, 174, 64, 0.14), transparent 23%),
    linear-gradient(90deg, rgba(216, 248, 253, 0.7) 0 23%, transparent 23% 100%);
  overflow: visible;
}

.lotus-panel {
  position: absolute;
  inset: 28px 42px 38px 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(241, 191, 76, 0.36), transparent 22%),
    radial-gradient(circle at 50% 45%, rgba(135, 213, 226, 0.11), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.86) 100%);
  box-shadow: 0 28px 74px rgba(31, 78, 121, 0.08);
}

.premium-lotus {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(-50%);
}

.service-card .material-symbols-outlined,
.feature-block .material-symbols-outlined,
.contact-icon {
  color: var(--primary);
}

.about-grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
}

.portrait-card {
  min-height: 500px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.portrait-inner {
  display: grid;
  height: 100%;
  min-height: 452px;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(90, 141, 238, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.95), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(90, 141, 238, 0.04) 12px 13px);
  text-align: center;
}

.portrait-inner .material-symbols-outlined {
  color: var(--primary);
  font-size: 4rem;
}

.portrait-inner p {
  margin: 0;
  color: var(--dark-blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.2;
}

.portrait-inner small {
  color: var(--muted);
  font-weight: 600;
}

.section-copy p {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.blog-card,
.feature-block,
.contact-form {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(31, 78, 121, 0.05);
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border-radius: 20px;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.blog-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border-radius: 20px;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.blog-card:hover {
  border-color: rgba(90, 141, 238, 0.32);
  box-shadow: 0 18px 42px rgba(31, 78, 121, 0.1);
  transform: translateY(-3px);
}

.service-card h3 a,
.blog-card h2 a,
.blog-card h3 a {
  transition: color 180ms ease;
}

.service-card h3 a:hover,
.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card h2 {
  margin-bottom: 16px;
}

.blog-card p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.blog-card-featured {
  grid-column: span 2;
}

.blog-meta {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-hero {
  padding: 30px 0 92px;
}

.blog-hero-grid {
  display: flex;
  justify-content: center;
  text-align: center;
}

.blog-hero .section-copy {
  max-width: 980px;
}

.blog-hero .section-copy p {
  margin-right: auto;
  margin-left: auto;
}

.blog-hero h1 {
  max-width: 980px;
}

.service-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(90, 141, 238, 0.32);
  border-radius: 999px;
  color: var(--dark-blue);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-link:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.service-card .material-symbols-outlined,
.feature-block .material-symbols-outlined {
  margin-bottom: 22px;
  font-size: 2.25rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-block {
  padding: 30px;
  border-radius: 18px;
}

/* Inherits global h3 font size */

.contact-grid {
  align-items: start;
}

.contact-copy {
  padding-top: 20px;
}

.contact-copy h2 {
  max-width: 560px;
}

.contact-copy p {
  max-width: 560px;
  font-size: 1.04rem;
}

.contact-list {
  display: grid;
  width: min(100%, 560px);
  gap: 14px;
  margin-top: 180px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 92px;
  margin: 0;
  padding: 18px 22px;
  border: 1px solid rgba(230, 238, 248, 0.92);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 12px 30px rgba(31, 78, 121, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-copy .contact-card {
  max-width: none;
}

a.contact-card:hover {
  border-color: rgba(90, 141, 238, 0.3);
  box-shadow: 0 16px 36px rgba(31, 78, 121, 0.11);
  transform: translateY(-2px);
}

.contact-icon {
  flex: 0 0 auto;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 14px;
  background: #eafaf6;
  font-size: 1.65rem;
}

.contact-card-text {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.contact-card-text strong {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.35;
}

.contact-card-text span {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--dark-blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  outline: none;
  padding: 14px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(90, 141, 238, 0.65);
  box-shadow: 0 0 0 4px rgba(90, 141, 238, 0.1);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--dark-blue);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.site-footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 50px;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--dark-blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--dark-blue);
}

.footer-contact-name {
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 120;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.34);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.44);
  transform: translateY(-2px);
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .section {
    padding: 86px 0;
  }

  .hero {
    min-height: auto;
    padding: 86px 0 82px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-art {
    min-height: 390px;
    aspect-ratio: 1.35 / 1;
  }

  .lotus-panel {
    inset: 20px 34px 34px;
  }

  .premium-lotus {
    object-position: center;
  }

  .about-grid .portrait-card {
    max-width: 560px;
  }

  .services-grid,
  .blog-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card-featured {
    grid-column: span 2;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 30px), 1320px);
  }

  .nav {
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 15px;
    left: 15px;
    display: grid;
    gap: 6px;
    padding: 18px;
    max-height: calc(100vh - var(--header-height) - 24px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-button {
    margin-top: 6px;
    padding: 0 18px !important;
  }

  h1 {
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
  }

  .tagline {
    font-size: clamp(1.22rem, 6vw, 1.58rem);
  }

  .hero-description,
  .section-copy p,
  .contact-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-art {
    min-height: 320px;
    aspect-ratio: 1.22 / 1;
  }

  .lotus-panel {
    inset: 18px 22px 28px;
  }

  .premium-lotus {
    object-position: center;
  }

  .services-grid,
  .blog-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-featured {
    grid-column: auto;
  }

  .service-card,
  .blog-card,
  .feature-block,
  .contact-form {
    padding: 26px;
  }

  .service-card {
    min-height: auto;
  }

  .portrait-card {
    min-height: 390px;
  }

  .portrait-inner {
    min-height: 342px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(calc(100% - 24px), 1320px);
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 1.14rem;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 46px 0 56px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    gap: 28px;
  }

  h2 {
    margin-bottom: 16px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 20px;
  }

  .hero-art {
    min-height: 268px;
    aspect-ratio: 1.32 / 1;
  }

  .lotus-panel {
    inset: 12px 16px 22px;
  }

  .premium-lotus {
    object-position: center;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  /* Center section headings on Services page for small screens */
  .services-page .section-heading {
    text-align: center;
  }

  .portrait-card {
    min-height: 330px;
    padding: 16px;
    border-radius: 20px;
  }

  .portrait-inner {
    min-height: 298px;
    border-radius: 16px;
  }

  .portrait-inner p {
    font-size: 1.65rem;
  }

  .service-card,
  .blog-card,
  .feature-block,
  .contact-form {
    padding: 22px;
    border-radius: 16px;
  }

  .service-card .material-symbols-outlined,
  .feature-block .material-symbols-outlined {
    margin-bottom: 16px;
    font-size: 2rem;
  }

  .contact-card {
    align-items: flex-start;
    font-size: 0.96rem;
    word-break: break-word;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.55rem;
  }

  .contact-card-text strong {
    font-size: 1rem;
  }

  .contact-card-text span {
    font-size: 0.92rem;
  }

  .site-footer {
    padding-top: 52px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float img {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 360px) {
  .brand-text strong {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 2.45rem;
  }
}

/* Premium About page */
.about-page {
  --about-purple: #4f2878;
  --about-purple-deep: #32184f;
  --about-purple-soft: #f7f1fb;
  --about-gold: #c9a24a;
  --about-gold-light: #f1dfaa;
  --about-ink: #24172f;
  --about-muted: #6f6278;
  background: #fff;
  color: var(--about-ink);
}

.about-page .site-header {
  background: rgba(255, 255, 255, 0.97);
}

.about-page .brand-text strong,
.about-page .footer-brand,
.about-page .nav-links a:hover,
.about-page .site-footer a:hover,
.about-page .site-footer h3 {
  color: var(--home-purple);
}

.about-page .nav-button {
  background: var(--about-purple);
}

.about-page .eyebrow {
  color: var(--about-gold);
}

.about-page h1,
.about-page h2,
.about-page h3 {
  color: var(--home-purple);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 112px) 0 clamp(82px, 8vw, 118px);
  background: linear-gradient(180deg, #fff 0%, var(--about-purple-soft) 100%);
}

.about-story {
  position: relative;
  display: grid;
  gap: clamp(36px, 5vw, 58px);
}

.about-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 24px;
  align-items: center;
}

.about-hero-logo {
  width: min(160px, 40vw);
  max-width: 160px;
  margin: 0 auto 24px;
  display: block;
  mix-blend-mode: multiply;
}

/* Contact page: golden eyebrow for Contact Us */
.contact-page .contact-copy .eyebrow {
  color: #d4af37;
}

/* Keep Core Services section heading centered on small screens */
.contact-services-section .section-heading {
  text-align: center;
}

@media (max-width: 480px) {
  .contact-services-section .section-heading {
    text-align: center;
  }
  /* ensure eyebrow stays golden on contact page at small sizes */
  .contact-page .contact-copy .eyebrow {
    color: #d4af37;
  }
}

.about-hero-label {
  display: block;
  color: var(--about-gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
}

.about-intro h1 {
  max-width: none;
  margin: 0 auto;
  color: var(--about-purple-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.about-intro h1::after {
  display: block;
  width: 72px;
  height: 2px;
  margin: 24px auto 0;
  background: var(--about-gold);
  content: "";
}

.about-content {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(201, 162, 74, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(79, 40, 120, 0.06);
}

.about-content p {
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--about-muted);
  font-size: 1.04rem;
  line-height: 1.85;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  /* Don't force the last line to justify — prevents large gaps on short lines */
  text-align-last: auto;
}

.about-content p:first-child {
  margin-bottom: 24px;
  color: var(--about-purple-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  text-align: center;
}

.about-content p:nth-child(3) {
  max-width: 760px;
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 24px 28px;
  border-left: 3px solid var(--about-gold);
  background: #fff;
  color: var(--about-purple-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.36;
  /* This is an emphasized line — center it to avoid excessive justification gaps */
  text-align: center;
}

.about-content p:nth-child(7),
.about-content p:last-child {
  color: var(--about-purple-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  line-height: 1.45;
}

.about-content p:nth-child(7) {
  margin-top: 26px;
}

.about-content p:last-child {
  margin-top: 26px;
  margin-bottom: 0;
}
.quote-section {
  padding: 0 0 112px;
  background: var(--about-purple-soft);
}

.highlight-quote {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(241, 223, 170, 0.55);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--about-purple-deep);
  color: #fff;
  box-shadow: 0 24px 58px rgba(50, 24, 79, 0.18);
}

.highlight-quote::before {
  display: block;
  width: 72px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--about-gold);
  content: "";
}

.highlight-quote h2 {
  margin-bottom: 18px;
  color: var(--about-gold-light);
  line-height: 1.18;
}

.highlight-quote p {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
  line-height: 1.8;
}

.founder-section {
  background: #fff;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.founder-image-wrap {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(201, 162, 74, 0.34);
  background: linear-gradient(145deg, #fff, #fbf7ff);
  box-shadow: 0 24px 60px rgba(79, 40, 120, 0.1);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.founder-image-wrap::before {
  position: absolute;
  inset: 34px -18px -18px 34px;
  z-index: -1;
  border: 1px solid rgba(201, 162, 74, 0.5);
  content: "";
  transition: transform 300ms ease, border-color 300ms ease;
}

.founder-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-image-wrap:hover {
  transform: translate(-4px, -4px);
  border-color: rgba(201, 162, 74, 0.6);
  box-shadow: 0 28px 68px rgba(79, 40, 120, 0.15);
}

.founder-image-wrap:hover::before {
  transform: translate(8px, 8px);
  border-color: rgba(201, 162, 74, 0.8);
}

.founder-copy {
  max-width: 640px;
}

.founder-copy h2 {
  margin-bottom: 16px;
}

.founder-copy p {
  color: var(--about-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  /* Avoid forcing the last line to stretch */
  text-align-last: auto;
}

.founder-role {
  margin-bottom: 24px;
  color: var(--about-purple) !important;
  font-weight: 700;
}

.founder-copy .founder-quote {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(1.5rem, 2.2vw, 2.0rem);
  color: var(--about-gold) !important;
  line-height: 1.25;
  text-align: left;
  text-justify: auto;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  text-align-last: left;
  margin-top: 18px;
  font-weight: normal;
}

.testimonials-section {
  background:
    linear-gradient(180deg, var(--about-purple-soft), #fff);
}

.about-page .testimonials-section .section-heading {
  max-width: 920px;
}

.about-page .testimonials-section .section-heading p {
  margin: 0 auto;
  color: var(--about-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}


@media (max-width: 980px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-image-wrap {
    margin-bottom: 48px;
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding: 64px 0 82px;
  }

  .about-content {
    padding: 28px;
  }

  .quote-section {
    padding-bottom: 86px;
  }
}

@media (max-width: 480px) {

  .about-intro h1 {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .about-content {
    padding: 22px;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .founder-image-wrap {
    padding: 12px;
  }

  .founder-image-wrap::before {
    inset: 22px -10px -10px 22px;
  }

  .founder-image-wrap:hover {
    transform: translate(-2px, -2px);
  }

  .founder-image-wrap:hover::before {
    transform: translate(4px, 4px);
  }
}

/* Premium Home page */
.home-page {
  --home-purple: #5A2D91;
  --home-purple-deep: #3B1766;
  --home-purple-soft: #FAF8F5;
  --home-gold: #D4B06A;
  --home-gold-soft: #F4E8D0;
  --home-text: #2D2D2D;
  --home-muted: #6B6B6B;
  background: #fff;
  color: var(--home-text);
}

.home-page .site-header {
  background: #ffffff;
}

.home-page .brand-text strong,
.home-page .footer-brand,
.home-page .nav-links a:hover,
.home-page .site-footer h3,
.home-page .site-footer a:hover {
  color: var(--home-purple);
}

.home-page .nav-button,
.home-primary-button {
  background: var(--home-purple);
  color: #fff !important;
}

.home-page .nav-button:hover,
.home-primary-button:hover {
  background: var(--home-purple-deep);
}

.home-page .eyebrow {
  color: var(--home-gold);
}

.home-hero {
  padding: 30px 0 clamp(80px, 8vw, 130px);
  background: var(--home-purple-soft); /* Warm Ivory #FAF8F5 */
  display: flex;
  align-items: center;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.home-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Original Brand Logo */
.hero-logo-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.hero-brand-logo {
  max-width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Accessibility screen-reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero-brand-name {
  color: var(--home-purple-deep);
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.15;
}

.hero-tagline {
  color: var(--home-gold);
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-style: italic;
  margin: 0 0 28px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-subheading {
  color: var(--home-purple-deep);
  font-family: var(--ff-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.35;
  font-weight: 500;
  margin: 0 0 22px;
  max-width: 600px;
}

.hero-description-block {
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-description-block p {
  color: var(--home-text);
  font-family: var(--ff-sans);
  font-size: 1.04rem;
  line-height: 1.8;
  margin: 0 0 16px;
}

.hero-description-block p:last-child {
  margin-bottom: 0;
  font-weight: 600;
}

/* Gold Divider */
.hero-divider {
  width: 60px;
  height: 1.5px;
  background-color: var(--home-gold);
  margin: 0 0 28px;
}

.hero-founder-block {
  margin-bottom: 38px;
  text-align: left;
}

.hero-founder-name {
  color: var(--home-text);
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.hero-founder-title {
  color: var(--home-gold);
  font-family: var(--ff-sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 48px;
  width: 100%;
}

.hero-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.hero-btn-primary {
  background: var(--home-purple);
  color: #fff !important;
}

.hero-btn-primary:hover {
  background: var(--home-purple-deep);
}

.hero-btn-secondary {
  border-color: var(--home-gold);
  background: transparent;
  color: var(--home-purple) !important;
}

.hero-btn-secondary:hover {
  border-color: var(--home-purple);
  background: var(--home-purple-soft);
}

/* Bottom Accents */
.hero-bottom-accents {
  width: 100%;
  border-top: 1px solid rgba(214, 176, 106, 0.2);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.accents-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--home-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.accents-row {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
}

.accent-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--home-text);
  font-size: 0.85rem;
  font-weight: 500;
}

.accent-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--home-gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Right Column Portrait */
.home-hero-portrait {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-hero-portrait .founder-image-wrap {
  margin: 0 auto;
}

.home-hero-portrait .hero-founder-block {
  margin-top: 24px;
  text-align: center;
  border-left: none;
  padding-left: 0;
  margin-bottom: 0;
  width: 100%;
}

.home-hero-portrait .hero-founder-name {
  color: var(--home-purple-deep);
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.home-hero-portrait .hero-founder-title {
  color: var(--home-muted);
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.home-hero-portrait .hero-founder-quote {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  color: var(--home-gold);
  margin: 8px 0 0;
  font-weight: normal;
  line-height: 1.25;
}

/* Responsive adjustments for wellness hero */
@media (max-width: 991px) {
  .home-hero {
    padding: 30px 0 80px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-hero-content {
    align-items: center;
    text-align: center;
  }

  .home-hero-content .hero-logo-wrapper {
    justify-content: center;
  }

  .home-hero-content .hero-divider {
    margin: 0 auto 28px;
  }

  .home-hero-content .hero-founder-block {
    text-align: center;
  }

  .home-hero-content .hero-actions {
    justify-content: center;
  }

  .home-hero-content .hero-bottom-accents {
    align-items: center;
  }

  .home-hero-content .accents-row {
    justify-content: center;
  }

  .home-hero-portrait {
    justify-content: center;
  }

  .home-hero-portrait .founder-image-wrap {
    margin: 0 auto;
  }

  .hero-founder-block {
    border-left: none;
    border-top: 1px solid rgba(212, 176, 106, 0.2);
    border-bottom: 1px solid rgba(212, 176, 106, 0.2);
    padding: 16px 0;
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-bottom-accents {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .accents-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .home-hero {
    padding: 30px 0 64px;
  }

  .home-hero-grid {
    gap: 32px;
  }

  .home-hero-portrait-img {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .hero-btn {
    width: 100%;
  }

  .accents-row {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .accent-item {
    font-size: 0.8rem;
  }
}

.home-services {
  background: #fff;
}

.home-section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.home-section-heading h2,
.home-contact-copy h2 {
  color: var(--home-purple-deep);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-service-card {
  min-height: 288px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  border: 1px solid rgba(201, 162, 74, 0.22);
  background: #fff;
  box-shadow: 0 12px 34px rgba(79, 40, 120, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-service-card:hover {
  border-color: rgba(201, 162, 74, 0.46);
  box-shadow: 0 20px 46px rgba(79, 40, 120, 0.09);
  transform: translateY(-3px);
}

.home-service-card .material-symbols-outlined {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 162, 74, 0.28);
  color: var(--home-gold);
  font-size: 2rem;
}

.home-service-card h3 {
  margin-bottom: 14px;
  color: var(--home-purple-deep);
}

.home-service-card p {
  margin-bottom: 22px;
  color: var(--home-muted);
  line-height: 1.7;
}

.home-service-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(79, 40, 120, 0.18);
  color: var(--home-purple);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-service-card a:hover {
  border-color: var(--home-purple);
  background: var(--home-purple);
  color: #fff;
}

.home-contact {
  background: linear-gradient(180deg, var(--home-purple-soft), #fff);
}

.home-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(44px, 6vw, 82px);
  align-items: start;
}

.home-contact-copy p {
  max-width: 560px;
  color: var(--home-muted);
  font-size: 1.06rem;
}

.service-options {
  display: grid;
  gap: 14px;
  max-width: 620px;
  margin-top: 36px;
  padding: 28px;
  border: 1px solid rgba(201, 162, 74, 0.22);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(79, 40, 120, 0.05);
}

.service-options h3 {
  margin-bottom: 4px;
  color: var(--home-purple-deep);
  font-size: 1.2rem;
}

.service-options label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--home-muted);
  font-weight: 600;
  line-height: 1.55;
}

.service-options input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--home-purple);
}

.home-consultation-form {
  border-color: rgba(201, 162, 74, 0.24);
  box-shadow: 0 22px 58px rgba(79, 40, 120, 0.09);
}

.home-consultation-form span {
  color: var(--home-purple-deep);
}

.home-consultation-form input:focus,
.home-consultation-form select:focus,
.home-consultation-form textarea:focus {
  border-color: rgba(79, 40, 120, 0.58);
  box-shadow: 0 0 0 4px rgba(79, 40, 120, 0.09);
}

.home-footer .footer-bottom p {
  color: var(--home-muted);
}

@media (max-width: 980px) {
  .home-contact-grid {
    grid-template-columns: 1fr;
  }

  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card,
  .service-options {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .home-contact-copy p {
    font-size: 1rem;
  }
}

/* Premium Contact services */
.contact-page {
  --contact-purple: #4f2878;
  --contact-purple-deep: #30164d;
  --contact-purple-soft: #f8f2fb;
  --contact-gold: #c9a24a;
  --contact-muted: #6d6074;
}

.contact-page .brand-text strong,
.contact-page .footer-brand,
.contact-page .nav-links a:hover,
.contact-page .site-footer h3,
.contact-page .site-footer a:hover {
  color: var(--home-purple);
}

.contact-page .nav-button,
.contact-primary-button {
  background: var(--contact-purple);
  color: #fff !important;
}

.contact-page .eyebrow {
  color: var(--contact-gold);
}

.contact-services-section {
  background: linear-gradient(180deg, #fff 0%, var(--contact-purple-soft) 100%);
}

.contact-page .section-heading h2,
.contact-page .contact-copy h2,
.contact-service-card h3 {
  color: var(--contact-purple-deep);
}

.contact-page .section-heading h2 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  text-align: center;
}

@media (min-width: 980px) {
  .contact-page .section-heading h2 {
    white-space: nowrap;
    overflow: visible;
    max-width: none;
    display: inline-block;
  }
}

.contact-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-service-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(201, 162, 74, 0.24);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(79, 40, 120, 0.055);
}

.contact-service-card .material-symbols-outlined {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(201, 162, 74, 0.3);
  color: var(--contact-gold);
  font-size: 1.9rem;
}

.contact-service-card p,
.contact-page .contact-copy p {
  color: var(--contact-muted);
}

.contact-page .contact-section {
  background: #fff;
}

.contact-page .contact-form {
  border-color: rgba(201, 162, 74, 0.24);
  box-shadow: 0 22px 58px rgba(79, 40, 120, 0.08);
}

.contact-page .contact-form span {
  color: var(--contact-purple-deep);
}

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
  border-color: rgba(79, 40, 120, 0.58);
  box-shadow: 0 0 0 4px rgba(79, 40, 120, 0.09);
}

@media (max-width: 980px) {
  .contact-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-service-grid {
    grid-template-columns: 1fr;
  }

  .contact-service-card {
    min-height: auto;
    padding: 24px;
  }
}

/* Premium Services and Blog theme */
.services-page,
.blog-page {
  --premium-purple: #4f2878;
  --premium-purple-deep: #30164d;
  --premium-purple-soft: #f8f2fb;
  --premium-gold: #c9a24a;
  --premium-muted: #6d6074;
  --premium-line: rgba(201, 162, 74, 0.24);
  background: #fff;
  color: #261831;
}

.services-page .site-header,
.blog-page .site-header {
  background: rgba(255, 255, 255, 0.97);
}

.services-page .brand-text strong,
.blog-page .brand-text strong,
.services-page .footer-brand,
.blog-page .footer-brand,
.services-page .nav-links a:hover,
.blog-page .nav-links a:hover,
.services-page .site-footer h3,
.blog-page .site-footer h3,
.services-page .site-footer a:hover,
.blog-page .site-footer a:hover {
  color: var(--home-purple);
}

.services-page .nav-button,
.blog-page .nav-button {
  background: var(--premium-purple);
}

.services-page .eyebrow,
.blog-page .eyebrow,
.blog-page .blog-meta {
  color: var(--premium-gold);
}

.services-page main > .section,
.blog-page .blog-hero {
  background: linear-gradient(180deg, #fff 0%, var(--premium-purple-soft) 100%);
}

.blog-page .section-soft {
  background: #fff;
}

.services-page .section-heading h2,
.blog-page .blog-hero h1,
.services-page .service-card h3,
.blog-page .blog-card h2,
.blog-page .blog-card h3 {
  color: var(--premium-purple-deep);
}

.services-page .section-heading,
.blog-page .blog-hero .section-copy {
  max-width: 900px;
}

.services-page .section-heading::after,
.blog-page .blog-hero .section-copy::after {
  display: block;
  width: 78px;
  height: 2px;
  margin: 26px auto 0;
  background: var(--premium-gold);
  content: "";
}

.blog-page .blog-hero .section-copy p {
  max-width: 760px;
  color: var(--premium-muted);
  font-size: 1.08rem;
}

.services-page .service-card,
.blog-page .blog-card {
  border: 1px solid var(--premium-line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(79, 40, 120, 0.06);
}

.services-page .service-card:hover,
.blog-page .blog-card:hover {
  border-color: rgba(201, 162, 74, 0.48);
  box-shadow: 0 22px 52px rgba(79, 40, 120, 0.1);
}

.services-page .service-card .material-symbols-outlined {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(201, 162, 74, 0.3);
  color: var(--premium-gold);
  font-size: 2rem;
}

.services-page .service-card p,
.blog-page .blog-card p,
.services-page .site-footer p,
.blog-page .site-footer p,
.services-page .site-footer a,
.blog-page .site-footer a {
  color: var(--premium-muted);
}

.services-page .service-card h3 a:hover,
.blog-page .blog-card h2 a:hover,
.blog-page .blog-card h3 a:hover {
  color: var(--premium-purple);
}

.services-page .service-link,
.blog-page .service-link {
  border-color: rgba(79, 40, 120, 0.18);
  color: var(--premium-purple);
}

.services-page .service-link:hover,
.blog-page .service-link:hover {
  border-color: var(--premium-purple);
  background: var(--premium-purple);
  color: #fff;
}

.blog-page .blog-meta {
  letter-spacing: 0.13em;
}

.blog-page .blog-card-featured {
  border-top: 4px solid var(--premium-gold);
}

.services-page .site-footer,
.blog-page .site-footer {
  border-top-color: var(--premium-line);
}

@media (max-width: 480px) {
  .services-page .section-heading::after,
  .blog-page .blog-hero .section-copy::after {
    margin-left: 0;
  }
}

/* Premium Service Detail pages */
.service-detail-page {
  --detail-purple: #4f2878;
  --detail-purple-deep: #30164d;
  --detail-purple-soft: #f8f2fb;
  --detail-gold: #c9a24a;
  --detail-muted: #6d6074;
  --detail-line: rgba(201, 162, 74, 0.24);
  background: #fff;
  color: #261831;
}

.service-detail-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-detail-page .brand-text strong,
.service-detail-page .footer-brand,
.service-detail-page .nav-links a:hover,
.service-detail-page .site-footer h3,
.service-detail-page .site-footer a:hover {
  color: var(--home-purple);
}

.service-detail-page .nav-button {
  background: var(--detail-purple);
}

.service-detail-page .eyebrow {
  color: var(--detail-gold);
  text-align: center !important;
  text-align-last: center !important;
  display: block !important;
}

.service-detail-hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 30px 0 clamp(70px, 12vw, 110px);
  background: linear-gradient(180deg, #fff 0%, var(--detail-purple-soft) 100%);
}

.service-detail-copy {
  max-width: 760px;
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.service-detail-copy h1 {
  word-break: break-word;
  overflow-wrap: break-word;
}

.service-detail-copy::after {
  display: block;
  width: 78px;
  height: 2px;
  margin: 28px auto 0;
  background: var(--detail-gold);
  content: "";
}

.service-detail-copy h1 {
  max-width: none;
  margin: 0;
  color: var(--detail-purple-deep);
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  line-height: 1.02;
}

.service-detail-copy h1.service-title-long {
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
}

.service-subtitle {
  color: var(--detail-muted);
  font-family: var(--ff-serif);
  margin-top: 14px;
  text-align: center;
  font-size: clamp(0.82rem, 1.5vw, 1.02rem);
}

@media (min-width: 600px) {
  .service-subtitle {
    white-space: nowrap;
  }
}


.service-detail-page .site-footer {
  border-top-color: var(--detail-line);
}

.service-detail-page .site-footer p,
.service-detail-page .site-footer a {
  color: var(--detail-muted);
}

@media (max-width: 760px) {
  .service-detail-hero {
    min-height: auto;
    padding: 30px 0 60px;
  }
}

@media (max-width: 480px) {
  .service-detail-copy {
    text-align: left;
    padding: 0 14px;
  }

  .service-detail-copy::after {
    margin-left: 0;
  }

  .service-detail-copy h1 {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
    line-height: 1.1;
  }
}

/* Premium Why Choose Us page styling */
.why-choose-page {
  --premium-purple: #4f2878;
  --premium-purple-deep: #30164d;
  --premium-purple-soft: #f8f2fb;
  --premium-gold: #c9a24a;
  --premium-muted: #6d6074;
  --premium-line: rgba(201, 162, 74, 0.24);
  background: #fff;
  color: #261831;
}

.why-choose-page .site-header {
  background: rgba(255, 255, 255, 0.97);
}

.why-choose-page .brand-text strong,
.why-choose-page .footer-brand,
.why-choose-page .nav-links a:hover,
.why-choose-page .site-footer h3,
.why-choose-page .site-footer a:hover {
  color: var(--home-purple);
}

.why-choose-page .nav-button {
  background: var(--premium-purple);
  color: #fff !important;
}

.why-choose-page .eyebrow {
  color: var(--premium-gold);
}

/* Hero Section */
.why-hero {
  position: relative;
  padding: 30px 0 clamp(80px, 9vw, 130px);
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 162, 74, 0.04), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(79, 40, 120, 0.03), transparent 45%),
    #fff;
  text-align: center;
  overflow: hidden;
}

.why-hero::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background-image: url('assets/premium-lotus.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.03;
  pointer-events: none;
}

.why-hero-container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.why-hero-container h1 {
  color: var(--premium-purple-deep);
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.02;
  margin-bottom: 22px;
}

@media (min-width: 980px) {
  .why-hero-container h1 {
    white-space: nowrap;
    overflow: visible;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

.why-subheading {
  color: var(--premium-muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.36;
  max-width: 720px;
  margin: 0 auto;
}

/* Decorative Accent */
.decor-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  width: 100%;
}

.decor-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--premium-gold) 50%, transparent);
}

.decor-icon {
  color: var(--premium-gold);
  font-size: 1.6rem;
  opacity: 0.8;
}

/* Introduction Section */
.why-intro-section {
  padding: 112px 0;
  background: #fff;
}

.why-intro-container {
  max-width: 860px;
  margin: 0 auto;
}

.why-intro-content {
  display: grid;
  gap: 28px;
}

.intro-lead {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1.32;
  color: var(--premium-purple-deep);
  text-align: center;
  margin-bottom: 12px;
}

.intro-body {
  display: grid;
  gap: 20px;
}

.intro-body p {
  color: var(--premium-muted);
  font-size: 1.08rem;
  line-height: 1.85;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  text-align-last: left;
}

.intro-foot {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  color: var(--premium-purple-deep);
  text-align: center;
  font-weight: 600;
  margin-top: 24px;
  padding: 24px 0 0;
  border-top: 1px solid var(--premium-line);
}

/* Feature Section */
.why-features-section {
  padding: 112px 0;
  background: var(--premium-purple-soft);
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}

.why-feature-card {
  grid-column: span 2;
  padding: 40px;
  border: 1px solid var(--premium-line);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(79, 40, 120, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(79, 40, 120, 0.08);
  border-color: rgba(201, 162, 74, 0.45);
}

.why-card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(201, 162, 74, 0.28);
  color: var(--premium-gold);
  font-size: 2rem;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #fff;
}

.why-feature-card h3 {
  color: var(--premium-purple-deep);
  margin-bottom: 14px;
}

.why-feature-card p {
  color: var(--premium-muted);
  line-height: 1.7;
  font-size: 0.98rem;
  margin: 0;
}

@media (min-width: 981px) {
  .why-feature-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .why-feature-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 980px) {
  .why-intro-section,
  .why-features-section {
    padding: 86px 0;
  }

  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .why-feature-card {
    grid-column: span 1;
    padding: 32px;
  }
  .why-feature-card:nth-child(5) {
    grid-column: 1 / span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .why-hero {
    padding: 30px 0 66px;
  }

  .why-hero-container h1 {
    font-size: clamp(2.65rem, 11vw, 4rem);
  }

  .why-feature-card:nth-child(5) {
    max-width: 70%;
  }
}

@media (max-width: 600px) {
  .why-features-grid {
    grid-template-columns: 1fr;
  }
  .why-feature-card {
    grid-column: span 1;
  }
  .why-feature-card:nth-child(5) {
    grid-column: span 1;
    max-width: 100%;
  }
}

/* Quote Section */
.why-quote-section {
  padding: 130px 0;
  background: radial-gradient(circle at center, var(--premium-purple-soft) 0%, #ffffff 80%);
  position: relative;
  overflow: hidden;
}

.why-quote-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 40px 20px;
}

.why-quote-container::before {
  content: "“";
  position: absolute;
  top: -60px;
  left: -20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16rem;
  color: var(--premium-gold);
  opacity: 0.08;
  line-height: 1;
}

.why-quote-container::after {
  content: "”";
  position: absolute;
  bottom: -140px;
  right: -20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16rem;
  color: var(--premium-gold);
  opacity: 0.08;
  line-height: 1;
}

.quote-line {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
  color: #2f0f57;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 20px;
}

.quote-line:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .why-quote-section {
    padding: 90px 0;
  }
  .why-quote-container::before {
    top: -40px;
    left: 10px;
    font-size: 10rem;
  }
  .why-quote-container::after {
    bottom: -90px;
    right: 10px;
    font-size: 10rem;
  }
}

/* CTA Section */
.why-cta-section {
  padding: 112px 0;
  background: linear-gradient(180deg, #fff 0%, var(--premium-purple-soft) 100%);
  text-align: center;
}

.why-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.why-cta-section h2 {
  color: var(--premium-purple-deep);
  margin-bottom: 18px;
}

.why-cta-section p {
  color: var(--premium-muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.65;
  margin-bottom: 34px;
}

.why-cta-button {
  background: var(--premium-purple);
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(79, 40, 120, 0.2);
}

.why-cta-button:hover {
  background: var(--premium-purple-deep);
  transform: translateY(-2px);
}

.why-choose-page .site-footer {
  border-top-color: var(--premium-line);
}

.why-choose-page .site-footer p,
.why-choose-page .site-footer a {
  color: var(--premium-muted);
}

/* Premium Testimonials Dark Theme Section */
.testimonials-section.dark-theme {
  background: radial-gradient(circle at 50% 50%, #1e1333 0%, #0b0714 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 112px 0;
}

.testimonials-section.dark-theme::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.testimonials-section.dark-theme .container {
  position: relative;
  z-index: 2;
}

.testimonials-heading {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.testimonials-heading .eyebrow {
  color: #c9a24a; /* Gold accent */
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.testimonials-heading h2 {
  color: #ffffff !important;
  margin-bottom: 16px;
}

.testimonials-description {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* Responsive Testimonials Grid (Flex-based) */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

/* Premium Card Design with Glassmorphism */
.testimonial-card {
  flex: 0 1 calc(33.333% - 19px);
  min-width: 320px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(79, 40, 120, 0.25);
  border-color: rgba(201, 162, 74, 0.4);
}

.testimonial-quote-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5.2rem;
  color: #c9a24a;
  line-height: 1;
  margin-bottom: -20px;
  margin-top: -15px;
  opacity: 0.85;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: auto !important; /* Pushes footer to the bottom */
  padding-bottom: 24px;
}

.testimonial-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
}

.testimonial-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.testimonial-location .material-symbols-outlined {
  font-size: 1.1rem;
  color: #c9a24a;
}

.testimonial-stars {
  color: #ffb703; /* Amber gold stars */
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* Responsiveness overrides */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 1 calc(50% - 14px);
  }
}

@media (max-width: 768px) {
  .testimonials-section.dark-theme {
    padding: 86px 0;
  }
  .testimonial-card {
    flex: 0 1 100%;
    padding: 28px;
    min-height: auto;
  }
}

/* Services & Blog: keep on one line at wide widths */
.services-page .section-heading h2 {
  text-align: center;
}

@media (min-width: 980px) {
  .services-page .section-heading h2 {
    white-space: nowrap;
    overflow: visible;
    max-width: none;
    display: inline-block;
  }
}

.blog-page .blog-hero h1 {
  text-align: center;
}

@media (min-width: 980px) {
  .blog-page .blog-hero h1 {
    white-space: nowrap;
    overflow: visible;
    max-width: none;
    display: inline-block;
  }
}


/* ==========================================================================
   Premium Service Detail Content Styles
   ========================================================================== */

/* Layout & Text Containers */
.service-text-container {
  width: min(100%, 820px);
  margin: 0 auto;
}

.service-intro-section {
  padding: 86px 0;
  background: #fff;
}

.service-intro-lead {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.45;
  color: var(--detail-purple-deep);
  text-align: justify;
  margin-bottom: 32px;
  font-weight: 500;
}

.service-text-container p {
  color: var(--detail-muted);
  font-size: 1.06rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.service-text-container p.service-intro-lead {
  text-align: justify;
}

.service-text-container p:last-child {
  margin-bottom: 0;
}

/* Service Benefit Cards / Why Consider */
.service-why-section {
  padding: 100px 0;
  background: var(--detail-purple-soft);
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-card-premium {
  padding: 36px 30px;
  background: #ffffff;
  border: 1px solid var(--detail-line);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(79, 40, 120, 0.04);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(79, 40, 120, 0.08);
  border-color: rgba(201, 162, 74, 0.45);
}

.service-card-premium .material-symbols-outlined {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 162, 74, 0.28);
  color: var(--detail-gold);
  font-size: 2rem;
  border-radius: 50%;
  background: var(--detail-purple-soft);
}

.service-card-premium h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--detail-purple-deep);
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card-premium p {
  color: var(--detail-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

.service-chakra-section {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.service-chakra-section .section-heading {
  text-align: center;
}



.service-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
}

.service-divider-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--detail-gold) 50%, transparent);
}

.service-divider-icon {
  color: var(--detail-gold);
  font-size: 1.5rem;
  opacity: 0.8;
}

/* Checklist / What You'll Receive */
.service-receive-section {
  padding: 100px 0;
  background: var(--detail-purple-soft);
}

.service-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.service-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--detail-line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(79, 40, 120, 0.02);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  text-align: left;
}

.service-checklist-item:hover {
  border-color: rgba(201, 162, 74, 0.35);
  box-shadow: 0 12px 30px rgba(79, 40, 120, 0.05);
}

.service-checklist-icon {
  color: var(--detail-gold);
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-checklist-text {
  font-size: 1.02rem;
  color: var(--detail-text);
  line-height: 1.6;
  text-align: left;
}

.service-checklist-text p,
.service-checklist-item p {
  text-align: left;
}

/* Service Quote Box */
.service-quote-section {
  padding: 100px 0;
  background: #ffffff;
}

.service-quote-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(79, 40, 120, 0.03), rgba(201, 162, 74, 0.02));
  border: 1px solid var(--detail-line);
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(79, 40, 120, 0.04);
}


.service-quote-wrapper h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--detail-purple-deep);
  line-height: 1.45;
  margin-bottom: 24px;
}

.service-quote-wrapper p {
  color: var(--detail-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-quote-wrapper p:last-child {
  margin-bottom: 0;
}

.service-quote-highlight {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--detail-gold) !important;
  margin-top: 24px !important;
  display: block;
}

/* Responsiveness overrides */
@media (max-width: 980px) {
  .service-intro-section,
  .service-why-section,
  .service-chakra-section,
  .service-receive-section,
  .service-quote-section {
    padding: 76px 0;
  }
  .service-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .service-checklist {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .service-benefits-grid,
  .service-benefits-grid-2col {
    grid-template-columns: 1fr;
  }
  .service-card-premium {
    padding: 28px 22px;
  }
  .service-checklist {
    gap: 18px;
  }
  .service-checklist-item {
    padding: 18px 16px;
  }
}

@media (max-width: 480px) {
  .service-intro-section,
  .service-why-section,
  .service-chakra-section,
  .service-receive-section,
  .service-quote-section,
  .why-cta-section {
    padding: 56px 0;
  }
  .service-text-container,
  .why-cta-container,
  .service-detail-copy {
    width: min(100%, 100% - 28px);
  }
  .service-intro-lead,
  .service-text-container p.service-intro-lead {
    font-size: 1.2rem;
    text-align: left;
  }
  .service-text-container p {
    font-size: 0.98rem;
    text-align: left;
  }
  .service-benefits-grid,
  .service-benefits-grid-2col,
  .service-checklist {
    grid-template-columns: 1fr;
  }
  .service-card-premium {
    padding: 22px 18px;
  }
  .service-checklist-item {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .service-checklist-icon {
    margin-top: 4px;
  }
}

/* Service Detail Page Global Alignment Rules */
.service-detail-page .section-heading {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.service-detail-page .section-heading * {
  text-align: center !important;
}

/* Responsive Grid Helper Classes */
.service-benefits-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-checklist-item.span-2 {
  grid-column: span 2;
}

.service-benefits-grid-2col .service-card-premium.span-2 {
  grid-column: span 2;
}

@media (max-width: 980px) {
  .service-checklist-item.span-2 {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .service-benefits-grid-2col {
    grid-template-columns: 1fr;
  }
  .service-benefits-grid-2col .service-card-premium.span-2 {
    grid-column: auto;
  }
}

/* ==========================================================================
   FAQ Page Styles
   ========================================================================== */
.faq-page-main {
  padding: 80px 0 40px;
  background: #ffffff;
}

.faq-search-wrapper {
  max-width: 680px;
  margin: -40px auto 50px;
  position: relative;
  z-index: 10;
  padding: 0 16px;
}

.faq-search-box {
  width: 100%;
  height: 62px;
  padding: 10px 24px 10px 60px;
  border-radius: 999px;
  border: 1px solid var(--detail-line);
  background: #fff;
  box-shadow: 0 12px 35px rgba(79, 40, 120, 0.05);
  font-size: 1.05rem;
  outline: none;
  transition: all 0.3s ease;
  color: var(--detail-purple-deep);
}

.faq-search-box::placeholder {
  color: #a093a6;
}

.faq-search-box:focus {
  border-color: var(--detail-purple);
  box-shadow: 0 12px 35px rgba(79, 40, 120, 0.12);
}

.faq-search-icon {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--detail-purple);
  font-size: 1.6rem;
  pointer-events: none;
}

.faq-search-clear {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--detail-muted);
  cursor: pointer;
  display: none;
  padding: 4px;
}

.faq-search-clear:hover {
  color: var(--detail-purple);
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.faq-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 110px;
  height: fit-content;
}

.faq-tab-btn {
  background: #ffffff;
  border: 1px solid var(--detail-line);
  border-radius: 16px;
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  color: var(--detail-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-sans);
  min-width: 0;
}

.faq-tab-btn .material-symbols-outlined {
  font-size: 1.35rem;
  color: var(--detail-gold);
  transition: transform 0.3s ease;
}

.faq-tab-btn:hover {
  border-color: var(--detail-purple);
  color: var(--detail-purple-deep);
  background: var(--detail-purple-soft);
}

.faq-tab-btn.active {
  border-color: var(--detail-purple);
  color: #fff;
  background: var(--detail-purple);
  box-shadow: 0 8px 24px rgba(79, 40, 120, 0.15);
}

.faq-tab-btn.active .material-symbols-outlined {
  color: #fff;
}

.faq-panes {
  min-width: 0;
}

.faq-pane {
  display: none;
}

.faq-pane.active {
  display: block;
  animation: faqFadeIn 0.4s ease forwards;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-pane-title {
  font-family: var(--ff-serif);
  color: var(--detail-purple-deep);
  font-size: 1.6rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--detail-line);
  display: none; /* Only visible in search results */
}

.faq-item {
  border: 1px solid var(--detail-line);
  border-radius: 20px;
  background: #fff;
  margin-bottom: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(79, 40, 120, 0.02);
}

.faq-item:hover {
  border-color: rgba(201, 162, 74, 0.45);
  box-shadow: 0 10px 30px rgba(79, 40, 120, 0.05);
}

.faq-item.open {
  border-color: var(--detail-gold);
  box-shadow: 0 12px 35px rgba(79, 40, 120, 0.08);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  gap: 20px;
}

.faq-question {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--detail-purple-deep);
  margin: 0;
  line-height: 1.45;
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-icon-wrap {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--detail-purple-soft);
  color: var(--detail-purple);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon-wrap {
  transform: rotate(180deg);
  background: var(--detail-purple);
  color: #fff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 30px;
  color: var(--detail-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.faq-item.open .faq-content {
  padding: 0 30px 26px;
}

.faq-content p {
  margin: 0 0 16px;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-content ul {
  margin: 12px 0;
  padding-left: 24px;
}

.faq-content li {
  margin-bottom: 8px;
}

.faq-content li:last-child {
  margin-bottom: 0;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--detail-muted);
  display: none;
}

.no-results .material-symbols-outlined {
  font-size: 3.5rem;
  color: var(--detail-gold);
  margin-bottom: 16px;
  opacity: 0.7;
}

.no-results h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--detail-purple-deep);
  margin-bottom: 8px;
}

/* Responsiveness */
@media (max-width: 980px) {
  .faq-page-main {
    padding-top: 58px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-sidebar {
    min-width: 0;
    position: relative;
  }

  .faq-panes {
    min-width: 0;
  }

  .faq-sidebar::before,
  .faq-sidebar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 95;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
  }

  .faq-sidebar::before {
    left: -28px;
    background: linear-gradient(90deg, #ffffff 20%, rgba(255, 255, 255, 0) 100%);
  }

  .faq-sidebar::after {
    right: -28px;
    background: linear-gradient(-90deg, #ffffff 20%, rgba(255, 255, 255, 0) 100%);
  }

  .faq-sidebar.can-scroll-left::before {
    opacity: 1;
  }

  .faq-sidebar.can-scroll-right::after {
    opacity: 1;
  }

  .faq-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding: 12px 28px 16px;
    position: sticky;
    top: var(--header-height);
    z-index: 90;
    background: #ffffff;
    border-bottom: 1px solid var(--detail-line);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    margin-inline: -28px;
    box-shadow: 0 8px 20px rgba(79, 40, 120, 0.04);
    
    /* Subtle custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(79, 40, 120, 0.15) transparent;
  }

  .faq-tabs::-webkit-scrollbar {
    display: block;
    height: 4px;
  }

  .faq-tabs::-webkit-scrollbar-track {
    background: transparent;
  }

  .faq-tabs::-webkit-scrollbar-thumb {
    background: rgba(79, 40, 120, 0.15);
    border-radius: 99px;
  }

  .faq-tabs::-webkit-scrollbar-thumb:hover {
    background: rgba(79, 40, 120, 0.3);
  }

  .faq-tab-btn {
    white-space: nowrap;
    padding: 12px 20px;
    scroll-snap-align: start;
    border-radius: 12px;
    flex: 0 0 auto;
  }
}

@media (max-width: 760px) {
  .faq-sidebar::before {
    left: -15px;
  }
  .faq-sidebar::after {
    right: -15px;
  }

  .faq-search-wrapper {
    max-width: none;
    padding: 0;
  }

  .faq-tabs {
    top: var(--header-height);
    margin-inline: -15px;
    padding-inline: 15px;
  }

  .faq-tab-btn {
    max-width: min(72vw, 230px);
    padding: 12px 18px;
    gap: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .faq-tab-btn .material-symbols-outlined {
    flex: 0 0 auto;
  }

  .faq-panes {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .faq-sidebar::before {
    left: -12px;
  }
  .faq-sidebar::after {
    right: -12px;
  }

  .faq-search-wrapper {
    margin-top: -30px;
    margin-bottom: 30px;
  }
  
  .faq-search-box {
    height: 54px;
    padding: 10px 44px 10px 48px;
    font-size: 0.98rem;
  }
  
  .faq-search-icon {
    left: 24px;
    font-size: 1.4rem;
  }

  .faq-search-clear {
    right: 18px;
  }

  .faq-tabs {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .faq-tab-btn {
    max-width: 74vw;
    min-height: 56px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .faq-item {
    border-radius: 18px;
    margin-bottom: 14px;
  }
  
  .faq-trigger {
    padding: 18px 18px;
    gap: 12px;
    align-items: flex-start;
  }
  
  .faq-question {
    font-size: 1rem;
    line-height: 1.45;
  }

  .faq-icon-wrap {
    width: 30px;
    height: 30px;
    margin-top: 1px;
  }
  
  .faq-content {
    padding: 0 18px;
    font-size: 0.96rem;
  }
  
  .faq-item.open .faq-content {
    padding: 0 18px 20px;
  }
}
