﻿@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Cormorant+Garamond:wght@600;700&family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --ivory: #fffaf4;
  --ivory-2: #efe3d4;
  --white: #ffffff;
  --gold: #f7c62f;
  --gold-light: #ffe082;
  --gold-dark: #d4a017;
  --maroon: #7a0000;
  --maroon-deep: #4a0000;
  --charcoal: #241b15;
  --muted: #6b6258;
  --line: rgba(168, 111, 29, 0.18);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 80px rgba(50, 27, 13, 0.16);
  --shadow-soft: 0 16px 42px rgba(50, 27, 13, 0.1);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(255, 231, 179, 0.45),
      transparent 30%
    ),
    radial-gradient(circle at 92% 8%, rgba(127, 49, 38, 0.12), transparent 26%),
    linear-gradient(180deg, #fff8f5 0%, #fff4ef 42%, #ffe9e1 100%);
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(143, 95, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 95, 18, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(#000, transparent 78%);
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
a:hover {
  color: var(--maroon);
}
img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
.brand-title {
  font-family: "Cormorant Garamond", "Cinzel", Georgia, serif;
  color: var(--charcoal);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.75rem, 6.4vw, 6.15rem);
}
h2 {
  font-size: clamp(2.15rem, 4.2vw, 3.65rem);
  margin-bottom: 16px;
}
h3 {
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
}
p,
li {
  color: var(--muted);
}

.container {
  max-width: var(--max);
}
.section-pad {
  padding: clamp(40px, 9vw, 40px) 0;
}
.section-soft {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 247, 236, 0.9)
  );
}
.section-gold {
  background: linear-gradient(135deg, #fffdf9 0%, #f8efe2 45%, #f2dfb8 100%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-head p {
  font-size: 1.04rem;
  margin-bottom: 0;
}

.header-top {
  background: linear-gradient(90deg, #4a0000, #7a0000, #4a0000);
  color: #fff;
  font-size: 0.88rem;
}
.topbar-content,
.topbar-links,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-content {
  min-height: 42px;
  justify-content: space-between;
}
.topbar-links {
  flex-wrap: wrap;
}
.topbar-link,
.topbar-social a {
  color: rgba(255, 255, 255, 0.92);
}
.topbar-link i,
.topbar-social i {
  color: var(--gold-light);
  margin-right: 6px;
}
.topbar-link:hover,
.topbar-social a:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.navbar-custom {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 4px 0;
  background: rgba(255, 251, 245, 0.88) !important;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(36, 29, 24, 0.08);
  backdrop-filter: blur(18px);
}
.container-custom {
  gap: 18px;
}
.navbar-brand {
  margin-right: 12px;
}
.navbar-brand img {
  width: min(90px, 55vw);
  filter: drop-shadow(0 12px 18px rgba(64, 16, 13, 0.12));
}
.navbar-toggler {
  border: 0;
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(201, 151, 47, 0.32);
}
.navbar-collapse {
  justify-content: flex-end;
}
.navbar-nav {
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin-left: auto;
  margin-right: 14px !important;
}
.navbar-custom .nav-link {
  color: #f7c62f !important;
  padding: 9px 10px !important;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: #fff !important;
  background: linear-gradient(135deg, #f7c62f, #d4a017);
  box-shadow: 0 12px 24px rgba(104, 31, 24, 0.18);
}

.btn,
.btn-primary,
.btn-secondary,
.nav-cta {
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
}
.btn-primary,
.nav-cta {
  color: #2a160c !important;
  background: linear-gradient(
    135deg,
    #fff4d1 0%,
    var(--gold) 48%,
    #b47b24 100%
  );
  box-shadow: 0 15px 32px rgba(143, 95, 18, 0.23);
}
.btn-primary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(143, 95, 18, 0.28);
}
.btn-outline-light,
.btn-outline-premium {
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.btn-outline-premium {
  color: var(--maroon) !important;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.hero-luxury {
  min-height: clamp(580px, 78vh, 760px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #4a0000 0%, #7a0000 50%, #990000 100%);
}
.hero-luxury .carousel,
.hero-luxury .carousel-inner,
.hero-luxury .carousel-item {
  position: absolute;
  inset: 0;
  height: 100%;
}
.hero-luxury .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: none;
}
.hero-luxury::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(74, 0, 0, 0.8),
      rgba(122, 0, 0, 0.5),
      rgba(74, 0, 0, 0.2)
    ),
    linear-gradient(0deg, rgba(74, 0, 0, 0.55), transparent 48%);
}
.hero-luxury .container {
  position: relative;
  z-index: 3;
}
.hero-copy {
  width: min(760px, 100%);
  padding: 86px 0 120px;
}
.hero-copy h1,
.page-hero h1 {
  color: #fff;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}
.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 780px;
  margin-top: 44px;
}
.hero-trust div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}
.hero-trust strong {
  display: block;
  color: black;
  font-size: 1.4rem;
  line-height: 1;
}
.hero-trust span {
  display: block;
  color: rgba(74, 0, 0, 0.8);
  margin-top: 6px;
  font-size: 0.9rem;
}
.hero-luxury .carousel-indicators {
  z-index: 4;
  bottom: 28px;
}
.hero-luxury .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
}

