:root {
  --bg-deep: #8e0f10;
  --bg-warm: #d52219;
  --saffron: #ffb10f;
  --gold: #ffd85e;
  --cream: #fff9e4;
  --card: rgba(182, 24, 18, 0.34);
  --card-strong: rgba(255, 245, 215, 0.18);
  --text: #fffdf4;
  --muted: #fff0b8;
  --border: rgba(255, 242, 187, 0.3);
  --shadow: 0 24px 60px rgba(120, 8, 8, 0.24);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 244, 195, 0.42), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(255, 208, 46, 0.22), transparent 26%),
    linear-gradient(180deg, #b30f12 0%, #dd2317 42%, #ffb115 100%);
}

.ganpati-glow {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: -1;
}

.ganpati-glow img {
  width: min(31vw, 250px);
  opacity: 0.5;
  filter: drop-shadow(0 0 30px rgba(255, 255, 247, 0.54)) drop-shadow(0 0 64px rgba(255, 228, 114, 0.34));
}

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

button,
input,
textarea {
  font: inherit;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -3;
}

.bg-mandala {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: 0.18;
  z-index: -2;
  filter: blur(2px);
  background:
    radial-gradient(circle, rgba(255, 248, 212, 0.95) 0 14%, transparent 15%),
    repeating-radial-gradient(circle, rgba(255, 221, 96, 0.72) 0 6px, transparent 6px 22px);
  animation: mandalaFloat 16s ease-in-out infinite;
}

.mandala-left {
  top: 12%;
  left: -120px;
}

.mandala-right {
  right: -130px;
  bottom: 8%;
  animation-delay: -5s;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 60px;
  background: linear-gradient(180deg, rgba(255, 230, 128, 0.18), rgba(177, 18, 15, 0.38));
  border-bottom: 1px solid rgba(255, 244, 191, 0.25);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 26px;
  color: #8b0d10;
  background: radial-gradient(circle at top, #fffef4, #ffd95d 58%, #ff9f0a 100%);
  box-shadow: 0 12px 28px rgba(159, 15, 15, 0.24);
}

.brand h2,
.hero h1,
.section-heading h2,
.card h3,
.about-panel h3 {
  font-family: "Cinzel", serif;
}

.brand h2 {
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0.01em;
}

.brand-copy h2 span {
  color: var(--gold);
  font-size: 1rem;
  margin-left: 2px;
}

.brand p {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-cta {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-bottom: 26px;
}

.phone-sticker {
  position: absolute;
  right: -8px;
  bottom: -4px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 244, 194, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 245, 0.96), rgba(255, 225, 114, 0.92));
  color: #9b1113;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(117, 8, 8, 0.22);
  transform: rotate(-7deg);
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.navbar a {
  position: relative;
  color: var(--bg-deep);
  font-weight: 500;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform 0.3s ease;
}

.navbar a:hover::after {
  transform: scaleX(1);
}

.btn {
  border: 1px solid rgba(255, 245, 211, 0.46);
  padding: 12px 22px;
  border-radius: 999px;
  color: #930f11;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 223, 111, 0.9) 55%, rgba(255, 176, 15, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 30px rgba(125, 8, 8, 0.22);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 34px rgba(69, 14, 4, 0.34);
}

.btn-secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 249, 226, 0.16);
}

.glow {
  animation: diyaGlow 2.8s ease-in-out infinite;
}

main section {
  padding: 110px 60px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "ॐ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  font-size: clamp(220px, 32vw, 420px);
  color: rgba(255, 249, 220, 0.16);
  text-shadow: 0 0 60px rgba(255, 220, 116, 0.24);
  animation: pulse 5s ease-in-out infinite;
}

.hero-aura {
  position: absolute;
  width: min(74vw, 760px);
  height: min(74vw, 760px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 213, 79, 0.4), transparent 56%),
    radial-gradient(circle at 50% 65%, rgba(255, 255, 235, 0.24), transparent 74%);
  filter: blur(14px);
  animation: auraSpin 18s linear infinite;
}

