:root {
  --maroon: #760b1b;
  --maroon-dark: #3c020b;
  --maroon-light: #a8172d;
  --gold: #f2bd42;
  --gold-dark: #bc7812;
  --cream: #fff7e7;
  --paper: #fffdf8;
  --text: #261718;
  --muted: #6e5c5e;
  --green: #159447;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(71, 7, 17, .13);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 34px));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 9999;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.topbar {
  background: linear-gradient(90deg, #290106, var(--maroon), #290106);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.topbar-inner {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  font-size: 18px;
}

.topbar-inner p {
  margin: 0;
  text-align: center;
  letter-spacing: .1px;
}

.top-phone,
.mini-whatsapp {
  font-weight: 800;
  white-space: nowrap;
}

.top-phone span {
  color: var(--gold);
}

.mini-whatsapp {
  background: var(--green);
  padding: 7px 12px;
  border-radius: 20px;
}

.brand-strip {
  color: #fff;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 12px;
}

.brand-card {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
 
}

.main-brand {
  justify-content: flex-start;
  gap: 12px;
}

.main-brand img {
  width: 100%;
  object-fit: contain;
}

.main-brand div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.main-brand span {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 14px;
}

.main-brand strong {
  color: #d72332;
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1;
  text-shadow: 0 2px #000;
  white-space: nowrap;
}

.main-brand small {
  color: #ffe283;
  margin-top: 7px;
  letter-spacing: .5px;
}

.global-card {
  flex-direction: column;
  text-align: center;
  gap: 8px;
}

.global-card strong {
  color: #fff4ce;
  font-family: "Cinzel", serif;
}

.global-card small {
  color: #d5c3c3;
}

.flags {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 25px;
}

.flags span {
  background: #fff;
  border-radius: 5px;
  padding: 1px 5px;
  box-shadow: inset 0 0 0 1px #7c101b;
}

.number-card {
  justify-content: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #8e0717, #3c020b);
}

.round-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffe99a, var(--gold));
  color: var(--maroon);
  font-size: 25px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .35);
}

.number-card div {
  display: flex;
  flex-direction: column;
}

.number-card small {
  color: #ffe5a4;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 800;
}

.number-card strong {
  font-size: clamp(21px, 2.2vw, 29px);
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

.number-card span:last-child {
  color: #ffdda0;
  font-size: 12px;
  margin-top: 4px;
}

.blink-text-section {
  padding: 12px 15px;
  background: linear-gradient(90deg, #290106, var(--maroon), #290106);
  border-top: 2px solid #d6aa52;
  border-bottom: 2px solid #d6aa52;
  overflow: hidden;
}

.blink-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}

.blink-icon {
  color: #ffd978;
  font-size: 24px;
  animation: iconBlink 1s infinite;
}

.blink-text {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  animation: textBlink 1.2s infinite;
}

.blink-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #6f0c1b;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s ease;
}

.blink-call-btn:hover {
  background: #ffd978;
  color: #3a0610;
  transform: translateY(-2px);
}

@keyframes textBlink {

  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 4px rgba(255, 217, 120, 0.3);
  }

  50% {
    opacity: 0.45;
    text-shadow: 0 0 14px rgba(255, 217, 120, 0.9);
  }
}

@keyframes iconBlink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.25);
  }
}

