/* ============================================================
   MANGAL BHAV — Shared Stylesheet
   style.css  |  All Pages
   ============================================================ */

/* ── Google Fonts are loaded via <link> in each HTML page ── */

/* ── CSS VARIABLES ── */
:root {
  --saffron: #FF6B00;
  --saffron-deep: #E05500;
  --saffron-light: #FF8C38;
  --saffron-pale: #FFF0E0;
  --saffron-50: #FFF8F0;
  --gold: #C9A84C;
  --gold-bright: #E6C055;
  --maroon: #8B1A00;
  --maroon-dark: #5C1100;
  --maroon-mid: #A52000;
  --cream: #FFFCF7;
  --warm-white: #FFF9F2;
  --text-dark: #1C0A00;
  --text-mid: #5E3A1E;
  --text-light: #9A7055;
  --border-warm: rgba(201, 168, 76, 0.22);
  --border-saffron: rgba(255, 107, 0, 0.14);
  --shadow-saffron: rgba(255, 107, 0, 0.18);
  --shadow-maroon: rgba(139, 26, 0, 0.14);
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Poppins', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

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

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

.container {
  width: 92%;
  max-width: 1260px;
  margin: auto;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: linear-gradient(135deg, #FF9500, #E07B00);
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.topbar span { color: var(--gold-bright); margin: 0 8px; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
header {
  background: var(--cream);
  border-bottom: 1px solid var(--border-warm);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 28px rgba(255, 107, 0, 0.07);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; }
.logo img {
  height: 52px;
  width: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 4px 14px var(--shadow-saffron);
}
.logo-text h1 {
  font-size: 22px;
  color: var(--maroon);
  letter-spacing: 1.5px;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.logo-text p {
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--saffron);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-top: 2px;
}

/* Desktop Nav */
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  transition: color .2s;
  position: relative;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: .2s;
  border-radius: 2px;
}
nav a:hover { color: var(--saffron); }
nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: #fff !important;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 6px 22px rgba(255, 107, 0, 0.28);
  transition: all .3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4) !important;
}

/* Download App button — Desktop Nav */
.nav-app {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-mid));
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 6px 22px rgba(139, 26, 0, 0.28);
  transition: all .3s !important;
  white-space: nowrap;
}
.nav-app::after { display: none !important; }
.nav-app:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--maroon-mid), var(--maroon)) !important;
  box-shadow: 0 12px 30px rgba(139, 26, 0, 0.42) !important;
}

/* Download App button — Mobile Nav */
.nav-app-mob {
  margin-top: 10px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-mid));
  color: #fff !important;
  border-radius: 50px;
  padding: 14px 40px;
  font-size: 16px !important;
  box-shadow: 0 8px 24px rgba(139, 26, 0, 0.4);
  border-bottom: none !important;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--maroon);
  border-radius: 3px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(92, 17, 0, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 100px 24px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Playfair Display', serif;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  text-align: center;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold-bright); }
.mobile-nav .nav-cta-mob {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: #fff !important;
  border-radius: 50px;
  padding: 14px 40px;
  font-size: 16px !important;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
  border-bottom: none !important;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 84px 0; }

.sec-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}
.sec-title {
  font-size: 40px;
  color: var(--maroon);
  margin-bottom: 14px;
  line-height: 1.2;
}
.sec-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 52px;
  line-height: 1.9;
}
.text-center { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-hero {
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .3s;
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-filled {
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 107, 0, 0.32);
}
.btn-filled:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(255, 107, 0, 0.42); }
.btn-outline {
  background: #fff;
  color: var(--saffron-deep);
  border: 2px solid rgba(255, 107, 0, 0.28);
}
.btn-outline:hover { border-color: var(--saffron); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255, 107, 0, 0.1); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--maroon-dark);
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  display: inline-block;
  box-shadow: 0 8px 26px rgba(201, 168, 76, 0.42);
  font-family: 'DM Sans', sans-serif;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(201, 168, 76, 0.55); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: all .3s;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }

/* Generic btn used in services/contact pages */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff8a00, #ff5e00);
  color: #fff;
  font-weight: 600;
  transition: .3s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}