.page-hero {
  min-height: 390px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 17, 12, 0.92), rgba(122, 45, 36, 0.52)),
    radial-gradient(
      circle at 75% 25%,
      rgba(245, 217, 141, 0.25),
      transparent 34%
    );
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  font-size: 1.08rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.media-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 14px;
  z-index: 2;
  pointer-events: none;
}
.floating-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  padding: 14px 16px;
  border-radius: 14px;
  color: #281606;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92),
    rgba(245, 217, 141, 0.96)
  );
  box-shadow: 0 16px 32px rgba(36, 29, 24, 0.18);
  font-weight: 900;
}
.premium-panel,
.premium-card,
.feature-card,
.service-card,
.chapter-card,
.testimonial-card,
.contact-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.premium-panel {
  padding: clamp(24px, 4vw, 42px);
}
.premium-card:hover,
.feature-card:hover,
.service-card:hover,
.chapter-card:hover,
.testimonial-card:hover,
.process-step:hover {
  transform: translateY(-7px);
  border-color: rgba(143, 95, 18, 0.38);
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.stat-card {
  padding: 20px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-family: "Cinzel", serif;
  color: var(--maroon);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}
.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card,
.service-card,
.chapter-card,
.testimonial-card {
  padding: 26px;
  height: 100%;
}
.icon-badge {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--maroon);
  background: linear-gradient(135deg, #fff4c6, var(--gold));
  box-shadow: 0 14px 28px rgba(143, 95, 18, 0.18);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process-step {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
}
.step-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(104, 31, 24, 0.2);
}

.chapter-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-snap-type: x mandatory;
}
.chapter-card {
  scroll-snap-align: start;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 250, 240, 0.86)
  );
}
.chapter-card strong {
  color: var(--gold-dark);
  font-weight: 900;
}

.masonry-grid {
  columns: 3 260px;
  column-gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  background: #fff;
}
.gallery-card img {
  width: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}
.gallery-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}
.gallery-card::after {
  content: "View";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 220, 0.92);
  color: #281606;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.gallery-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.gallery-caption {
  padding: 16px;
  font-weight: 900;
  color: var(--maroon);
}
.visitor-badge {
  display: inline-flex;
  padding: 10px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff7d0, var(--gold));
  color: #281606;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.testimonial-card p {
  font-size: 1.03rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  color: #fff;
  font-weight: 900;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
}
.accordion-button {
  font-weight: 900;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.82);
}
.accordion-button:not(.collapsed) {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(201, 151, 47, 0.24);
}

.form-label {
  font-weight: 800;
  color: var(--charcoal);
}
.form-control {
  min-height: 50px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 151, 47, 0.18);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}
.contact-card {
  padding: 28px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-list i {
  color: var(--gold-dark);
  margin-top: 5px;
}
iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr;
  gap: 30px;
  padding-bottom: 42px;
}
.footer-brand img {
  width: 230px;
  margin-bottom: 18px;
  filter: brightness(1.15);
}
.footer-title {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 18px 0;
  text-align: center;
}

