/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-white: #ffffff;
  --color-page-bg: #fffaf0;
  --color-navy: #0f3b27;
  --color-navy-2: #193224;
  --color-lilac: #f7f4d7;
  --color-lilac-soft: #fff4bb;
  --color-text: #193224;
  --color-text-muted: #64715f;
  --color-text-light: #ffffff;
  --color-border: #e4dca6;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 9999px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.08);
  --max-width: 1400px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-text);
  background: transparent;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== Particle Background ===== */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ===== Layout ===== */
.page-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  background: transparent;
}

/* ===== Image Placeholder ===== */
.image-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #e4dca6 0%, #fff2a8 100%);
  border: 2px dashed #d9c96a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder::after {
  content: 'Image placeholder';
  color: #8c7a25;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Hero placeholder */
.hero-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Feature card placeholders */
.feature-placeholder-1 {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

/* Logo placeholders */
.logo-placeholder {
  width: 100px;
  height: 40px;
  border-radius: 6px;
  flex-shrink: 0;
}

.logo-placeholder-sm {
  width: 80px;
  height: 32px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Use case placeholder */
.use-case-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-text-light);
}

.btn-primary:hover {
  background: #1a5c3a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 15, 26, 0.25);
}

.btn-dark {
  background: var(--color-navy);
  color: var(--color-text-light);
  padding: 12px 32px;
}

.btn-dark:hover {
  background: #1a5c3a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 15, 26, 0.25);
}

.btn-nav {
  background: #1a5c3a;
  color: #ffffff;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid #1a5c3a;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-nav:hover {
  background: #0f3b27;
  border-color: #f7c948;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 194, 255, 0.3);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #1a5c3a;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: -16px 0 40px rgba(10, 18, 42, 0.18);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 20px 24px 24px;
  border-left: 1px solid rgba(28, 73, 150, 0.12);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(28, 73, 150, 0.12);
}

.mobile-menu-close {
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #1a5c3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(28, 73, 150, 0.08);
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-menu-link {
  display: block;
  padding: 14px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #193224;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-link:hover {
  background: rgba(116, 31, 35, 0.08);
  color: #1a5c3a;
}

.mobile-menu-cta {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding: 14px 22px;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 42, 0.45);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid rgba(28, 73, 150, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
  backdrop-filter: blur(12px);
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a5c3a;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5c3a 0%, #0f3b27 100%);
  color: #f7c948;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 18px rgba(28, 73, 150, 0.5), inset 0 0 12px rgba(0, 194, 255, 0.15);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.15;
}

.logo-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #193224;
}

.logo-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1a5c3a;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  text-decoration: none;
  color: #193224;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f7c948;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: #1a5c3a;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
}

/* ===== Hero ===== */
.hero {
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background-image:
    linear-gradient(0deg, rgba(10, 18, 42, 0.78) 0%, rgba(10, 18, 42, 0.55) 30%, rgba(10, 18, 42, 0.15) 65%, rgba(10, 18, 42, 0) 100%),
    url("Assests/Hero Bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image-wrapper .image-placeholder {
  display: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 56px;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f7c948;
  background: rgba(0, 194, 255, 0.12);
  border: 1px solid rgba(0, 194, 255, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 0 18px rgba(0, 194, 255, 0.15);
}

.hero-highlight {
  color: #f7c948;
  text-shadow: 0 0 30px rgba(0, 194, 255, 0.45);
}

.hero-intro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0 0 28px 0;
  max-width: 560px;
  text-shadow: 0 1px 8px rgba(10, 18, 42, 0.45);
}

.hero-title {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(10, 18, 42, 0.4);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin: 0 0 28px 0;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(10, 18, 42, 0.4);
}

.btn-primary {
  background: #ffffff;
  color: #193224;
  padding: 14px 28px;
  border: 1px solid #ffffff;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-primary:hover {
  background: #1a5c3a;
  color: #ffffff;
  border-color: #1a5c3a;
  transform: translateY(-2px);
}

/* ===== Numerology Benefits ===== */
.numerology {
  padding: 50px 48px;
  background: #ffffff;
}

.numerology-header {
  text-align: left;
  margin-bottom: 60px;
}



.numerology-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: #193224;
  letter-spacing: -0.5px;
  margin: 0;
}

.numerology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.numerology-card {
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.numerology-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.numerology-card-lilac {
  background: var(--color-lilac);
}

.numerology-card-dark {
  background: #193224;
  color: var(--color-text-light);
}

.numerology-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #193224;
  margin: 0;
}

.numerology-card-title-light {
  color: var(--color-text-light);
}

.numerology-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

.numerology-card-text-light {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .numerology-grid {
    grid-template-columns: 1fr;
  }

  .crystal-healing {
    padding: 60px 20px;
  }

  .crystal-healing-title {
    font-size: 26px;
  }

  .crystal-healing-text {
    font-size: 14px;
  }

  .portfolio {
    padding: 40px 20px;
  }

  .portfolio-title {
    font-size: 26px;
  }

  .portfolio-subtitle {
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item {
    aspect-ratio: 4 / 5;
  }

  .gallery-footer {
    margin-top: 32px;
  }
}

/* ===== About Company ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px 48px;
  align-items: start;
  border-top: 1px solid var(--color-border);
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.about-text {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== Portfolio Gallery ===== */
.portfolio {
  padding: 50px 48px;
  background: transparent;
}

.portfolio-header-wrap {
  max-width: 800px;
  margin-bottom: 40px;
}

.portfolio-header-wrap .section-eyebrow {
  margin-bottom: 16px;
}

.portfolio-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.portfolio-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item {
  flex: 0 0 calc(25% - 15px);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  background: #e4dca6;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 45%, transparent 70%);
  pointer-events: none;
  border-radius: var(--radius-lg);
  transition: background 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 75%);
}

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.gallery-dot {
  appearance: none;
  border: none;
  background: #fff2a8;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.is-active {
  background: var(--color-navy);
  width: 24px;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.gallery-arrows {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gallery-arrow {
  appearance: none;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-arrow:hover:not(:disabled) {
  background: rgba(0,0,0,0.04);
}

[data-theme="dark"] .gallery-arrow:hover:not(:disabled) {
  background: rgba(255,255,255,0.06);
}

.gallery-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-text-light);
}

/* ===== Features ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 48px 100px;
}

.feature-card {
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.feature-lilac {
  background: var(--color-lilac);
}

.feature-dark {
  background: var(--color-navy);
  color: var(--color-text-light);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-navy);
}

.feature-title-light {
  color: var(--color-text-light);
}

.feature-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.feature-text-light {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Products ===== */
.products {
  padding: 50px 48px;
  background: transparent;
}

.products-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  color: var(--color-navy);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.products-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 12px;
}

.products-intro {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.product-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  z-index: 0;
}