.btn:hover { transform: translateY(-2px); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: linear-gradient(90deg, var(--maroon), var(--maroon-mid), var(--maroon));
  padding: 24px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(230, 192, 85, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ============================================================
   HERO (Home page)
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #FFF8EE 0%, #FFF2E0 55%, #FDE8CC 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: 'ॐ';
  position: absolute;
  right: -80px;
  top: -60px;
  font-size: 500px;
  color: rgba(255, 107, 0, 0.035);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--saffron-deep);
  font-weight: 600;
  margin-bottom: 26px;
  box-shadow: 0 2px 14px rgba(201, 168, 76, 0.15);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero h2 {
  font-size: 56px;
  line-height: 1.12;
  color: var(--maroon);
  margin-bottom: 22px;
}
.hero h2 em { font-style: italic; color: var(--saffron); }
.hero-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 530px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: -10px;
}
.trust-text { font-size: 13px; color: var(--text-light); margin-left: 14px; }
.trust-text strong { color: var(--text-dark); font-weight: 600; }

/* Hero Slider */
.hero-visual { width: 100%; max-width: 580px; margin: auto; }
.hero-slider { position: relative; overflow: hidden; border-radius: 24px; box-shadow: 0 32px 72px var(--shadow-maroon); }
.hero-slide { display: none; position: relative; }
.hero-slide.active { display: block; }
.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 24px;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform .6s ease;
}
.hero-slide.active .hero-img-wrap img { transform: scale(1.03); }
.hero-float {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  z-index: 2;
  border: 1px solid var(--border-warm);
}
.hero-float-tl { top: 20px; left: 20px; }
.hero-float-tr { top: 20px; right: 20px; }
.f-num { font-size: 28px; font-weight: 700; color: var(--saffron); font-family: 'Playfair Display', serif; }
.f-label, .f-rev { font-size: 13px; color: var(--text-light); }
.f-stars { color: var(--gold-bright); font-size: 18px; margin-bottom: 4px; letter-spacing: 1px; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 28px;
  padding: 58px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 50px 0 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(230, 192, 85, 0.06);
  top: -250px;
  right: -120px;
}
.stats-band::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.05);
  bottom: -100px;
  left: -60px;
}
.stat-item { text-align: center; padding: 0 20px; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-num { font-size: 54px; font-family: 'Playfair Display', serif; color: #fff; line-height: 1; margin-bottom: 8px; }
.stat-num span { color: var(--gold-bright); }
.stat-label { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); letter-spacing: 2px; text-transform: uppercase; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.svc-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 26px;
  border: 1px solid var(--border-saffron);
  transition: all .35s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron-light), var(--gold-bright));
  transform: scaleX(0);
  transition: .35s;
  transform-origin: left;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 26px 52px rgba(255, 107, 0, 0.11); border-color: rgba(255, 107, 0, 0.28); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--saffron-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.svc-card h3 { font-size: 20px; color: var(--maroon-dark); margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--text-light); line-height: 1.8; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron);
  transition: .2s;
}
.svc-link:hover { gap: 10px; }