.floating-icons {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1000;
  display: grid;
  gap: 10px;
}
.floating-icons a,
.back-to-top {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(36, 29, 24, 0.2);
}
.floating-icons a:hover,
.back-to-top:hover {
  transform: translateY(-4px);
}
.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128b43);
}
.phone-icon {
  background: linear-gradient(135deg, #158044, #0a4f2a);
}
.map-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #261306 !important;
}
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 202px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.modal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.modal-body {
  background: #160a06;
}
#modalImage {
  max-height: 76vh;
  object-fit: contain;
  margin: 0 auto;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hover-lift {
  transform-style: preserve-3d;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 1199px) {
  .navbar-brand img {
    width: min(210px, 48vw);
  }
  .navbar-custom .nav-link {
    font-size: 0.82rem;
    padding: 8px 7px !important;
  }
  .nav-cta {
    padding: 8px 12px;
    font-size: 0.86rem;
  }
}
@media (max-width: 991px) {
  .topbar-content,
  .topbar-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
  }
  .topbar-content {
    min-height: auto;
  }
  .topbar-social {
    position: absolute;
    right: 16px;
    top: 8px;
  }
  .navbar-nav {
    align-items: stretch;
    margin: 16px 0 0 !important;
  }
  .navbar-custom .nav-link {
    font-size: 1rem;
    padding: 11px 14px !important;
  }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-timeline::before {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .hero-luxury {
    min-height: 720px;
  }
  .hero-copy {
    padding: 70px 0 118px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-trust {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .process-timeline,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    min-height: 330px;
  }
  .media-frame img {
    min-height: 320px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-icons {
    right: 12px;
    bottom: 14px;
  }
  .floating-icons a,
  .back-to-top {
    width: 46px;
    height: 46px;
  }
  .back-to-top {
    right: 12px;
    bottom: 174px;
  }
}

/* High-end elegant theme upgrade */
body {
  position: relative;
  font-size: 16px;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 230, 163, 0.24),
      transparent 18%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(111, 30, 23, 0.12),
      transparent 18%
    ),
    radial-gradient(
      circle at 58% 78%,
      rgba(214, 166, 64, 0.16),
      transparent 22%
    );
  animation: ambientDrift 22s ease-in-out infinite alternate;
  filter: blur(2px);
}

body::before {
  animation: templeGridDrift 34s linear infinite;
}

h1,
h2,
h3,
h4,
h5,
.brand-title {
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: 0.01em;
}

h1::selection,
h2::selection,
h3::selection,
p::selection {
  background: rgba(214, 166, 64, 0.32);
}

.section-pad {
  position: relative;
  isolation: isolate;
}

.section-pad::before {
  content: "";
  position: absolute;
  inset: 34px max(14px, calc((100vw - var(--max)) / 2)) auto auto;
  width: 112px;
  height: 112px;
  z-index: -1;
  opacity: 0.22;
  border: 1px solid rgba(214, 166, 64, 0.36);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.24),
    0 0 45px rgba(214, 166, 64, 0.12);
  animation: mandalaFloat 9s ease-in-out infinite;
}

.section-soft {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.74),
      rgba(255, 248, 236, 0.88)
    ),
    radial-gradient(circle at 10% 0%, rgba(214, 166, 64, 0.12), transparent 32%);
}

.navbar-custom {
  background: rgba(74, 0, 0, 0.92) !important;
  box-shadow:
    0 18px 45px rgba(33, 25, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  box-shadow:
    0 14px 28px rgba(111, 30, 23, 0.2),
    0 0 22px rgba(214, 166, 64, 0.2);
}

.btn-primary,
.nav-cta {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 16px 34px rgba(155, 104, 21, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.38) inset;
}

.btn-primary::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.58) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.btn-primary:hover::before,
.nav-cta:hover::before {
  transform: translateX(120%);
}

.hero-luxury::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 24%,
      rgba(255, 230, 163, 0.22),
      transparent 18%
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 42%,
      transparent 58%
    );
  mix-blend-mode: screen;
  animation: heroLightSweep 9s ease-in-out infinite alternate;
}

.hero-copy,
.page-hero .container {
  animation: luxuryEntrance 0.9s ease both;
}

