/* ==========================================================================
   Shree Mahakal Dosh Pujan - Modern Sacred Redesign Stylesheet
   ========================================================================== */

:root {
  --primary-saffron: #c84e1b;
  --primary-hover: #b03e10;
  --gold-accent: #f59e0b;
  --gold-light: #fef3c7;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  --saffron-gradient: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
  --sacred-gradient: linear-gradient(135deg, #fff7ed 0%, #fef3c7 50%, #ffedd5 100%);
  --maroon-dark: #781d1d;
  --text-main: #2d3748;
  --text-muted: #555e6c;
  --text-dark: #1a202c;
  --card-bg: #ffffff;
  --card-border: rgba(245, 158, 11, 0.2);
  --card-shadow: 0 10px 30px -5px rgba(180, 83, 9, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  --card-shadow-hover: 0 20px 35px -5px rgba(180, 83, 9, 0.16), 0 8px 16px -2px rgba(0, 0, 0, 0.06);
}

/* --------------------------------------------------------------------------
   Layout & Container Width (1400px)
   -------------------------------------------------------------------------- */
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1400px;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px !important;
  }
}

/* --------------------------------------------------------------------------
   Section Title Styles
   -------------------------------------------------------------------------- */
.section-title {
  text-align: center;
  padding-bottom: 35px;
  position: relative;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  color: #1a202c;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  margin-bottom: 26px !important;
  letter-spacing: -0.5px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 90px;
  height: 3px;
  background: var(--gold-gradient, linear-gradient(135deg, #f59e0b, #d97706));
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.section-title h2::before {
  content: "ॐ";
  position: absolute;
  display: block;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 0 8px;
  color: var(--primary-saffron, #ea580c);
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  z-index: 2;
}

.section-title p {
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Hero / Booking Section Redesign
   -------------------------------------------------------------------------- */
.booking {
  position: relative;
  background: linear-gradient(135deg, #fffbf5 0%, #fff4e6 45%, #fef0db 100%);
  padding: 65px 0 75px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.booking::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 25%, rgba(245, 158, 11, 0.12) 0%, transparent 45%),
              radial-gradient(circle at 85% 75%, rgba(200, 78, 27, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.booking-content {
  position: relative;
  z-index: 2;
  padding-right: 20px;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--primary-saffron);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 14px;
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.12);
  letter-spacing: 0.3px;
}

.booking-badge span {
  color: #f59e0b;
}

.booking-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a202c;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.booking-subtitle {
  display: block;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--primary-saffron);
  margin-top: 6px;
  letter-spacing: 0.2px;
}

/* Guruji Profile Card */
.guruji-intro-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 22px 24px;
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 10px 30px rgba(180, 83, 9, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.guruji-intro-card:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 14px 35px rgba(180, 83, 9, 0.12);
}

.guruji-avatar-wrap {
  flex-shrink: 0;
  text-align: center;
}

.guruji-avatar-ring {
  position: relative;
  width: 105px;
  height: 105px;
  margin: 0 auto 8px auto;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #d97706 100%);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}

.guruji-avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #ffffff;
  display: block;
}

.guruji-verified-badge {
  position: absolute;
  bottom: -2px;
  right: -4px;
  background: #16a34a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.guruji-exp-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #9a3412;
  background: #fef3c7;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  white-space: nowrap;
}

.guruji-bio-content .lead-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: #2d3748;
  margin-bottom: 8px;
}

.guruji-bio-content .sub-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 0;
}

/* Feature Grid */
.booking-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.05);
  transition: all 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: #f59e0b;
  box-shadow: 0 6px 16px rgba(180, 83, 9, 0.1);
}

.feature-card-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.feature-card-text {
  display: flex;
  flex-direction: column;
}

.feature-card-text strong {
  font-size: 13.5px;
  color: #1a202c;
  font-weight: 700;
  line-height: 1.3;
}

.feature-card-text small {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.3;
  margin-top: 2px;
}

/* Action CTA Buttons */
.booking-cta-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-sacred-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 22px rgba(194, 65, 12, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  border: 1.5px solid rgba(254, 240, 138, 0.35);
}

.btn-sacred-call:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(194, 65, 12, 0.45);
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #ffffff !important;
}

.btn-sacred-call i {
  font-size: 18px !important;
  width: 38px !important;
  height: 38px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  color: #ffffff !important;
}

.btn-sacred-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366 0%, #15803d 100%);
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-sacred-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.4);
  background: linear-gradient(135deg, #16a34a 0%, #14532d 100%);
  color: #ffffff !important;
}

.btn-sacred-whatsapp i {
  font-size: 20px !important;
  width: 38px !important;
  height: 38px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  color: #ffffff !important;
}