/* Services page grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #ffe1c3;
  transition: .35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(255, 140, 0, 0.14); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-content { padding: 24px; }
.service-content h3 { font-size: 26px; color: #5c2300; margin-bottom: 12px; }
.service-content p { line-height: 1.8; color: #6f5a4d; margin-bottom: 20px; font-size: 15px; }
.read-more-link { color: #e8621a; font-weight: 600; cursor: pointer; white-space: nowrap; }
.read-more-link:hover { text-decoration: underline; }

/* Banner */
.banner {
  margin-top: 80px;
  background: linear-gradient(135deg, #ff8a00, #d35400);
  border-radius: 32px;
  padding: 60px;
  color: #fff;
  text-align: center;
}
.banner h2 { font-size: 46px; margin-bottom: 18px; }
.banner p { max-width: 760px; margin: auto; line-height: 1.9; margin-bottom: 30px; opacity: .95; }

/* ============================================================
   PANDIT CARDS
   ============================================================ */
.pandit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.pandit-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-warm);
  transition: all .35s;
}
.pandit-card:hover { transform: translateY(-6px); box-shadow: 0 24px 52px var(--shadow-maroon); }
.pandit-img { position: relative; overflow: hidden; height: 290px; }
.pandit-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.pandit-card:hover .pandit-img img { transform: scale(1.05); }
.pandit-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--saffron-deep);
  border: 1px solid rgba(255, 107, 0, 0.18);
}
.pandit-body { padding: 24px; }
.pandit-body h3 { font-size: 22px; color: var(--maroon-dark); margin-bottom: 8px; }
.pandit-body p { font-size: 14px; color: var(--text-light); line-height: 1.75; margin-bottom: 18px; }
.pandit-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.pandit-meta span { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--text-mid); font-weight: 500; }
.pandit-meta .star { color: var(--gold-bright); }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feat-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border-saffron);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all .3s;
}
.feat-box:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(255, 107, 0, 0.08); border-color: rgba(255, 107, 0, 0.22); }
.feat-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--saffron-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.feat-text h4 { font-size: 17px; color: var(--maroon-dark); margin-bottom: 6px; }
.feat-text p { font-size: 14px; color: var(--text-light); line-height: 1.75; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-bg { background: linear-gradient(180deg, var(--saffron-50) 0%, #FFF5E8 100%); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.testi-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  border: 1px solid var(--border-warm);
  position: relative;
  transition: all .3s;
}
.testi-card:hover { box-shadow: 0 18px 42px rgba(139, 26, 0, 0.08); transform: translateY(-4px); }
.testi-quote { font-size: 52px; font-family: 'Playfair Display', serif; color: var(--saffron-light); line-height: 0.6; margin-bottom: 16px; }
.testi-text { font-size: 15px; color: var(--text-mid); line-height: 1.9; font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-pale), rgba(255, 107, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid rgba(255, 107, 0, 0.14);
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.testi-role { font-size: 12px; color: var(--text-light); }
.testi-stars { color: var(--gold-bright); font-size: 12px; margin-bottom: 2px; }

/* ============================================================
   LOGIN CTA SECTION
   ============================================================ */
.login-section {
  background: linear-gradient(145deg, var(--maroon), var(--maroon-dark) 60%, #3A0A00);
  border-radius: 32px;
  padding: 76px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.login-section::before {
  content: '🕉';
  position: absolute;
  font-size: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  pointer-events: none;
}
.login-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.login-section h2 { font-size: 46px; color: #fff; margin-bottom: 16px; }
.login-section p { font-size: 17px; color: rgba(255, 255, 255, 0.72); max-width: 640px; margin: 0 auto 38px; line-height: 1.9; }
.login-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   DOWNLOAD SECTION
   ============================================================ */
.download-wrap {
  background: linear-gradient(135deg, var(--saffron-pale), #FFE8C8);
  border-radius: 28px;
  padding: 62px 52px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  border: 1px solid rgba(255, 107, 0, 0.1);
}
.download-wrap h2 { font-size: 44px; color: var(--maroon); margin-bottom: 16px; }
.download-wrap p { font-size: 16px; color: var(--text-mid); line-height: 1.9; margin-bottom: 32px; }
.dl-img { text-align: center; }
.dl-img img { width: 260px; max-width: 100%; border-radius: 32px; box-shadow: 0 32px 64px rgba(139, 26, 0, 0.22); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card {
  background: #fff;
  border-radius: 26px;
  padding: 44px;
  border: 1px solid var(--border-warm);
  box-shadow: 0 4px 24px rgba(139, 26, 0, 0.05);
}
.contact-card h3 { font-size: 32px; color: var(--maroon); margin-bottom: 28px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border-saffron); }
.info-row:last-child { border: none; }
.info-emoji {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--saffron-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.info-label { font-size: 11.5px; color: var(--text-light); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 4px; }
.info-val { font-size: 15px; color: var(--text-dark); font-weight: 500; line-height: 1.6; }
.form-card {
  background: linear-gradient(145deg, var(--saffron-deep), var(--maroon));
  border-radius: 26px;
  padding: 44px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(139, 26, 0, 0.25);
}
.form-card h3 { font-size: 30px; margin-bottom: 10px; }
.form-card .sub { opacity: .78; font-size: 15px; margin-bottom: 28px; line-height: 1.7; }
.inp {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  outline: none;
  margin-bottom: 14px;
  transition: .2s;
  font-family: 'DM Sans', sans-serif;
}
.inp::placeholder { color: rgba(255, 255, 255, 0.48); }
.inp:focus { border-color: rgba(230, 192, 85, 0.65); background: rgba(255, 255, 255, 0.15); }
textarea.inp { height: 120px; resize: none; }
.btn-send {
  width: 100%;
  background: #fff;
  color: var(--saffron-deep);
  border: none;
  border-radius: 14px;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  font-family: 'DM Sans', sans-serif;
}
.btn-send:hover { background: var(--saffron-pale); transform: translateY(-2px); }

/* Contact page standalone styles */
.contact-info {
  background: #fff;
  padding: 45px;
  border-radius: 30px;
  border: 1px solid #ffe1c2;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}
.contact-info h3 { font-size: 38px; margin-bottom: 25px; color: #6b2600; }
.info-box { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid #f2dfcf; }
.info-box:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }
.info-box h4 { font-size: 22px; margin-bottom: 10px; color: #ff6a00; }
.info-box p { color: #5f4b3f; font-size: 16px; line-height: 1.9; }
.contact-form {
  background: linear-gradient(135deg, #ff8a00, #d35400);
  padding: 50px;
  border-radius: 32px;
  color: #fff;
}
.contact-form h3 { font-size: 38px; margin-bottom: 18px; }
.contact-form p { margin-bottom: 30px; opacity: .95; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 16px;
  outline: none;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
}
.form-group textarea { height: 140px; resize: none; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.download-section {
  margin-top: 80px;
  background: #fff;
  padding: 60px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid #ffe1c2;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}
.download-section h2 { font-size: 42px; color: #6b2600; margin-bottom: 18px; }
.download-section p { max-width: 780px; margin: auto; color: #5f4b3f; margin-bottom: 30px; }
.download-btn {
  display: inline-block;
  padding: 16px 34px;
  background: linear-gradient(135deg, #ff8a00, #d35400);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: linear-gradient(180deg, var(--maroon-dark) 0%, #2E0800 100%);
  color: #fff;
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand .logo-mark {
  width: 50px;
  height: 50px;
  font-size: 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--saffron), var(--saffron-deep));
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}
.footer-brand p { font-size: 14px; color: rgba(255, 255, 255, 0.50); line-height: 1.9; max-width: 280px; margin-bottom: 22px; }
.footer-social-wrap { display: flex; gap: 10px; margin-top: 4px; }
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: .2s;
  cursor: pointer;
}
.footer-social:hover { background: rgba(255, 107, 0, 0.22); }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255, 255, 255, 0.50); line-height: 2.3; transition: .2s; }
.footer-col a:hover { color: var(--saffron-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* Alternate footer style (Contact/Services/Pandit pages) */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.footer-box h3 { margin-bottom: 18px; font-size: 20px; }
.footer-box p, .footer-box a { color: rgba(255, 255, 255, 0.60); line-height: 2; display: block; font-size: 14px; }
.footer-box a:hover { color: var(--saffron-light); }
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  padding-bottom: 24px;
  font-size: 13px;
}

/* ============================================================
   PAGE-SPECIFIC HERO (Contact & Services)
   ============================================================ */
.page-hero {
  padding: 90px 0 70px;
  text-align: center;
  background: linear-gradient(rgba(255, 248, 242, 0.92), rgba(255, 248, 242, 0.95)), url('Images/Background.jpeg');
  background-size: cover;
  background-position: center;
}
.page-hero h2 { font-size: 58px; color: #7a2f00; margin-bottom: 18px; }
.page-hero p { max-width: 820px; margin: auto; line-height: 1.9; color: #6a5548; font-size: 18px; }

/* ============================================================
   SECTION HEADINGS (Services page)
   ============================================================ */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 42px; color: #6b2600; margin-bottom: 12px; }
.section-title p { color: #78665c; line-height: 1.8; max-width: 760px; margin: auto; }

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner,
  .contact-grid,
  .download-wrap,
  .contact-wrapper { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item::after { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero h2, .page-hero h2 { font-size: 36px; }
  .sec-title { font-size: 28px; }
  .section { padding: 56px 0; }

  .login-section { padding: 44px 22px; }
  .login-section h2 { font-size: 28px; }

  .contact-grid,
  .contact-wrapper { grid-template-columns: 1fr; }

  .stats-band { grid-template-columns: 1fr 1fr; padding: 36px 20px; }
  .stat-num { font-size: 38px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .download-wrap { padding: 36px 24px; grid-template-columns: 1fr; }
  .hero-img-wrap { height: 300px; }

  .banner { padding: 36px 22px; }
  .banner h2 { font-size: 30px; }

  .contact-info,
  .contact-form,
  .download-section { padding: 28px 22px; }

  .contact-card,
  .form-card { padding: 28px 22px; }

  .page-hero { padding: 60px 0 48px; }
  .page-hero p { font-size: 15px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero h2 { font-size: 28px; }
  .btn-hero { width: 100%; justify-content: center; }
  .stats-band { grid-template-columns: 1fr; }
  .hero-inner { gap: 36px; }
  .hero-desc { font-size: 15px; }

  .logo-text h1 { font-size: 18px; }
  .logo-text p { font-size: 8px; letter-spacing: 2.5px; }
  .logo img { height: 42px; width: 42px; }

  .section-title h2,
  .contact-info h3,
  .contact-form h3,
  .download-section h2 { font-size: 26px; }

  .login-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-ghost { width: 100%; text-align: center; }

  .topbar { font-size: 11px; padding: 8px 12px; }
  .topbar span { display: none; }
}

/* ============================================================
   APP STORE BADGES
   ============================================================ */
.app-store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  padding: 9px 18px;
  text-decoration: none;
  transition: all 0.25s;
  border: 1.5px solid rgba(255,255,255,0.15);
  min-width: 148px;
}
.store-badge:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.store-badge .badge-icon { font-size: 26px; line-height: 1; flex-shrink: 0; }
.store-badge .badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge .badge-sub { font-size: 9.5px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; }
.store-badge .badge-name { font-size: 15px; font-weight: 600; color: #fff; font-family: 'DM Sans', sans-serif; }

/* Footer badge variant (smaller) */
.footer-app-badges { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.footer-app-badges .store-badge { min-width: 130px; padding: 8px 14px; }
.footer-app-badges .store-badge .badge-name { font-size: 13px; }

@media (max-width: 480px) {
  .app-store-badges { flex-direction: column; align-items: flex-start; }
  .store-badge { width: 100%; justify-content: center; min-width: unset; }
}
/* App Buttons - Base */
.nav-app {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Android Button - Green tint (dark brown like original) */
.android-btn {
    background-color: #7a3b00; /* ya apna existing nav-app color */
}
.android-btn:hover {
    background-color: #5c2c00;
    transform: scale(1.03);
}

/* iOS Button - Same style, thoda alag shade */
.ios-btn {
    background-color: #7a3b00;
}
.ios-btn:hover {
    background-color: #5c2c00;
    transform: scale(1.03);
}

/* Mobile Nav App Buttons */
.nav-app-mob {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin: 4px 0;
}
.android-mob { background-color: #7a3b00; }
.ios-mob     { background-color: #7a3b00; }
.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social:hover {
    background-color: #c0392b; /* ya apna theme color */
    transform: translateY(-3px);
}
/* Category Heading */
.service-category {
  margin-bottom: 48px;
}

.category-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0e6d3;
}

.category-icon {
  font-size: 36px;
  background: #fff7ee;
  border-radius: 12px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255,106,0,0.1);
}

.category-heading h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #3b1a08;
  margin: 0 0 4px 0;
}

.category-count {
  font-size: 12px;
  font-weight: 600;
  color: #ff6a00;
  letter-spacing: 1px;
}

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

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