.hero-trust div,
.premium-panel,
.premium-card,
.feature-card,
.service-card,
.chapter-card,
.testimonial-card,
.contact-card,
.process-step,
.gallery-card,
.accordion-item {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.78),
      rgba(255, 248, 236, 0.5)
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 230, 163, 0.18),
      transparent 42%
    );
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 18px 48px rgba(50, 27, 13, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.premium-card:hover,
.feature-card:hover,
.service-card:hover,
.chapter-card:hover,
.testimonial-card:hover,
.process-step:hover,
.gallery-card:hover,
.contact-card:hover {
  border-color: rgba(214, 166, 64, 0.46);
  box-shadow:
    0 30px 80px rgba(50, 27, 13, 0.16),
    0 0 36px rgba(214, 166, 64, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.icon-badge,
.step-number,
.testimonial-avatar,
.visitor-badge,
.floating-note {
  box-shadow:
    0 16px 34px rgba(155, 104, 21, 0.2),
    0 0 28px rgba(214, 166, 64, 0.22);
}

.icon-badge {
  animation: none;
}

.process-timeline::before {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(214, 166, 64, 0.18),
    var(--gold-light),
    rgba(214, 166, 64, 0.18),
    transparent
  );
  box-shadow: 0 0 22px rgba(214, 166, 64, 0.28);
}

.chapter-scroll::-webkit-scrollbar {
  height: 8px;
}

.chapter-scroll::-webkit-scrollbar-track {
  background: rgba(155, 104, 21, 0.08);
  border-radius: 999px;
}

.chapter-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  border-radius: 999px;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(51, 11, 8, 0.32));
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.gallery-card::after {
  z-index: 2;
  box-shadow:
    0 12px 24px rgba(33, 25, 20, 0.16),
    0 0 18px rgba(214, 166, 64, 0.18);
}

.form-control {
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
}

.form-control:focus {
  box-shadow:
    0 0 0 0.2rem rgba(214, 166, 64, 0.18),
    0 0 26px rgba(214, 166, 64, 0.16);
}

.site-footer {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(247, 198, 47, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #4a0000 0%, #7a0000 50%, #3a0000 100%);
}

.reveal-on-scroll {
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.75, 0.22, 1);
}

.reveal-on-scroll.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes ambientDrift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  50% {
    transform: translate3d(1.5%, 1%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(-0.5%, 1.5%, 0) scale(1.05);
  }
}

@keyframes templeGridDrift {
  from {
    background-position:
      0 0,
      0 0;
  }
  to {
    background-position:
      46px 46px,
      46px 46px;
  }
}

@keyframes mandalaFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(14px) rotate(12deg);
  }
}

@keyframes heroLightSweep {
  from {
    opacity: 0.65;
    transform: translateX(-2%);
  }
  to {
    opacity: 1;
    transform: translateX(2%);
  }
}

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

@keyframes iconBreath {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 16px 34px rgba(155, 104, 21, 0.18),
      0 0 18px rgba(214, 166, 64, 0.16);
  }
  50% {
    transform: translateY(-5px);
    box-shadow:
      0 20px 42px rgba(155, 104, 21, 0.22),
      0 0 30px rgba(214, 166, 64, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .section-pad::before,
  .hero-luxury::before,
  .page-hero::before,
  .icon-badge {
    animation: none !important;
  }
}
.navbar-brand img {
  width: 80px; /* adjust */
}

.container-custom {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.brand-name-image {
  height: 50px !important;
  width: auto !important;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 30px; /* logo right move */
}
.brand-name-image {
  height: 100px !important;
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
}

/* ════════════════════════════════════════════
   NADI ASTROLOGY UNIQUE ELEMENTS
════════════════════════════════════════════ */

/* ── Hero trust bar fix ── */
.hero-trust strong {
  color: var(--gold-light) !important;
  text-shadow: 0 0 18px rgba(247, 198, 47, 0.5);
}
.hero-trust span {
  color: rgba(255, 240, 200, 0.88) !important;
}

/* ── Hero Yantra SVG decoration ── */
.hero-yantra {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(500px, 40vw);
  pointer-events: none;
  animation: yantraFloat 22s ease-in-out infinite;
}
@keyframes yantraFloat {
  0%, 100% { transform: translateY(-50%) rotate(0deg); opacity: 0.65; }
  50% { transform: translateY(calc(-50% - 14px)) rotate(5deg); opacity: 0.85; }
}

/* ── Hero star particles ── */
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 231, 147, 0.9);
  border-radius: 50%;
  animation: starTwinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.hero-star.large {
  width: 3px;
  height: 3px;
  background: rgba(247, 198, 47, 0.85);
  box-shadow: 0 0 7px rgba(247, 198, 47, 0.6);
}
@keyframes starTwinkle {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.7); }
}