.hero-content {
  width: min(100%, 1000px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-shell {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
  grid-template-areas:
    "copy visual"
    "highlights highlights";
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  grid-area: copy;
  text-align: left;
}

.top-line {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 248, 223, 0.12);
  border: 1px solid rgba(255, 243, 185, 0.24);
  box-shadow: 0 18px 40px rgba(123, 12, 12, 0.16);
}

.top-line span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff8d5;
}

.top-line p {
  margin: 0;
  max-width: none;
  font-size: 1rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 245, 189, 0.28);
  background: rgba(255, 250, 232, 0.12);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  max-width: 920px;
  margin: 0;
}

.bangalore-word {
  display: inline-block;
  color: #fff6cc;
  text-shadow:
    0 0 12px rgba(255, 247, 204, 0.4),
    0 0 28px rgba(255, 210, 83, 0.32);
  background: linear-gradient(180deg, #fffbe9 0%, #ffe88f 48%, #ffd14f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p,
.section-heading p,
.card p,
.about-panel p,
footer span {
  color: var(--muted);
  line-height: 1.75;
}

.hero p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 0.98rem;
}

.hero-mobile {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 244, 192, 0.24);
  background: rgba(255, 251, 234, 0.1);
}

.hero-mobile span {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-mobile a {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fffdf1;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-highlights,
.cards,
.about-grid {
  display: grid;
  gap: 22px;
}

.hero-highlights-wrap {
  grid-area: highlights;
  width: 100%;
  margin-top: 8px;
}

.mini-heading {
  text-align: center;
  margin-bottom: 18px;
}

.mini-heading span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 245, 189, 0.24);
  background: rgba(255, 249, 224, 0.1);
  color: #fff0b8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-heading h3 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.hero-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: 0;
}

.hero-visual {
  grid-area: visual;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.pandit-frame img {
  width: 100%;
  display: block;
  border-radius: 10px;
  background-color: transparent;
  margin-top: -175px;

}

.highlight-card,
.card,
.about-panel,
.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 228, 0.22), rgba(205, 22, 16, 0.28)),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.highlight-card {
  padding: 24px;
  text-align: left;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}

.highlight-card span,
.card-icon,
.panel-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
  font-size: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 246, 225, 0.22), rgba(255, 205, 99, 0.18));
  border: 1px solid rgba(255, 244, 192, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.highlight-card strong,
.card h3,
.about-panel h3 {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

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

.card {
  padding: 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 249, 213, 0.28), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover,
.highlight-card:hover,
.about-panel:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 225, 167, 0.42);
}

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

.card-note {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 226, 0.12);
  color: #fff2c6;
  font-size: 0.85rem;
}

.about-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.about-panel {
  padding: 28px;
  min-height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}

.quote-panel {
  background:
    linear-gradient(180deg, rgba(255, 236, 165, 0.24), rgba(210, 25, 18, 0.24)),
    var(--card);
}

.contact-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 34px;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 251, 229, 0.12);
  border: 1px solid rgba(255, 245, 203, 0.24);
}

.contact-band span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-band a {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fffdf4;
}

.input-wrap + .input-wrap {
  margin-top: 18px;
}

.input-wrap label {
  display: block;
  margin-bottom: 10px;
  color: var(--cream);
  font-weight: 500;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text);
  border: 1px solid rgba(255, 246, 201, 0.2);
  background: rgba(255, 253, 240, 0.12);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact textarea {
  min-height: 140px;
  resize: vertical;
}

.contact input:focus,
.contact textarea:focus {
  border-color: rgba(255, 239, 170, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 239, 170, 0.12);
  transform: translateY(-1px);
}

.call-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 60;
}

.call-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.call-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(88, 5, 5, 0.46);
  backdrop-filter: blur(10px);
}

