/* ===== PANDIT SUNIL SHARMA — BRAND STYLESHEET ===== */
:root {
  --bs-primary: #6B1A22;
  --maroon: #6B1A22;
  --maroon-deep: #4A0F15;
  --maroon-light: #8B2532;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #A07830;
  --cream: #FAF6F0;
  --cream-warm: #F5EDE0;
  --charcoal: #1C1C1E;
  --text-muted: #6B6B70;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.font-heading {
  font-family: 'Cinzel', Georgia, serif;
}

h4,
h5,
h6,
.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── Top Bar ── */
.topbar {
  background: linear-gradient(90deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  font-size: 12.5px;
  letter-spacing: .03em;
}

.topbar a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .2s;
}

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

.topbar .social-icon {
  font-size: 15px;
  transition: color .2s;
  color: rgba(255, 255, 255, .65);
}

.topbar .social-icon:hover {
  color: var(--gold);
}

/* ── Navbar ── */
#main-header {
  background: rgba(255, 255, 255, .97) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, .18);
  transition: box-shadow .3s, padding .3s;
}

#main-header.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, .1);
  border-bottom-color: rgba(201, 168, 76, .35);
}

.navbar-brand img {
  height: 52px;
}

.navbar-brand .brand-name {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}

.navbar-brand .brand-tag {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.nav-link {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  position: relative;
  padding: 6px 4px !important;
  transition: color .2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width .3s cubic-bezier(.4, 0, .2, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--maroon) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ── CTA Button ── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: #fff !important;
  text-decoration: none;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  opacity: 0;
  transition: opacity .3s;
}

.btn-cta:hover::before {
  opacity: 1;
}

.btn-cta>* {
  position: relative;
  z-index: 1;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 26, 34, .3);
}

/* ── Buttons ── */
.btn-maroon {
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-maroon:hover {
  background: var(--maroon-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 26, 34, .3);
}

.btn-gold {
  background: var(--gold);
  color: var(--maroon-deep);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  transition: background .2s;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
}

.btn-outline-maroon {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 22px;
  transition: all .2s;
}

.btn-outline-maroon:hover {
  background: var(--maroon);
  color: #fff;
}

/* ── Section Titles ── */
.section-badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;

  text-transform: uppercase;
  color: var(--maroon-deep);
  padding: 4px 16px;
  border: 1px solid rgba(201, 168, 76, .4);
  border-radius: 30px;
  background: rgba(201, 168, 76, .06);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
}

.about-up-img {
  margin-top: -50px;
  margin-left: -50px;
  height: 70px;
  width: 70px;
}

/* About Us Collage Design */
.collage-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.collage-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.collage-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48%;
  height: 48%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 4px solid #fff;
  overflow: hidden;
  border-radius: 4px;
}

.collage-center img {
  width: 150%;
  height: 150%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  object-fit: cover;
}

.panditji-img {
  height: 500px;
  width: 500px;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ── Cards ── */
.card-brand {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(201, 168, 76, .13);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s, border-color .35s;
}

.card-brand:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
  border-color: rgba(201, 168, 76, .3);
}

.card-brand .card-img-top {
  height: 220px;
  object-fit: cover;
}

/* ── Hero Swiper ── */
.heroSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
  height: auto;
  width: 100%;
}

.heroSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 0;
  position: relative;
}

/* Gradient overlay to ensure text contrast */
.heroSwiper .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 15, 21, 0.4) 0%, rgba(38, 6, 9, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Caption Centered Layout */
.heroSwiper .hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.heroSwiper .hero-caption-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* Slider Typography & Badges */
.heroSwiper .hero-top-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 15px;
  background: rgba(107, 26, 34, 0.45);
  padding: 6px 18px;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.heroSwiper .hero-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.heroSwiper .hero-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.heroSwiper .hero-description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.heroSwiper .hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Slider Buttons */
.heroSwiper .btn-hero-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--maroon-deep) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  padding: 13px 30px;
  border-radius: 50px;
  border: 1px solid var(--gold);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.heroSwiper .btn-hero-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.heroSwiper .btn-hero-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid #ffffff;
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.heroSwiper .btn-hero-outline:hover {
  background: #ffffff;
  color: var(--maroon-deep) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

/* Staggered Animations Triggered on Swiper Slide Active */
.heroSwiper .swiper-slide-active .hero-top-badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.heroSwiper .swiper-slide-active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.heroSwiper .swiper-slide-active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.heroSwiper .swiper-slide-active .hero-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.heroSwiper .swiper-slide-active .hero-buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
  color: #fff;
  background: rgba(74, 15, 21, .6);
  border: 1px solid rgba(201, 168, 76, .4);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  backdrop-filter: blur(8px);
  transition: background .3s;
  z-index: 10;
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
  background: rgba(74, 15, 21, .9);
}