@media (max-width: 767px) {
  .blink-content {
    flex-direction: column;
    gap: 8px;
  }

  .blink-text {
    font-size: 16px;
  }

  .blink-call-btn {
    padding: 7px 16px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .blink-text,
  .blink-icon {
    animation: none;
  }
}
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
        radial-gradient(
            circle at 1px 1px,
            rgba(255, 216, 107, 0.35) 1px,
            transparent 0
        ),
        linear-gradient(
            90deg,
            rgba(48, 4, 10, 0.95) 0%,
            rgba(77, 6, 18, 0.80) 48%,
            rgba(48, 4, 10, 0.25) 100%
        ),
        url('../images/bg0.png');

    background-size:
        24px 24px,
        cover,
        cover;

    background-position:
        center,
        center,
        center;

    background-repeat:
        repeat,
        no-repeat,
        no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 0, 5, .9) 0%, rgba(80, 3, 15, .72) 48%, rgba(24, 0, 4, .6) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(circle at 1px 1px, #ffd86b 1px, transparent 0);
  background-size: 27px 27px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero::before {
  content: "ॐ";
  position: absolute;
  right: 4%;
  top: 4%;
  color: rgba(255, 216, 107, .09);
  font-size: 340px;
  font-family: serif;
  line-height: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
  padding: 76px 0 105px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.8px;
}

.eyebrow::before,
.section-label::before {
  content: "✦";
}

.hero h1 {
  margin: 16px 0 18px;
  font-family: "Cinzel", serif;
  font-size: clamp(43px, 5.4vw, 73px);
  line-height: 1.06;
  max-width: 760px;
  color: #fff;
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: #f6dfe2;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 29px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 23px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .22);
}

.btn-gold {
  background: linear-gradient(145deg, #fff1ac, var(--gold));
  color: #4d0610;
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}

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

.btn-outline-light {
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

.btn-maroon {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: #fff;
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: #ffe8b0;
  font-size: 13px;
  font-weight: 700;
}

.hero-art {
  position: relative;
  min-height: 485px;
  display: grid;
  place-items: center;
}

.ganesha-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 223, 117, .47), rgba(255, 178, 0, .08) 48%, transparent 70%);
  animation: pulse 4s infinite ease-in-out;
}

.hero-ganesha {
  position: relative;
  z-index: 2;
  width: 100%;
   
  object-fit: contain;
  filter: drop-shadow(0 25px 28px rgba(0, 0, 0, .45));
}
  
.hero-couple-card strong {
  color: var(--maroon);
  font-family: "Cinzel", serif;
}

.hero-couple-card span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  margin-top: 4px;
}

.hero-wave {
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -68px;
  height: 120px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

@keyframes pulse {
  50% {
    transform: scale(1.08);
    opacity: .72;
  }
}

.two-col,
.why-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
}

.image-frame {
  position: relative;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #f4d79b);
  box-shadow: var(--shadow);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: -12px 28px 28px -12px;
  border: 2px solid var(--gold);
  border-radius: 25px;
  z-index: -1;
}

.image-frame img {
  width: 100%;
  height: 505px;
  object-fit: cover;
  border-radius: 17px;
}

.image-badge {
  position: absolute;
  left: -22px;
  bottom: 34px;
  background: linear-gradient(135deg, var(--maroon), #aa1530);
  color: #fff;
  padding: 15px 21px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  border: 2px solid #f7cb67;
  box-shadow: 0 13px 30px rgba(71, 7, 17, .28);
}

.image-badge strong {
  font-size: 29px;
  color: var(--gold);
  line-height: 1;
}

.image-badge span {
  font-size: 12px;
  margin-top: 4px;
}

.about-copy h2,
.section-heading h2,
.why-copy h2,
.feature-banner h2,
.final-cta h2 {
  font-family: "Cinzel", serif;
  color:#760b1b;
  font-size: clamp(32px, 4vw, 49px);
  line-height: 1.18;
  margin: 12px 0 19px;
}

.about-copy p,
.section-heading p,
.why-copy>p {
  color: #000;
  line-height: 1.78;
  margin: 0 0 14px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}

.mini-stats>div {
  background: var(--cream);
  border: 1px solid #000;
  padding: 17px 10px;
  border-radius: 13px;
  text-align: center;
}

.mini-stats strong {
  display: block;
  color: var(--maroon);
  font-size: 23px;
  font-family: "Cinzel", serif;
}

.mini-stats span {
  display: block;
  color: #000;
  font-size: 11px;
  margin-top: 4px;
}

.text-call {
  color: var(--maroon);
  font-weight: 800;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 5px;
}

.hindi-cta {
  position: relative;
  background: linear-gradient(100deg, rgba(59, 2, 10, .96), rgba(135, 11, 30, .9)), url('../images/bg0.png') center/cover;
  color: #fff;
  padding: 58px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.cta-inner span {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 12px;
}

.cta-inner h2 {
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: clamp(28px, 4vw, 44px);
  margin: 8px 0 10px;
}

.cta-inner p {
  max-width: 760px;
  margin: 0;
  color: #f5dcdf;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}

.section-heading {
  text-align: center;
  max-width: 790px;
  margin: 0 auto 42px;
}

.services {
  background: linear-gradient(#fffdf8, #fff7e8);
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f1dfbb;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 55px rgba(71, 7, 17, .18);
}

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(53, 2, 10, .68));
}

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

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-image span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon);
  font-weight: 900;
  border: 3px solid #fff2b7;
}

