/* ===== VARIABLES ===== */
:root {
  --saffron: #E76F00;
  --saffron-light: #F5A623;
  --maroon: #7A1C1C;
  --maroon-dark: #5a1414;
  --off-white: #F8F5F2;
  --white: #ffffff;
  --dark: #333333;
  --gray: #666666;
  --gray-light: #f0ebe5;
  --border: #e0d6cc;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(231,111,0,0.15);
  --radius: 12px;
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== HEADER ===== */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--saffron);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.om {
  font-size: 2rem;
  color: var(--saffron);
  line-height: 1;
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.2;
}
.logo-tagline {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.03em;
}
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--saffron);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--saffron); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav.open { display: flex; }
  .nav-link {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-link::after { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
}
.btn-primary:hover {
  background: #cf6200;
  border-color: #cf6200;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(231,111,0,0.3);
}
.btn-outline {
  background: var(--maroon);
  color: var(--white);
  /* border-color: var(--maroon); */
}
.btn-outline:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-1px);
}
.btn-full { width: 100%; }

/* ===== SECTION COMMON ===== */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  background: rgba(231,111,0,0.1);
  color: var(--saffron);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  margin-bottom: 0.75rem;
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--gray);
  font-size: 0.97rem;
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: url('image/hero_img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 5rem 0 4rem;
  min-height: 85vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(231,111,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.175); /* increase (e.g. 0.45) to make it lighter */
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: 'ॐ';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20rem;
  color: rgba(0,0,0,0.05);
  font-family: 'Noto Sans Devanagari', sans-serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-inner {
  margin-right: 20px;
  position: relative;
  z-index: 1;
  max-width: 780px;
  /* background: rgba(47, 46, 46, 0.089); */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 16px;
  padding: 2.25rem 2.25rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(231,111,0,0.9);
  color: var(--white);
  padding: 0.35rem 1.25rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero-hindi {
  font-size: clamp(1.8rem, 2.5vw, 1.3rem);
  color: rgb(255, 255, 255);
  font-family: 'Noto Sans Devanagari', sans-serif;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-size: 2.5rem;
  font-weight: 700;
  /* color: #ffc107; */
  color: #FFC107;
/* text-shadow: 0 2px 6px rgba(0,0,0,0.6); */
  line-height: 1;
}
.stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.2rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.22);
}

/* ===== SERVICES ===== */
.services {
  padding: 5rem 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(231,111,0,0.3);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  display: block;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 0.5rem;
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}
.service-hi {
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.6;
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}
.service-en {
  font-size: 0.78rem;
  color: var(--saffron);
  font-weight: 500;
  display: block;
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
  margin-top: 0.4rem;
}

.service-book-btn{
  border-radius: 8px;
  text-align: center;
  padding: 8px;
  background-color: var(--saffron);
  /* border: 1px orange; */
}

.service-book-btn:hover{
  background: #cf6200;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(231,111,0,0.3);
}