.heroSwiper .swiper-button-prev:after,
.heroSwiper .swiper-button-next:after {
  font-size: 16px;
  font-weight: 700;
}

.heroSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .5);
  width: 8px;
  height: 8px;
  z-index: 10;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

@media(max-width: 767px) {
  .heroSwiper .swiper-slide {
    height: auto;
    min-height: auto;
    max-height: none;
  }
}

/* ── Stats Bar ── */
.stats-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at top left,
      rgba(212, 175, 55, .12),
      transparent 35%),

    linear-gradient(180deg,
      #fff,
      #faf8f3);
}

.stats-card {
  padding: 25px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, .15);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, .08);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, .12);
  transition: all .4s ease;
  height: 100%;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, .08);
}

.stat-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
    linear-gradient(135deg,
      rgba(212, 175, 55, .15),
      rgba(255, 255, 255, .8));

  color: var(--maroon);
  font-size: 28px;

  border: 1px solid rgba(212, 175, 55, .2);

  transition: .4s;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
  font-family: 'Cinzel', Georgia, serif;
}

.stat-label {
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: all .8s ease;
}

@media(max-width:768px) {

  .stats-card {
    padding: 15px;
  }

  .stat-item {
    padding: 15px;
    gap: 12px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 22px;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }
}

/* ── Page Hero (breadcrumb header) ── */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 60%, var(--maroon-light) 100%);
  padding: 110px 0 55px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  position: relative;
}

.page-hero .breadcrumb {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 11px;
  letter-spacing: .18em;
}

.page-hero .breadcrumb-item {
  color: rgba(255, 255, 255, .65);
}

.page-hero .breadcrumb-item.active {
  color: var(--gold);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4);
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(180deg, #3A0C12 0%, #2A080D 100%);
  border-top: 3px solid var(--gold);
}

.site-footer .footer-heading {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, .2);
  margin-bottom: 18px;
}

.site-footer .footer-link {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer .footer-link:hover {
  color: var(--gold);
}

.site-footer .footer-link i {
  color: rgba(201, 168, 76, .5);
  font-size: 13px;
  transition: color .2s;
}

.site-footer .footer-link:hover i {
  color: var(--gold);
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  text-decoration: none;
  transition: all .25s;
}

.footer-social-btn:hover {
  color: #fff;
  background: var(--maroon);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: rgba(255, 255, 255, .38);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, .7);
}

/* ── Service Cards ── */
.service-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(201, 168, 76, .12);
  transition: all .35s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .13);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card .badge-maroon {
  background: var(--maroon);
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
}

.service-card .check-list li {
  font-size: 14px;
  color: #555;
  padding: 3px 0;
}

.service-card .check-list li::before {
  content: '✓';
  color: var(--gold);
  margin-right: 8px;
  font-weight: 700;
}

/* ── Blog Cards ── */
.blog-card img {
  height: 200px;
  object-fit: cover;
}

.blog-card .date-badge {
  font-size: 11px;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: .12em;
  color: var(--gold);
}

/* ── Testimonial ── */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(201, 168, 76, .12);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-card .quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  font-style: italic;
}

/* ── Contact form ── */
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .18);
}

/* ── Admin Sidebar ── */
.admin-sidebar {
  background: linear-gradient(180deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  min-height: 100vh;
  width: 260px;
}

.admin-sidebar .nav-link {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  margin: 2px 8px;
  transition: all .2s;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.admin-sidebar .nav-link i {
  margin-right: 10px;
  color: var(--gold);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .6s ease both;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .2s;
}

.delay-3 {
  animation-delay: .3s;
}

/* ── Utilities ── */
.text-gold {
  color: var(--gold) !important;
}

.text-maroon {
  color: var(--maroon) !important;
}

.bg-maroon {
  background-color: var(--maroon) !important;
}

.bg-maroon-deep {
  background-color: var(--maroon-deep) !important;
}

.bg-gold {
  background-color: var(--gold) !important;
}

.bg-cream {
  background-color: var(--cream) !important;
}

.border-gold {
  border-color: var(--gold) !important;
}

.om-circle {
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  padding-top: 2px;
}

/* Temple watermark behind footer content */
.site-footer .container-xl,
.site-footer .footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-temple-bg {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 440px;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  color: #ffffff;
  transform: translateY(20px);
}

@media (max-width: 767px) {
  .footer-temple-bg {
    width: 250px;
    opacity: 0.04;
    right: -10px;
  }
}