.call-dialog {
  position: relative;
  width: min(100%, 460px);
  padding: 32px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 251, 230, 0.28), rgba(210, 24, 18, 0.24)),
    rgba(190, 18, 18, 0.38);
  border: 1px solid rgba(255, 245, 203, 0.32);
  box-shadow: 0 30px 80px rgba(111, 8, 8, 0.35);
  backdrop-filter: blur(20px);
  transform: translateY(18px) scale(0.96);
  transition: transform 0.3s ease;
}

.call-modal.open .call-dialog {
  transform: translateY(0) scale(1);
}

.call-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  font-size: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 213, 90, 0.82));
  color: #9d1112;
}

.call-kicker {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.call-dialog h3 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.call-text {
  color: var(--cream);
  line-height: 1.7;
}

.call-text strong {
  color: #fff9d8;
}

.call-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.contact-card .btn {
  margin-top: 22px;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 12fr) minmax(0, 1.1fr);
  gap: 24px;
}

.location-card,
.map-card {
  position: relative;
  border-radius: 26px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 250, 228, 0.22), rgba(205, 22, 16, 0.28)),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.location-card {
  padding: 30px;
}

.location-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.location-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.map-card {
  overflow: hidden;
  min-height: 360px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  opacity: 0.72;
  filter: saturate(0.75) contrast(1.02);
}

.map-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(112, 14, 10, 0.58);
  backdrop-filter: blur(14px);
}

.map-overlay span {
  color: #ffe8a2;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.map-overlay a {
  color: #fff9e4;
  font-weight: 600;
  word-break: break-all;
}

footer {
  padding: 24px 20px 36px;
  text-align: center;
}

footer p {
  margin-bottom: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -56%) scale(1);
    opacity: 0.12;
  }
  50% {
    transform: translate(-50%, -56%) scale(1.08);
    opacity: 0.2;
  }
}

@keyframes diyaGlow {
  0%, 100% {
    box-shadow: 0 14px 30px rgba(125, 8, 8, 0.22), 0 0 0 rgba(255, 213, 110, 0.18);
  }
  50% {
    box-shadow: 0 20px 36px rgba(125, 8, 8, 0.3), 0 0 30px rgba(255, 232, 133, 0.32);
  }
}

@keyframes auraSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes mandalaFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.04);
  }
}

@media (max-width: 1080px) {
  .navbar,
  main section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .cards,
  .hero-highlights,
  .about-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-cta {
    padding-bottom: 20px;
  }

  .phone-sticker {
    right: -2px;
    bottom: -2px;
    font-size: 0.7rem;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "highlights";
  }

  .hero-copy {
    text-align: center;
  }

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

  .hero p,
  .top-line p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-mobile {
    justify-content: center;
  }

  .pandit-frame {
    transform: translateY(-12px);
  }
}

@media (max-width: 760px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px;
  }

  .navbar ul {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  main section {
    padding-top: 88px;
  }

  .hero-highlights,
  .cards,
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero p {
    font-size: 0.92rem;
  }

  .hero-mobile {
    flex-direction: column;
    gap: 8px;
    width: min(100%, 280px);
    margin-left: auto;
    margin-right: auto;
  }

  .ganpati-glow img {
    width: min(46vw, 200px);
  }

  .hero-visual {
    margin-top: -8px;
  }

  .pandit-frame {
    width: min(100%, 290px);
    padding: 8px 10px 0;
    transform: translateY(-10px);
  }

  .top-line {
    padding: 14px 16px;
  }

  .nav-cta {
    padding-bottom: 18px;
  }

  .phone-sticker {
    right: 6px;
    bottom: -4px;
    padding: 6px 10px;
    font-size: 0.64rem;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-band,
  .map-overlay {
    flex-direction: column;
    align-items: flex-start;
  }

  .call-dialog {
    padding: 24px;
  }
}
