:root {
  --bg-color: #1b0500;
  --hero-text: #ffffff;
  --accent-blue: #021557;
  --btn-bg: #0b1f5b;
  --btn-text: #ffffff;

  --heading-color: #021557;
  --para-color: #000000;
  --brand-primary: #0b1f5b;
  --brand-on-primary: #ffffff;

  --bs-primary: #0b1f5b;
  --bs-primary-rgb: 11, 31, 91;
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f6f5f1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Puja Flame Effect */
.puja-flame-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.puja-flame {
  position: absolute;
  width: 40px;
  height: 60px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(to top, #ff6b00 0%, #ff8c00 30%, #ffa500 60%, #ffd700 100%);
  box-shadow: 
    0 0 20px rgba(255, 107, 0, 0.8),
    0 0 40px rgba(255, 140, 0, 0.6),
    0 0 60px rgba(255, 215, 0, 0.4),
    inset 0 -10px 20px rgba(255, 107, 0, 0.5);
  animation: flameFlicker 1.5s ease-in-out infinite;
  opacity: 0.9;
}

.puja-flame.flame-1 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation-delay: 0s;
}

.puja-flame.flame-2 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8) translateX(-25px);
  animation-delay: 0.3s;
  opacity: 0.7;
}

.puja-flame.flame-3 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8) translateX(25px);
  animation-delay: 0.6s;
  opacity: 0.7;
}

@keyframes flameFlicker {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1) rotate(-2deg);
    opacity: 0.9;
  }
  25% {
    transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.95) rotate(-1deg);
    opacity: 0.85;
  }
  75% {
    transform: translate(-50%, -50%) scale(1.05) rotate(1deg);
    opacity: 0.95;
  }
}

.loader-text {
  margin-top: 20px;
  color: #0b1f5b;
  font-family: 'Marcellus SC', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  animation: textGlow 3s ease-in-out infinite;
  text-shadow: 0 2px 10px rgba(11, 31, 91, 0.2);
}

.loader-subtext {
  margin-top: 15px;
  color: #ff8c00;
  font-size: 48px;
  font-weight: 400;
  animation: omPulse 2s ease-in-out infinite;
  text-shadow: 
    0 0 20px rgba(255, 140, 0, 0.6),
    0 0 40px rgba(255, 140, 0, 0.4);
}