.service-content {
  padding: 22px;
}

.service-content h3,
.compact-card h3,
.quick-card h3 {
  margin: 0 0 9px;
  color: var(--maroon-dark);
  font-family: "Cinzel", serif;
  font-size: 20px;
}

.service-content p,
.compact-card p,
.quick-card p {
  margin: 0;
  color: #000;
  line-height: 1.62;
  font-size: 14px;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 19px;
}

.card-actions a {
  flex: 1;
  text-align: center;
  background: var(--maroon);
  color: #fff;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.card-actions a:last-child {
  background: var(--green);
}

.stats-section {
  background: linear-gradient(90deg, #310107, #7d0c1c, #310107);
  color: #fff;
  padding: 43px 0;
  border-block: 5px solid var(--gold-dark);
}

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

.stat {
  text-align: center;
  padding: 4px 20px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: "Cinzel", serif;
  color: var(--gold);
  font-size: clamp(32px, 4vw, 48px);
}

.stat span {
  font-size: 13px;
  color: #f6dade;
}

.why {
  background: #fff;
}

.why-grid {
  grid-template-columns: 1.05fr .95fr;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 15px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
}

.feature-list li>span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--maroon);
  border: 1px solid #ecd69f;
}

.feature-list strong {
  color: var(--maroon-dark);
}

.feature-list p {
  margin: 4px 0 0;
  color:#000;
  font-size: 13px;
  line-height: 1.5;
}

.why-visual {
  position: relative;
  padding: 0 18px 30px 0;
}

.why-visual::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 72%;
  border-radius: 25px;
  background: linear-gradient(145deg, var(--gold), #ba7412);
  z-index: 0;
}

.why-visual img {
  position: relative;
  z-index: 1;
  height: 580px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.why-card {
  position: absolute;
  z-index: 2;
  left: -34px;
  bottom: -10px;
  background: #fff;
  min-width: 245px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  border-left: 5px solid var(--maroon);
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
}

.why-card>span {
  grid-row: 1 / 3;
  font-size: 40px;
  color: var(--maroon);
}

.why-card strong {
  color: var(--maroon);
}

.why-card small {
  color: #000;
  margin-top: 3px;
}

.feature-banner {
  background: linear-gradient(140deg, rgba(42, 1, 7, .97), rgba(116, 8, 26, .91)), url('../images/bg0.png') center/cover fixed;
  color: #fff;
  padding: 83px 0;
}

.feature-banner-head {
  max-width: 850px;
  margin: 0 auto 35px;
  text-align: center;
}

.feature-banner-head span {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.7px;
  font-size: 12px;
}

.feature-banner h2 {
  color: #fff;
  font-family: "Tiro Devanagari Hindi", serif;
}

.feature-banner-head p {
  color: #f2dce0;
  line-height: 1.75;
}

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

.quick-card {
  background: rgba(255, 255, 255, .96);
  color: var(--text);
  padding: 28px;
  border-radius: 17px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 17px 38px rgba(0, 0, 0, .25);
}

.quick-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  font-size: 25px;
  margin-bottom: 16px;
}

.quick-card a {
  display: inline-block;
  margin-top: 17px;
  color: var(--maroon);
  font-weight: 800;
  font-size: 13px;
}

.indian-services {
  background: #fffaf0;
}

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

.compact-card {
  background: #fff;
  border: 1px solid #efdcba;
  border-radius: 16px;
  padding: 11px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(71, 7, 17, .08);
  transition: transform .25s;
}

.compact-card:hover {
  transform: translateY(-4px);
}

.compact-card img {
  width: 180px;
  height: 145px;
  object-fit: cover;
  border-radius: 11px;
}

.compact-card div {
  padding-right: 12px;
}

.compact-card a {
  display: inline-block;
  margin-top: 13px;
  background: var(--maroon);
  color: #fff;
  padding: 8px 13px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}