/* ── Mantra Band ── */
.mantra-band {
  background: linear-gradient(135deg, #360000 0%, #580000 50%, #360000 100%);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
}
.mantra-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(247, 198, 47, 0.1), transparent 42%),
    radial-gradient(circle at 80% 50%, rgba(247, 198, 47, 0.07), transparent 38%);
  pointer-events: none;
}
.mantra-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.mantra-inner p {
  color: rgba(255, 231, 179, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-style: italic;
  font-weight: 600;
  margin: 0;
  max-width: 800px;
  line-height: 1.65;
}
.om-glyph {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
  text-shadow: 0 0 30px rgba(247, 198, 47, 0.55);
  flex-shrink: 0;
  line-height: 1;
  display: block;
}

/* ── Stats Band ── */
.stats-band {
  background: linear-gradient(135deg, #280000 0%, #520000 50%, #280000 100%);
  padding: 38px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(247, 198, 47, 0.07), transparent 62%);
  pointer-events: none;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.stats-band-item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(247, 198, 47, 0.18);
}
.stats-band-item:last-child { border-right: none; }
.stats-band-item strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  color: var(--gold);
  text-shadow: 0 0 28px rgba(247, 198, 47, 0.45);
  line-height: 1;
  margin-bottom: 7px;
}
.stats-band-item span {
  display: block;
  color: rgba(255, 231, 179, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Nadi Traditions Section ── */
.nadi-traditions-section {
  background: linear-gradient(180deg, #fffaf4 0%, #fff4e8 100%);
}
.traditions-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.tradition-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.tradition-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
  border-color: rgba(214, 166, 64, 0.42);
}
.tradition-img {
  position: relative;
  overflow: hidden;
  height: 192px;
}
.tradition-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tradition-card:hover .tradition-img img {
  transform: scale(1.07);
}
.tradition-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(0deg, rgba(74, 0, 0, 0.88), transparent);
}
.tradition-overlay span {
  color: var(--gold-light);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tradition-body {
  padding: 14px 16px 18px;
}
.tradition-body h3 {
  font-size: 0.97rem;
  margin-bottom: 6px;
  color: var(--maroon);
}
.tradition-body p {
  font-size: 0.83rem;
  line-height: 1.56;
  margin: 0;
  color: var(--muted);
}

/* ── Ornamental section divider ── */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  padding: 0 0 36px;
  color: var(--gold-dark);
}
.ornament-divider::before,
.ornament-divider::after {
  content: "";
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.5));
}
.ornament-divider::after {
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.5), transparent);
}
.ornament-lotus {
  font-size: 1.1rem;
  line-height: 1;
  animation: lotusBreath 4.5s ease-in-out infinite;
}
@keyframes lotusBreath {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .traditions-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-yantra { width: min(360px, 34vw); }
}
@media (max-width: 991px) {
  .traditions-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-item { border-right: 1px solid rgba(247,198,47,0.18); border-bottom: 1px solid rgba(247,198,47,0.18); }
  .stats-band-item:nth-child(2n) { border-right: none; }
  .stats-band-item:nth-child(n+3) { border-bottom: none; }
}
@media (max-width: 767px) {
  .traditions-grid { grid-template-columns: repeat(2, 1fr); }
  .mantra-inner { flex-direction: column; gap: 10px; }
  .hero-yantra { display: none; }
}
@media (max-width: 480px) {
  .traditions-grid { grid-template-columns: 1fr 1fr; }
}
