:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --text: #2d221c;
  --muted: #6d625b;
  --primary: #c17a29;
  --primary-dark: #8d4f12;
  --accent: #f4e2c8;
  --shadow: 0 20px 45px rgba(38, 20, 7, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fffaf4 0%, #fff4e6 100%);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 7%;
  background: rgba(255, 250, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(193, 122, 41, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #e8b56b);
  color: white;
  font-size: 1.3rem;
  object-fit: cover;
}

.brand-image {
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
}

.nav-links a:hover,
footer a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 10px 30px rgba(193, 122, 41, 0.25);
}

.btn-secondary {
  background: white;
  color: var(--primary-dark);
  border: 1px solid rgba(193, 122, 41, 0.2);
}

.btn-dark {
  background: var(--text);
  color: white;
}

.btn-full {
  width: 100%;
  margin-top: 18px;
}

.hero,
.about,
.contact {
  padding: 70px 7%;
}

.hero-banner {
  position: relative;
  min-height: 560px;
  margin: 12px 0 20px;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 7%;
}

.hero-banner-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 11, 5, 0.86) 0%, rgba(18, 11, 5, 0.35) 55%, rgba(18, 11, 5, 0.12) 100%);
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 34px 0;
  color: white;
  text-shadow: 0 3px 16px rgba(0,0,0,0.65);
}

.hero-banner-content .eyebrow {
  color: #ffd58c;
}
.hero-banner-content .btn-secondary {
  background: rgba(255,255,255,0.95);
  color: var(--primary-dark);
}

.hero-banner-content h1 {
  font-size: clamp(2rem, 3.3vw, 3rem);
  margin-bottom: 12px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
  min-height: 70vh;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 10px;
}

.hero-content p,
.section-heading p,
.about-content p,
.process-step p,
.service-card p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 20px;
}

.hero-highlights {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.hero-card,
.about-card,
.contact-card,
.service-card,
.process-step {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #fef5e7);
}

.card-glow {
  position: absolute;
  inset: auto -20px -30px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(193, 122, 41, 0.2);
  filter: blur(18px);
}

.hero-card ul,
.about-card ul {
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.services,
.process {
  padding: 20px 7% 70px;
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.process-step {
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 14px 30px rgba(69, 31, 0, 0.16);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.72) 100%);
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #f9f3e8;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb347, #ff7f00);
  color: #fffdf7;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(255, 127, 0, 0.28);
  border: 1px solid rgba(255,255,255,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-link:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ffcc70, #ff8c00);
  box-shadow: 0 10px 22px rgba(255, 127, 0, 0.34);
}

.service-link.secondary {
  background: linear-gradient(135deg, #ffffff, #f7e5c2);
  color: #7a3d00;
  border: 1px solid rgba(122, 61, 0, 0.2);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.service-link.secondary:hover {
  background: linear-gradient(135deg, #fffaf0, #f2d8a8);
}

.card-kaal-sarp {
  background-image: url('../img/snake.jpg');
}

.card-mangal {
  background-image: url('../img/mangal.jpg');
}

.card-grah {
  background-image: url('../img/Tantra\ Shastra.jpg');
}

.card-pitra {
  background-image: url('../img/pitra.jpg');
}

.card-rudra {
  background-image: url('../img/rudrabhishek.jpg');
}

.card-kundli {
  background-image: url('../img/kundali.jpg');
}

.card-murti {
  background-image: url('../img/pranpratishta.jpg');
}

.card-mahamrityunjay {
  background-image: url('../img/mahamritunjay.jpg');
}

.card-santan {
  background-image: url('../img/baby.jpg');
}

.card-baglamukhi {
  background-image: url('../img/havanbaglamukhi.jpg');
}

.card-chandal {
  background-image: url('../img/chandal.jpg');
}

.card-bhairav {
  background-image: url('../img/pranpratishta.jpg');
}

.card-rinmukti {
  background-image: url('../img/rinmukti.jpg');
}

.card-navchandi {
  background-image: url('../img/navchandi.jpg');
}

.card-vish {
  background-image: url('../img/snake.jpg');
}

.card-ark {
  background-image: url('../img/arkkumbha.jpg');
}

.card-nagbali {
  background-image: url('../images/navgrahnagbali.jpg');
}

.card-bhairav {
  background-image: url('../images/navgrahnagbali.jpg');
}

.service-card:hover,
.process-step:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 48px rgba(38, 20, 7, 0.22);
  filter: brightness(1.04) saturate(1.08);
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffb347, #ff7f00);
  margin-bottom: 14px;
  font-size: 1.3rem;
  box-shadow: 0 8px 18px rgba(255, 127, 0, 0.24);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.about-card {
  padding: 28px;
}

.reviews-section {
  padding: 20px 7% 70px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 28px;
}

.stat-card,
.review-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.stat-card h3 {
  margin: 0 0 6px;
  color: var(--primary-dark);
  font-size: 1.8rem;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
}

.review-slider {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-track {
  flex: 1;
  position: relative;
  min-height: 220px;
}

.review-card {
  display: none;
  border: 1px solid rgba(193, 122, 41, 0.12);
}

.review-card.active {
  display: block;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.profile-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 700;
}

.slider-btn {
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(193, 122, 41, 0.2);
}

.stars {
  color: #f2b84b;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  font-size: 1rem;
}

.review-card p {
  color: var(--muted);
  margin: 0 0 12px;
}

.review-card strong {
  color: var(--text);
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1100;
}

.floating-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-direction: row-reverse;
}

.floating-label {
  background: linear-gradient(135deg, #fffaf3, #fce9c8);
  color: var(--text);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(193, 122, 41, 0.16);
}

.floating-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  padding: 0;
}

.floating-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-btn:hover {
  transform: scale(1.06);
}

.floating-btn.whatsapp {
  background: #25d366;
  color: white;
  animation: pulseGlow 1.8s infinite;
}

.floating-btn.call {
  background: var(--primary-dark);
  color: white;
  animation: pulseGlow 2.1s infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.contact-card {
  padding: 34px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.contact-detail {
  color: var(--muted);
  margin: 6px 0;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 7% 40px;
  color: var(--muted);
}

footer div {
  display: flex;
  gap: 16px;
}

.page-shell {
  padding: 60px 7% 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-hero {
  text-align: center;
  margin-bottom: 28px;
}

.gallery-hero h1 {
  margin-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.about-page {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.about-portrait-card {
  background: var(--surface);
  border-radius: 30px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.about-portrait-card img {
  width: 100%;
  border-radius: 24px;
}

.about-page-content {
  display: grid;
  gap: 18px;
}

.page-shell h1 {
  margin-bottom: 14px;
}

.page-shell p,
.page-shell li {
  color: var(--muted);
}

.page-card {
  background: var(--surface);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 20px;
}

.page-card ul {
  padding-left: 18px;
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
