/* ==========================================================================
   ALARISWARAR TEMPLE — UNIFIED DESIGN SYSTEM & WIDE DEPTH GALLERY CSS
   Authentic South Indian Temple Palette + 3D Depth Gallery + Hero Slider
   ========================================================================== */

:root {
  /* Exact Temple Color Palette */
  --temple-maroon: #fda638;
  --temple-maroon-dark: #45131B;

  --temple-saffron: #5d50c6;
  --temple-gold: #C49A45;
  --temple-gold-soft: #D7BA72;

  --temple-ivory: #FBF8F1;
  --temple-cream: #F4EBDD;
  --temple-sandal: #E9DCC5;

  --temple-charcoal: #29231F;
  --temple-text: #352E29;
  --temple-muted: #746A61;

  --temple-white: #FFFFFF;
  --temple-border: #E7DAC5;

  --temple-footer: #351318;

  /* Typography Tokens */
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;

  /* UI Transitions & Radii */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;

  /* Shadows */
  --shadow-subtle: 0 4px 16px rgba(41, 35, 31, 0.04);
  --shadow-card: 0 12px 36px rgba(41, 35, 31, 0.07);
  --shadow-hover: 0 18px 48px rgba(41, 35, 31, 0.14);
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--temple-gold);
  color: var(--temple-maroon-dark);
  padding: 12px 20px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top var(--transition-fast);
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

.skip-link:focus {
  top: 16px;
}

/* Accessibility Focus Visible */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--temple-gold);
  outline-offset: 3px;
}

/* CSS Reset & Global Layout */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--temple-text);
  background-color: var(--temple-ivory);
  line-height: 1.65;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--temple-maroon);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--temple-maroon-dark);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--temple-maroon-dark);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* Container Width Control */
.container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

@media (max-width: 576px) {
  .container {
    width: min(100% - 32px, 1240px);
  }
}

/* --------------------------------------------------------------------------
   TOP CONTACT BAR
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--temple-maroon);
  color: var(--temple-ivory);
  font-size: 0.75rem;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(196, 154, 69, 0.3);
}

.top-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100% - 60px, 1260px);
  height: 100%;
}

.top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  height: 100%;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--temple-ivory);
  font-weight: 400;
  min-width: 0;
}

.top-info-item svg {
  width: 15px;
  height: 15px;
  fill: var(--temple-gold-soft);
}

.top-info-item a {
  color: #FFFFFF;
}

.top-info-item a:hover {
  color: var(--temple-gold-soft);
}

/* --------------------------------------------------------------------------
   SITE HEADER & NAVBAR (Identical across all pages)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(251, 248, 241, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--temple-border);
  transition: all var(--transition-normal);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 2.50rem;
  font-weight: 1000;
  color: var(--temple-maroon);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-title span {
  color: var(--temple-saffron);
  font-weight: 1000px;
}

.brand-subtitle {
  font-family: var(--font-body);
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--temple-muted);
  font-weight: 1000;
  margin-top: 2px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
    
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--temple-text);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--temple-maroon);
  background-color: var(--temple-cream);
}

.nav-link.active {
  color: var(--temple-maroon);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--temple-gold);
  border-radius: 2px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--temple-border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--temple-maroon-dark);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   3-IMAGE HOME HERO SLIDER (Seamless 0.8s Opacity Crossfade)
   -------------------------------------------------------------------------- */
