:root {
  --bg: #0b0b0b;
  --bg-soft: #141414;
  --text: #f5f5f5;
  --muted: #c9c9c9;
  --gold: #d4af37;
  --border: rgba(255, 255, 255, 0.85);
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans", Georgia, "Times New Roman", Times, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body[data-lang="hi"] {
  font-family: "Noto Sans Devanagari", "Noto Sans", Georgia, serif;
}

body[data-lang="ta"] {
  font-family: "Noto Sans Tamil", "Noto Sans", Georgia, serif;
}

body[data-lang="te"] {
  font-family: "Noto Sans Telugu", "Noto Sans", Georgia, serif;
}

body[data-lang="kn"] {
  font-family: "Noto Sans Kannada", "Noto Sans", Georgia, serif;
}

body[data-lang="ml"] {
  font-family: "Noto Sans Malayalam", "Noto Sans", Georgia, serif;
}

img {
  max-width: 100%;
  display: block;
}

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

a:hover {
  color: var(--gold);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 560px);
}

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

.honey {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #f4f7fb;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

#daiva,
#swasti,
#daiva-swasti,
#offerings,
#contact,
[id^="offer-"] {
  scroll-margin-top: 8.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  min-height: 128px;
  padding-block: 0.7rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex: 1;
  gap: 0.85rem 1.1rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: #1f2937;
}

.brand:hover {
  color: #111827;
}

.brand-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  padding: 4px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem 1.1rem;
  font-family: "Noto Sans", Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 0;
}

body[data-lang="hi"] .main-nav,
body[data-lang="ta"] .main-nav,
body[data-lang="te"] .main-nav,
body[data-lang="kn"] .main-nav,
body[data-lang="ml"] .main-nav {
  text-transform: none;
  letter-spacing: 0;
}

.nav-dropdown {
  position: relative;
  z-index: 25;
}

.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #374151;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-dropdown-btn:hover {
  color: #b45309;
}