.btn-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-subtext {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.btn-maintext {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(234, 88, 12, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
  }
}

.pulse-btn {
  animation: pulseGlow 2.5s infinite;
}

/* Booking Form Card */
.booking .booking-form,
.booking-form {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #ea580c 0%, #c2410c 60%, #9a3412 100%) !important;
  padding: 35px 28px !important;
  border-radius: 20px !important;
  border: 2px solid rgba(254, 240, 138, 0.4) !important;
  box-shadow: 0 20px 45px -10px rgba(180, 83, 9, 0.3), 0 8px 20px -5px rgba(0, 0, 0, 0.15) !important;
}

.booking .booking-form h3,
.booking-form h3 {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 22px !important;
  text-align: center !important;
  position: relative !important;
  padding-bottom: 12px !important;
  line-height: 1.35 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.booking .booking-form h3::after,
.booking-form h3::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 50px !important;
  height: 3px !important;
  background: #fef08a !important;
  border-radius: 3px !important;
}

.booking-form .control-group {
  margin-bottom: 16px;
  width: 100%;
}

.booking .booking-form .input-group,
.booking-form .input-group {
  width: 100%;
}

.booking .booking-form .form-control,
.booking-form .form-control {
  height: 48px !important;
  border-radius: 10px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
  padding: 10px 16px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  background: #ffffff !important;
  color: #1a202c !important; /* Bold visible dark text */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.25s ease !important;
  width: 100% !important;
}

.booking .booking-form textarea.form-control,
.booking-form textarea.form-control {
  height: 95px !important;
  resize: none !important;
  padding: 12px 16px !important;
}

.booking .booking-form .form-control::placeholder,
.booking-form .form-control::placeholder {
  color: #64748b !important;
  opacity: 1 !important;
  font-weight: 400;
}

.booking .booking-form .form-control:focus,
.booking-form .form-control:focus {
  background: #ffffff !important;
  color: #0f172a !important;
  border-color: #fef08a !important;
  box-shadow: 0 0 0 3.5px rgba(254, 240, 138, 0.6) !important;
  outline: none !important;
}

.booking .booking-form .btn.custom-btn,
.booking .booking-form button.custom-btn,
.booking-form button.custom-btn {
  width: 100% !important;
  height: 50px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  color: #c2410c !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  border: 2px solid #ffffff !important;
  cursor: pointer !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.booking .booking-form .btn.custom-btn:hover,
.booking .booking-form button.custom-btn:hover,
.booking-form button.custom-btn:hover {
  background: #fef08a !important;
  color: #9a3412 !important;
  border-color: #fef08a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25) !important;
}

/* --------------------------------------------------------------------------
   Featured Section (Puja Services)
   -------------------------------------------------------------------------- */
#featured {
  padding: 70px 0 80px 0;
  background: #fdfdfd;
}

.featured .icon-box {
  background: #ffffff;
  padding: 24px 22px 26px 22px;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--card-shadow);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.featured .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.featured .icon-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(245, 158, 11, 0.35);
}

.featured .icon-box:hover::before {
  opacity: 1;
}

.featured-img-wrap {
  text-align: center;
  margin-bottom: 18px;
  background: #fff8f0;
  border-radius: 14px;
  padding: 14px;
  position: relative;
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured .icon-box img {
  max-width: 100% !important;
  max-height: 175px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transition: transform 0.4s ease;
}

.featured .icon-box:hover img {
  transform: scale(1.05);
}

.featured .icon-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}

.featured .icon-box h3 a {
  color: #1a202c;
  text-decoration: none;
  transition: color 0.25s ease;
}

.featured .icon-box h3 a:hover {
  color: var(--primary-saffron);
}

.featured .icon-box p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: justify;
  margin-bottom: 22px;
  flex-grow: 1;
}

.featured-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.btn-puja-read {
  flex: 1 1 40%;
  min-width: 0;
  height: 42px;
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #c2410c;
  background: #fff7ed;
  border: 1.5px solid #fdba74;
  border-radius: 50px;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-puja-read:hover {
  background: #ea580c;
  border-color: #ea580c;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.btn-puja-call {
  flex: 1 1 60%;
  min-width: 0;
  height: 42px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
  border: 1.5px solid transparent;
  border-radius: 50px;
  text-align: center;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(200, 78, 27, 0.28);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.featured .icon-box .btn-puja-call i,
.btn-puja-call i {
  font-size: 13px !important;
  line-height: 1 !important;
  display: inline-block !important;
  margin: 0 4px 0 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  max-width: 16px !important;
  max-height: 16px !important;
  vertical-align: middle !important;
  color: #ffffff !important;
}

.btn-puja-call:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   About Guruji Section Redesign
   -------------------------------------------------------------------------- */
#about {
  padding: 80px 0 85px 0;
  background: linear-gradient(180deg, #fbf7f0 0%, #ffffff 100%);
  border-top: 1px solid #f3e8d9;
}

.guruji-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 35px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  box-shadow: 0 12px 32px -6px rgba(180, 83, 9, 0.08);
  transition: all 0.35s ease;
}

.guruji-card:hover {
  box-shadow: 0 18px 40px -6px rgba(180, 83, 9, 0.14);
  border-color: rgba(245, 158, 11, 0.4);
}

.guruji-img-wrap {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guruji-card img {
  border-radius: 16px;
  border: 4px solid #fff3e0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 480px !important;
  object-fit: contain !important;
  object-position: top center !important;
  transition: transform 0.35s ease;
  display: inline-block;
  margin: 0 auto;
}

.guruji-card:hover img {
  transform: scale(1.02);
}

.guruji-card .content h3 {
  font-size: 23px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 18px;
  line-height: 1.4;
}

.guruji-card .content h3 u {
  text-decoration: none;
  border-bottom: 3px solid var(--gold-accent);
  padding-bottom: 3px;
}

.guruji-card .content p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4a5568;
  margin-bottom: 14px;
}

.guruji-card .content strong {
  color: #9a3412;
  font-weight: 700;
  display: block;
  background: #fff7ed;
  border-left: 4px solid var(--primary-saffron);
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   Blog Section Redesign
   -------------------------------------------------------------------------- */
#portfolio.portfolio {
  padding: 75px 0 80px 0;
  background: #ffffff;
}

.blog-box {
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-top: 4px solid var(--gold-accent) !important;
  padding: 26px !important;
  border-radius: 16px !important;
  box-shadow: var(--card-shadow) !important;
  transition: all 0.3s ease !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover) !important;
  border-color: rgba(245, 158, 11, 0.4) !important;
}