.hero-slider-wrapper {
  position: relative;
  height: clamp(560px, 72vh, 760px);
  width: 100%;
  overflow: hidden;
  background-color: var(--temple-maroon-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide:nth-child(1) { background-position: center center; }
.hero-slide:nth-child(2) { background-position: center 30%; }
.hero-slide:nth-child(3) { background-position: center 20%; }

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(30, 20, 14, 0.76) 0%,
    rgba(30, 20, 14, 0.52) 52%,
    rgba(30, 20, 14, 0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 700px);
  padding: 60px 0;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.825rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--temple-gold-soft);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.02;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: var(--temple-gold-soft);
  font-style: italic;
  font-weight: 800;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: #E8E2D8;
  margin-bottom: 34px;
  line-height: 1.7;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Controls */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(215, 186, 114, 0.4);
  color: var(--temple-gold-soft);
  width: clamp(40px, 4vw, 50px);
  height: clamp(40px, 4vw, 50px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-nav-arrow:hover {
  background: var(--temple-gold);
  color: var(--temple-maroon-dark);
  border-color: var(--temple-gold);
}

.hero-nav-arrow.prev { left: clamp(12px, 2vw, 32px); }
.hero-nav-arrow.next { right: clamp(12px, 2vw, 32px); }

.hero-nav-arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(215, 186, 114, 0.6);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-indicator-dot.active {
  background: var(--temple-gold);
  width: 28px;
  border-radius: 12px;
}

/* --------------------------------------------------------------------------
   UNIQUE PAGE BANNERS (Inner Pages)
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  height: clamp(260px, 32vh, 420px);
  width: 100%;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 20, 14, 0.68) 0%,
    rgba(69, 19, 27, 0.82) 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #E0D6C8;
  background: rgba(0, 0, 0, 0.25);
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid rgba(229, 216, 196, 0.2);
}

.breadcrumb-nav a {
  color: var(--temple-gold-soft);
}

.breadcrumb-nav a:hover {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   BUTTON SYSTEM
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  min-height: 48px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--temple-maroon);
  color: #FFFFFF;
  border: 1px solid var(--temple-maroon);
}

.btn-primary:hover {
  background-color: var(--temple-maroon-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-secondary {
  background-color: transparent;
  color: var(--temple-maroon);
  border: 1px solid var(--temple-maroon);
}

.btn-secondary:hover {
  background-color: var(--temple-maroon);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  background-color: #FFFFFF;
  color: var(--temple-maroon-dark);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   SECTIONS & CARDS
   -------------------------------------------------------------------------- */
.section {
  padding-block: clamp(60px, 7vw, 100px);
}

.section-bg-alt {
  background-color: var(--temple-cream);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 46px auto;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--temple-gold);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 600;
  color: var(--temple-maroon-dark);
  margin-bottom: 12px;
}

.section-desc {
  font-family: var(--font-body);
  color: var(--temple-muted);
  font-size: 1.025rem;
}

/* Responsive Grid System */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(18px, 2.5vw, 32px);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Temple Cards */
.temple-card {
  background: var(--temple-white);
  border: 1px solid var(--temple-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.temple-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--temple-gold-soft);
}

.temple-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.temple-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.temple-card:hover .temple-card-media img {
  transform: scale(1.05);
}

.temple-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.temple-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--temple-maroon-dark);
  margin-bottom: 8px;
}

.temple-card-text {
  font-family: var(--font-body);
  color: var(--temple-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Darshan & Timings Box */
.timings-wrapper {
  background: var(--temple-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--temple-border);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 30px;
}

.timings-graphic {
  text-align: center;
}

.timings-graphic img {
  max-height: 240px;
  width: 240px;
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.timings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.timing-box {
  background: var(--temple-ivory);
  padding: 20px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--temple-border);
  transition: all var(--transition-fast);
}

.timing-box:hover {
  background: var(--temple-cream);
  border-color: var(--temple-gold);
}

.timing-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.timing-label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--temple-maroon-dark);
  margin-bottom: 4px;
}

.timing-value {
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--temple-maroon);
}

/* Festival Schedule Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--temple-border);
}

.festival-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--temple-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.festival-table th {
  background: var(--temple-maroon-dark);
  color: var(--temple-ivory);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  padding: 14px 18px;
  text-align: left;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--temple-gold);
}

.festival-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--temple-border);
  color: var(--temple-text);
}

.festival-table tbody tr:nth-child(even) {
  background-color: var(--temple-ivory);
}

.festival-table tbody tr:hover {
  background-color: var(--temple-cream);
}

.festival-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--temple-cream);
  color: var(--temple-maroon);
  border: 1px solid var(--temple-border);
}

/* Video & Map Containers */
.video-card-wrapper {
  background: #000000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--temple-border);
}

.video-container {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--temple-border);
}

.map-wrapper iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

/* Form System & Status Notifications */
.temple-form {
  background: var(--temple-white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--temple-border);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--temple-maroon-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--temple-border);
  border-radius: var(--radius-sm);
  background-color: var(--temple-ivory);
  color: var(--temple-text);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--temple-gold);
  background-color: var(--temple-white);
  box-shadow: 0 0 0 3px rgba(196, 154, 69, 0.15);
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
}