@keyframes textGlow {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes omPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Prevent body scroll when loader is visible */
body.loading {
  overflow: hidden;
}

/* Mobile loader styles */
@media (max-width: 768px) {
  .puja-flame-container {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
  }
  
  .puja-flame {
    width: 35px;
    height: 50px;
  }
  
  .puja-flame.flame-2 {
    transform: translate(-50%, -50%) scale(0.8) translateX(-20px);
  }
  
  .puja-flame.flame-3 {
    transform: translate(-50%, -50%) scale(0.8) translateX(20px);
  }
  
  .loader-text {
    font-size: 18px;
    margin-top: 15px;
    letter-spacing: 0.1em;
  }
  
  .loader-subtext {
    font-size: 36px;
    margin-top: 12px;
  }
}
section.book {
    margin-top: 20px;
}

/* Quick Booking CTA Section */
.quick-booking-cta {
  padding: 40px 0;
  background: linear-gradient(135deg, #021557 0%, #0a8f52 100%);
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.quick-booking-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.quick-booking-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.quick-booking-title {
  font-family: "Marcellus SC", serif;
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.2;
}

.quick-booking-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

.quick-booking-btn {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  background: #0b1f5b;
  color: #ffffff;
  border: none;
  border-radius: 0;
  position: relative;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  filter: drop-shadow(0 0 0 2px #ffffff);
  display: inline-flex;
  align-items: center;
}

.quick-booking-btn::after {
  display: none;
}

.quick-booking-btn::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  pointer-events: none;
  z-index: 1;
}

.quick-booking-btn:hover {
  background: #0b1f5b;
  color: #ffffff;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  /* Better spacing for mobile */
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Trust Badges Mobile - Compact Single Row */
  .trust-badges-section {
    padding: 30px 0;
  }
  
  .trust-badges-mobile-scroll {
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  
  .trust-badges-scroll-container {
    display: flex;
    gap: 6px;
    padding: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  
  .trust-badges-scroll-container .trust-badge-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 6px;
    margin-bottom: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .trust-badges-scroll-container .trust-badge-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
    background: rgba(2, 21, 87, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .trust-badges-scroll-container .trust-badge-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
  }
  
  .trust-badges-scroll-container .trust-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }
  
  .trust-badges-scroll-container .trust-badge-text strong {
    font-size: 10px;
    line-height: 1.2;
    display: block;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--heading-color);
  }
  
  .trust-badges-scroll-container .trust-badge-text span {
    font-size: 8px;
    line-height: 1.2;
    color: #666;
    font-weight: 400;
  }
  
  /* Quick Booking CTA Mobile */
  .quick-booking-cta {
    padding: 30px 0;
    margin: 20px 0;
  }
  
  .quick-booking-card {
    padding: 0 15px;
  }
  
  .quick-booking-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 12px;
  }
  
  .quick-booking-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .quick-booking-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
  }
  
  /* Rituals Section Mobile */
  .rituals {
    padding: 30px 0;
  }
  
  .rituals-head {
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .rituals-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  
  .rituals-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .ritual-card {
    margin-bottom: 20px;
  }
  
  .ritual-name {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  
  .ritual-subname {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .ritual-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .ritual-btn {
    padding: 14px 24px;
    font-size: 15px;
    max-width: 100%;
  }
  
  /* About Founder Mobile */
  .about-founder {
    padding: 10px 15px;
  }
  
  .about-founder-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .about-founder-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  /* USP Section Mobile */
  .usp {
    padding: 30px 15px;
  }
  
  .usp-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .usp-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .usp-card-title {
    font-size: 18px;
    line-height: 1.3;
  }
  
  .usp-card-paper p {
    font-size: 16px;
    padding: 25px;
    line-height: 1.6;
  }
  
  /* Process Section Mobile */
  .process {
    padding: 30px 15px;
  }
  
  .process-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .process-step {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
  }
  
  .process-step-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .process-step-text {
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Special Offer Mobile */
  .special-offer-banner {
    padding: 25px 0;
    margin: 20px 0;
  }
  
  .special-offer-card {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .special-offer-title {
    font-size: 26px;
    line-height: 1.3;
  }
  
  .special-offer-text {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .special-offer-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  
  /* Instagram Feed Mobile */
  .ig-feed {
    padding: 30px 15px;
  }
  
  .ig-title {
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
  }
  
  .ig-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .ig-follow {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }
  
  /* Better touch targets */
  .btn, .ritual-btn, a.btn {
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
  }
  
  /* Improved spacing */
  section {
    margin-bottom: 10px;
  }
  
  /* Better image handling */
  img.img-fluid {
    margin: 0px 0;
  }
  
  /* WhatsApp and Back to Top buttons - Hidden on mobile */
  .whatsapp-float {
    display: none !important;
  }

  .back-to-top {
    display: none !important;
  }

  .rituals-sticky-btn {
    display: none !important;
  }

  .whatsapp-tooltip {
    display: none;
  }
  
  /* Mobile Bottom Navigation Bar */
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    min-width: 60px;
    transition: color 0.2s ease;
    position: relative;
  }

  .bottom-nav-item svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    stroke-width: 2;
  }

  .bottom-nav-item span {
    line-height: 1.2;
    text-align: center;
  }

  .bottom-nav-item:hover,
  .bottom-nav-item:focus {
    color: #0b1f5b;
    text-decoration: none;
  }

  .bottom-nav-item.active {
    color: #0b1f5b;
  }

  .bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #0b1f5b;
    border-radius: 0 0 3px 3px;
  }

  /* Add padding to main content on mobile to prevent content from being hidden behind bottom nav */
  main {
    padding-bottom: 10px;
  }
  
  /* Add padding to footer on mobile */
  footer {
    padding-bottom: 120px;
  }
  
  /* Add extra padding to footer bottom bar on mobile */
  .footer-bottom-bar {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  
  /* Add margin to last section on mobile for extra space */
  section:last-child {
    margin-bottom: 10px;
  }
  
  /* Hero section mobile */
  .hero-title {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Better form inputs on mobile */
  .form-control, .form-select {
    font-size: 16px;
    padding: 12px 16px;
    min-height: 48px;
  }
  
  /* Improved readability */
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Reduce all heading font sizes on mobile */
  h1, .h1 {
    font-size: 35px !important;
    line-height: 1.3;
  }
  
  h2, .h2 {
    font-size: 24px !important;
    line-height: 1.3;
  }
  
  h3, .h3 {
    font-size: 20px !important;
    line-height: 1.3;
  }
  
  h4, .h4 {
    font-size: 18px !important;
    line-height: 1.3;
  }
  
  h5, .h5 {
    font-size: 16px !important;
    line-height: 1.3;
  }
  
  h6, .h6 {
    font-size: 14px !important;
    line-height: 1.3;
  }
  
  /* Reduce specific title classes */
  .rituals-title,
  .about-founder-title,
  .usp-title,
  .process-title,
  .ig-title,
  .contact-title,
  .section-title {
    font-size: 35px !important;
  }
  
  .hero-title {
    font-size: 35px !important;
  }
  
  .quick-booking-title {
    font-size: 22px !important;
  }
  
  .ritual-name {
    font-size:25px !important;
  }
  
  .process-step-title {
    font-size: 16px !important;
  }
  
  .usp-card-title {
    font-size: 18px !important;
  }
  
  /* Remove excessive padding */
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .row > * {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Process section mobile improvements */
  .process-title {
    text-align: center;
  }
  
  .process-step {
    border-left: 4px solid var(--brand-primary);
  }
  
  /* Better carousel on mobile */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    opacity: 0.8;
  }
  
  /* Improve ritual meta items on mobile */
  .ritual-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .ritual-meta-item {
    font-size: 14px;
  }
  
  /* Better spacing for sections */
  .rituals-head {
    text-align: center;
  }
  
  .rituals-subtitle {
    text-align: center;
  }
  
  /* Improve USP cards on mobile */
  .usp-card {
    min-width: 85%;
  }
  
  /* Better image spacing */
  .founder-image-container {
    max-width: 100%;
  }
  
  /* Improve button spacing */
  .ritual-actions {
    margin-top: 20px;
  }
  
  /* Better container padding */
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Improve special offer badge */
  .special-offer-badge {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  /* Better trust badge grid on mobile */
  .trust-badges-section .row {
    gap: 15px;
  }
  
  /* Improve hero content on mobile */
  .hero-inner {
    padding: 20px 15px;
  }
  
  /* Better text wrapping */
  .quick-booking-title,
  .special-offer-title {
    word-wrap: break-word;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Better carousel indicators on mobile */
  .carousel-indicators {
    margin-bottom: 10px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
  
  /* Improve navigation on mobile */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  /* Better form elements - prevents zoom on iOS */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important;
  }
  
  /* Improve touch targets */
  a, button, .btn {
    -webkit-tap-highlight-color: rgba(2, 21, 87, 0.2);
  }
  
  /* Better image loading */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Improve readability */
  p, li, span {
    font-size: 16px;
    line-height: 1.7;
  }
  
  /* Better section spacing */
  section + section {
    margin-top: 0;
  }
  
  /* Improve card spacing */
  .ritual-card,
  .testimonial-card,
  .city-card {
    margin-bottom: 25px;
  }
  
  /* Better button groups */
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-group .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  /* Improve process section */
  .process-title {
    text-align: center;
  }
  
  .process-step {
    border-left: 4px solid var(--brand-primary);
  }
  
  /* Better carousel on mobile */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    opacity: 0.8;
  }
  
  /* Improve ritual meta items on mobile */
  .ritual-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .ritual-meta-item {
    font-size: 14px;
  }
  
  /* Better spacing for sections */
  .rituals-head {
    text-align: center;
  }
  
  .rituals-subtitle {
    text-align: center;
  }
  
  /* Improve USP cards on mobile */
  .usp-card {
    min-width: 85%;
  }
  
  /* Better image spacing */
  .founder-image-container {
    max-width: 100%;
  }
  
  /* Improve button spacing */
  .ritual-actions {
    margin-top: 20px;
  }
  
  /* Better container padding */
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Improve special offer badge */
  .special-offer-badge {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  /* Better trust badge grid on mobile */
  .trust-badges-section .row {
    gap: 15px;
  }
  
  /* Improve hero content on mobile */
  .hero-inner {
    padding: 20px 15px;
  }
}

/* Trust Badges Section */
.trust-badges-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px 0;
  border-top: 1px solid rgba(2, 21, 87, 0.1);
  border-bottom: 1px solid rgba(2, 21, 87, 0.1);
  position: relative;
}

.trust-badges-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
}

.trust-badges-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: default;
}

.trust-badge-item:hover {
  transform: translateY(-5px);
}

.trust-badge-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--brand-primary);
  background: rgba(2, 21, 87, 0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.trust-badge-item:hover .trust-badge-icon {
  background: var(--brand-primary);
  color: #ffffff;
  transform: scale(1.1);
}

.trust-badge-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-badge-text strong {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--heading-color);
  line-height: 1.3;
  display: block;
}

.trust-badge-text span {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  color: #666;
  font-weight: 400;
  line-height: 1.3;
}

/* City Puja Pages */
.city-puja-hero {
  background: linear-gradient(135deg, #021557 0%, #0a8f52 100%);
  padding: 50px 0;
  color: #ffffff;
  text-align: center;
}

.city-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.city-hero-title {
  font-family: "Marcellus SC", serif;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.2;
}

.city-hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.popular-cities {
  padding: 60px 0;
  background: #ffffff;
}

.section-title {
  font-family: "Marcellus SC", serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--heading-color);
  text-align: center;
  margin: 0 0 40px;
}

.city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  text-decoration: none;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.city-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(2, 21, 87, 0.15);
  color: var(--brand-primary);
}

.city-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 21, 87, 0.08);
  border-radius: 50%;
  margin-bottom: 16px;
  color: var(--brand-primary);
  transition: all 0.3s ease;
}

.city-card:hover .city-card-icon {
  background: var(--brand-primary);
  color: #ffffff;
}

.city-card-name {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #333;
}

/* Sticky Rituals Button (Right side) */
.rituals-sticky-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 200px;
  background: linear-gradient(135deg, #0b1f5b 0%, #1a3a7a 100%);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -4px 0 15px rgba(11, 31, 91, 0.3);
  z-index: 998;
  transition: all 0.3s ease;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 15px 8px;
}

.rituals-sticky-btn:hover {
  background: linear-gradient(135deg, #1a3a7a 0%, #0b1f5b 100%);
  transform: translateY(-50%) translateX(-5px);
  box-shadow: -6px 0 20px rgba(11, 31, 91, 0.5);
  color: #ffffff;
  text-decoration: none;
}

.rituals-sticky-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 90px;
  right: 20px;
  background: var(--brand-primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(2, 21, 87, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #0a8f52;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(2, 21, 87, 0.4);
}

.back-to-top.show {
  display: flex;
}

/* Rituals Search and Filter */
.rituals-search-filter {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.rituals-search-filter .form-label {
  color: var(--heading-color);
  margin-bottom: 8px;
}

.rituals-search-filter .form-control,
.rituals-search-filter .form-select {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  padding: 10px 14px;
}

.rituals-search-filter .form-control:focus,
.rituals-search-filter .form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(2, 21, 87, 0.1);
}

/* Statistics Counter Section */
.stats-counter-section {
  background: linear-gradient(135deg, #021557 0%, #0a8f52 100%);
  padding: 50px 0;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.stats-counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.stats-counter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.stat-counter-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-counter-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-counter-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
}

.stat-counter-number {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  font-family: "Marcellus SC", serif;
}

.stat-counter-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 50px 0;
  margin: 30px 0;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-title {
  font-family: "Marcellus SC", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--heading-color);
  margin: 0 0 15px;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.testimonial-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e9ecef;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(2, 21, 87, 0.15);
  border-color: var(--brand-primary);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #ffc107;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 25px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.testimonial-author-location {
  font-size: 14px;
  color: #666;
}

/* Special Offer Banner */
.special-offer-banner {
  padding: 30px 0;
  margin: 30px 0;
}

.special-offer-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(238, 90, 111, 0.3);
  position: relative;
  overflow: hidden;
}

.special-offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.special-offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.special-offer-title {
  font-family: "Marcellus SC", serif;
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 15px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.special-offer-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.special-offer-text strong {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.special-offer-btn {
  background: #ffffff;
  color: #ee5a6f;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
}

.special-offer-btn:hover {
  background: #f6e5c1;
  color: #ee5a6f;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .stats-counter-section {
    padding: 30px 0;
    margin: 20px 0;
  }
  
  .stat-counter-item {
    padding: 25px 15px;
  }
  
  .stat-counter-number {
    font-size: 36px;
  }
  
  .stat-counter-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 15px;
  }
  
  .testimonials-section {
    padding: 30px 0;
    margin: 20px 0;
  }
  
  .testimonials-title {
    font-size: 32px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .special-offer-banner {
    padding: 40px 0;
    margin: 40px 0;
  }
  
  .special-offer-card {
    padding: 30px 20px;
  }
  
  .special-offer-title {
    font-size: 28px;
  }
  
  .special-offer-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .special-offer-btn {
    width: 100%;
    justify-content: center;
  }
  
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 15px;
    right: 15px;
  }
  
  .back-to-top {
    width: 46px;
    height: 46px;
    bottom: 80px;
    right: 15px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
  
  .rituals-search-filter {
    padding: 20px;
  }
  
  .city-puja-hero {
    padding: 60px 0;
  }
  
  .city-hero-title {
    font-size: 36px;
  }
  
  .city-hero-subtitle {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .trust-badges-section {
    padding: 40px 0;
  }
  
  .trust-badge-item {
    padding: 15px 10px;
  }
  
  .trust-badge-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }
  
  .trust-badge-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .trust-badge-text strong {
    font-size: 13px;
  }
  
  .trust-badge-text span {
    font-size: 11px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: white;
  color: var(--para-color);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Marcellus SC", serif;
  font-weight: 400;
  color: var(--heading-color);
}

p, li, span, label, small, .text-muted {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: black;
}

.hero p,
.hero li,
.hero span,
.hero label,
.hero small,
.hero .text-muted {
  color: var(--hero-text);
}

a {
  color: var(--heading-color);
}

a:hover {
  color: var(--heading-color);
}
 
.site-header {
 
  top: 0;
  left: 0;
  right: 0;
  height: 73px;
  z-index: 10;
  background-color: #f6e5c1;
  padding: 0px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: visible;
}

.site-brand {
  padding: 0;
  margin: 0;
}

.site-brand-box {
  background-color: #021557;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  position: relative;
  top: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.site-brand-box img {
  display: block;
  width: 86px;
  height: auto;
}

.site-nav .nav-link {
  color: #0b1f5b;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 14px;
}
.w-100 {
    width: 100% !important;
    margin: 0px 0px;
 
}
.site-nav {
  width: 100%;
}

.site-nav .nav-link:hover {
  color: #0b1f5b;
  text-decoration: none;
}
.dropdown-toggle {
    white-space: nowrap;
    background: #f6e5c1 !important;
}
.site-header .navbar-toggler {
  border: 1px solid rgba(11, 31, 91, 0.25);
}

.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(11, 31, 91, 0.12);
}

@media (max-width: 991px) {
  .site-header {
    position: relative;
  }

  .site-header .container {
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
  }

  .site-header .navbar-brand {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 0;
  }

  .site-header .d-lg-none:first-child,
  .site-header .mobile-login-link {
    flex: 0 0 auto;
    z-index: 2;
    min-width: 80px;
    display: block !important;
  }

  .site-header .d-flex.ms-auto {
    flex: 0 0 auto;
    z-index: 2;
    min-width: 44px;
  }

  .site-header .navbar-toggler {
    border: 1px solid rgba(11, 31, 91, 0.25);
    padding: 4px 8px;
  }

  .site-brand-box {
    top: 0;
  }
}

@media (min-width: 992px) {
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .site-header .navbar-brand {
    margin-right: 0;
    margin-left: 0;
    position: static;
    transform: none;
    order: 1;
    flex: 0 0 auto;
  }

  /* Ensure mobile login link is completely hidden on desktop */
  .site-header .mobile-login-link,
  .site-header .container > .d-lg-none:first-child,
  .site-header .container > .mobile-login-link,
  .site-header .container > div.d-lg-none {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    height: 0 !important;
    overflow: hidden !important;
    flex: 0 0 0 !important;
    order: 0;
  }

  /* Desktop right side elements */
  .site-header .d-flex.ms-auto {
    order: 3;
    margin-left: auto;
  }

  /* Desktop navigation - center */
  .site-header .navbar-collapse {
    order: 2;
    flex: 1 1 auto;
    display: flex !important;
    justify-content: center;
  }

  .site-header .site-nav {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  /* Offcanvas mobile menu styling */
  .offcanvas {
    background-color: #f6e5c1 !important;
    z-index: 1050 !important;
  }

  .offcanvas.show {
    visibility: visible !important;
  }

  .offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
  }

  .offcanvas-title {
    font-weight: 600;
    color: #0b1f5b;
    font-size: 20px;
  }

  .offcanvas-body {
    padding: 20px;
  }

  /* Ensure navbar toggler is visible and clickable */
  .navbar-toggler {
    border: 1px solid rgba(11, 31, 91, 0.25);
    padding: 6px 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1051 !important;
    position: relative;
    cursor: pointer;
    pointer-events: auto !important;
    background-color: transparent;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(11, 31, 91, 0.1);
  }
  
  .navbar-toggler * {
    pointer-events: none;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(11, 31, 91, 0.25);
    outline: none;
  }

  .navbar-toggler:active {
    opacity: 0.8;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
  }

  .site-nav {
    width: 100%;
    align-items: stretch;
  }

  .site-nav .nav-link {
    padding: 14px 16px;
    text-align: left;
    border-radius: 8px;
    color: #0b1f5b;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 4px;
    transition: background-color 0.2s ease;
  }

  .site-nav .nav-link:hover {
    background-color: rgba(11, 31, 91, 0.08);
    color: #0b1f5b;
  }

  .offcanvas-body .dropdown {
    margin-top: 20px;
  }

  .offcanvas-body .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  /* Ensure offcanvas backdrop works */
  .offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.5) !important;
    z-index: 1040 !important;
  }

  /* Prevent body scroll when offcanvas is open */
  body.offcanvas-open {
    overflow: hidden !important;
  }
}

main {
  min-height: 100vh;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="fade"].is-revealed {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.ritual-card,
.package-card,
.contact-form-card,
.contact-info,
.ig-tile,
.usp-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.ritual-card:hover,
.package-card:hover,
.contact-form-card:hover,
.contact-info:hover,
.ig-tile:hover,
.usp-card:hover {
  transform: translateY(-4px);
 
}

.hero {
  position: relative;
  min-height: 75vh;
  padding: 0px;
  display: flex;
  align-items: center;
   
  background-size: cover;
  background-position: center center;
  color: var(--hero-text);
}

.hero-banner-link {
  display: block;
  text-decoration: none;
}

.hero.hero-banner {
  min-height: calc(100svh - 110px);
  height: calc(100svh - 110px);
  padding: 0;
  align-items: stretch;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.hero-banner-link .hero.hero-banner {
  width: 100%;
}

.hero.hero-banner::after {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(to right, #004a9f, #ffffff);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

/* Hide carousel arrow controls */
#homeHeroCarouselDesktop .carousel-control-prev,
#homeHeroCarouselDesktop .carousel-control-next,
#homeHeroCarouselMobile .carousel-control-prev,
#homeHeroCarouselMobile .carousel-control-next {
  display: none !important;
}

/* Hero Carousel Indicators (Dots) - Sri Mandir Style */
.hero-carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  z-index: 10;
  list-style: none;
}

.hero-carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
  position: relative;
  overflow: visible;
  filter: blur(2px);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.hero-carousel-indicators button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  filter: blur(3px);
  opacity: 0.8;
}

.hero-carousel-indicators button:hover {
  opacity: 0.8;
  transform: scale(1.2);
  filter: blur(2.5px);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.hero-carousel-indicators button.active {
  width: 12px;
  height: 12px;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  opacity: 1;
  transform: scale(1);
  filter: blur(2.5px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 25px rgba(255, 255, 255, 0.4);
}

.hero-carousel-indicators button.active::before {
  background-color: rgba(255, 255, 255, 0.9);
  filter: blur(4px);
  opacity: 1;
  width: 120%;
  height: 120%;
}

.hero-carousel-indicators button.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  filter: blur(4px);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.5;
  }
}


@media (max-width: 768px) {
  .hero-carousel-indicators {
    bottom: 20px;
    gap: 10px;
  }
  
  .hero-carousel-indicators button {
    width: 8px;
    height: 8px;
    filter: blur(1.5px);
  }
  
  .hero-carousel-indicators button.active {
    width: 10px;
    height: 10px;
    filter: blur(2px);
  }
  
  .hero-carousel-indicators button.active::after {
    width: 14px;
    height: 14px;
  }
}

.hero-title {
  margin: 0 0 18px;
  font-family: "Marcellus SC", serif;
  font-weight: 400;
  color: var(--heading-color);
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.25;
}

.hero-line {
  display: block;
}

.hero-subtitle {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #0b1f5b;
  color: #ffffff;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}

.btn-primary::after {
  display: none;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  pointer-events: none;
  z-index: 1;
}

.btn-primary:hover {
  background: #0b1f5b;
  color: #ffffff;
}

.btn-primary:focus,
.btn-primary:active {
  background-color: #0b1f5b !important;
  border-color: #0b1f5b !important;
  color: #ffffff !important;
}

.btn-primary:disabled {
  background-color: #0b1f5b;
  border-color: #0b1f5b;
  color: #ffffff;
  opacity: .65;
}

body.admin .btn.btn-primary,
body.admin .btn-primary {
  background-color: #021557 !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

body.admin .btn.btn-primary:hover,
body.admin .btn-primary:hover,
body.admin .btn.btn-primary:focus,
body.admin .btn-primary:focus,
body.admin .btn.btn-primary:active,
body.admin .btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
}

body.admin aside.bg-white {
  background-color: var(--brand-primary) !important;
  border-right-color: rgba(255, 255, 255, 0.15) !important;
}

body.admin aside .border-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

body.admin aside,
body.admin aside a,
body.admin aside .text-dark,
body.admin aside .text-muted {
  color: #ffffff !important;
}

body.admin aside .small.text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.admin aside a.bg-primary {
  background-color: rgba(255, 255, 255, 0.18) !important;
}

body.admin .flex-grow-1 > .bg-white.border-bottom {
  background-color: var(--brand-primary) !important;
  border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

body.admin .flex-grow-1 > .bg-white.border-bottom,
body.admin .flex-grow-1 > .bg-white.border-bottom * {
  color: #ffffff !important;
}

body.admin .flex-grow-1 > .bg-white.border-bottom .text-muted,
body.admin .flex-grow-1 > .bg-white.border-bottom .small.text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.admin .btn.btn-outline-primary,
body.admin .btn-outline-primary {
  background-color: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  color: #ffffff !important;
}

body.admin .btn.btn-outline-primary:hover,
body.admin .btn-outline-primary:hover,
body.admin .btn.btn-outline-primary:focus,
body.admin .btn-outline-primary:focus,
body.admin .btn.btn-outline-primary:active,
body.admin .btn-outline-primary:active {
  background-color: #021557 !important;
  border-color: #021557 !important;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 80px 6vw 60px;
    align-items: flex-end;
  }

  .hero.hero-banner {
    height: 450px;
    min-height: 450px;
    padding: 0;
    align-items: stretch;
    min-height: calc(31svh - 161px);
  }

  .hero-title {
    font-size: 34px;
    letter-spacing: 0.08em;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}

/* About Founder Section */
.about-founder {
  background-color: #ffffff;
  color: #333;
  padding: 50px 5vw;
}

.about-founder-title {
  font-family: "Marcellus SC", serif;
  font-size: 50px;
  font-weight: 400;
  color: #021557;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.about-founder-line {
  display: block;
  color: #021557;
}

@media (max-width: 768px) {
  .about-founder-title {
    font-size: 40px;
  }
}

.about-founder-content p {
    color:black;
    font-size: 18px;
}

 .about-founder-visual {
   display: flex;
   justify-content: center;
 }

.founder-image-container {
  margin: 0;
  padding: 0;
  text-align: center;
  width: min(360px, 100%);
}

.founder-image-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 16px;
 
  display: block;
  margin: 0 auto;
}

.founder-caption {
  background-color: #fff3e0;
  color: #5d4037;
  padding: 12px 16px;
  margin: -20px auto 0;
  display: inline-block;
  border-radius: 12px;
  font-size: 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.founder-caption strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

@media (max-width: 900px) {
  .about-founder {
    padding: 30px 3vw;
  }

  .about-founder-visual {
    order: -1; /* Move image to the top on mobile */
    margin-bottom: 5px;
  }
}

/* What Sets Us Apart */
.usp {
  background-color: #ffffff;
  color: #1b1b1b;
  padding: 50px 2vw;
}

.usp-inner {
 
  margin: 0 auto;
}

.usp-title {
 margin: 0;
    text-align: center;
    font-family: 'Marcellus SC';
    font-size: 50px;
    font-weight: 500;
  color: var(--accent-blue);
}

.usp-subtitle {
  margin: 10px auto 36px;
  max-width: 720px;
  text-align: center;
  color: black;
  line-height: 1.6;
  font-size: 18px;
}

.usp-slider {
  position: relative;
}

.usp-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.usp-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.usp-card-title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent-blue);
  line-height: 1.15;
}

.usp-card-arrow {
  width:70%;
  height: auto;
  display: block;
  margin: 0 auto 8px;
  opacity: 0.75;
}

button.usp-nav.usp-nav-next {
    display: none;
}
button.usp-nav.usp-nav-prev {
    display: none;
}
.usp-card-paper {
 width: 100%;
    margin: 0 auto;
 
    background-image: url(../images/pot.png);
 

        background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 12px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-card-paper p {
margin: 0;
    font-size: 18px;
        padding: 35px;
    color: black;
    text-align: center;
}

.usp-nav {
  display: none;
}

@media (max-width: 900px) {
  .usp {
    padding: 30px 0px 0px 0px;
  }

  .usp-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .usp-track::-webkit-scrollbar {
    display: none;
  }

  .usp-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .usp-card-paper {
    width: 100%;
    max-width: 340px;
  }

  .usp-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 2;
  }

  .usp-nav img {
    width: 18px;
    height: auto;
    display: block;
  }

  .usp-nav-prev {
    left: -6px;
  }

  .usp-nav-prev img {
    transform: rotate(180deg);
  }

  .usp-nav-next {
    right: -6px;
  }
}

/* From Sankalpa to Blessings */
.process {
  background-color: #ffffff;
  padding: 50px 5vw;
}

 

.process-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
   
}

.process-title {
  margin: 0 0 18px;

    font-family: 'Marcellus SC';
  font-size: 50px;
  font-weight: 500;
  color: var(--accent-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-step {
  margin-bottom: 12px;
}

.process-step-title {
  font-size: 23px;
  font-weight: 700;
  color: #1f2f57;
}

.process-step-text {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.6;
  color:black;
  max-width: 520px;
}

@media (max-width: 900px) {
  .process {
    padding: 30px 3vw;
  }

 

  .process-media img {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Sankalpa Process Section */
.sankalpa-process-section {
  background-color: #ffffff;
  padding: 30px 0;
}

/* Desktop: Sankalpa image centered at 70% width */
.sankalpa-desktop {
  padding: 30px 0;
}

.sankalpa-image {
  width: 70%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Mobile: Step-by-step process */
.sankalpa-mobile {
  padding: 30px 15px;
}

.sankalpa-mobile-title {
  font-family: 'Marcellus SC', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent-blue);
  text-align: center;
  margin: 0 0 30px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sankalpa-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sankalpa-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.sankalpa-step-badge {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6e5c1;
  border: 2px solid #d4a574;
  font-family: 'Marcellus SC', serif;
  font-size: 14px;
  font-weight: 600;
  color: #1f2f57;
  text-align: center;
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  position: relative;
}

.sankalpa-step-content {
  flex: 1;
}

.sankalpa-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2f57;
  margin: 0 0 8px;
  line-height: 1.3;
}

.sankalpa-step-text {
  font-size: 15px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sankalpa-mobile {
    padding: 25px 15px;
  }
  
  .sankalpa-mobile-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .sankalpa-step {
    padding: 18px;
    gap: 12px;
  }
  
  .sankalpa-step-badge {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }
  
  .sankalpa-step-title {
    font-size: 16px;
  }
  
  .sankalpa-step-text {
    font-size: 14px;
  }
}

/* Videos Section */
.videos-section {
  background-color: #ffffff;
  padding: 50px 5vw;
}

.videos-title {
  margin: 0 0 30px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--accent-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.videos-carousel {
  position: relative;
  padding-bottom: 50px;
}

.videos-carousel .carousel-inner {
  padding: 0;
}

.videos-carousel .carousel-item {
  transition: transform 0.8s ease-in-out;
}

.video-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  overflow: hidden;
}

.video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-title {
  margin: 20px 20px 10px;
  font-size: 18px;
  font-weight: 700;
  color: #0b1f5b;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.4;
}

.video-description {
  margin: 0 20px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}

/* Carousel Indicators */
.videos-carousel-indicators {
  position: absolute;
  bottom: -40px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.videos-carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000000;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.videos-carousel-indicators button.active {
  background-color: #0b1f5b;
  transform: scale(1.2);
}

.videos-carousel-indicators button:hover {
  background-color: #0b1f5b;
}

@media (max-width: 900px) {
  .videos-section {
    padding: 30px 3vw;
  }

  .videos-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .video-title {
    font-size: 16px;
  }

  .video-description {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .videos-carousel-indicators {
    bottom: -30px;
  }
  
  .videos-carousel-indicators button {
    width: 8px;
    height: 8px;
  }
}

/* Instagram Feed */
.ig-feed {
  background-color: #ffffff;
  padding: 50px 5vw;
}

.ig-title {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--accent-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}

.ig-feed .d-flex.justify-content-between {
  align-items: center;
  justify-content: space-between;
}

.ig-feed .d-flex.justify-content-between > div:first-child {
  width: auto;
  text-align: left;
}

@media (min-width: 768px) {
  .ig-feed .d-flex.justify-content-between {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .ig-feed .d-flex.justify-content-between > div:first-child {
    width: auto;
    text-align: left;
  }
}

.ig-subtitle {
  margin: 8px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.ig-follow {
  border-radius: 999px;
  padding-inline: 18px;
}

.ig-tile {
  width: 100%;
  min-height: 300px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 74, 159, 0.08), rgba(255, 132, 0, 0.08));
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ig-tile:hover::after {
  opacity: 1;
}

.ig-tile-placeholder {
  font-size: 12px;
  font-weight: 600;
  color: rgba(31, 47, 87, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ig-embed {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .ig-feed {
    padding: 30px 3vw;
  }

  .ig-tile {
    min-height: 280px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .ig-tile {
    min-height: 320px;
  }
}

@media (min-width: 768px) {
  .ig-tile {
    min-height: 350px;
  }
}

@media (min-width: 992px) {
  .ig-tile {
    min-height: 280px;
  }
}

/* Footer */
.site-footer {
  background-color: #0b1f5b;
  color: rgba(255, 255, 255, 0.9);
  padding: 38px 0 22px;
}

.footer-logo {
  width: 110px;
  height: auto;
  display: block;
}

.footer-copy {
  font-size: 16px;
  color: white;
}

.footer-bottom-bar {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a,
.footer-contact a,
.footer-bottom-links a,
.footer-bottom-links span {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-bottom-links a:hover {
  color: white;
  text-decoration: none;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.icon-outline {
  display: block;
  width: 22px;
  height: 22px;
}

.contact-info .icon-outline {
  width: 40px;
  height: 40px;
}

.icon-social {
  display: block;
  width: 40px;
  height: 40px;
  stroke: #ffffff;
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-social-btn .icon-social {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
}

.footer-contact-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.contact-info-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #021557;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-right: 12px;
}

.contact-info-ico .icon-outline {
  width: 24px;
  height: 24px;
  color: currentColor;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
}

.footer-social-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  color: #ffffff;
}

@media (max-width: 991px) {
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }
}
.p-4 {
    padding: 15px !important;
}
@media (max-width: 768px) {
  footer {
    padding-bottom: 20px !important;
  }
  
  .footer-bottom-bar {
    padding-bottom: 40px !important;
    margin-bottom: 40px !important;
  }
}

/* Rituals Page */
.rituals {
    background-color: #ffffff;
    padding: 50px 0px;
}

.rituals-head {
  text-align: center;
  margin-bottom: 25px;
}

.rituals-title {
  margin: 0;
font-family: 'Marcellus SC';
    font-size: 50px;
  letter-spacing: 0.04em;
  color:#021557;
  text-transform: uppercase;
}

.rituals-subtitle {
color: black;
    font-size: 18px;

}

.ritual-empty {
  border: 1px dashed rgba(11, 31, 91, 0.25);
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  color: rgba(19, 33, 75, 0.7);
}

.ritual-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ritual-media {
  background: #f4f4f4;
}

.ritual-media {
  overflow: hidden;
  height: 240px;
}

.ritual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ritual-media-placeholder {
  width: 100%;
  height: 240px;
  display: grid;
  place-items: center;
  color: rgba(19, 33, 75, 0.5);
}

.ritual-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ritual-name {
font-size: 28px;
font-weight: 500;
    margin: 0;
    color: #021557;
    
    font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ritual-name a {
  font-weight: 500;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ritual-subname {
  margin-top: 6px;
  color: black;
  font-size: 16px;
}

.ritual-desc {
  margin: 12px 0 0;
  font-size: 16px;
   color: black;
}

.ritual-meta {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  font-size: 16px;
  color: black;
}

.ritual-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ritual-meta-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.ritual-meta-ico .icon-outline {
  width: 20px;
  height: 20px;
}

.ritual-actions {
  margin-top: auto;
  padding-top: 16px;
}

.ritual-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  padding: 14px 32px;
  background: #0b1f5b;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  font-weight: 700;
  font-size: 16px;
  border: none;
  font-weight: 700;
  font-size: 13px;
  position: relative;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}

.ritual-btn::after {
  display: none;
}

.ritual-btn::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  pointer-events: none;
  z-index: 1;
}

.ritual-btn:hover {
  background: #0b1f5b;
  color: #ffffff;
}

.ritual-btn:focus {
  outline: none;
}

.ritual-link {
  color: inherit;
  text-decoration: none;
}

.ritual-link:hover {
  text-decoration: none;
}

/* Completed/Previous Rituals Section */
.rituals-completed {
  opacity: 1;
}

.ritual-card-completed {
  opacity: 0.85;
  position: relative;
}

.ritual-card-completed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.02);
  pointer-events: none;
  z-index: 1;
  border-radius: 18px;
}

.ritual-card-completed .ritual-media img {
  opacity: 0.9;
}

.ritual-card-completed .ritual-name {
  opacity: 0.9;
}

.ritual-card-completed .ritual-btn {
  background: rgba(11, 31, 91, 0.85);
}

/* Ritual Detail Page */
.ritual-detail {
  background: #ffffff;
  color: #13214b;
    padding: 50px 0px 20px;
}

.ritual-detail-container {
  width: 100%;
}

.ritual-section-inner {
  width: 100%;
}

.ritual-inner-full {
  max-width: none;
}

.ritual-detail-hero {
  padding-top: 30px;
}

.ritual-detail-hero-card {
 
  border-radius: 18px;
  padding: 18px;
 
  background: #fff;
}

.ritual-detail-title {
  margin: 0;
  font-size: 35px;
  font-weight: 800;
  color: #0b1f5b;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ritual-detail-subtitle {
  margin-top: 6px;
  font-size: 14px;
  color:#0000006B;
}

.ritual-detail-desc {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: black;
}

.ritual-detail-meta {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  font-size: 12px;
  color: rgba(19, 33, 75, 0.75);
}

.ritual-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.ritual-detail-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  background: #0b1f5b;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  border: none;
  font-weight: 700;
  font-size: 13px;
  position: relative;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  filter: drop-shadow(0 0 0 2px #ffffff);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ritual-detail-cta::after {
  display: none;
}

.ritual-detail-cta::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  pointer-events: none;
  z-index: 1;
}

.ritual-detail-cta:hover {
  background: #06194a;
  color: #ffffff;
}

.ritual-detail-cta:focus {
  outline: none;
}

.ritual-detail-image {
  overflow: hidden;
  border-radius: 18px;
  height: 400px;
  background: #f4f4f4;
}

.ritual-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.ritual-detail-carousel {
  position: relative;
  border-radius: 18px;
  overflow: visible;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.ritual-detail-carousel .carousel-inner {
  border-radius: 18px;
  overflow: hidden;
}

.ritual-detail-carousel .carousel-item {
  transition: transform 0.35s ease-in-out;
}

.ritual-detail-carousel .carousel-indicators {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 12px;
  border-radius: 20px;
}

.ritual-detail-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  margin: 0 4px;
  opacity: 1;
}

.ritual-detail-carousel .carousel-indicators .active {
  background-color: #ffffff;
  opacity: 1;
}

.ritual-detail-image-placeholder {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  border: 1px dashed rgba(11, 31, 91, 0.25);
  display: grid;
  place-items: center;
  color: rgba(19, 33, 75, 0.6);
}

/* Blog Sidebar Styles */
.blog-sidebar {
  position: sticky;
  top: 20px;
}

.blog-sidebar-widget {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-sidebar-widget h3 {
  border-bottom: 2px solid #13214b;
  padding-bottom: 10px;
}

.blog-sidebar-widget ul li a:hover {
  background: #e9ecef !important;
  color: #13214b !important;
}

/* Responsive adjustments for blog post page */
@media (max-width: 991px) {
  .blog-sidebar {
    padding-left: 0 !important;
    margin-top: 40px;
    position: static;
  }
  
  .ritual-detail-image {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .ritual-media {
    height: 200px;
  }
  
  .ritual-detail-image {
    height: 280px;
  }
}

.ritual-detail-tabs {
 
    background: #0b1f5b;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 12px;
    justify-content: space-around;
}

.ritual-detail-tabs a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

.ritual-detail-tabs a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.ritual-detail-section {
  margin: 28px;
 
   
}

.ritual-detail-section-title {
  margin: 0 0 12px;
  font-family: "Georgia", "Times New Roman", serif;
  color: #0b1f5b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 35px;
}

.ritual-detail-section-body {
  font-size: 16px;
  line-height: 1.75;
  color:black;
}

.detail-box {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  height: 100%;
}

.detail-box-title {
  font-weight: 800;
  color: #0b1f5b;
  font-size: 13px;
  margin-bottom: 8px;
}

.detail-box-body {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(19, 33, 75, 0.75);
}

.detail-block {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.detail-block-title {
  font-weight: 800;
  color: #0b1f5b;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.detail-block-decor {
display: block;
    width: 100%;
    max-width: 70%;
    margin: 10px auto 14px;
}

.detail-card {
  background: #fbf6ea;
  border-radius: 18px;
  padding: 50px 20px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.detail-card-body {
    font-size: 16px;
 
    color: black;
}

@media (max-width: 576px) {
  .detail-card {
    padding: 20px 16px;
    min-height: auto;
  }
}

#detailsCarouselDesktop,
#detailsCarouselMobile {
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 10px;
}

#detailsCarouselDesktop .carousel-indicators,
#detailsCarouselMobile .carousel-indicators {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
}

#detailsCarouselDesktop .carousel-indicators button,
#detailsCarouselMobile .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0b1f5b;
  border: none;
  margin: 0 5px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

#detailsCarouselDesktop .carousel-indicators button.active,
#detailsCarouselMobile .carousel-indicators button.active {
  background-color: #0b1f5b;
  opacity: 1;
}

#detailsCarouselDesktop .carousel-indicators button:hover,
#detailsCarouselMobile .carousel-indicators button:hover {
  opacity: 0.6;
}

.ritual-how {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 14px;
}

/* Poojari Details Section */
.ritual-inner--poojari {
  margin-top: 50px;
}

.poojari-details-card {
  border-radius: 18px;
  padding: 30px;

}

.poojari-photo-container {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.poojari-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.poojari-name {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 24px;
  color: #0b1f5b;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.poojari-about {
  color: #202736;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 767px) {
  .poojari-details-card {
    padding: 20px;
  }
  
  .poojari-photo-container {
    max-width: 240px;
    margin-bottom: 20px;
  }
  
  .poojari-name {
    font-size: 20px;
    text-align: center;
  }
  
  .poojari-about {
    text-align: center;
  }
}

/* Temple Details Section */
.ritual-inner--temple-details {
  margin-top: 50px;
}

.temple-details-card {
 
  padding: 30px;
 
}

.temple-image-container {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.temple-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.temple-details-text {
  color: #202736;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 767px) {
  .temple-details-card {
    padding: 20px;
  }
  
  .temple-image-container {
    margin-bottom: 20px;
  }
  
  .temple-details-text {
    text-align: center;
  }
}

.ritual-how-title {
  font-weight: 800;
  color: #0b1f5b;
  font-size: 20px;
}

::marker {
    font-size: 20px;
  color: #0b1f5b;
}

.ritual-how-text {
  margin-top: 4px;
 
    font-size: 17px;
    
    color: black;
}

.ritual-faq .accordion-item {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
 
}

.ritual-faq .accordion-button {
margin: 0px 0px;
    font-weight: 500;
    font-size: 22px;
    color: #0b1f5b;
    background: #00000008
}

.ritual-faq .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(11, 31, 91, 0.12);
}

.ritual-faq .accordion-body {
    margin: 0px 0px;
    font-weight: 500;
    font-size: 15px;
    color: #000000;
    background: #00000008;
}

.package-grid {
  margin-top: 12px;
}

.package-card {
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
 
  padding: 16px;
  background: #f2fbf7;
  display: flex;
  flex-direction: column;
}

.package-card--value {
  background: #eefcf6;
}

.package-card--recommended {
  background: #e9f6ff;
}

.package-card--popular {
  background: #fff2b9;
}

.package-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.package-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b1f5b;
  font-weight: 700;
  font-size: 12px;
}

.package-badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 31, 91, 0.08);
}

.package-body {
  margin-top: 12px;
  flex: 1;
}

.package-title {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  color: #0b1f5b;
}

.package-price {
  margin-top: 10px;
  font-size: 26px;
  font-weight: 900;
  color: #0b1f5b;
}

.package-sankalpa {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 800;
  color: #000000B2;
}

.package-summary {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: black;
}

.package-actions {
  margin-top: 14px;
}

.package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  width: 100%;
  max-width: 160px;
  background: #0b1f5b;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  border-radius: 0;
  border: none;
  position: relative;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  filter: drop-shadow(0 0 0 2px #ffffff);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.package-btn::after {
  display: none;
}

.package-btn::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  pointer-events: none;
  z-index: 1;
}

.package-btn:hover {
  background: #06194a;
  color: #ffffff;
}

.package-btn:focus {
  outline: none;
}

/* Contact Page */
.contact {
  background: #ffffff;
  color: #13214b;
}

.contact-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 28px;
}

.contact-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 12px;
  background: #0b1f5b;
  margin-bottom: 12px;
}

.contact-logo img {
  width: 62px;
  height: auto;
  display: block;
}

.contact-title {
margin: 0;
    font-family: 'Marcellus SC';
    font-size: 50px;
    line-height: 1.15;
    color:#021557;
}

.contact-subtitle {
  margin: 12px auto 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: black;
}

.contact-info {
  padding: 18px 10px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(19, 33, 75, 0.8);
}

.contact-info-item a {
  color: #0b1f5b;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.contact-info-item a:hover {
  text-decoration: none;

}

.contact-info-ico {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #021557;
  flex-shrink: 0;
  margin-right: 12px;
}

.contact-social {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.contact-social-btn {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0b1f5b;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-social-btn:hover {
  background: #d4af37;
  transform: scale(1.1);
}

.contact-form-card {
  background: #071a52;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  width: 100%;
  max-width: 520px;
}

.contact-label {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 12px;
}

.contact-input {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  background: #f1d38b;
  border: none;
  color: #0b1f5b;
  font-weight: 800;
  font-size: 12px;
}

@media (max-width: 900px) {
  .contact-title {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .rituals {
    padding: 30px 3vw;
  }
  .rituals-title {
    font-size: 34px;
  }
  .ritual-media img,
  .ritual-media-placeholder {
    height: 210px;
  }
}

main.home-page h2 {
  font-family: "Marcellus SC", serif;
  font-size: 50px;
}

@media (max-width: 900px) {
  main.home-page h2 {
    font-size: 38px;
  }
}

#homeHeroCarousel {
  --bs-carousel-transition-duration: 0.45s;
}



@media (max-width: 900px) {
    .contact {
        padding: 60px 2vw 20px;
    }
}


.contact {
    background-color: #ffffff;
    padding: 70px 0px 3vw 0px;
}

body:not(.admin) main .btn.btn-primary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle),
body:not(.admin) main .btn.btn-outline-primary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle),
body:not(.admin) main .btn.btn-outline-secondary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle),
body:not(.admin) main .btn.btn-outline-danger:not(.btn-sm):not(.btn-link):not(.dropdown-toggle) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  background: #0b1f5b !important;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 0;
  border: none !important;
  font-weight: 700;
  font-size: 13px;
  position: relative;
  isolation: isolate;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}

body:not(.admin) main .btn.btn-outline-primary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle)::after,
body:not(.admin) main .btn.btn-outline-secondary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle)::after,
body:not(.admin) main .btn.btn-outline-danger:not(.btn-sm):not(.btn-link):not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: #ffffff;
  z-index: -1;
  pointer-events: none;
}