.blog-box pre {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 13px;
  color: var(--primary-saffron);
  display: inline-flex;
  align-items: center;
  background: #fff7ed;
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.blog-box pre b {
  font-weight: 700;
}

.blog-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 14px;
  line-height: 1.4;
}

.blog-box p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 0;
}

.btn-blog-readmore {
  background: var(--gold-gradient) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 12px 36px !important;
  border-radius: 50px !important;
  font-size: 15px !important;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35) !important;
  transition: all 0.3s ease !important;
  border: none !important;
  display: inline-block;
}

.btn-blog-readmore:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45) !important;
}

/* --------------------------------------------------------------------------
   Our Experienced Pandits (Team Marquee)
   -------------------------------------------------------------------------- */
.team-section {
  padding: 70px 0 80px 0;
  background: linear-gradient(180deg, #fbf7f0 0%, #ffffff 100%);
  border-top: 1px solid #f3e8d9;
}

.team-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 45px;
  position: relative;
  padding-bottom: 16px;
}

.team-heading::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

.team-slider {
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
  position: relative;
  padding: 15px 0;
}

.team-slider::before,
.team-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.team-slider::before {
  left: 0;
  background: linear-gradient(90deg, #fbf7f0, transparent);
}

.team-slider::after {
  right: 0;
  background: linear-gradient(-90deg, #fbf7f0, transparent);
}

.team-track {
  display: flex;
  animation: teamSlide 28s infinite linear;
  width: max-content;
}

.team-track:hover {
  animation-play-state: paused;
}

.team-member {
  width: 250px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 18px;
  margin: 0 15px;
  text-align: center;
  box-shadow: 0 10px 25px -4px rgba(180, 83, 9, 0.09);
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.team-member:hover {
  transform: translateY(-8px);
  border-color: var(--gold-accent);
  box-shadow: 0 16px 32px -4px rgba(180, 83, 9, 0.18);
}

.team-member img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fef3c7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.06);
  border-color: var(--gold-accent);
}

.team-member h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
  margin: 8px 0 0 0;
}

@keyframes teamSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   Gallery Section
   -------------------------------------------------------------------------- */
.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 2px solid rgba(245, 158, 11, 0.15);
  transition: all 0.35s ease;
  background: #000;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
  display: block;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--gold-accent);
}

.gallery-card:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Videos Section
   -------------------------------------------------------------------------- */
.video-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  border: 2px solid rgba(245, 158, 11, 0.2);
  box-shadow: var(--card-shadow);
  transition: all 0.35s ease;
  margin-bottom: 25px;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: var(--card-shadow-hover);
}

.video-card video {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  background: #000;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 8px 20px rgba(180, 83, 9, 0.07);
}

.faq-item.active {
  border-color: var(--gold-accent);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.12);
}

.faq-question {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  transition: all 0.25s ease;
  user-select: none;
}

.faq-item.active .faq-question {
  background: #fffbf5;
}

.faq-question h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  line-height: 1.5;
  padding-right: 15px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #fef3c7;
  color: #b45309;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.faq-item.active .faq-icon {
  background: var(--primary-saffron);
  color: #ffffff;
}

.faq-answer {
  padding: 18px 22px 22px 22px;
  display: none;
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a5568;
  border-top: 1px solid #fef3c7;
  background: #fffdfa;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .featured-actions {
    flex-direction: column;
    gap: 8px;
  }

  .btn-puja-read,
  .btn-puja-call {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 991px) {
  .booking-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .booking-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .guruji-intro-card {
    flex-direction: column;
    text-align: center;
  }

  .guruji-bio-content {
    text-align: center;
  }

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

  .booking-cta-group {
    justify-content: center;
  }

  .guruji-card img {
    max-height: 400px;
    margin-bottom: 20px;
  }

  .featured .icon-box {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .booking-title {
    font-size: 24px;
  }

  .booking-subtitle {
    font-size: 15px;
  }

  .booking-features-grid {
    grid-template-columns: 1fr;
  }

  .booking-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-sacred-call,
  .btn-sacred-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .booking-content .section-header h2 {
    font-size: 24px;
  }

  .booking-form {
    padding: 24px 20px;
  }

  .featured-actions {
    flex-direction: column;
  }

  .btn-puja-read,
  .btn-puja-call {
    width: 100%;
  }

  .faq-question h3 {
    font-size: 15.5px;
  }
}

/* --------------------------------------------------------------------------
   Mobile Hero Slider Height & Remove Arrows
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  #hero,
  #hero .carousel-item {
    height: 380px !important;
    min-height: 360px !important;
    max-height: 400px !important;
  }

  /* Remove carousel control arrows on mobile */
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  #hero .carousel-content {
    padding: 20px 16px !important;
    width: 92% !important;
    max-width: 440px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
  }

  #hero h1,
  #hero h2 {
    font-size: 1.55rem !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
  }

  #hero p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  .btn-get-started {
    padding: 9px 24px !important;
    font-size: 14px !important;
  }

  #hero .carousel-indicators {
    bottom: 8px !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 480px) {
  #hero,
  #hero .carousel-item {
    height: 360px !important;
    min-height: 340px !important;
    max-height: 380px !important;
  }

  #hero h1,
  #hero h2 {
    font-size: 1.35rem !important;
    margin-bottom: 8px !important;
  }

  #hero p {
    font-size: 0.85rem !important;
    margin-bottom: 14px !important;
    line-height: 1.45 !important;
  }
}

/* ==========================================================================
   Modern Sacred Vedic Footer Redesign
   ========================================================================== */