.testimonials {
  background:linear-gradient(140deg, rgba(42, 1, 7, .97), rgba(116, 8, 26, .91)), url('../images/bg0.png') center/cover fixed;
  color: #fff;
}

.section-heading.light h2 {
  color: #fff;
}

.section-heading.light p {
  color: #f0d6da;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0 18px;
}

.testimonial-image {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  padding: 3px;
  background: #ffffff;
  border: 3px solid #ffd86b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.testimonial-user-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-user-info strong {
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.testimonial-user-info small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.testimonial .stars {
  margin-top: 15px;
  color: #ffd86b;
  font-size: 19px;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .testimonial-image {
    width: 62px;
    height: 62px;
  }

  .testimonial-user-info strong {
    font-size: 16px;
  }

  .testimonial-user-info small {
    font-size: 13px;
  }
}
.testimonial {
  position: relative;
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  padding: 31px;
  box-shadow: 0 17px 38px rgba(0, 0, 0, .25);
  border-bottom: 5px solid var(--gold);
}

.testimonial .quote {
  position: absolute;
  right: 23px;
  top: 5px;
  color: #5b0712;
  font-size: 86px;
  font-family: serif;
  line-height: 1;
}

.testimonial p {
  position: relative;
  margin: 0 0 18px;
  color: #000;
  line-height: 1.72;
}

.stars {
  color: #e7a10e;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.testimonial strong,
.testimonial small {
  display: block;
}

.testimonial strong {
  color: var(--maroon);
}

.testimonial small {
  color: #000;
  margin-top: 3px;
}
.faq-section {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(
      circle at 1px 1px,
      rgba(117, 16, 16, 0.08) 1px,
      transparent 0
    ),
    linear-gradient(135deg, #fffaf1, #ffffff);

  background-size: 24px 24px, cover;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  top: -160px;
  left: -150px;
  border-radius: 50%;
  background: rgba(117, 16, 16, 0.07);
  pointer-events: none;
}

.faq-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -140px;
  bottom: -140px;
  border-radius: 50%;
  background: rgba(255, 216, 107, 0.18);
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-wrapper {
  max-width: 920px;
  margin: 45px auto 0;
  display: grid;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(117, 16, 16, 0.14);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(58, 6, 16, 0.07);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(117, 16, 16, 0.35);
  box-shadow: 0 14px 35px rgba(58, 6, 16, 0.12);
}

.faq-item.active {
  border-color: #b51c1c;
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: #3a0610;
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #751010, #b51c1c);
  font-size: 25px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 23px;
  color: #000;
  font-size: 15px;
  line-height: 1.8;
}

.faq-answer-inner a {
  color: #9d1515;
  font-weight: 700;
  text-decoration: none;
}

.faq-contact {
  max-width: 920px;
  margin: 35px auto 0;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(58, 6, 16, 0.98),
      rgba(121, 12, 30, 0.96)
    );
  box-shadow: 0 18px 45px rgba(58, 6, 16, 0.2);
}

.faq-contact span {
  display: block;
  margin-bottom: 5px;
  color: #ffd86b;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-contact h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
}

.faq-call-btn {
  padding: 13px 22px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #ffd86b;
  color: #3a0610;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.faq-call-btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .faq-section {
    padding: 65px 0;
  }

  .faq-wrapper {
    margin-top: 30px;
  }

  .faq-question {
    min-height: 68px;
    padding: 17px 18px;
    font-size: 16px;
  }

  .faq-answer-inner {
    padding: 0 18px 20px;
    font-size: 14px;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 22px;
  }

  .faq-contact {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
  }

  .faq-contact h3 {
    font-size: 20px;
  }

  .faq-call-btn {
    width: 100%;
    text-align: center;
  }
}

.final-cta {
  background: linear-gradient(90deg, #fff8e6, #f6d88c, #fff8e6);
  padding: 44px 0;
  border-block: 1px solid #ddb14b;
}

.final-cta-inner {
  display: grid;
   
  align-items: center;
  gap: 24px;
}

.final-symbol {
  width: 105px;
  height: 105px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  border: 3px solid var(--maroon);
  box-shadow: 0 10px 25px rgba(80, 3, 15, .14);
}

.final-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.final-cta span {
  color: var(--maroon);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.2px;
}

.final-cta h2 {
  margin: 7px 0 6px;
  font-size: clamp(28px, 3.6vw, 43px);
}

.final-cta p {
  margin: 0;
  color: #000;
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 225px;
}

footer {
  background:linear-gradient(140deg, rgba(42, 1, 7, .97), rgba(116, 8, 26, .91)), url('../images/bg0.png') center/cover fixed;
  color: #d8c2c5;
  padding-top: 58px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 45px;
  padding-bottom: 43px;
}

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

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 19px;
}

.footer-brand span {
  font-size: 11px;
  margin-top: 5px;
}

.footer-about p {
  max-width: 350px;
  line-height: 1.7;
  font-size: 13px;
}

footer h3 {
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 16px;
  margin: 0 0 18px;
}

.footer-grid>div:not(.footer-about) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

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

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

.footer-bottom .container {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 11px;
}

.floating-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -7px 25px rgba(0, 0, 0, .25);
}