.nav-dropdown-btn:focus-visible {
  outline: 2px solid #b45309;
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-chevron {
  flex-shrink: 0;
  color: currentColor;
  transition: transform 0.2s ease;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 12.5rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.nav-dropdown-menu--wide {
  min-width: 16.5rem;
}

.nav-dropdown-menu[hidden] {
  display: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 1rem;
  color: #374151;
  font-weight: 500;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #f3f4f6;
  color: #b45309;
}

.lang-switcher {
  position: relative;
  z-index: 30;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 7rem;
  max-width: 12rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  font-family: "Noto Sans", "Noto Sans Devanagari", "Noto Sans Tamil",
    "Noto Sans Telugu", "Noto Sans Kannada", "Noto Sans Malayalam", Arial,
    Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.lang-current {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lang-btn:hover {
  border-color: rgba(15, 23, 42, 0.32);
}

.lang-btn:focus-visible {
  outline: 2px solid #b45309;
  outline-offset: 2px;
}

.lang-chevron {
  flex-shrink: 0;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  min-width: max(100%, 13.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.lang-menu[hidden] {
  display: none;
}

.lang-menu li {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: #374151;
  font-family: "Noto Sans", "Noto Sans Devanagari", "Noto Sans Tamil",
    "Noto Sans Telugu", "Noto Sans Kannada", "Noto Sans Malayalam", Arial,
    Helvetica, sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}

.lang-menu li:last-child {
  border-bottom: 0;
}

.lang-menu li:hover,
.lang-menu li:focus-visible {
  background: #f3f4f6;
  outline: none;
}

.lang-menu li.is-active {
  color: #111827;
  font-weight: 600;
  background: #f9fafb;
}

.main-nav a {
  color: #374151;
  font-weight: 500;
}

.main-nav a:hover {
  color: #b45309;
}

.talk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  background: #0b1b33;
  color: #fff !important;
  font-weight: 600 !important;
}

.talk-btn:hover {
  background: #152744;
  color: #fff !important;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-image {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.75rem 1.25rem 2.25rem;
  background: linear-gradient(
    to bottom,
    #0a0a0a,
    #050505
  );
}

.hero-kicker {
  margin: 0 0 0.65rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #fff;
}

.hero-title {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.section {
  padding: 4.5rem 0;
}

.intro-band {
  background: #fff;
  color: #1a1a1a;
  padding: 2.75rem 0 2.25rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.intro-band h2 {
  margin: 0 0 0.75rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  line-height: 1.25;
  color: #171717;
  max-width: 22ch;
}

.intro-band p {
  margin: 0;
  color: #5f6368;
  font-size: 1.05rem;
  max-width: 52ch;
}

.light-section {
  background: #ffffff;
  color: #1a1a1a;
}

.soft-section {
  background: #f5f3ef;
  color: #1a1a1a;
}

.panel-header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.panel-eyebrow {
  margin: 0 0 0.55rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #b45309;
}

.panel-title {
  margin: 0 0 0.75rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  line-height: 1.2;
  font-weight: 700;
  color: #171717;
}

.panel-intro {
  margin: 0;
  color: #5f6368;
  font-size: 1.02rem;
  line-height: 1.65;
}

.section-media {
  margin: 0 0 1.75rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.08);
}

.section-media img {
  width: 100%;
  height: min(42vh, 420px);
  object-fit: cover;
  object-position: center;
}

.panel-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.feature-strip,
.split-panels,
.offer-grid {
  display: grid;
  gap: 1.1rem;
}

.feature-strip,
.split-panels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.feature-strip article,
.text-panel,
.offer-card {
  background: #fff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.04);
}

.soft-section .text-panel,
.soft-section .offer-card {
  background: #fff;
}

.feature-strip h3,
.text-panel h3,
.offer-card h3 {
  margin: 0 0 0.55rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #171717;
}

.feature-strip p,
.text-panel p,
.offer-card p {
  margin: 0;
  color: #5f6368;
  font-size: 0.98rem;
  line-height: 1.6;
}

.offer-tag {
  display: inline-block;
  margin: 0 0 0.7rem !important;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #fff4e5;
  color: #9a3412 !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bullet-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.85rem;
  color: #4b5563;
  font-size: 1.02rem;
  max-width: 68ch;
}

.bullet-list li::marker {
  color: #b45309;
}

.text-panel em,
.offer-card em {
  color: #9a3412;
  font-style: italic;
}

.main-nav > a[href="#contact"] {
  font-weight: 500;
}

.about,
.services {
  background: var(--bg-soft);
  text-align: center;
}

.about h2,
.services h2,
.contact h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 500;
}

.about p,
.services p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.services-link-wrap {
  margin-top: 1.5rem !important;
}

.services-link {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--gold);
  word-break: break-all;
  border: 1px solid var(--gold);
  padding: 0.85rem 1.2rem;
  border-radius: 4px;
}

.services-link:hover {
  background: var(--gold);
  color: #000;
}

.contact {
  background: #000;
  text-align: center;
}

.contact h3 {
  margin: 0 0 1.75rem;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 0.9rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  cursor: pointer;
}

.checkbox-row input {
  margin-top: 0.2rem;
}

.send-btn {
  justify-self: start;
  margin-top: 0.25rem;
  min-width: 110px;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.send-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.send-btn:hover:not(:disabled) {
  background: #fff;
  color: #000;
}

.recaptcha-note {
  margin: 1.25rem 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  color: #9a9a9a;
}

.recaptcha-note a {
  text-decoration: underline;
}

.form-status {
  min-height: 1.25rem;
  margin: 0.85rem 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: var(--gold);
}

.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-col {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
}

.footer-col h4 {
  margin: 0 0 0.35rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bdbdbd;
  font-weight: 600;
}

.footer-label {
  margin: 0.65rem 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.footer-col a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: #cfcfcf;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  color: #8f8f8f;
}

@media (max-width: 960px) and (min-width: 761px) {
  .feature-strip,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .brand-logo {
    width: 104px;
    height: 104px;
  }

  .header-inner {
    min-height: 114px;
  }
}

@media (max-width: 980px) {
  .brand-logo {
    width: 92px;
    height: 92px;
  }

  .header-inner {
    min-height: 104px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding-block: 0.65rem;
    min-height: 96px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav {
    gap: 0.75rem 0.9rem;
    justify-content: flex-start;
    flex: 1;
    font-size: 0.8rem;
  }

  .brand-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
  }

  .nav-dropdown-menu--wide {
    left: auto;
    right: 0;
  }

  .lang-switcher {
    margin-left: auto;
  }

  .lang-btn {
    min-width: 7.5rem;
    font-size: 0.8rem;
  }

  .hero-image {
    height: min(58vh, 520px);
  }

  .hero-caption {
    padding: 1.35rem 1rem 1.85rem;
  }

  .feature-strip,
  .split-panels,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .panel-header {
    margin-bottom: 1.5rem;
  }

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

  .send-btn {
    width: 100%;
  }
}