#footer {
  background: linear-gradient(180deg, #180a04 0%, #0d0502 100%) !important;
  color: #e2e8f0 !important;
  font-size: 14.5px !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 4px solid #ea580c !important;
  padding: 0 !important;
}

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 85% 100%, rgba(234, 88, 12, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Pre-footer Sacred Banner */
.footer-newsletter-banner {
  padding: 38px 0 0 0;
  position: relative;
  z-index: 2;
}

.footer-cta-card {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.96) 0%, rgba(180, 83, 9, 0.96) 100%);
  border-radius: 20px;
  padding: 26px 36px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(254, 240, 138, 0.35);
}

.cta-mini-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #fef08a;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.cta-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-desc {
  font-size: 14.5px;
  color: #fff7ed;
  margin-bottom: 0;
  line-height: 1.6;
}

.btn-footer-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #9a3412 !important;
  font-size: 16px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-footer-call:hover {
  background: #fef3c7;
  color: #7c2d12 !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.btn-footer-call i {
  color: #ea580c;
  font-size: 17px;
}

/* Footer Top Content */
#footer .footer-top {
  background: transparent !important;
  padding: 50px 0 35px 0 !important;
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.3));
}

.footer-brand-title {
  font-size: 20px;
  font-weight: 800;
  color: #f59e0b;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.3px;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.footer-social-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #94a3b8;
}

#footer .footer-top .social-links a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-size: 20px !important;
  transition: all 0.3s ease !important;
  margin-right: 8px !important;
}

#footer .footer-top .social-links a.youtube:hover {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4) !important;
  transform: translateY(-3px) scale(1.08) !important;
}

#footer .footer-top .social-links a.facebook:hover {
  background: #1877f2 !important;
  border-color: #1877f2 !important;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4) !important;
  transform: translateY(-3px) scale(1.08) !important;
}

#footer .footer-top .social-links a.whatsapp:hover {
  background: #25d366 !important;
  border-color: #25d366 !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
  transform: translateY(-3px) scale(1.08) !important;
}

/* Footer Section Headings */
#footer .footer-top h4 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  position: relative !important;
  padding-bottom: 12px !important;
  margin-bottom: 18px !important;
  letter-spacing: 0.3px !important;
  text-transform: none !important;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2.5px;
  width: 36px;
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  border-radius: 2px;
}

/* Footer Links List */
#footer .footer-top .footer-links ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}

#footer .footer-top .footer-links ul li:last-child {
  border-bottom: none;
}

#footer .footer-top .footer-links ul i {
  color: #f59e0b !important;
  font-size: 15px !important;
  transition: transform 0.25s ease;
}

#footer .footer-top .footer-links ul a {
  color: #cbd5e1 !important;
  font-size: 14.5px !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}

#footer .footer-top .footer-links ul a:hover {
  color: #f59e0b !important;
  padding-left: 5px;
}

#footer .footer-top .footer-links ul li:hover i {
  transform: translateX(3px);
}

/* Contact Info Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-item i {
  font-size: 18px;
  color: #f59e0b;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #cbd5e1;
}

.contact-item a {
  color: #cbd5e1 !important;
  text-decoration: none !important;
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: #f59e0b !important;
}

/* Footer Bottom Bar */
.footer-bottom {
  background: rgba(0, 0, 0, 0.45);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.copyright-text,
.credits-text {
  margin: 0;
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.6;
}

.copyright-text strong span {
  color: #f59e0b;
}

.credits-text a {
  color: #f59e0b !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: color 0.25s ease;
}

.credits-text a:hover {
  color: #ea580c !important;
  text-decoration: underline !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-cta-card {
    padding: 22px 24px;
  }

  .cta-title {
    font-size: 19px;
  }

  .footer-brand {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .footer-cta-card {
    padding: 20px 18px;
    text-align: center;
  }

  .btn-footer-call {
    width: 100%;
    justify-content: center;
  }

  .credits-text {
    margin-top: 10px;
  }
}

/* ==========================================================================
   Best Pandit in Ujjain Page Redesign Styles (.pandit-page)
   ========================================================================== */
.pandit-page {
  background-color: #fffaf4;
  color: #2d3748;
}

/* Breadcrumbs Banner */
.pandit-hero-banner {
  background: linear-gradient(135deg, #2a0f05 0%, #170702 100%);
  padding: 45px 0 50px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #ea580c;
  color: #ffffff;
}

.pandit-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 85% 80%, rgba(234, 88, 12, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.pandit-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  font-size: 14px;
}

.pandit-breadcrumb li a {
  color: #f59e0b;
  text-decoration: none;
}

.pandit-breadcrumb li.active {
  color: #cbd5e1;
}

.pandit-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fef08a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pandit-hero-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.pandit-hero-title span {
  color: #f59e0b;
}

.pandit-hero-lead {
  font-size: 17px;
  color: #e2e8f0;
  max-width: 820px;
  line-height: 1.75;
  margin-bottom: 24px;
}

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

/* Stats Counter Strip */
.pandit-stats-bar {
  background: #ffffff;
  padding: 24px 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.pandit-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-right: 1px dashed rgba(245, 158, 11, 0.3);
}

.pandit-stat-card:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.stat-content strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #9a3412;
  line-height: 1.2;
}

.stat-content span {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
}

/* Section Header Common */
.pandit-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.pandit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  color: #9a3412;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.pandit-section-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #1a202c;
  line-height: 1.3;
  margin-bottom: 12px;
}

.pandit-section-header p {
  font-size: 16px;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Intro Content Box */
.pandit-intro-block {
  padding: 60px 0;
}

.pandit-intro-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 10px 30px rgba(180, 83, 9, 0.06);
  margin-bottom: 30px;
}

.pandit-intro-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #9a3412;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pandit-intro-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 16px;
}