.form-status.status-submitting {
  display: block;
  background-color: var(--temple-cream);
  color: var(--temple-maroon-dark);
  border: 1px solid var(--temple-gold);
}

.form-status.status-success {
  display: block;
  background-color: #E8F5E9;
  color: #1B5E20;
  border: 1px solid #A5D6A7;
}

.form-status.status-error {
  display: block;
  background-color: #FFEBEE;
  color: #B71C1C;
  border: 1px solid #EF9A9A;
}

/* --------------------------------------------------------------------------
   WIDER 3D DEPTH CAROUSEL GALLERY SECTION (100% Complete Image Display)
   -------------------------------------------------------------------------- */
.depth-gallery-section {
  padding-block: clamp(50px, 6vw, 85px);
  background-color: var(--temple-cream);
  overflow: hidden;
  position: relative;
}

.depth-carousel-wrapper {
  position: relative;
  width: min(94vw, 1500px);
  margin-inline: auto;
  height: clamp(480px, 58vh, 580px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1800px;
  margin-top: 10px;
}

.depth-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.depth-card {
  position: absolute;
  width: clamp(260px, 28vw, 390px);
  height: clamp(320px, 44vh, 430px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--temple-gold);
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.55s ease, filter 0.55s ease;
  cursor: pointer;
  user-select: none;
  background: linear-gradient(145deg, #351318, #6A1F2B);
}

/* Blurred backdrop for unused space */
.depth-card-backdrop {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  filter: blur(22px) brightness(0.48);
  transform: scale(1.12);
  opacity: 0.72;
  pointer-events: none;
}

/* 100% Complete original image without cropping or stretching */
.depth-card-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.depth-card-caption {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(20, 10, 12, 0.92) 0%, rgba(20, 10, 12, 0) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.depth-card.active .depth-card-caption {
  transform: translateY(0);
}

/* Depth Controls & Dots */
.depth-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.depth-btn {
  background: var(--temple-maroon);
  color: #FFFFFF;
  border: 1px solid var(--temple-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.depth-btn:hover {
  background: var(--temple-maroon-dark);
  color: var(--temple-gold-soft);
  transform: scale(1.08);
}

.depth-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.depth-indicators {
  display: flex;
  gap: 8px;
}

.depth-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(106, 31, 43, 0.3);
  border: 1px solid var(--temple-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.depth-dot.active {
  background: var(--temple-maroon);
  width: 24px;
  border-radius: 12px;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--temple-footer);
  color: var(--temple-ivory);
  padding: 64px 0 0 0;
  border-top: 3px solid var(--temple-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 44px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo {
  height: 44px;
  width: auto;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #FFFFFF;
  font-weight: 600;
}

.footer-brand-title span {
  color: var(--temple-gold-soft);
}

.footer-desc {
  font-family: var(--font-body);
  color: #C0B4AC;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--temple-gold-soft);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #D6CCC4;
  font-family: var(--font-body);
  font-size: 0.925rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--temple-gold-soft);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #D6CCC4;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--temple-gold-soft);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  background-color: #23090E;
  padding: 18px 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #A0948C;
  border-top: 1px solid rgba(229, 216, 196, 0.1);
}

/* --------------------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .timings-wrapper {
    grid-template-columns: 1fr;
  }

  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.8rem;
    height: auto;
    min-height: 70px;
    padding-block: 8px;
  }

  .top-info {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 18px;
    row-gap: 6px;
  }

  .navbar {
    height: 70px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--temple-ivory);
    flex-direction: column;
    padding: 16px 20px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    border-bottom: 3px solid var(--temple-gold);
    display: none;
    gap: 6px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-slider-wrapper {
    height: 540px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-indicators {
    bottom: 18px;
  }

  .map-wrapper iframe {
    min-height: 320px;
  }

  .timings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .top-bar .container {
    width: min(100% - 24px, 1240px);
  }

  .top-info {
    justify-content: flex-start;
    gap: 6px;
  }

  .top-info-item {
    flex-basis: 100%;
  }

  .top-info-item a {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .temple-form {
    padding: 24px 18px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .depth-card {
    width: min(76vw, 280px);
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