body:not(.admin) main .btn.btn-primary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle)::before,
body:not(.admin) main .btn.btn-outline-primary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle)::before,
body:not(.admin) main .btn.btn-outline-secondary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle)::before,
body:not(.admin) main .btn.btn-outline-danger:not(.btn-sm):not(.btn-link):not(.dropdown-toggle)::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  pointer-events: none;
  z-index: 1;
}

body:not(.admin) main .btn.btn-primary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):hover,
body:not(.admin) main .btn.btn-outline-primary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):hover,
body:not(.admin) main .btn.btn-outline-secondary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):hover,
body:not(.admin) main .btn.btn-outline-danger:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):hover {
  background: #0b1f5b !important;
  color: #ffffff !important;
}

body:not(.admin) main .btn.btn-primary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):focus,
body:not(.admin) main .btn.btn-outline-primary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):focus,
body:not(.admin) main .btn.btn-outline-secondary:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):focus,
body:not(.admin) main .btn.btn-outline-danger:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):focus {
  outline: none;
}

/* General button override for all buttons site-wide */
body:not(.admin) main .btn:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):not(.btn-light):not(.btn-secondary):not(.navbar-toggler):not(.ritual-btn):not(.ritual-detail-cta):not(.package-btn):not(.quick-booking-btn):not(.btn-complete-profile):not(.btn-edit-profile):not(.btn-edit-small):not(.btn-profile-action):not(.btn-profile-save):not(.btn-profile-cancel) {
  border-radius: 0 !important;
  border: none !important;
  position: relative !important;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%) !important;
  isolation: isolate !important;
  background: #0b1f5b !important;
  color: #ffffff !important;
  transition: none !important;
}