.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  z-index: 0;
  display: block;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.25) 80%);
  z-index: 1;
  border-radius: var(--radius-md);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.products-grid .product-card:nth-child(1) .product-badge {
  background: linear-gradient(135deg, #1a5c3a 0%, #ca8a04 100%);
}
.products-grid .product-card:nth-child(2) .product-badge {
  background: linear-gradient(135deg, #1a5c3a 0%, #059669 100%);
}
.products-grid .product-card:nth-child(3) .product-badge {
  background: linear-gradient(135deg, #1a5c3a 0%, #f7c948 100%);
}
.products-grid .product-card:nth-child(4) .product-badge {
  background: linear-gradient(135deg, #d97706 0%, #d97706 100%);
}
.products-grid .product-card:nth-child(5) .product-badge {
  background: linear-gradient(135deg, #1a5c3a 0%, #1a5c3a 100%);
}
.products-grid .product-card:nth-child(6) .product-badge {
  background: linear-gradient(135deg, #ca8a04 0%, #eab308 100%);
}

.product-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.product-verified {
  flex-shrink: 0;
}

.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-rating-value {
  font-size: 13px;
  font-weight: 600;
  color: #fbbf24;
}

.product-rating-reviews {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.2px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tag {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.product-rating-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.product-rating-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.btn-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  background: #ffffff;
  color: var(--color-navy);
  cursor: pointer;
  margin-top: 4px;
}

.btn-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 50px 48px;
  background: transparent;
}

.testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}



.testimonials-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--color-navy);
}

.testimonials-title-muted {
  color: var(--color-text-muted);
}

.testimonials-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.testimonials-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonials-arrow:hover {
  background: #1a5c3a;
  transform: scale(1.05);
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff6cd;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  aspect-ratio: auto;
  background: #e4dca6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.5px;
}

.testimonial-avatar::after {
  content: attr(data-initials);
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  color: #10b981;
}

.testimonial-company {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial-quote-icon {
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
}

.testimonial-divider {
  width: 1px;
  height: 14px;
  background: var(--color-border);
}

.testimonial-role {
  font-size: 14px;
  color: var(--color-text-muted);
}

.testimonial-location {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ===== Crystal Healing ===== */
.crystal-healing {
  padding: 50px 48px;
  background: #ffffff;
}

.crystal-healing-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.crystal-healing-header {
  text-align: left;
  max-width: 720px;
  margin: 0 0 56px;
}

.crystal-healing-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: #193224;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}

.crystal-healing-text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 32px;
}

/* ===== Final CTA ===== */
.cta-section {
  padding: 50px 48px;
  background: #0f3b27;
  color: #ffffff;
  text-align: center;
  border-radius: 40px;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-buttons {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: #1a5c3a;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: #ffffff;
  color: var(--color-navy);
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ===== Contact Form ===== */
.contact-section {
  padding: 50px 48px;
  background: transparent;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--color-navy);
}

.contact-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}

.contact-info-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.contact-info-sub {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.contact-info-detail {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  word-break: break-word;
}

.contact-right {
  background: #f1fff6;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-pill);
  border: none;
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-navy);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-textarea {
  border-radius: var(--radius-md);
  min-height: 120px;
  resize: vertical;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(15, 15, 26, 0.45);
}

.contact-input:hover,
.contact-textarea:hover,
.contact-input:focus,
.contact-textarea:focus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: #1a5c3a;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  align-self: flex-start;
}

.btn-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35);
}

/* ===== Footer ===== */
.footer {
  background: #0f3b27;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 48px 10px;
  border-radius: 40px;
  margin-bottom: 10px;
}

/* ===== Footer ===== */
.footer {
  background: #0f3b27;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 48px 32px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease, transform 0.25s ease;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== FAQ ===== */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  padding: 50px 48px;
  background: transparent;
  align-items: start;
}



.faq-bullet {
  width: 10px;
  height: 10px;
  background: #1a5c3a;
  border-radius: 2px;
  display: inline-block;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 60px;
}

.faq-contact {
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.faq-contact-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.faq-contact-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: #1a5c3a;
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-contact-btn:hover {
  background: #f7c948;
  transform: translateY(-1px);
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fffdf4;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background 0.2s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  flex-shrink: 0;
  min-width: 22px;
}

.faq-q-text {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.4;
}

.faq-toggle {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.faq-bar-h,
.faq-bar-v {
  position: absolute;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-bar-h {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-bar-v {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.open .faq-bar-v {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

/* Smooth expand/collapse animation */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 24px 24px 66px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ===== Backers ===== */
.backers {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  padding: 60px 48px;
  border-top: 1px solid var(--color-border);
}

.backers-text {
  font-size: 15px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.logos-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ===== Use Cases ===== */
.use-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px 48px;
  align-items: start;
}

.use-cases-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.use-cases-text {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-top: 20px;
}

.use-case-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.use-case-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.use-case-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.use-case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.use-case-link:hover {
  gap: 12px;
  color: #1a5c3a;
}

/* ===== About Client ===== */
.about-client {
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fffaf0 0%, #fff2a8 50%, #e4dca6 100%);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 20px 50px rgba(15, 15, 26, 0.08);
}

.about-client-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-client-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-client-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.about-client-text {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.about-client-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: -0.2px;
  line-height: 1.4;
}

.about-client-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.highlight-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-weight: 700;
  border-radius: 50%;
  font-size: 11px;
  margin-top: 1px;
}

.about-client-booking {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0;
}

.about-client-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-client-achievements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.achievement-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.achievement-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

.achievement-label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.about-client-right {
  position: relative;
}

.about-client-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-client-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
  margin-top: -40px;
  transition: none;
}

.about-client-image:hover {
  transform: none;
  box-shadow: none;
}

.about-client-float-card {
  position: absolute;
  bottom: 24px;
  right: 0;
  background: rgba(15, 15, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 260px;
  color: var(--color-text-light);
}

.float-card-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
  margin-bottom: 8px;
}

.float-card-text {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.float-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: var(--radius-sm);
}

/* ===== Why Choose Us ===== */
.why-choose {
  padding: 50px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.why-choose-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}



.why-choose-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}

.why-choose-subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: #fff8d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4dca6;
}

.why-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.why-card-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ===== Our Process (clean vertical timeline) ===== */
.our-steps {
  padding: 50px 48px;
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 40%, #f4ffe2 100%);
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.our-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.08) 50%, rgba(15, 23, 42, 0) 100%);
}

.our-steps-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}

.our-steps-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: sticky;
  top: 120px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a5c3a;
  background: rgba(59, 130, 246, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  display: inline-block;
  margin-bottom: 16px;
  width: max-content;
}

.our-steps-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.12;
  color: #193224;
  letter-spacing: -0.8px;
}

.our-steps-text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 380px;
}

.our-steps-cta {
  margin-top: 8px;
}

.our-steps-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding-bottom: 36px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.timeline-num {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5c3a 0%, #1a5c3a 100%);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-num {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}

.timeline-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.35) 0%, rgba(59, 130, 246, 0.08) 100%);
  margin-top: 10px;
  min-height: 28px;
  border-radius: 2px;
}

.timeline-step:last-child .timeline-line {
  display: none;
}

.timeline-card {
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
}

.step-heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #193224;
  margin: 0 0 10px 0;
  letter-spacing: -0.2px;
}

.step-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== Special Guidance ===== */
.special-guidance {
  padding: 50px 48px;
  background: transparent;
}

.special-guidance-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.guidance-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
  max-width: 640px;
}



.guidance-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: #193224;
  letter-spacing: -0.5px;
}

.guidance-subtitle {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.guidance-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  min-height: 240px;
}

.guidance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
}

.guidance-card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  gap: 24px;
}

.guidance-card-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #193224;
  line-height: 1.2;
  margin: 0 0 10px 0;
  letter-spacing: -0.3px;
}

.guidance-card-desc {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.guidance-card-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #193224;
  text-decoration: none;
  border-bottom: 2px solid #193224;
  padding-bottom: 2px;
  align-self: flex-start;
}

.guidance-card-visual {
  position: relative;
  display: block;
  overflow: hidden;
}

.guidance-visual-1,
.guidance-visual-2 {
  background: transparent;
}
.guidance-visual-3 {
  background: linear-gradient(135deg, #f1fff6 0%, #d1fae5 100%);
}
.guidance-visual-4 {
  background: linear-gradient(135deg, #f1fff6 0%, #d1fae5 100%);
}

.guidance-illustration {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 0;
  background: url('Assests/Vaastu & Energy Balance.webp') center/cover no-repeat;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}
.guidance-illustration1 {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 0;
  background: url('Assests/Hawan & Puja Rituals.webp') center/cover no-repeat;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.guidance-illustration::before {
  content: none;
}

/* ===== Healing (Bento Grid) ===== */
.healing {
  padding: 50px 48px;
  background: #ffffff;
}

.healing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.healing-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
  max-width: 720px;
  text-align: left;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
}



.healing-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: #193224;
  letter-spacing: -0.5px;
}

.healing-subtitle {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 20px;
}

.bento-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  overflow: hidden;
}

/* Tall left card spans both rows */
.bento-tall {
  grid-row: 1 / 3;
  grid-column: 1;
  flex-direction: column;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.bento-tall:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.bento-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 0;
}

.bento-img-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.bento-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.15) 75%);
  z-index: 1;
  border-radius: 0;
}

.bento-tall-text {
  position: relative;
  z-index: 2;
  padding: 28px;
  margin-top: auto;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  border-radius: 0;
}

.bento-tall-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.bento-tall-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