.floating-actions a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
}

.float-call {
  background: var(--maroon);
}

.float-whatsapp {
  background: var(--green);
}

.floating-actions span {
  font-size: 21px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 0;
  background: var(--gold);
  color: var(--maroon);
  box-shadow: 0 9px 25px rgba(0, 0, 0, .2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
  z-index: 1001;
  font-weight: 900;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

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

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

@media (max-width: 1050px) {
  .brand-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .global-card {
    display: none;
  }

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

  .final-cta-inner {
    grid-template-columns: 90px 1fr;
  }

  .final-actions {
    grid-column: 2;
    flex-direction: row;
  }

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

  .footer-grid>div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 56px;
  }

  .topbar-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .topbar-inner p {
    display: none;
  }

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

  .number-card {
    display: none;
  }

  .main-brand {
    justify-content: center;
  }

  .main-brand strong {
    font-size: 34px;
  }

  .navbar {
    top: 0;
  }

  .nav-inner {
    min-height: 62px;
  }

  .nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #4d030e;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .25);
  }

  .nav-menu.open {
    max-height: 470px;
  }

  .nav-menu>a {
    padding: 15px 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .nav-menu>a::after {
    display: none;
  }

  .nav-call {
    margin: 8px 15px 15px;
    text-align: center;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .two-col,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 67px 0 110px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-art {
    min-height: 410px;
    margin-top: 15px;
  }

  .hero-ganesha {
    width: 390px;
  }

  .hero-couple-card {
    right: 4%;
  }

  .about-visual {
    max-width: 620px;
    margin-inline: auto;
  }

  .about-copy {
    text-align: center;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .why-copy {
    order: 2;
  }

  .why-visual {
    order: 1;
    max-width: 620px;
    margin-inline: auto;
  }

  .quick-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid>div:last-child {
    grid-column: auto;
  }

  .floating-actions {
    display: grid;
  }

  .back-to-top {
    bottom: 73px;
  }

  .footer-bottom .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 14px 0;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .topbar-inner {
    min-height: 38px;
    font-size: 12px;
  }

  .mini-whatsapp {
    padding: 6px 10px;
  }

  .brand-strip {
    padding: 8px 0;
  }

  .brand-card {
    min-height: 94px;
  }

  .main-brand {
    padding-inline: 7px;
  }

  .main-brand span {
    font-size: 10px;
  }

  .main-brand strong {
    font-size: clamp(27px, 9vw, 36px);
  }

  .main-brand small {
    font-size: 9px;
  }
  .nav-brand {
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(37px, 12vw, 50px);
  }

  .hero p {
    font-size: 15px;
  }

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

  .trust-row {
    gap: 8px 13px;
    font-size: 11px;
  }

  .hero-art {
    min-height: 365px;
  }

  .hero-ganesha {
    width: 100%;
  }

  .ganesha-glow {
    width: 300px;
    height: 300px;
  }

  .hero-couple-card {
    width: 78%;
    right: 2%;
    grid-template-columns: 80px 1fr;
  }

  .hero-couple-card img {
    width: 80px;
    height: 68px;
  }

  .image-frame img {
    height: 370px;
  }

  .image-badge {
    left: -4px;
    bottom: 25px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

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

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

  .service-image {
    height: 235px;
  }

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

  .stat {
    padding: 4px 10px;
  }

  .why-visual img {
    height: 430px;
  }

  .why-card {
    left: 0;
    bottom: 43px;
    min-width: 220px;
  }

  .compact-card {
    grid-template-columns: 110px 1fr;
    gap: 12px;
  }

  .compact-card img {
    width: 110px;
    height: 120px;
  }

  .compact-card h3 {
    font-size: 15px;
  }

  .compact-card p {
    font-size: 12px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-symbol {
    margin-inline: auto;
  }

  .final-actions {
    grid-column: auto;
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
.video-section {
    width: 100%;
    padding: 30px 15px;
}

.video-grid {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.video-item {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

.video-item video {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 991px) {
    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .video-section {
        padding: 20px 10px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* =========================================================
   MOBILE HORIZONTAL OVERFLOW / PAGE SHAKE FIX
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body,
main,
header,
footer,
section,
nav,
.container,
.brand-strip,
.topbar,
.hero,
.hero-grid,
.two-col,
.why-grid,
.service-grid,
.quick-grid,
.compact-grid,
.testimonial-grid,
.footer-grid,
.video-grid {
  min-width: 0;
  max-width: 100%;
}

img,
video,
iframe,
svg,
canvas {
  max-width: 100%;
}

.hero-wave {
  left: 0;
  right: 0;
  width: 100%;
}

@media (max-width: 820px) {
  .topbar-inner {
    width: 100%;
    max-width: 100%;
  }

  .brand-grid,
  .hero-grid,
  .two-col,
  .why-grid,
  .service-grid,
  .quick-grid,
  .compact-grid,
  .testimonial-grid,
  .footer-grid,
  .video-grid {
    min-width: 0;
  }

  .brand-grid > *,
  .hero-grid > *,
  .two-col > *,
  .why-grid > *,
  .service-grid > *,
  .quick-grid > *,
  .compact-grid > *,
  .testimonial-grid > *,
  .footer-grid > *,
  .video-grid > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero::before {
    right: 0;
    font-size: min(58vw, 250px);
  }

  .hero-pattern {
    width: 100%;
  }

  .image-frame::before {
    inset: -8px 12px 18px -8px;
  }

  .why-card {
    left: 0;
    max-width: calc(100% - 18px);
  }

  .floating-actions {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .topbar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 7px 0;
  }

  .topbar-inner > * {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .top-phone,
  .mini-whatsapp,
  .number-card strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .blink-content {
    width: 100%;
    min-width: 0;
  }

  .blink-text {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-grid {
    width: 100%;
  }

  .hero-copy,
  .hero-art,
  .hero-ganesha,
  .ganesha-glow {
    max-width: 100%;
  }

  .hero-art {
    overflow: hidden;
  }

  .hero-ganesha {
    width: 100%;
    height: auto;
  }

  .ganesha-glow {
    width: min(300px, 82vw);
    height: min(300px, 82vw);
  }

  .image-badge {
    left: 8px;
    right: 8px;
    width: auto;
    max-width: calc(100% - 16px);
  }

  .why-visual {
    padding-right: 0;
  }

  .why-visual::after {
    right: 0;
    max-width: 100%;
  }

  .compact-card {
    width: 100%;
    min-width: 0;
  }

  .compact-card div {
    min-width: 0;
    padding-right: 0;
  }

  .faq-question {
    min-width: 0;
  }

  .faq-question > span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-bottom .container {
    width: calc(100% - 24px);
  }

  .back-to-top {
    right: 12px;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 24px);
    max-width: 100%;
  }

  .main-brand img,
  .brand-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .main-brand strong,
  .hero h1,
  .about-copy h2,
  .section-heading h2,
  .why-copy h2,
  .feature-banner h2,
  .final-cta h2 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-couple-card {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
  }

  .stats-grid,
  .mini-stats {
    width: 100%;
  }

  .stat,
  .mini-stats > div {
    min-width: 0;
  }

  .testimonial,
  .quick-card,
  .service-card,
  .faq-item {
    min-width: 0;
    max-width: 100%;
  }
}