body:not(.admin) main .btn:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):not(.btn-light):not(.btn-secondary):not(.navbar-toggler):not(.ritual-btn):not(.ritual-detail-cta):not(.package-btn):not(.quick-booking-btn):not(.btn-complete-profile):not(.btn-edit-profile):not(.btn-edit-small):not(.btn-profile-action):not(.btn-profile-save):not(.btn-profile-cancel)::after {
  content: "" !important;
  position: absolute !important;
  inset: -2px !important;
  background: #0b1f5b !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

body:not(.admin) main .btn:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):not(.btn-light):not(.btn-secondary):not(.navbar-toggler):not(.ritual-btn):not(.ritual-detail-cta):not(.package-btn):not(.quick-booking-btn):not(.btn-complete-profile):not(.btn-edit-profile):not(.btn-edit-small):not(.btn-profile-action):not(.btn-profile-save):not(.btn-profile-cancel)::before {
  content: "" !important;
  position: absolute !important;
  inset: 5px !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

body:not(.admin) .btn:not(.btn-sm):not(.btn-link):not(.dropdown-toggle):not(.btn-light):not(.btn-secondary):not(.navbar-toggler):hover {
  transform: none !important;
}

/* Customer Profile Page Styles */
.customer-profile-section {
  background: #ffffff;
  min-height: 80vh;
}

.profile-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.profile-title {
  margin: 0;
  font-family: 'Marcellus SC', serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #021557;
  text-transform: uppercase;
}

.profile-subtitle {
  margin: 12px 0 0;
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

/* Profile Cards */
.profile-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 24px;
}

.profile-card-main {
  background: #f6f7fb;
  border: none;
}

.profile-card-body {
  padding: 24px;
}

.profile-user-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e9eef7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-user-details {
  flex: 1;
  min-width: 0;
}

.profile-name {
  font-size: 20px;
  font-weight: 800;
  color: #021557;
  margin-bottom: 4px;
  line-height: 1.3;
}

.profile-phone {
  font-size: 14px;
  color: #6c7a93;
  font-weight: 500;
}

.btn-edit-profile,
.btn.btn-edit-profile,
body:not(.admin) main .btn.btn-edit-profile {
  background: #0b1f5b !important;
  color: #ffffff !important;
  border: none !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-edit-profile:hover,
.btn.btn-edit-profile:hover,
body:not(.admin) main .btn.btn-edit-profile:hover {
  background: #0a1a4f !important;
  color: #ffffff !important;
}

/* Profile Completion */
.profile-completion {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.profile-completion-label {
  font-size: 14px;
  color: #6c7a93;
  margin-bottom: 8px;
  font-weight: 500;
}

.profile-completion-label strong {
  color: #021557;
  font-weight: 700;
}

.profile-progress-bar {
  width: 100%;
  height: 8px;
  background: #e9eef7;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.profile-progress-fill {
  height: 100%;
  background: #0b1f5b;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.btn-complete-profile,
.btn.btn-complete-profile,
body:not(.admin) main .btn.btn-complete-profile,
body:not(.admin) main .btn-complete-profile {
  width: 100%;
  background: #ffffff !important;
  color: white !important;
  border: 2px solid #0b1f5b !important;
  padding: 14px 24px;
  border-radius: 0;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  position: relative;
  isolation: isolate;
  outline: 2px solid #0b1f5b;
  outline-offset: -2px;
}

.btn-complete-profile::after,
.btn.btn-complete-profile::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: #0b1f5b;
  z-index: -1;
  pointer-events: none;
}

.btn-complete-profile::before,
.btn.btn-complete-profile::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(11, 31, 91, 0.3);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  pointer-events: none;
  z-index: 1;
}

.btn-complete-profile:hover,
.btn.btn-complete-profile:hover {
  background: #f6f7fb !important;
  color: #0a1a4f !important;
  border-color: #0a1a4f !important;
}

/* Profile Info Grid */
.profile-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.profile-info-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.profile-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.profile-info-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #021557;
}

.btn-edit-small,
.btn.btn-edit-small,
body:not(.admin) main .btn.btn-edit-small {
  background: #0b1f5b !important;
  color: #ffffff !important;
  border: none !important;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-edit-small:hover,
.btn.btn-edit-small:hover,
body:not(.admin) main .btn.btn-edit-small:hover {
  background: #0a1a4f !important;
  color: #ffffff !important;
}

.profile-info-content {
  padding: 20px 24px;
}

.profile-info-item {
  margin-bottom: 20px;
}

.profile-info-item:last-child {
  margin-bottom: 0;
}

.profile-info-label {
  font-size: 13px;
  color: #6c7a93;
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-info-value {
  font-size: 16px;
  font-weight: 700;
  color: #021557;
  line-height: 1.5;
}

.profile-info-value .text-muted {
  color: #999;
  font-weight: 500;
}

/* Security Notice */
.profile-security-notice {
  background: #eef9f1;
  border: 1px solid #cfead7;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.profile-security-notice svg {
  color: #0a8f52;
  flex-shrink: 0;
  margin-top: 2px;
}

.profile-security-title {
  font-weight: 800;
  color: #0a8f52;
  font-size: 15px;
  margin-bottom: 4px;
}

.profile-security-text {
  color: #0a8f52;
  font-size: 14px;
  opacity: 0.9;
}

/* Profile Actions */
.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-profile-action {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid #0b1f5b !important;
  background: #0b1f5b !important;
  color: #ffffff !important;
}

.btn-profile-action:hover {
  background: #0a1a4f !important;
  border-color: #0a1a4f !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 31, 91, 0.2);
}

.btn-profile-action.btn-secondary {
  background: #0b1f5b !important;
  color: #ffffff !important;
  border-color: #0b1f5b !important;
}

.btn-profile-action.btn-secondary:hover {
  background: #0a1a4f !important;
  border-color: #0a1a4f !important;
  color: #ffffff !important;
}

.btn-profile-action.btn-danger {
  background: #0b1f5b !important;
  color: #ffffff !important;
  border-color: #0b1f5b !important;
}

.btn-profile-action.btn-danger:hover {
  background: #0a1a4f !important;
  color: #ffffff !important;
  border-color: #0a1a4f !important;
}

/* Profile Modal Styles */
.profile-modal-dialog {
  max-width: 680px;
}

.profile-modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.profile-modal-header {
  background: #f6f7fb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px 28px;
}

.profile-modal-title {
  font-size: 24px;
  font-weight: 800;
  color: #021557;
  margin: 0;
}

.profile-modal-close {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.profile-modal-close:hover {
  opacity: 1;
}

.profile-modal-body {
  padding: 28px;
  background: #ffffff;
}

.profile-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.profile-form-group {
  display: flex;
  flex-direction: column;
}

.profile-form-group:last-child {
  grid-column: 1 / -1;
}

.profile-form-label {
  font-size: 14px;
  font-weight: 700;
  color: #021557;
  margin-bottom: 8px;
}

.profile-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9eef7;
  border-radius: 10px;
  font-size: 15px;
  color: #021557;
  background: #ffffff;
  transition: all 0.2s;
}

.profile-form-control:focus {
  outline: none;
  border-color: #0b1f5b;
  box-shadow: 0 0 0 3px rgba(11, 31, 91, 0.1);
}

.profile-form-control::placeholder {
  color: #999;
}

.profile-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-profile-save,
.btn.btn-profile-save,
body:not(.admin) main .btn.btn-profile-save {
  background: #0b1f5b !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 28px;
  border-radius: 0;
  font-weight: 700;
  font-size: 15px;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  position: relative;
  isolation: isolate;
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}

.btn-profile-save::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: #ffffff;
  z-index: -1;
  pointer-events: none;
}

.btn-profile-save::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  pointer-events: none;
  z-index: 1;
}

.btn-profile-cancel,
.btn.btn-profile-cancel,
body:not(.admin) main .btn.btn-profile-cancel {
  background: #0b1f5b !important;
  color: #ffffff !important;
  border: 2px solid #0b1f5b !important;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-profile-cancel:hover,
.btn.btn-profile-cancel:hover,
body:not(.admin) main .btn.btn-profile-cancel:hover {
  background: #0a1a4f !important;
  border-color: #0a1a4f !important;
  color: #ffffff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-title {
    font-size: 36px;
  }

  .profile-info-grid {
    grid-template-columns: 1fr;
  }

  .profile-form-grid {
    grid-template-columns: 1fr;
  }

  .profile-form-group:last-child {
    grid-column: 1;
  }

  .profile-modal-actions {
    flex-direction: column;
  }

  .btn-profile-save,
  .btn-profile-cancel {
    width: 100%;
  }

  .profile-user-info {
    flex-wrap: wrap;
  }

  .profile-actions {
    flex-direction: column;
  }

  .btn-profile-action {
    width: 100%;
  }
}

/* Ritual Video Section */
#ritual-video .ritual-section-inner {
  padding: 40px 0;
}

#ritual-video .ratio {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#ritual-video iframe {
  border-radius: 12px;
}

/* Admin Booking Status Select */
.booking-status-select {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking-status-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking-status-select option[value="paid"] {
  background-color: #d4edda;
  color: #155724;
}

.booking-status-select option[value="created"] {
  background-color: #fff3cd;
  color: #856404;
}

.booking-status-select option[value="payment_failed"] {
  background-color: #f8d7da;
  color: #721c24;
}

.booking-status-select option[value="cancelled"] {
  background-color: #e2e3e5;
  color: #383d41;
}

.booking-status-select option[value="refunded"] {
  background-color: #cce5ff;
  color: #004085;
}