.pandit-intro-card p:last-child {
  margin-bottom: 0;
}

/* Pandits Showcase Grid (4 Cards) */
.pandits-grid-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #fffaf4 0%, #fff3e0 100%);
}

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

.pandit-profile-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 10px 30px rgba(180, 83, 9, 0.08);
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: all 0.35s ease;
}

.pandit-profile-card:hover {
  transform: translateY(-5px);
  border-color: #f59e0b;
  box-shadow: 0 18px 40px rgba(180, 83, 9, 0.15);
}

.pandit-card-avatar {
  flex-shrink: 0;
  text-align: center;
}

.pandit-card-avatar .avatar-ring {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #b45309 100%);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.3);
  position: relative;
  margin: 0 auto 10px auto;
}

.pandit-card-avatar .avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  display: block;
}

.pandit-card-avatar .badge-verified {
  position: absolute;
  bottom: -2px;
  right: -4px;
  background: #16a34a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.pandit-card-avatar .exp-pill {
  font-size: 12px;
  font-weight: 700;
  color: #9a3412;
  background: #fef3c7;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  white-space: nowrap;
}

.pandit-card-body {
  flex: 1;
}

.pandit-card-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pandit-specialty-pill {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #c84e1b;
  margin-bottom: 10px;
}

.pandit-card-body p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 16px;
}

.pandit-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-pandit-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(200, 78, 27, 0.25);
  transition: all 0.25s ease;
}

.btn-pandit-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200, 78, 27, 0.35);
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #ffffff !important;
}

.btn-pandit-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: all 0.25s ease;
}

.btn-pandit-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  color: #ffffff !important;
}

/* Why Choose Grid */
.pandit-why-section {
  padding: 60px 0;
  background: #ffffff;
}

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

.why-card {
  background: #fffbf5;
  border-radius: 16px;
  padding: 26px 22px;
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.05);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 12px 30px rgba(180, 83, 9, 0.12);
}