/* Stat cards */
.bento-stat {
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.bento-stat-teal {
  background: #000000;
  color: #ffffff;
}

.bento-stat-number {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.bento-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.bento-stat-dark .bento-stat-number,
.bento-stat-number-dark {
  color: #193224;
}

.bento-stat-label-dark {
  color: var(--color-text-muted);
}

.bento-stat-icon {
  margin-bottom: 4px;
}

.bento-stat-icon-soft {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.bento-stat-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: #193224;
  text-decoration: none;
}

.bento-stat-mint {
  background: #ffffff;
}

.bento-stat-pale {
  background: #f1fff6;
  align-items: center;
  text-align: center;
}

/* Wide gradient card */
.bento-gradient {
  grid-column: span 2;
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(180, 230, 220, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 100% 0%, rgba(220, 240, 245, 0.5) 0%, transparent 50%),
    linear-gradient(135deg, #f1fff6 0%, #fffdf4 100%);
  flex-direction: column;
  justify-content: space-between;
}

.bento-gradient-title {
  font-size: 20px;
  font-weight: 700;
  color: #193224;
  margin: 0 0 8px 0;
}

.bento-gradient-body {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 16px 0;
  max-width: 360px;
}

.bento-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #193224;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.bento-tag-icon {
  width: 20px;
  height: 20px;
  background: #f1fff6;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .navbar {
    flex-wrap: nowrap;
    gap: 12px;
    padding: 18px 24px;
  }

  .logo-tagline {
    display: none;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .logo-name {
    font-size: 16px;
  }

  .nav-center {
    display: none;
  }

  .nav-right .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 24px 20px 0;
  }

  .hero-image-wrapper {
    aspect-ratio: 4 / 5;
    background-position: center top;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    padding: 28px 24px;
    max-width: 100%;
    justify-content: flex-end;
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 12px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .hero-intro {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .numerology,
  .about,
  .use-cases,
  .faq,
  .about-client,
  .why-choose {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

  .portfolio {
    padding: 60px 24px;
  }

  .gallery-viewport {
    overflow: hidden;
  }

  .gallery-track {
    gap: 16px;
  }

  .gallery-item {
    flex: 0 0 calc(50% - 8px);
  }

  .our-steps {
    padding: 60px 24px;
  }

  .our-steps-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .our-steps-left {
    position: static;
    align-items: center;
    text-align: center;
  }

  .our-steps-title {
    font-size: 28px;
  }

  .our-steps-text {
    max-width: 100%;
  }

  .timeline-step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding-bottom: 28px;
  }

  .timeline-num {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .timeline-card {
    padding: 16px 18px;
  }

  .step-heading {
    font-size: 16px;
  }

  .special-guidance {
    padding: 60px 24px;
  }

  .guidance-header {
    margin-bottom: 32px;
  }

  .guidance-title {
    font-size: 28px;
  }

  .guidance-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .guidance-card {
    grid-template-columns: 1fr 1fr;
    min-height: 180px;
  }

  .guidance-card-text {
    padding: 20px;
    gap: 16px;
  }

  .guidance-card-title {
    font-size: 20px;
  }

  .guidance-card-desc {
    font-size: 13.5px;
  }

  .guidance-card-cta,
  .guidance-cta {
    font-size: 12px;
    padding: 8px 14px;
  }

  .healing {
    padding: 60px 24px;
  }

  .healing-title {
    font-size: 28px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-tall {
    grid-row: auto;
    grid-column: auto;
  }

  .bento-gradient {
    grid-column: auto;
  }

  .bento-card {
    min-height: 200px;
  }

  .bento-tall {
    min-height: 340px;
  }

  .bento-stat-number {
    font-size: 42px;
  }

  .about-client-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
  }

  .about-client-right {
    order: -1;
  }

  .about-client-left {
    order: 0;
  }

  .about-client-image {
    margin-top: 0;
    max-width: 320px;
    border-radius: 0;
  }

  .about-client-float-card {
    right: 12px;
    bottom: 12px;
    max-width: 220px;
  }

  .about-client-achievements {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .achievement-number {
    font-size: 22px;
  }

  .about-client-subtitle {
    font-size: 14px;
  }

  .highlight-item {
    font-size: 14px;
  }

  .about-client-booking {
    font-size: 13px;
  }

  .gallery-viewport {
    overflow: hidden;
  }

  .gallery-track {
    gap: 12px;
  }

  .gallery-item {
    flex: 0 0 calc(50% - 6px);
    aspect-ratio: 4 / 3;
  }

  .gallery-pagination {
    margin-top: 28px;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 0 24px 60px;
  }
.products {
  padding: 60px 10px;
  background: transparent;
}

  .products-header {
    margin-bottom: 28px;
  }

  .products-title {
    font-size: 26px;
  }

  .products-intro {
    font-size: 14px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    
  }

  .product-card {
    min-height: 380px;
  }

  .product-content {
    padding: 10px;
    gap: 8px;
  }

  .product-name {
    font-size: 15px;
  }

  .product-desc {
    font-size: 12px;
  }

  .product-tag {
    font-size: 10px;
    padding: 2px 8px;
  }

  .product-badge {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 4px 10px;
  }

  .product-rating-value {
    font-size: 14px;
  }

  .product-rating-label {
    font-size: 12px;
  }

  .btn-product {
    padding: 10px 18px;
    font-size: 13px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-choose-title {
    font-size: 30px;
  }

  .why-card {
    padding: 22px 18px;
    gap: 12px;
  }

  .cta-section {
    padding: 60px 24px;
  }

  .cta-title {
    font-size: 30px;
  }

  .contact-section {
    padding: 60px 24px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 60px 24px 10px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .backers {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 24px;
  }

  .logos-row {
    justify-content: center;
  }

  .testimonials {
    padding: 60px 24px;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .testimonials-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonials-head {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .testimonials-nav {
    order: 2;
    align-self: center;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-choose-title {
    font-size: 26px;
  }

  .why-choose-subtitle {
    font-size: 15px;
  }

  .why-card {
    padding: 20px 16px;
  }

  .why-card-title {
    font-size: 16px;
  }

  .why-card-text {
    font-size: 13px;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-client-title {
    font-size: 28px;
  }

  .about-client-image {
    max-width: 280px;
  }

  .about-client-float-card {
    right: 8px;
    bottom: 8px;
    max-width: 200px;
    padding: 16px;
  }

  .about-client-achievements {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .achievement-number {
    font-size: 20px;
  }

  .achievement-label {
    font-size: 12px;
  }

  .faq-title {
    font-size: 30px;
  }

  .portfolio-title {
    font-size: 24px;
  }

  .portfolio-subtitle {
    font-size: 13px;
  }

  .gallery-viewport {
    overflow: hidden;
  }

  .gallery-track {
    gap: 10px;
  }

  .gallery-controls {
    flex-direction: column;
    gap: 16px;
  }

  .gallery-item {
    flex: 0 0 100%;
    aspect-ratio: 4 / 3;
  }

  .gallery-pagination {
    margin-top: 24px;
  }
    margin-bottom: 32px;
  }

  .stat-number {
    font-size: 36px;
  }

  .nav-center {
    display: none;
  }

}



/* ===== Client Change Overrides: Pooja Jaiin ===== */
:root {
  --color-page-bg: #fffaf0;
  --color-navy: #1a5c3a;
  --color-navy-2: #0f3b27;
  --color-lilac: #f7f4d7;
  --color-lilac-soft: #fff2a8;
  --color-text: #193224;
  --color-text-muted: #64715f;
  --color-border: #e4dca6;
  --shadow-card: 0 4px 20px rgba(26, 92, 58, 0.08);
  --shadow-elevated: 0 16px 42px rgba(26, 92, 58, 0.16);
  --max-width: 1400px;
}

body {
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 44%, #f4ffe2 100%);
  color: var(--color-text);
}

.page-wrapper,
.hero,
.our-steps-inner,
.special-guidance-inner,
.healing-inner,
.footer-inner,
.contact-inner,
.cta-inner,
.crystal-healing-inner,
.why-choose-inner {
  max-width: var(--max-width);
}

.page-wrapper {
  background: rgba(255, 255, 255, 0.72);
}

.navbar {
  border-bottom-color: rgba(26, 92, 58, 0.18);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.97) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.logo,
.logo-name,
.nav-link,
.mobile-menu-link {
  color: #194d32;
}

.logo-mark {
  background: linear-gradient(135deg, #1a5c3a 0%, #0f3b27 100%);
  color: #f7c948;
  box-shadow: 0 6px 18px rgba(26, 92, 58, 0.32), inset 0 0 12px rgba(247, 201, 72, 0.24);
}

.nav-link::after,
.gallery-dot.is-active {
  background: #f7c948;
}

.btn-nav,
.btn-dark,
.btn-contact-submit,
.btn-cta-primary,
.faq-contact-btn,
.why-cta,
.our-steps-cta,
.crystal-healing-cta {
  background: #1a5c3a;
  border-color: #1a5c3a;
  color: #ffffff;
}

.btn-nav:hover,
.btn-dark:hover,
.btn-contact-submit:hover,
.btn-cta-primary:hover,
.faq-contact-btn:hover,
.why-cta:hover,
.our-steps-cta:hover,
.crystal-healing-cta:hover {
  background: #f7c948;
  border-color: #f7c948;
  color: #17351f;
  box-shadow: 0 10px 26px rgba(247, 201, 72, 0.32);
}

.btn-outline,
.btn-cta-secondary {
  color: #1a5c3a;
  border-color: #1a5c3a;
  background: #fffdf4;
}

.btn-outline:hover,
.btn-cta-secondary:hover {
  background: #1a5c3a;
  color: #ffffff;
}

.hero-image-wrapper {
  background-image:
    linear-gradient(0deg, rgba(13, 54, 33, 0.84) 0%, rgba(26, 92, 58, 0.62) 35%, rgba(26, 92, 58, 0.15) 72%, rgba(26, 92, 58, 0) 100%),
    url("Assests/Hero Bg.webp");
}

.hero-badge,
.section-badge,
.section-eyebrow {
  color: #1a5c3a;
  background: rgba(247, 201, 72, 0.18);
  border-color: rgba(26, 92, 58, 0.18);
}

.hero-highlight {
  color: #f7c948;
  text-shadow: 0 0 28px rgba(247, 201, 72, 0.52);
}

.btn-primary {
  background: #f7c948;
  border-color: #f7c948;
  color: #17351f;
}

.btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #1a5c3a;
}

.service-pill,
.product-tag,
.bento-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff4bb;
  border: 1px solid rgba(26, 92, 58, 0.16);
  color: #1a5c3a;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
}

.products,
.special-guidance,
.testimonials,
.contact-section {
  background: transparent;
}

.about,
.healing,
.cta-section,
.crystal-healing,
.footer {
  background: #fffdf4;
}

.product-badge,
.timeline-num {
  background: linear-gradient(135deg, #1a5c3a 0%, #f7c948 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(26, 92, 58, 0.24);
}

.product-rating-value,
.product-rating-reviews,
.guidance-card-cta {
  color: #f7c948;
}

.why-card-icon,
.testimonial-quote-icon,
.contact-info {
  background: #fff8d8;
  border-color: rgba(26, 92, 58, 0.14);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-field {
  display: grid;
  gap: 8px;
  color: #1a5c3a;
  font-size: 13px;
  font-weight: 700;
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(26, 92, 58, 0.22);
  border-radius: 8px;
  background: #fffdf8;
  color: #193224;
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: #1a5c3a;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(247, 201, 72, 0.22);
}

.contact-file {
  padding: 12px;
}

.contact-file-field small {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 500;
}

.footer {
  color: #fffdf4;
  background: linear-gradient(180deg, #1a5c3a 0%, #0f3b27 100%);
}

.footer-link,
.footer-copy,
.footer-col-title,
.footer-logo-text,
.footer-logo-icon {
  color: #fffdf4;
}

.footer-link:hover {
  color: #f7c948;
}

@media (max-width: 968px) {
  .page-wrapper,
  .hero,
  .our-steps-inner,
  .special-guidance-inner,
  .healing-inner,
  .footer-inner,
  .contact-inner,
  .cta-inner,
  .crystal-healing-inner,
  .why-choose-inner {
    max-width: 100%;
  }
}
/* ===== Polish: Hero Pill, Contact Cards, Form Icons ===== */
.hero-badge {
  color: #fff7c7;
  background: rgba(13, 54, 33, 0.88);
  border: 1px solid rgba(247, 201, 72, 0.7);
  box-shadow: 0 12px 30px rgba(4, 23, 14, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.contact-grid {
  gap: 24px 28px;
}

.contact-info {
  padding: 24px 26px;
  border-radius: 8px;
  border: 1px solid rgba(26, 92, 58, 0.16);
  box-shadow: 0 12px 28px rgba(26, 92, 58, 0.08);
  min-height: 130px;
}

.contact-info-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #102d1d;
}

.info-icon,
.field-label svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.info-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #1a5c3a;
  color: #f7c948;
}

.info-icon svg,
.field-label svg,
.btn-contact-submit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-detail {
  color: #0f2418;
  word-break: break-word;
}

.contact-right {
  background:
    radial-gradient(circle at top left, rgba(247, 201, 72, 0.22), transparent 34%),
    linear-gradient(145deg, #f1fff6 0%, #fffdf4 100%);
  border: 1px solid rgba(26, 92, 58, 0.14);
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 24px 54px rgba(26, 92, 58, 0.12);
}

.contact-form {
  gap: 20px;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f4b2d;
  font-size: 14px;
  font-weight: 800;
}

.field-label svg {
  width: 19px;
  height: 19px;
  color: #f0b90b;
}

.contact-input,
.contact-select,
.contact-textarea {
  border-radius: 8px;
  border-color: rgba(26, 92, 58, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #7c8579;
}

.contact-file-field {
  padding: 18px;
  border-radius: 8px;
  background: rgba(247, 201, 72, 0.12);
  border: 1px dashed rgba(26, 92, 58, 0.28);
}

.contact-file {
  background: #ffffff;
}

.btn-contact-submit {
  gap: 10px;
  min-height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a5c3a 0%, #0f3b27 100%);
  box-shadow: 0 16px 30px rgba(26, 92, 58, 0.24);
}

.btn-contact-submit:hover {
  background: linear-gradient(135deg, #f7c948 0%, #ffe788 100%);
}

@media (max-width: 640px) {
  .contact-right {
    padding: 24px 18px;
  }

  .contact-info {
    padding: 20px;
  }
}
/* ===== Section Fixes: Testimonials, Gallery Controls, Crystal CTA ===== */
.gallery-controls {
  margin-top: 28px;
  gap: 18px;
}

.gallery-arrows {
  gap: 12px;
}

.gallery-arrow,
.testimonials-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(26, 92, 58, 0.28);
  border-radius: 50%;
  background: #fffdf4;
  color: #0f3b27;
  box-shadow: 0 8px 18px rgba(26, 92, 58, 0.08);
}

.gallery-arrow:hover:not(:disabled),
.testimonials-arrow:hover {
  background: #f7c948;
  border-color: #f7c948;
  color: #102d1d;
  transform: translateY(-2px);
}

.gallery-dot {
  background: #ffe788;
  border: 1px solid rgba(247, 201, 72, 0.65);
}

.gallery-dot.is-active {
  width: 30px;
  background: #f7c948;
}

.testimonials-track {
  align-items: stretch;
}

.testimonial-card {
  border-radius: 8px;
  padding: 32px;
  border: 1px solid rgba(26, 92, 58, 0.08);
  box-shadow: 0 14px 34px rgba(26, 92, 58, 0.08);
}

.testimonial-company {
  border-radius: 999px;
  padding: 8px 18px;
  background: #fffdf4;
}

.testimonial-quote-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 16px;
  border-radius: 8px;
  background: rgba(247, 201, 72, 0.18);
  color: #1a5c3a;
}

.testimonial-quote-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.testimonial-quote {
  margin-top: 0;
}

.crystal-healing {
  padding: 64px 48px 56px;
  background: #fffdf4;
}

.crystal-healing-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.crystal-healing-header {
  max-width: 820px;
  margin: 0;
}

.crystal-healing-title {
  max-width: 760px;
}

.cta-section {
  margin: 0 auto 0;
  padding: 72px 48px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 10%, rgba(247, 201, 72, 0.28), transparent 34%),
    linear-gradient(135deg, #0f3b27 0%, #1a5c3a 100%);
  color: #ffffff;
  text-align: center;
}

.cta-title {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.86);
}

.btn-cta-secondary {
  background: transparent;
  color: #fff7c7;
  border-color: rgba(247, 201, 72, 0.7);
}

.btn-cta-secondary:hover {
  background: #f7c948;
  color: #102d1d;
}

@media (max-width: 968px) {
  .crystal-healing {
    padding: 52px 24px 44px;
  }

  .cta-section {
    padding: 56px 24px;
  }
}

@media (max-width: 640px) {
  .gallery-controls {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-top {
    gap: 14px;
  }
}
/* ===== Sleek Desktop Header Fix ===== */
.navbar {
  width: calc(100% - 64px);
  max-width: 1320px;
  margin: 18px auto 22px;
  padding: 12px 18px;
  border: 0;
  border-bottom: 0;
  border-radius: 999px;
  background: rgba(255, 253, 244, 0.9);
  box-shadow: 0 16px 36px rgba(26, 92, 58, 0.12);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  position: sticky;
  top: 14px;
  z-index: 50;
}

.nav-left,
.nav-right {
  min-width: 190px;
}

.nav-right {
  justify-content: flex-end;
}

.logo-mark {
  width: 40px;
  height: 40px;
  font-size: 15px;
}

.logo-name {
  font-size: 17px;
  white-space: nowrap;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(247, 201, 72, 0.12);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #102d1d;
  font-size: 14px;
  font-weight: 700;
}

.nav-link::after {
  display: none;
}

.nav-link:hover {
  color: #102d1d;
  background: #f7c948;
}

.btn-nav {
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(26, 92, 58, 0.18);
}

.btn-nav:hover {
  box-shadow: 0 12px 24px rgba(247, 201, 72, 0.28);
}

@media (min-width: 769px) {
  .nav-center {
    display: flex !important;
  }

  .nav-right .btn-nav {
    display: inline-flex !important;
  }

  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 980px) and (min-width: 769px) {
  .navbar {
    width: calc(100% - 32px);
    padding: 10px 12px;
  }

  .nav-left,
  .nav-right {
    min-width: auto;
  }

  .nav-center {
    gap: 4px;
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 13px;
  }

  .btn-nav {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 28px);
    margin: 14px auto 18px;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .nav-center,
  .nav-right .btn-nav {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex !important;
  }
}
/* ===== Remove About Section Divider And Fill ===== */
.about {
  border-top: 0 !important;
  border-bottom: 0 !important;
  background: transparent !important;
}
/* ===== Guidance Card CTA Size ===== */
.guidance-card-cta {
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.25;
}
/* ===== FAQ Single Open And Darker Yellow ===== */
.faq-item {
  background: #fff4bb !important;
  border: 1px solid rgba(202, 138, 4, 0.18);
}

.faq-item.open {
  background: #fff0a3 !important;
}
/* ===== Gallery Dots Between Arrows ===== */
.gallery-controls {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.gallery-pagination {
  margin-top: 0 !important;
  min-width: 150px;
}

.gallery-arrows {
  display: contents;
}
/* ===== Compact Gallery Control Cluster ===== */
.gallery-controls {
  width: fit-content !important;
  max-width: calc(100% - 32px);
  margin: 28px auto 0 !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
}

.gallery-pagination {
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gallery-arrow {
  flex: 0 0 44px;
}
/* ===== Gallery Centering And Click Fix ===== */
.gallery-track {
  justify-content: flex-start !important;
}

.gallery-controls {
  width: max-content !important;
  max-width: 100% !important;
  margin: 28px auto 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
}

.gallery-pagination {
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.gallery-arrow {
  flex: 0 0 44px !important;
}

.gallery-arrow:disabled {
  opacity: 1 !important;
  cursor: pointer !important;
}
/* ===== CTA Section Radius And Yellow WhatsApp Button ===== */
.cta-section {
  border-radius: 32px !important;
}

.cta-section .btn-cta-primary {
  background: #f7c948 !important;
  border-color: #f7c948 !important;
  color: #102d1d !important;
  box-shadow: 0 14px 28px rgba(247, 201, 72, 0.28) !important;
}

.cta-section .btn-cta-primary:hover {
  background: #ffe788 !important;
  border-color: #ffe788 !important;
  color: #102d1d !important;
}
/* ===== Contact Form Layout And Radius ===== */
.contact-right {
  border-radius: 28px !important;
  padding: 38px !important;
}

.contact-form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px !important;
}

.contact-form-grid .form-full {
  grid-column: 1 / -1;
}

.contact-input,
.contact-select,
.contact-textarea {
  border-radius: 14px !important;
  min-height: 62px;
}

.contact-file-field {
  border-radius: 18px !important;
  padding: 22px !important;
}

.btn-contact-submit {
  border-radius: 999px !important;
  min-height: 64px;
}

@media (max-width: 700px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-right {
    border-radius: 22px !important;
    padding: 24px 18px !important;
  }
}
/* ===== Contact Cards Radius And Required Stars ===== */
.contact-info {
  border-radius: 18px !important;
}

.required-star {
  color: #dc2626;
  margin-left: 1px;
}
/* ===== Remove Testimonial Card Shadow ===== */
.testimonial-card {
  box-shadow: none !important;
}
/* ===== Vedic Pooja Section ===== */
.vedic-pooja {
  padding: 56px 48px;
  background: transparent;
}

.vedic-pooja-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  border-radius: 32px;
  padding: 44px;
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 201, 72, 0.28), transparent 34%),
    linear-gradient(135deg, #fffdf4 0%, #f1fff6 100%);
  border: 1px solid rgba(26, 92, 58, 0.12);
}

.vedic-pooja-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.vedic-pooja-title {
  max-width: 760px;
  font-size: 42px;
  line-height: 1.14;
  color: #102d1d;
  font-weight: 800;
  margin: 0;
}

.vedic-pooja-text {
  max-width: 680px;
  color: #4d684f;
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.vedic-pooja-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 8px;
}

.vedic-pooja-list span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff4bb;
  border: 1px solid rgba(202, 138, 4, 0.18);
  color: #0f4b2d;
  font-size: 13px;
  font-weight: 800;
}

.vedic-pooja-cta {
  min-height: 50px;
  padding-inline: 26px;
}

.vedic-pooja-visual {
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: #fff8d8;
}

.vedic-pooja-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 968px) {
  .vedic-pooja {
    padding: 48px 24px;
  }

  .vedic-pooja-inner {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .vedic-pooja-title {
    font-size: 30px;
  }
}
/* ===== Floating Social Icons ===== */
.floating-socials {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-social {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(247, 201, 72, 0.45);
  box-shadow: 0 14px 28px rgba(15, 59, 39, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-social svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp {
  background: #1a5c3a;
  color: #f7c948;
}

.floating-instagram {
  background: #f7c948;
  color: #102d1d;
}

.floating-social:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(15, 59, 39, 0.28);
}

@media (max-width: 640px) {
  .floating-socials {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-social {
    width: 48px;
    height: 48px;
  }
}
/* ===== Footer Brand Description And Icons ===== */
.footer-brand {
  max-width: 360px;
}

.footer-brand-text {
  max-width: 340px;
  margin: -8px 0 20px;
  color: rgba(255, 253, 244, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #102d1d;
  background: #f7c948;
  border: 1px solid rgba(247, 201, 72, 0.55);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link:hover {
  background: #ffe788;
  transform: translateY(-2px);
}
/* ===== Footer Divider Yellow ===== */
.footer-bottom {
  border-top-color: rgba(247, 201, 72, 0.7) !important;
}
/* ===== Reduce Hero Empty Top Space ===== */
.hero-image-wrapper {
  aspect-ratio: 16 / 6 !important;
  min-height: 520px;
}

.hero-content {
  justify-content: center !important;
  padding: 44px 56px !important;
}

.hero-badge {
  margin-bottom: 16px !important;
}

@media (max-width: 968px) {
  .hero-image-wrapper {
    aspect-ratio: 4 / 4.8 !important;
    min-height: 560px;
  }

  .hero-content {
    justify-content: flex-end !important;
    padding: 28px 24px !important;
  }
}
/* ===== Banner Width Alignment ===== */
.hero {
  width: calc(100% - 64px) !important;
  max-width: 1320px !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

.hero-image-wrapper {
  width: 100%;
}

@media (max-width: 980px) {
  .hero {
    width: calc(100% - 32px) !important;
  }
}

@media (max-width: 640px) {
  .hero {
    width: calc(100% - 28px) !important;
  }
}
/* ===== Testimonial Cards Grey + About Image White Gradient ===== */
.testimonial-card {
  background: #f6f7f2 !important;
  border: 1px solid rgba(26, 92, 58, 0.16) !important;
}

.testimonial-avatar,
.testimonial-quote-icon {
  background: rgba(26, 92, 58, 0.12) !important;
  color: #1a5c3a !important;
}

.testimonial-company {
  background: #ffffff !important;
  border-color: rgba(26, 92, 58, 0.34) !important;
  color: #0f3b27 !important;
}

.testimonial-verified,
.testimonial-name {
  color: #0f4b2d !important;
}

.testimonial-divider {
  background: rgba(26, 92, 58, 0.24) !important;
}

.about-client {
  background: linear-gradient(105deg, #fff4bb 0%, #fff8d8 48%, #ffffff 48%, #ffffff 100%) !important;
}

.about-client-float-card {
  background: rgba(15, 59, 39, 0.82) !important;
  border-color: rgba(247, 201, 72, 0.28) !important;
}

@media (max-width: 968px) {
  .about-client {
    background: linear-gradient(180deg, #fff4bb 0%, #fffdf4 52%, #ffffff 52%, #ffffff 100%) !important;
  }
}
/* ===== Softer Testimonial Radius ===== */
.testimonial-card {
  border-radius: 24px !important;
}

.testimonial-company {
  border-radius: 999px !important;
}

.testimonial-quote-icon {
  border-radius: 12px !important;
}
/* ===== Gallery Dot Green ===== */
.gallery-dot {
  background: rgba(26, 92, 58, 0.22) !important;
  border-color: rgba(26, 92, 58, 0.45) !important;
}

.gallery-dot.is-active {
  background: #1a5c3a !important;
  border-color: #1a5c3a !important;
}
/* ===== About Section Unified Yellow To Light Grey Gradient ===== */
.about-client {
  background: linear-gradient(105deg, #fff4bb 0%, #fff7cf 44%, #f3f4ef 72%, #eef1ea 100%) !important;
}

@media (max-width: 968px) {
  .about-client {
    background: linear-gradient(180deg, #fff4bb 0%, #fff7cf 48%, #f3f4ef 78%, #eef1ea 100%) !important;
  }
}
/* ===== Crystal Healing Top Radius And Darker Yellow ===== */
.crystal-healing {
  background: #fff0a3 !important;
  border-top-left-radius: 36px !important;
  border-top-right-radius: 36px !important;
  overflow: hidden;
}

/* ===== Remove Crystal Healing Background ===== */
.crystal-healing {
  background: transparent !important;
}
/* ===== Footer Columns After Removing Policies ===== */
.footer-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: 1fr !important;
  }
}
/* ===== Supplied Pooja Jaiin Logo ===== */
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 16px rgba(15, 59, 39, 0.22));
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

@media (max-width: 968px) {
  .logo-img {
    width: 42px;
    height: 42px;
  }

  .footer-logo-img {
    width: 44px;
    height: 44px;
  }
}
/* ===== Blog Pages ===== */
.nav-link.active {
  color: #0f3b27;
  background: rgba(247, 201, 72, 0.32);
}

.blog-page,
.blog-detail-page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 32px 72px;
}

.blog-hero {
  border-radius: 34px;
  padding: 76px 56px;
  background: linear-gradient(120deg, #fff0a3 0%, #fff7d0 46%, #f3f4ef 100%);
  border: 1px solid rgba(26, 92, 58, 0.14);
  overflow: hidden;
}

.blog-hero h1 {
  max-width: 820px;
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  color: #0f3b27;
  letter-spacing: 0;
}

.blog-hero p {
  max-width: 700px;
  color: #40563f;
  font-size: 18px;
  line-height: 1.8;
}

.blog-grid-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 34px;
}

.blog-card {
  background: #f6f7f2;
  border: 1px solid rgba(26, 92, 58, 0.16);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: none;
}

.blog-card-image-link {
  display: block;
  background: #eef1ea;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 26px;
}

.blog-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 18px;
  border-radius: 999px;
  background: #f7c948;
  border: 1px solid rgba(15, 59, 39, 0.16);
  color: #0f3b27;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 18px 0 10px;
  color: #0f3b27;
  font-size: 28px;
  line-height: 1.18;
}

.blog-card p {
  color: #40563f;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.blog-view-btn,
.blog-back-link {
  background: #1a5c3a;
  color: #fffdf4;
  border: 1px solid #0f3b27;
}

.blog-view-btn:hover,
.blog-back-link:hover {
  background: #f7c948;
  color: #0f3b27;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-weight: 700;
  text-decoration: none;
}

.blog-article {
  background: #f6f7f2;
  border: 1px solid rgba(26, 92, 58, 0.16);
  border-radius: 34px;
  overflow: hidden;
}

.blog-article-header {
  padding: 54px 56px 30px;
  background: linear-gradient(120deg, #fff0a3 0%, #fff7d0 50%, #eef1ea 100%);
}

.blog-article-header h1 {
  margin: 18px 0 14px;
  font-family: var(--font-display);
  color: #0f3b27;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: 0;
}

.blog-article-header p {
  max-width: 760px;
  color: #40563f;
  font-size: 17px;
  line-height: 1.8;
}

.blog-article-image {
  width: 100%;
  max-height: 860px;
  object-fit: contain;
  display: block;
  background: #fffdf4;
  border-block: 1px solid rgba(26, 92, 58, 0.12);
}

.blog-article-content {
  padding: 42px 56px 18px;
  color: #203d2a;
}

.blog-article-content h2 {
  margin: 0 0 14px;
  color: #0f3b27;
  font-size: 28px;
  line-height: 1.25;
}

.blog-article-content p,
.blog-article-content li {
  font-size: 16px;
  line-height: 1.85;
  color: #40563f;
}

.blog-article-content ul {
  margin: 0 0 28px;
  padding-left: 22px;
}

.blog-article-content p {
  margin: 0 0 28px;
}

.blog-article-cta {
  margin: 18px 56px 56px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1a5c3a 0%, #0f3b27 100%);
  color: #fffdf4;
  text-align: center;
}

.blog-article-cta h2 {
  color: #fffdf4;
  font-size: 32px;
  margin-bottom: 10px;
}

.blog-article-cta p {
  margin: 0 auto 24px;
  max-width: 640px;
  color: rgba(255, 253, 244, 0.84);
}

@media (max-width: 900px) {
  .blog-page,
  .blog-detail-page {
    padding: 18px 18px 56px;
  }

  .blog-hero,
  .blog-article-header {
    padding: 46px 24px;
    border-radius: 24px;
  }

  .blog-grid-section {
    grid-template-columns: 1fr;
  }

  .blog-article {
    border-radius: 24px;
  }

  .blog-article-content {
    padding: 32px 24px 8px;
  }

  .blog-article-cta {
    margin: 16px 24px 32px;
    padding: 26px 20px;
  }
}
/* ===== Structured Visual Blog Guides ===== */
.blog-card-image {
  aspect-ratio: 16 / 9 !important;
}

.blog-article-image {
  aspect-ratio: 16 / 9;
  max-height: none !important;
  object-fit: cover !important;
}

.visual-guide {
  display: grid;
  gap: 34px;
}

.guide-intro-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(120deg, #fff0a3 0%, #fff7cf 58%, #f6f7f2 100%);
  border: 1px solid rgba(26, 92, 58, 0.16);
}

.guide-mini-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: #1a5c3a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-panel-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #1a5c3a;
  color: #fffdf4;
  border: 1px solid #0f3b27;
  font-weight: 800;
  text-decoration: none;
}

.guide-panel-link:hover {
  background: #f7c948;
  color: #0f3b27;
}

.guide-section h2,
.guide-benefits h2 {
  margin-bottom: 20px;
}

.guide-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.guide-four-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-step {
  position: relative;
  min-height: 245px;
  padding: 28px 20px 24px;
  border-radius: 24px;
  background: #fffdf4;
  border: 1px solid rgba(26, 92, 58, 0.16);
  text-align: center;
}

.step-count {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a5c3a;
  color: #fffdf4;
  border: 3px solid #f6f7f2;
  font-weight: 800;
}

.step-icon {
  width: 68px;
  height: 68px;
  margin: 8px auto 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff0a3;
  color: #1a5c3a;
  border: 1px solid rgba(247, 201, 72, 0.9);
}

.step-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-step h3 {
  margin: 0 0 10px;
  color: #0f3b27;
  font-size: 20px;
}

.guide-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.guide-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.guide-note-card,
.guide-benefits {
  padding: 30px;
  border-radius: 28px;
  background: #fffdf4;
  border: 1px solid rgba(26, 92, 58, 0.16);
}

.guide-note-card ol,
.guide-note-card ul {
  margin-bottom: 0;
}

.guide-warning {
  margin-top: 18px !important;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(247, 201, 72, 0.24);
  color: #0f3b27 !important;
  font-weight: 700;
}

.benefit-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefit-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff0a3;
  color: #0f3b27;
  border: 1px solid rgba(26, 92, 58, 0.14);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .guide-step-grid,
  .guide-four-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .guide-intro-panel,
  .guide-two-column {
    grid-template-columns: 1fr;
    display: grid;
  }

  .guide-panel-link {
    width: 100%;
  }

  .guide-step-grid,
  .guide-four-grid {
    grid-template-columns: 1fr;
  }

  .guide-step {
    min-height: auto;
  }
}
/* ===== Pricing Preview And Services Pricing Page ===== */
.pricing-preview,
.pricing-page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 32px;
}

.pricing-preview {
  border-radius: 38px;
  background: linear-gradient(120deg, #fff0a3 0%, #fff7cf 45%, #f6f7f2 100%);
  border: 1px solid rgba(26, 92, 58, 0.14);
}

.pricing-preview-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 16px;
}

.pricing-preview-title,
.pricing-page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  color: #0f3b27;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.pricing-preview-intro,
.pricing-page-hero p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #40563f;
  font-size: 17px;
  line-height: 1.75;
}

.pricing-view-all {
  flex: 0 0 auto;
  background: #f7c948;
  color: #0f3b27;
  border: 1px solid rgba(15, 59, 39, 0.25);
  min-width: 140px;
}

.pricing-view-all:hover {
  background: #1a5c3a;
  color: #fffdf4;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.pricing-card {
  background: #f6f7f2;
  border: 1px solid rgba(26, 92, 58, 0.16);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.pricing-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #eef1ea;
}

.pricing-card-body {
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-card-icon {
  width: 54px;
  height: 54px;
  margin-top: -56px;
  margin-bottom: 16px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f7c948;
  color: #0f3b27;
  border: 4px solid #f6f7f2;
}

.pricing-card-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card h3 {
  margin: 0 0 12px;
  color: #0f3b27;
  font-size: 24px;
  line-height: 1.22;
}

.pricing-card p {
  margin: 0 0 24px;
  color: #40563f;
  font-size: 15px;
  line-height: 1.75;
}

.pricing-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 92, 58, 0.12);
}

.pricing-price {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff0a3;
  color: #0f3b27;
  border: 1px solid rgba(247, 201, 72, 0.9);
  font-size: 21px;
  font-weight: 900;
  white-space: nowrap;
}

.pricing-on-request {
  font-size: 16px;
}

.pricing-enquiry {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #1a5c3a;
  color: #fffdf4;
  border: 1px solid #0f3b27;
  font-weight: 800;
}

.pricing-enquiry:hover {
  background: #f7c948;
  color: #0f3b27;
}

.pricing-page-hero {
  padding: 68px 56px;
  border-radius: 34px;
  background: linear-gradient(120deg, #fff0a3 0%, #fff7cf 48%, #eef1ea 100%);
  border: 1px solid rgba(26, 92, 58, 0.14);
}

.pricing-page-grid {
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  .pricing-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pricing-preview,
  .pricing-page {
    padding: 50px 18px;
    border-radius: 26px;
  }

  .pricing-preview-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-view-all {
    width: 100%;
  }

  .pricing-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-enquiry {
    width: 100%;
  }

  .pricing-page-hero {
    padding: 46px 24px;
    border-radius: 26px;
  }
}
/* ===== Ceremony Pricing Cards ===== */
.ceremony-pricing-section {
  margin-top: 54px;
  padding: 54px 38px;
  border-radius: 34px;
  background: linear-gradient(120deg, #fff0a3 0%, #fff7cf 48%, #f6f7f2 100%);
  border: 1px solid rgba(26, 92, 58, 0.14);
}

.ceremony-section-header {
  max-width: 820px;
  margin-bottom: 30px;
}

.ceremony-section-header h2 {
  margin: 16px 0 12px;
  font-family: var(--font-display);
  color: #0f3b27;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.ceremony-section-header p {
  color: #40563f;
  font-size: 16px;
  line-height: 1.75;
}

.ceremony-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ceremony-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 22px;
  border-radius: 24px;
  background: #fffdf4;
  border: 1px solid rgba(26, 92, 58, 0.16);
  box-shadow: none;
}

.ceremony-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ceremony-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a5c3a;
  color: #fffdf4;
  font-weight: 900;
  border: 3px solid #f7c948;
}

.ceremony-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff0a3;
  color: #1a5c3a;
  border: 1px solid rgba(247, 201, 72, 0.9);
}

.ceremony-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ceremony-card h3 {
  margin: 0 0 10px;
  color: #0f3b27;
  font-size: 22px;
  line-height: 1.24;
}

.ceremony-card p {
  margin: 0 0 22px;
  color: #40563f;
  font-size: 14px;
  line-height: 1.7;
}

.ceremony-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 92, 58, 0.12);
}

.ceremony-price {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #1a5c3a;
  color: #fffdf4;
  border: 1px solid #0f3b27;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.ceremony-enquiry {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f7c948;
  color: #0f3b27;
  border: 1px solid rgba(15, 59, 39, 0.25);
  font-weight: 800;
}

.ceremony-enquiry:hover {
  background: #1a5c3a;
  color: #fffdf4;
}

@media (max-width: 1100px) {
  .ceremony-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ceremony-pricing-section {
    padding: 38px 18px;
    border-radius: 26px;
  }

  .ceremony-card-grid {
    grid-template-columns: 1fr;
  }

  .ceremony-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .ceremony-enquiry {
    width: 100%;
  }
}
/* ===== Consultation Pricing Image Overlay Cards ===== */
.pricing-card {
  position: relative !important;
  min-height: 430px;
  border-radius: 24px !important;
  overflow: hidden;
  background: #0f3b27 !important;
  border: 0 !important;
  isolation: isolate;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 18, 12, 0.08) 0%, rgba(6, 18, 12, 0.46) 38%, rgba(0, 0, 0, 0.86) 100%);
  pointer-events: none;
}

.pricing-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.pricing-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a5c3a 0%, #b89118 100%);
  color: #fffdf4;
  border: 1px solid #f7c948;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.pricing-card-body {
  position: relative !important;
  z-index: 2;
  height: 100%;
  min-height: 430px;
  padding: 180px 30px 30px !important;
  justify-content: flex-end;
  color: #fffdf4;
}

.pricing-card-icon {
  display: none !important;
}

.pricing-card h3 {
  margin: 0 0 14px !important;
  color: #ffffff !important;
  font-size: 30px !important;
  line-height: 1.15;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.65);
}

.pricing-card p {
  margin: 0 0 16px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.pricing-rating {
  order: -1;
  margin: 0 0 14px;
  color: #f7c948;
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.pricing-rating span {
  color: #f7c948;
}

.pricing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 22px;
}

.pricing-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff0a3;
  color: #0f3b27;
  border: 1px solid rgba(247, 201, 72, 0.95);
  font-size: 14px;
  font-weight: 800;
}

.pricing-card-footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
  align-items: stretch !important;
  flex-direction: column;
  gap: 12px !important;
}

.pricing-price {
  width: fit-content;
  min-height: 40px !important;
  padding: 9px 16px !important;
  background: rgba(247, 201, 72, 0.96) !important;
  color: #0f3b27 !important;
  border-color: rgba(255, 255, 255, 0.48) !important;
  font-size: 18px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.pricing-enquiry {
  width: 100%;
  min-height: 58px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #0f3b27 !important;
  border: 0 !important;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.pricing-enquiry:hover {
  background: #f7c948 !important;
  color: #0f3b27 !important;
  transform: translateY(-2px);
}

.ceremony-pricing-section .pricing-card,
.ceremony-card {
  isolation: auto;
}

@media (max-width: 720px) {
  .pricing-card,
  .pricing-card-body {
    min-height: 410px;
  }

  .pricing-card-body {
    padding: 150px 22px 22px !important;
  }

  .pricing-card h3 {
    font-size: 26px !important;
  }

  .pricing-tags span {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 13px;
  }
}
/* ===== Pricing Overlay Fine Tune ===== */
.pricing-rating {
  order: initial !important;
}
/* ===== Pricing Price Button Same Row ===== */
.pricing-card-footer {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.pricing-enquiry {
  width: auto !important;
  min-width: 170px;
  padding-inline: 28px !important;
}

@media (max-width: 520px) {
  .pricing-card-footer {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .pricing-enquiry {
    width: 100% !important;
  }
}
/* ===== Consultation Pricing Landscape Cards ===== */
.pricing-card-grid {
  align-items: stretch;
}

.pricing-card {
  aspect-ratio: 10 / 11 !important;
  min-height: 0 !important;
  height: auto !important;
}

.pricing-card-body {
  min-height: 0 !important;
  height: 100% !important;
  padding: 96px 28px 26px !important;
}

.pricing-card h3 {
  font-size: 28px !important;
  margin-bottom: 10px !important;
}

.pricing-card p {
  font-size: 15px !important;
  line-height: 1.55 !important;
  margin-bottom: 12px !important;
}

.pricing-rating {
  margin-bottom: 12px !important;
}

.pricing-tags {
  margin: 2px 0 18px !important;
}

.pricing-tags span {
  min-height: 38px !important;
  padding: 9px 14px !important;
}

.pricing-enquiry {
  min-height: 54px !important;
}

@media (max-width: 1100px) {
  .pricing-card {
    aspect-ratio: 10 / 11 !important;
  }
}

@media (max-width: 720px) {
  .pricing-card {
    aspect-ratio: auto !important;
    min-height: 390px !important;
  }

  .pricing-card-body {
    min-height: 390px !important;
    padding: 130px 22px 22px !important;
  }
}
/* ===== Pricing Card Font Size Reduce ===== */
.pricing-card-body {
  padding: 112px 24px 24px !important;
}

.pricing-card h3 {
  font-size: 23px !important;
  line-height: 1.18 !important;
  margin-bottom: 8px !important;
}

.pricing-rating {
  font-size: 13px !important;
  margin-bottom: 9px !important;
}

.pricing-card p {
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin-bottom: 10px !important;
}

.pricing-tags {
  gap: 8px !important;
  margin: 0 0 14px !important;
}

.pricing-tags span {
  min-height: 34px !important;
  padding: 8px 12px !important;
  font-size: 12px !important;
}

.pricing-price {
  min-height: 36px !important;
  padding: 8px 13px !important;
  font-size: 15px !important;
}

.pricing-enquiry {
  min-height: 46px !important;
  min-width: 138px !important;
  padding-inline: 22px !important;
  font-size: 15px !important;
}

.pricing-card-badge {
  min-height: 36px !important;
  padding: 8px 15px !important;
  font-size: 13px !important;
}

@media (max-width: 720px) {
  .pricing-card-body {
    padding: 128px 20px 20px !important;
  }
}
/* ===== Pricing Section Bottom Gap ===== */
.pricing-preview {
  margin-bottom: 72px !important;
}

@media (max-width: 720px) {
  .pricing-preview {
    margin-bottom: 46px !important;
  }
}
/* ===== Pricing Section Top Padding Reduce ===== */
.pricing-preview {
  padding-top: 42px !important;
}

@media (max-width: 720px) {
  .pricing-preview {
    padding-top: 34px !important;
  }
}
/* ===== About Width Match Pricing ===== */
.about-client {
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

@media (max-width: 720px) {
  .about-client {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
/* ===== Anchor Scroll Header Offset ===== */
html {
  scroll-padding-top: 132px;
}

section[id],
#home,
#about,
#services,
#process,
#pricing,
#contact-form {
  scroll-margin-top: 132px;
}

@media (max-width: 968px) {
  html {
    scroll-padding-top: 104px;
  }

  section[id],
  #home,
  #about,
  #services,
  #process,
  #pricing,
  #contact-form {
    scroll-margin-top: 104px;
  }
}
/* ===== Pricing Liquid Glass Pills ===== */
.pricing-card-badge,
.pricing-tags span {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(1.45);
  -webkit-backdrop-filter: blur(14px) saturate(1.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 8px 22px rgba(0, 0, 0, 0.22);
}

.pricing-card-badge::before,
.pricing-tags span::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 45%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.pricing-card-badge {
  background: linear-gradient(135deg, rgba(26, 92, 58, 0.54), rgba(247, 201, 72, 0.32)) !important;
  border-color: rgba(255, 240, 163, 0.62) !important;
  color: #fffdf4 !important;
}

.pricing-tags span {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
  color: #ffffff !important;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.55);
}
/* ===== Keep Pricing Badge Original, Glass Only Tags ===== */
.pricing-card-badge {
  overflow: visible !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: linear-gradient(135deg, #1a5c3a 0%, #b89118 100%) !important;
  border-color: #f7c948 !important;
  box-shadow: none !important;
}

.pricing-card-badge::before {
  content: none !important;
}
/* ===== Pricing Badge Compact Pill Fix ===== */
.pricing-card-badge {
  right: auto !important;
  width: auto !important;
  max-width: max-content !important;
  min-width: 0 !important;
  inline-size: fit-content !important;
  justify-content: center !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
  border-radius: 999px !important;
}
/* ===== Pricing Glass Tags Visibility Improve ===== */
.pricing-tags span {
  backdrop-filter: blur(7px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(7px) saturate(1.15) !important;
  background: rgba(255, 255, 255, 0.28) !important;
  border-color: rgba(255, 255, 255, 0.62) !important;
  color: #fffdf4 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.78) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 5px 14px rgba(0, 0, 0, 0.18) !important;
}

.pricing-tags span::before {
  height: 34% !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)) !important;
}
/* ===== Pricing Tags Inspect Values ===== */
.pricing-tags span {
  backdrop-filter: blur(1px) saturate(0) !important;
  -webkit-backdrop-filter: blur(1px) saturate(0) !important;
  background: rgba(255, 255, 255, 0.09) !important;
  border-color: rgba(255, 255, 255, 0.62) !important;
  color: #fffdf4 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.78) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 5px 14px rgba(0, 0, 0, 0.18) !important;
}
/* ===== Mobile Pricing Price Button One Row ===== */
@media (max-width: 520px) {
  .pricing-card-footer {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .pricing-price {
    flex: 0 0 auto;
    font-size: 14px !important;
    padding: 8px 11px !important;
  }

  .pricing-enquiry {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto;
    padding-inline: 14px !important;
    font-size: 14px !important;
  }
}
/* ===== Spiritual Services Match Pricing Overlay Cards ===== */
.products-grid .product-card {
  aspect-ratio: 10 / 11 !important;
  min-height: 0 !important;
  height: auto !important;
  border-radius: 24px !important;
  overflow: hidden;
  background: #0f3b27 !important;
  border: 0 !important;
  isolation: isolate;
}

.products-grid .product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 18, 12, 0.08) 0%, rgba(6, 18, 12, 0.46) 38%, rgba(0, 0, 0, 0.86) 100%);
  pointer-events: none;
}

.products-grid .product-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.products-grid .product-overlay {
  display: none !important;
}

.products-grid .product-badge {
  top: 20px !important;
  left: 20px !important;
  right: auto !important;
  z-index: 3;
  width: auto !important;
  inline-size: fit-content !important;
  min-height: 36px !important;
  padding: 8px 15px !important;
  border-radius: 999px !important;
  border: 1px solid #f7c948 !important;
  background: linear-gradient(135deg, #1a5c3a 0%, #b89118 100%) !important;
  color: #fffdf4 !important;
  font-size: 13px !important;
  font-weight: 800;
  box-shadow: none !important;
}

.products-grid .product-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  height: 100%;
  padding: 112px 24px 24px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.products-grid .product-name {
  color: #ffffff !important;
  font-size: 23px !important;
  line-height: 1.18 !important;
  margin-bottom: 8px !important;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.65);
}

.products-grid .product-desc {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin-bottom: 10px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.product-rating-line {
  margin: 0 0 9px;
  color: #f7c948;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.product-rating-line span {
  color: #f7c948;
}

.products-grid .product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px !important;
  margin: 0 0 14px !important;
}

.products-grid .product-tag {
  min-height: 34px !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(255, 255, 255, 0.62) !important;
  color: #fffdf4 !important;
  font-size: 12px !important;
  font-weight: 800;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.78) !important;
  backdrop-filter: blur(1px) saturate(0);
  -webkit-backdrop-filter: blur(1px) saturate(0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 5px 14px rgba(0, 0, 0, 0.18) !important;
}

.product-card-footer {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-price-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(247, 201, 72, 0.96);
  color: #0f3b27;
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.products-grid .btn-product {
  width: auto !important;
  min-width: 138px;
  min-height: 46px !important;
  padding: 10px 22px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #0f3b27 !important;
  border: 0 !important;
  font-size: 15px !important;
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.products-grid .btn-product:hover {
  background: #f7c948 !important;
  color: #0f3b27 !important;
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .products-grid .product-card {
    aspect-ratio: auto !important;
    min-height: 390px !important;
  }

  .products-grid .product-content {
    min-height: 390px;
    padding: 128px 20px 20px !important;
  }

  .product-card-footer {
    flex-direction: row !important;
  }

  .products-grid .btn-product {
    min-width: 0;
    flex: 1 1 auto;
    padding-inline: 14px !important;
    font-size: 14px !important;
  }
}
/* ===== Mobile Services One Card Per Row ===== */
@media (max-width: 720px) {
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .products-grid .product-card {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 420px !important;
  }

  .products-grid .product-content {
    min-height: 420px !important;
  }

  .product-card-footer {
    gap: 12px !important;
  }

  .products-grid .btn-product {
    min-width: 150px !important;
  }
}
/* ===== Mobile Header Polish ===== */
@media (max-width: 640px) {
  .navbar {
    width: calc(100% - 34px) !important;
    min-height: 72px !important;
    margin: 14px auto 16px !important;
    padding: 10px 16px !important;
    border-radius: 24px !important;
    gap: 10px !important;
  }

  .nav-left {
    min-width: 0 !important;
    flex: 1 1 auto;
  }

  .logo {
    min-width: 0;
    gap: 9px !important;
  }

  .logo-img {
    width: 38px !important;
    height: 38px !important;
  }

  .logo-name {
    font-size: 14px !important;
    line-height: 1 !important;
    white-space: nowrap;
  }

  .nav-right {
    min-width: 44px !important;
    flex: 0 0 auto;
    justify-content: flex-end !important;
  }

  .nav-toggle {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.42) !important;
  }

  .nav-toggle span {
    width: 20px !important;
    height: 2px !important;
  }
}

@media (max-width: 380px) {
  .navbar {
    width: calc(100% - 24px) !important;
    padding: 9px 12px !important;
  }

  .logo-name {
    font-size: 13px !important;
  }
}
/* ===== Mobile Footer Green Bottom ===== */
@media (max-width: 640px) {
  body,
  .page-wrapper {
    background-color: #0f3b27 !important;
  }

  .footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .footer-inner {
    padding-bottom: 18px !important;
  }
}
/* ===== Fix Mobile Footer Green Scope ===== */
@media (max-width: 640px) {
  body,
  .page-wrapper {
    background-color: transparent !important;
  }

  .footer {
    position: relative;
    background: linear-gradient(180deg, #1a5c3a 0%, #0f3b27 100%) !important;
  }

  .footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -80px;
    height: 80px;
    background: #0f3b27;
    pointer-events: none;
  }
}
/* ===== Remove Mobile Footer Extra Bottom Space ===== */
@media (max-width: 640px) {
  .footer::after {
    content: none !important;
    display: none !important;
  }

  .footer-inner {
    padding-bottom: 0 !important;
  }

  .footer-bottom {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}
/* ===== Mobile Footer Small Bottom Padding ===== */
@media (max-width: 640px) {
  .footer-bottom {
    padding-bottom: 20px !important;
  }
}
/* ===== Anchor Scroll Header Offset Reduce ===== */
html {
  scroll-padding-top: 104px !important;
}

section[id],
#home,
#about,
#services,
#process,
#pricing,
#contact-form {
  scroll-margin-top: 104px !important;
}

@media (max-width: 968px) {
  html {
    scroll-padding-top: 82px !important;
  }

  section[id],
  #home,
  #about,
  #services,
  #process,
  #pricing,
  #contact-form {
    scroll-margin-top: 82px !important;
  }
}
/* ===== Anchor Scroll Header Offset Reduce More ===== */
html {
  scroll-padding-top: 82px !important;
}

section[id],
#home,
#about,
#services,
#process,
#pricing,
#contact-form {
  scroll-margin-top: 82px !important;
}

@media (max-width: 968px) {
  html {
    scroll-padding-top: 66px !important;
  }

  section[id],
  #home,
  #about,
  #services,
  #process,
  #pricing,
  #contact-form {
    scroll-margin-top: 66px !important;
  }
}
/* ===== Anchor Scroll Header Offset Final ===== */
html {
  scroll-padding-top: 42px !important;
}

section[id],
#home,
#about,
#services,
#process,
#pricing,
#contact-form {
  scroll-margin-top: 42px !important;
}

@media (max-width: 968px) {
  html {
    scroll-padding-top: 33px !important;
  }

  section[id],
  #home,
  #about,
  #services,
  #process,
  #pricing,
  #contact-form {
    scroll-margin-top: 33px !important;
  }
}
/* ===== Home Anchor No Offset ===== */
#home {
  scroll-margin-top: 0 !important;
}
/* ===== Shared Card Hover Interactions ===== */
.pricing-card,
.ceremony-card,
.blog-card,
.testimonial-card,
.contact-info {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pricing-card:hover,
.ceremony-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.contact-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  border-color: rgba(26, 92, 58, 0.28) !important;
}

.pricing-card-img,
.blog-card-image,
.products-grid .product-img {
  transition: transform 0.42s ease, filter 0.42s ease;
}

.pricing-card:hover .pricing-card-img,
.blog-card:hover .blog-card-image,
.products-grid .product-card:hover .product-img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

@media (hover: none) {
  .pricing-card:hover,
  .ceremony-card:hover,
  .blog-card:hover,
  .testimonial-card:hover,
  .contact-info:hover {
    transform: none;
    box-shadow: none;
  }

  .pricing-card:hover .pricing-card-img,
  .blog-card:hover .blog-card-image,
  .products-grid .product-card:hover .product-img {
    transform: none;
  }
}
/* ===== About WhatsApp Float Card Link ===== */
.about-client-float-card {
  text-decoration: none !important;
  cursor: pointer;
}

.about-client-float-card:hover {
  transform: translateY(-4px);
}
/* ===== Header CTA No Shadow ===== */
.navbar .btn-nav,
.navbar .btn-nav:hover {
  box-shadow: none !important;
}
/* ===== Mobile Menu Open Floating Icons Left ===== */
@media (max-width: 640px) {
  body.menu-open .floating-socials {
    right: auto !important;
    left: 14px !important;
    bottom: 18px !important;
    z-index: 2200 !important;
  }
}
/* ===== Blog Listing Three Columns ===== */
.blog-grid-section {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

@media (max-width: 1100px) {
  .blog-grid-section {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .blog-grid-section {
    grid-template-columns: 1fr !important;
  }
}