:root {
  --shared-cream: #ede8df;
  --shared-green: #1b4d35;
  --shared-brown: #5c2e0e;
  --shared-text: #2a1a08;
  --shared-text-muted: #7a6a52;
  --shared-gold: #c8952a;
  --shared-gold-light: #e0aa3e;
}

[data-shared-nav],
[data-shared-footer] {
  width: 100%;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(237, 232, 223, 0.92);
  border-bottom: 1px solid rgba(92, 46, 14, 0.08);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

@supports not (backdrop-filter: blur(1px)) {
  .site-nav {
    background: rgba(237, 232, 223, 0.97);
  }
}

.site-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.site-nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-nav-brand img {
  height: 54px;
  width: auto;
  display: block;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-nav-link {
  text-decoration: none;
  color: var(--shared-text-muted);
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transition: color 0.25s;
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: var(--shared-brown);
}

.site-nav-cta {
  text-decoration: none;
  background: var(--shared-gold);
  color: var(--shared-green);
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.25s;
}

.site-nav-cta:hover {
  background: var(--shared-gold-light);
}

.site-nav-cta--outline {
  background: var(--shared-gold);
  color: var(--shared-green);
  border: none;
}

.site-nav-cta--outline:hover {
  background: var(--shared-gold-light);
}

.site-nav-cta--green {
  background: var(--shared-green);
  color: #fff;
}

.site-nav-cta--green:hover {
  background: #236644;
}

.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav-toggle {
  display: none;
  border: 1px solid rgba(92, 46, 14, 0.2);
  background: transparent;
  color: var(--shared-brown);
  border-radius: 6px;
  width: 38px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-nav-toggle span,
.site-nav-toggle span::before,
.site-nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1.8px;
  background: currentColor;
  content: "";
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.site-nav-toggle span::before {
  transform: translateY(-5px);
}

.site-nav-toggle span::after {
  transform: translateY(3px);
}

.site-nav-toggle.is-open span {
  background: transparent;
}

.site-nav-toggle.is-open span::before {
  transform: translateY(1px) rotate(45deg);
}

.site-nav-toggle.is-open span::after {
  transform: translateY(-1px) rotate(-45deg);
}

.site-nav-mobile {
  display: none;
  padding: 0 24px 16px;
  border-top: 1px solid rgba(92, 46, 14, 0.08);
  background: rgba(237, 232, 223, 0.96);
}

.site-nav-mobile.open {
  display: block;
}

.site-nav-mobile-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-top: 12px;
}

.site-nav-mobile .site-nav-link {
  font-size: 11px;
  letter-spacing: 1.1px;
}

.site-nav-mobile .site-nav-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.site-nav-mobile .site-nav-cta {
  flex: 1;
  justify-content: center;
  display: inline-flex;
}

.site-footer {
  background: linear-gradient(160deg, #2a1407 0%, #1f0f04 100%);
  padding: 56px 24px 0;
  margin-top: 44px;
}

.site-footer-top {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr 1.2fr;
  gap: 40px 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(237, 232, 223, 0.08);
  align-items: start;
}

.site-footer-brand img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.site-footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  letter-spacing: 3px;
  color: rgba(237, 232, 223, 0.95);
  margin-bottom: 2px;
}

.site-footer-hindi {
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 16px;
  color: var(--shared-gold);
  margin-bottom: 10px;
}

.site-footer-sub {
  font-size: 10px;
  letter-spacing: 1.8px;
  line-height: 1.9;
  text-transform: uppercase;
  color: rgba(237, 232, 223, 0.42);
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.site-footer-title {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--shared-gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-link,
.site-footer-text {
  font-size: 13px;
  color: rgba(237, 232, 223, 0.6);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.15s ease;
}

.site-footer-link:hover {
  color: rgba(237, 232, 223, 0.95);
}

.site-footer-text--muted {
  font-size: 12px;
  color: rgba(237, 232, 223, 0.38);
  font-style: italic;
}

.site-footer-compliance-card {
  border: 1px solid rgba(237, 232, 223, 0.2);
  background: linear-gradient(135deg, rgba(237, 232, 223, 0.08), rgba(237, 232, 223, 0.03));
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.site-footer-compliance-logo {
  max-width: 108px;
  height: auto;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  display: block;
  margin: 0 auto;
}

.site-footer-compliance-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.site-footer-number-label {
  font-size: 9px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(237, 232, 223, 0.7);
  margin: 0;
}

.site-footer-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 1.4px;
  color: #fff;
  font-weight: 700;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(237, 232, 223, 0.24);
  border-radius: 10px;
  background: rgba(18, 10, 3, 0.3);
  font-variant-numeric: tabular-nums;
}

.site-footer-verify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--shared-gold);
  color: var(--shared-green);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.15s ease, transform 0.15s ease;
}

.site-footer-verify:hover {
  background: var(--shared-gold-light);
  transform: translateY(-1px);
}

.site-footer-verify:focus-visible {
  outline: 2px solid rgba(237, 232, 223, 0.8);
  outline-offset: 2px;
}

.site-footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer-copy {
  font-size: 11px;
  color: rgba(237, 232, 223, 0.35);
  letter-spacing: 0.5px;
}

.site-footer-legal {
  display: flex;
  gap: 18px;
}

.site-footer-legal .site-footer-link {
  font-size: 11px;
  color: rgba(237, 232, 223, 0.4);
}

.site-footer-legal .site-footer-link:hover {
  color: rgba(237, 232, 223, 0.8);
}

body.shared-no-hero main {
  padding-top: calc(var(--shared-nav-height, 84px) + 24px) !important;
}

.page-hero {
  margin-top: calc(var(--shared-nav-height, 84px) + 20px) !important;
}

.hero {
  padding-top: calc(var(--shared-nav-height, 84px) + 40px);
}

@media (max-width: 1100px) {
  .site-footer-top {
    grid-template-columns: 1fr 2fr;
    gap: 32px;
  }

  .site-footer-compliance {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  .site-nav-inner {
    padding: 12px 18px;
  }

  .site-nav-brand img {
    height: 50px;
  }

  .site-nav-links,
  .site-nav-actions {
    display: none;
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer-compliance {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .site-nav-mobile {
    padding: 0 16px 14px;
  }

  .site-nav-mobile-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 40px 16px 0;
    margin-top: 30px;
  }

  .site-footer-top {
    gap: 28px;
  }

  .site-footer-brand {
    text-align: center;
  }

  .site-footer-brand img {
    margin: 0 auto 12px;
  }

  .site-footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .site-footer-nav .site-footer-col:last-child {
    grid-column: span 2;
  }

  .site-footer-compliance-card {
    align-items: center;
    text-align: center;
  }

  .site-footer-compliance-logo {
    margin: 0 auto;
  }

  .site-footer-compliance-details {
    align-items: center;
    text-align: center;
  }

  .site-footer-logo {
    font-size: 26px;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 0;
  }

  .site-footer-legal {
    gap: 14px;
  }
}

/* --------------------------------------------------------------------------
   Floating WhatsApp Button
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 80px;
    right: 18px;
    width: 50px;
    height: 50px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }
}