.why-card-icon {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Puja Services Showcase Grid */
.pandit-services-section {
  padding: 60px 0;
  background: #fffaf4;
}

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

.puja-service-item {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(245, 158, 11, 0.22);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.puja-service-item:hover {
  transform: translateY(-5px);
  border-color: #f59e0b;
  box-shadow: 0 15px 35px rgba(180, 83, 9, 0.14);
}

.puja-service-img {
  height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.puja-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.puja-service-item:hover .puja-service-img img {
  transform: scale(1.06);
}

.puja-service-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.puja-service-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
  line-height: 1.35;
}

.puja-service-body h3 a {
  color: inherit;
  text-decoration: none;
}

.puja-service-body h3 a:hover {
  color: #ea580c;
}

.puja-service-body p {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 18px;
  flex: 1;
}

.puja-service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(245, 158, 11, 0.25);
  padding-top: 14px;
  margin-top: auto;
}

.btn-puja-link {
  font-size: 13.5px;
  font-weight: 700;
  color: #ea580c;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-puja-link:hover {
  color: #9a3412;
}

.btn-puja-book {
  font-size: 13px;
  font-weight: 700;
  background: #fef3c7;
  color: #9a3412 !important;
  padding: 6px 14px;
  border-radius: 50px;
  text-decoration: none !important;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.btn-puja-book:hover {
  background: #ea580c;
  color: #ffffff !important;
}

/* Booking Process Steps (4 Steps) */
.pandit-steps-section {
  padding: 60px 0;
  background: #ffffff;
}

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

.step-card {
  background: #fffaf4;
  border-radius: 18px;
  padding: 26px 20px;
  border: 1.5px solid rgba(245, 158, 11, 0.2);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: #ea580c;
  box-shadow: 0 10px 25px rgba(180, 83, 9, 0.08);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.step-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* FAQs Accordion Section */
.pandit-faq-section {
  padding: 60px 0;
  background: #fffaf4;
}

.pandit-faq-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.pandit-faq-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1.5px solid rgba(245, 158, 11, 0.2);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pandit-faq-card.active {
  border-color: #f59e0b;
  box-shadow: 0 8px 22px rgba(180, 83, 9, 0.09);
}

.pandit-faq-header {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
  user-select: none;
}

.pandit-faq-card.active .pandit-faq-header {
  background: #fffdfa;
}

.pandit-faq-header h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  line-height: 1.4;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fef3c7;
  color: #9a3412;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 14px;
  transition: transform 0.25s ease;
}

.pandit-faq-card.active .faq-toggle-icon {
  background: #ea580c;
  color: #ffffff;
  transform: rotate(45deg);
}

.pandit-faq-body {
  padding: 0 22px 20px 22px;
  display: none;
  font-size: 15px;
  line-height: 1.75;
  color: #4a5568;
}

.pandit-faq-card.active .pandit-faq-body {
  display: block;
}

/* Bottom CTA Banner */
.pandit-cta-banner {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
  padding: 55px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pandit-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(254, 240, 138, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.pandit-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.pandit-cta-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.pandit-cta-content p {
  font-size: 17px;
  color: #fff7ed;
  line-height: 1.7;
  margin-bottom: 26px;
}

.pandit-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #9a3412 !important;
  font-size: 16px;
  font-weight: 800;
  padding: 13px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.btn-cta-call:hover {
  background: #fef3c7;
  color: #7c2d12 !important;
  transform: translateY(-3px) scale(1.03);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 800;
  padding: 13px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.btn-cta-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff !important;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .pandit-hero-title {
    font-size: 30px;
  }

  .pandit-stats-bar .row {
    row-gap: 16px;
  }

  .pandit-stat-card {
    border-right: none;
    background: #fffbf5;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
  }

  .pandits-cards-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 767px) {
  .pandit-hero-title {
    font-size: 24px;
  }

  .pandit-hero-lead {
    font-size: 15px;
  }

  .pandit-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .pandit-hero-actions .btn-sacred-call,
  .pandit-hero-actions .btn-sacred-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .pandit-profile-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .pandit-card-actions {
    justify-content: center;
    width: 100%;
  }

  .why-features-grid {
    grid-template-columns: 1fr;
  }

  .puja-services-grid {
    grid-template-columns: 1fr;
  }

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

  .pandit-cta-content h2 {
    font-size: 24px;
  }

  .pandit-cta-buttons {
    flex-direction: column;
  }

  .btn-cta-call,
  .btn-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Best Pandit in Ujjain - Sacred Article Page Styling
   ========================================================================== */
.pandit-article-section {
  padding: 40px 0 70px 0;
  background-color: #fffaf4;
}

.pandit-article-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 50px;
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 10px 35px rgba(180, 83, 9, 0.06);
  color: #2d3748;
  line-height: 1.85;
}

.pandit-article-card h2 {
  font-size: 26px;
  font-weight: 800;
  color: #9a3412;
  margin-top: 36px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245, 158, 11, 0.25);
  position: relative;
  line-height: 1.35;
}

.pandit-article-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 50px;
  height: 2px;
  background: #ea580c;
}

.pandit-article-card h2:first-of-type {
  margin-top: 0;
}

.pandit-article-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a202c;
  margin-top: 24px;
  margin-bottom: 10px;
}

.pandit-profile-callout {
  background: #fffdfa;
  border-left: 4px solid #ea580c;
  border-radius: 0 14px 14px 0;
  padding: 16px 20px;
  margin-bottom: 18px;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  border-right: 1px solid rgba(245, 158, 11, 0.15);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.pandit-profile-callout h3 {
  margin-top: 0;
  margin-bottom: 6px;
  color: #9a3412;
}

.pandit-profile-callout p {
  margin-bottom: 0;
}

.pandit-article-card p {
  font-size: 16.5px;
  line-height: 1.85;
  color: #4a5568;
  margin-bottom: 18px;
}

.pandit-article-card strong {
  color: #9a3412;
  font-weight: 700;
}

.pandit-article-card a {
  color: #ea580c;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.pandit-article-card a:hover {
  color: #9a3412;
}

.pandit-styled-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.pandit-styled-list li {
  font-size: 16px;
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px dashed rgba(245, 158, 11, 0.2);
  color: #334155;
}

.pandit-styled-list li::before {
  content: "🕉️";
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 15px;
}

.pandit-styled-list li:last-child {
  border-bottom: none;
}

.pandit-styled-ol {
  counter-reset: pandit-counter;
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.pandit-styled-ol li {
  counter-increment: pandit-counter;
  font-size: 16px;
  padding: 12px 0 12px 42px;
  position: relative;
  border-bottom: 1px dashed rgba(245, 158, 11, 0.2);
  color: #334155;
}

.pandit-styled-ol li::before {
  content: counter(pandit-counter);
  position: absolute;
  left: 0;
  top: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pandit-styled-ol li:last-child {
  border-bottom: none;
}

.pandit-article-faq-item {
  background: #fffdfa;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.pandit-article-faq-item h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16.5px;
  color: #9a3412;
}

.pandit-article-faq-item p {
  margin-bottom: 0;
  font-size: 15.5px;
}

.pandit-article-cta-box {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
  border-radius: 18px;
  padding: 30px;
  color: #ffffff;
  text-align: center;
  margin: 35px 0;
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.3);
}

.pandit-article-cta-box h2 {
  color: #ffffff !important;
  border: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-size: 26px !important;
}

.pandit-article-cta-box h2::after {
  display: none !important;
}

.pandit-article-cta-box p {
  color: #fff7ed !important;
  font-size: 16.5px !important;
  margin-bottom: 22px !important;
}

.pandit-article-cta-box strong {
  color: #fef08a !important;
}

.pandit-article-cta-box a {
  color: #fef08a !important;
}

.pandit-article-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-call-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #9a3412 !important;
  font-size: 15px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.btn-cta-call-white:hover {
  background: #fef3c7;
  color: #7c2d12 !important;
  transform: translateY(-2px);
}

.btn-cta-whatsapp-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.25);
  transition: all 0.25s ease;
}

.btn-cta-whatsapp-green:hover {
  transform: translateY(-2px);
  color: #ffffff !important;
}

.pandit-footer-note {
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  color: #9a3412;
}

/* Image frame styling in article */
.pandit-img-frame {
  position: relative;
  display: inline-block;
  padding: 8px;
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 12px 28px rgba(180, 83, 9, 0.12);
  margin: 15px auto;
  max-width: 100%;
}

.pandit-img-frame img.rounded-card-img {
  border-radius: 12px;
  max-height: 280px;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.pandit-img-frame .img-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(254, 240, 138, 0.4);
}

.pandit-section-block {
  margin-bottom: 45px;
}

.pandit-acharyas-grid {
  margin-top: 15px;
  margin-bottom: 10px;
}

.pandit-highlight-box {
  background: #fffdfa;
  border-left: 4px solid #ea580c;
  border-radius: 14px;
  padding: 22px 26px;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  border-right: 1px solid rgba(245, 158, 11, 0.2);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  margin: 20px 0;
  font-size: 16.5px;
  line-height: 1.8;
  color: #4a5568;
}

.pandit-highlight-box p:last-child {
  margin-bottom: 0;
}

.acharya-name {
  font-size: 18.5px;
  font-weight: 700;
  color: #9a3412;
  margin-top: 0;
  margin-bottom: 8px;
}

.pandit-step-card {
  background: #ffffff;
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  border-radius: 16px;
  padding: 22px 16px;
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.06);
  transition: all 0.3s ease;
}