.service-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.service-book-btn,
.service-view-more {
  border-radius: 8px;
  flex: 1;
  min-width: 120px;
  margin: 0;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
}
.service-view-more:hover {
  background: var(--saffron);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

/* ===== SERVICE MODAL POPUP ===== */
.service-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  font-family: inherit;
}
.service-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
  animation: fadeInOverlay 0.3s ease;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
}
.modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  width: 900px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
  transform: scale(0.8);
  animation: scaleIn 0.3s ease forwards;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto 1fr auto;
}
@keyframes scaleIn {
  to { transform: scale(1); }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gray);
  cursor: pointer;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover {
  background: var(--gray-light);
  color: var(--maroon);
  transform: rotate(90deg);
}
.modal-left {
  height: 400px;
}
.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-right {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#modalHeading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--maroon);
  margin: 0;
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.modal-keypoints {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-keypoints li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}
.highlight {
  color: #fff;
  background: #ff5722;
  padding: 2px 6px;
  border-radius: 4px;
}
.highlights {
  color: #fff;
  background: #0da70b;
  padding: 2px 6px;
  border-radius: 4px;
}
.modal-keypoints li:last-child {
  border-bottom: none;
}
.modal-keypoints li::before {
  content: '✅';
  font-size: 1.1rem;
  flex-shrink: 0;
}
.modal-paragraph {
  grid-column: 1/-1;
  padding: 0 2.5rem 2.5rem;
  background: var(--off-white);
}
#modalPara {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  text-align: justify;
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* Modal Responsive */
/* Modal Responsive */
@media (max-width: 768px) {
  .modal-content {
    width: 95vw;
    height: 90vh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  /* 1st — Image on top */
  .modal-left {
    height: 220px;
    width: 100%;
    order: 1;
    flex-shrink: 0;
  }

  .modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 2nd — Heading + Keypoints below image */
  .modal-right {
    order: 2;
    padding: 1.25rem 1rem;
    gap: 1rem;
    text-align: center;
    align-items: center;
    flex-shrink: 0;
  }

  #modalHeading {
    font-size: 1.3rem;
    text-align: center;
  }

  .modal-keypoints {
    width: 100%;
    text-align: left;
    padding: 0 0.5rem;
  }

  .modal-keypoints li {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    justify-content: flex-start;   /* left-align items */
    gap: 0.6rem;
    border-bottom: 1px solid var(--border);
  }

  /* 3rd — Paragraph full width, scrollable */
  .modal-paragraph {
    order: 3;
    padding: 1rem;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    background: var(--off-white);
  }

  .modal-keypoints li:last-child {
    border-bottom: none;
  }

  .modal-keypoints li::before {
    content: '✅';
    font-size: 1rem;
    flex-shrink: 0;
  }

  #modalPara {
    font-size: 1rem;
    line-height: 1.7;
    scroll-snap-align: start;
  }

  /* Close button on top of image */
  .modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 10;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
  }

  .modal-close:hover {
    background: rgba(0,0,0,0.7);
    color: #fff;
    transform: rotate(90deg);
  }
}

/* ===== ABOUT ===== */
.about {
  padding: 5rem 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-quote {
  font-size: 1.05rem;
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  color: var(--maroon);
  font-weight: 500;
  background: rgba(231,111,0,0.08);
  border-left: 4px solid var(--saffron);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.about-desc {
  color: var(--gray);
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.feat-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-feat strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.1rem;
}
.about-feat p {
  font-size: 0.82rem;
  color: var(--gray);
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* ===== CONTACT ===== */
.contact {
  padding: 5rem 0;
  background: var(--off-white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 1.5rem;
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.info-item span {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.info-item p, .info-item a {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
}
.info-item a:hover { color: var(--saffron); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  background: var(--white);
}
.form-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2em;
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}
.form-note.success { color: #2e7d32; }
.form-note.error { color: #c62828; }

/* ===== FOOTER ===== */
.footer {
  background: var(--maroon);
  color: rgba(255,255,255,0.85);
  padding: 2.5rem 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-om {
  font-size: 2.5rem;
  color: var(--saffron-light);
}
.footer-brand strong {
  display: block;
  font-size: 1.05rem;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.footer-info p {
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.footer-info a { color: rgba(255,255,255,0.8); }
.footer-info a:hover { color: var(--saffron-light); }
.footer-bottom {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.1);
}
.fa-map-marker-alt {
  color: red;
}

/* ===== FLOATING BUTTONS ===== */
.float-btn {
  position: fixed;
  bottom: 1.75rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.float-call {
  left: 1.5rem;
  background: rgb(7, 124, 233);
  color: var(--white);
}
.float-whatsapp {
  font-size: 2rem;
  right: 1.5rem;
  background: #25D366;
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-img-wrap {
    max-width: 220px;
    margin: 0 auto;
  }
  .about-img-placeholder {
    aspect-ratio: 1/1;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .hero { padding: 3.5rem 0 3rem; }
  .hero::before { font-size: 12rem; right: -1rem; opacity: 0.6; }
  .hero-btns { gap: 0.75rem; }
  .hero-stats { gap: 1rem; }
  .stat strong { font-size: 1.2rem; }
  .services { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about, .contact { padding: 3.5rem 0; }
  .contact-form { padding: 1.5rem 1.25rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  .float-btn { width: 48px; height: 48px; font-size: 1.3rem; bottom: 1.25rem; }
}