.pandit-step-card:hover {
  transform: translateY(-3px);
  border-color: #ea580c;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.15);
}

.step-num-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(234, 88, 12, 0.3);
}

.pandit-step-card p {
  font-size: 15px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0;
}


@media (max-width: 767px) {
  .pandit-article-card {
    padding: 26px 20px;
  }
  .pandit-article-card h2 {
    font-size: 22px;
  }
  .pandit-article-cta-box {
    padding: 22px 18px;
  }
  .btn-cta-call-white,
  .btn-cta-whatsapp-green {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Sacred Breadcrumbs Banner with Background Image & Opacity Overlay
   ========================================================================== */
.breadcrumbs {
  position: relative;
  background-image: url('../img/mahakaal2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 95px 0 100px 0;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-bottom: 3px solid #ea580c;
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.breadcrumbs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 9, 3, 0.80) 0%, rgba(12, 4, 1, 0.86) 100%);
  z-index: -1;
}

.breadcrumbs .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumbs h1,
.breadcrumbs h2 {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-align: center;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.65);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 auto 16px auto;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.breadcrumbs ol li {
  color: #f1f5f9;
}

.breadcrumbs ol li a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs ol li a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #cbd5e1;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 60px 0 65px 0;
    min-height: 190px;
  }

  .breadcrumbs h1,
  .breadcrumbs h2 {
    font-size: 26px;
  }

  .breadcrumbs ol {
    margin-bottom: 12px;
    font-size: 14px;
  }
}

/* ==========================================================================
   Reference Site Design: Tour Content Cards & Detail Styles
   Inspired by https://mangalnathbhaatpuja.co.in/ujjain-temple-tour.html
   ========================================================================== */
.tour-page-wrapper {
  background: #fdfbf7;
  padding: 45px 0 60px 0;
}

.tour-content-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 32px;
  margin-bottom: 30px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tour-content-card:hover {
  box-shadow: 0 14px 35px rgba(245, 158, 11, 0.10);
}

.tour-subheading {
  font-size: 23px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  line-height: 1.4;
}

.tour-subheading i {
  color: #f59e0b;
  font-size: 24px;
}

.tour-img-box {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  height: 250px;
  margin: 0 auto;
}

.tour-img-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

.tour-img-box:hover img {
  transform: scale(1.04);
}

.tour-img-box.tour-services-img-box {
  max-width: 380px;
  height: 280px;
}

.tour-img-box.tour-services-img-box img {
  object-position: center;
}

.tour-lead-text {
  font-size: 17px;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 16px;
}

.tour-body-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 0;
}

/* Feature & Service Sub-cards */
.tour-sub-card {
  background: #fffbf5;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  transition: all 0.25s ease;
}

.tour-sub-card:hover {
  background: #fff8eb;
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.12);
}

.tour-sub-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #9a3412;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-sub-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 0;
}

/* Acharya Profile Sub-cards */
.tour-acharya-card {
  background: #fffbf5;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
}

.tour-acharya-card:hover {
  background: #ffffff;
  border-color: #ea580c;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.12);
  transform: translateY(-3px);
}

.tour-acharya-avatar {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f59e0b;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.tour-acharya-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-acharya-icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #ffffff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fde68a;
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.25);
}

.tour-acharya-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.tour-acharya-info p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 0;
}

/* Notice & Route Boxes */
.tour-notice-box {
  background: rgba(200, 40, 25, 0.06);
  border-left: 4px solid #c2410c;
  border-radius: 8px;
  padding: 20px 22px;
  font-size: 15.5px;
  line-height: 1.8;
  color: #1e293b;
}

.tour-route-box {
  background: #fffbf5;
  border: 1px dashed #f59e0b;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 600;
  color: #9a3412;
  font-size: 16px;
  text-align: center;
}

/* Service Item Pill */
.tour-service-item {
  background: #fffbf5;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.25s ease;
  margin-bottom: 12px;
}

.tour-service-item:hover {
  background: #fff8eb;
  border-color: #f59e0b;
  transform: translateX(4px);
}

.tour-service-item i {
  color: #ea580c;
  font-size: 18px;
}

/* Step Cards */
.tour-step-card {
  background: #fffbf5;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.tour-step-card:hover {
  background: #ffffff;
  border-color: #ea580c;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.12);
}

.tour-step-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.25);
}

.tour-step-card p {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0;
  line-height: 1.5;
}

/* CTA Banner */
.tour-cta-banner {
  background: linear-gradient(135deg, #7c1a0e 0%, #c2410c 50%, #ea580c 100%);
  border-radius: 16px;
  padding: 35px 30px;
  margin-bottom: 30px;
  box-shadow: 0 14px 35px rgba(194, 65, 12, 0.25);
  color: #ffffff;
}

.tour-cta-banner h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 14px;
}

.tour-cta-banner p {
  color: #fff7ed;
  font-size: 16px;
  line-height: 1.8;
}

.tour-cta-banner a {
  color: #fef08a;
  text-decoration: underline;
  font-weight: 600;
}

.tour-cta-banner a:hover {
  color: #ffffff;
}

/* Contact Highlight Card */
.contact-highlight-card {
  background: linear-gradient(135deg, #fffbf5 0%, #fff7ed 100%);
  border: 1.5px solid #fde68a;
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 35px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.contact-highlight-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: #781d1d;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.contact-highlight-card h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border-radius: 2px;
}

.contact-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.contact-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn-phone {
  background: #ea580c;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.contact-btn-phone:hover {
  background: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.contact-btn-email {
  background: #ffffff;
  border: 1.5px solid #ea580c;
  color: #ea580c !important;
}

.contact-btn-email:hover {
  background: #fff7ed;
  transform: translateY(-2px);
}

.contact-badge-address {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #334155;
  cursor: default;
}

/* FAQ Accordion */
.faq-section {
  margin-bottom: 30px;
}

.faq-section .faq-title-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.faq-section .faq-title-wrap h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}

.faq-section .faq-title-wrap .divider-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  margin: 0 auto;
  border-radius: 2px;
}

.faq-accordion-wrap {
  margin-top: 15px;
}

.faq-item {
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 12px !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.10);
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  background: #fffbf5;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  outline: none;
  transition: all 0.25s ease;
}

.faq-question-btn:hover {
  color: #c2410c;
  background: #fff8eb;
}

.faq-arrow-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ea580c;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-question-btn {
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  color: #c2410c;
}

.faq-item.open .faq-arrow-icon {
  transform: rotate(180deg);
  background: #ea580c;
  color: #ffffff;
}

.faq-answer-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}

.faq-item.open .faq-answer-pane {
  max-height: 400px;
}

.faq-answer-content {
  padding: 18px 22px 22px 22px;
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  border-top: 1px solid rgba(245, 158, 11, 0.18);
}

@media (max-width: 768px) {
  .tour-content-card {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .tour-subheading {
    font-size: 20px;
  }

  .tour-cta-banner {
    padding: 24px 20px;
  }

  .contact-btn-group {
    flex-direction: column;
    width: 100%;
  }

  .contact-pill-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   About Us Page Redesign Styles (.about-guru-card & Trust Strip)
   ========================================================================== */
.about-trust-strip {
  background: linear-gradient(135deg, #fffbf5 0%, #fff7ed 100%);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 16px;
  padding: 22px 20px;
  margin-bottom: 35px;
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.05);
}

.about-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
}

.about-trust-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.about-trust-info h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 2px;
}

.about-trust-info p {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.4;
}

.about-guru-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 32px;
  margin-bottom: 35px;
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.about-guru-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ea580c, #c2410c);
  opacity: 0.9;
}

.about-guru-card:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 18px 40px rgba(180, 83, 9, 0.12);
}

.about-guru-card:hover .guru-img-frame img {
  transform: scale(1.04);
}

.guru-img-frame {
  width: 100%;
  max-width: 320px;
  height: 280px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid #fde68a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  background: #fff;
  position: relative;
}

.guru-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
  display: block;
}

/* Precise image focal positioning so faces & sacred rituals are never cut off */
.tour-img-box img[src*="yogesh"],
.guru-img-frame img[src*="yogesh"],
.tour-img-yogesh {
  object-position: 50% 63% !important;
}

.tour-img-box img[src*="abhi"],
.guru-img-frame img[src*="abhi"],
.tour-img-abhi {
  object-position: 50% 30% !important;
}

.tour-img-box img[src*="about11"],
.guru-img-frame img[src*="about11"],
.tour-img-manish {
  object-position: 50% 15% !important;
}

.tour-img-box img[src*="about1."],
.tour-img-box img[src*="about1.jpeg"],
.guru-img-frame img[src*="about1."],
.guru-img-frame img[src*="about1.jpeg"],
.tour-img-rishabh {
  object-position: 50% 15% !important;
}

.tour-img-box img[src*="pitra-dosh"],
.guru-img-frame img[src*="pitra-dosh"] {
  object-position: center center !important;
}

.guru-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.guru-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef3c7;
  color: #9a3412;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.guru-exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.guru-name-title {
  font-size: 24px;
  font-weight: 800;
  color: #7c1a0e;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1.35;
}

.guru-name-title i {
  color: #f59e0b;
  font-size: 22px;
}

.guru-para-text {
  font-size: 15.5px;
  line-height: 1.85;
  color: #475569;
  margin-bottom: 14px;
}

.guru-callout-box {
  background: linear-gradient(135deg, #fffbf5 0%, #fff7ed 100%);
  border-left: 4px solid #ea580c;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 18px 0;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  border-right: 1px solid rgba(245, 158, 11, 0.2);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.guru-callout-box p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #9a3412;
  line-height: 1.7;
}

.guru-callout-box p strong {
  color: #7c1a0e;
}

.guru-action-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn-guru-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff !important;
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
  transition: all 0.25s ease;
}

.btn-guru-call:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
  color: #ffffff !important;
}

.btn-guru-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #ffffff !important;
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: all 0.25s ease;
}

.btn-guru-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  color: #ffffff !important;
}

@media (max-width: 991px) {
  .guru-img-frame {
    margin: 20px auto 0 auto;
    max-width: 290px;
    height: 260px;
  }
  
  .about-trust-strip {
    padding: 16px 14px;
  }
}

@media (max-width: 768px) {
  .about-guru-card {
    padding: 24px 18px;
    border-radius: 16px;
  }
  
  .guru-name-title {
    font-size: 20px;
  }
  
  .guru-action-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-guru-call,
  .btn-guru-whatsapp {
    width: 100%;
    justify-content: center;
  }
}


