:root {
  --primary: #c0392b;
  --secondary: #f39c12;
  --accent: #ffd166;
  --dark: #1a1a1a;
  --light: #ffffff;
  --muted: #666666;
  --bg-soft: #fff7ef;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Roboto", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: #fffdfb;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.2rem;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.section-heading p {
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
}

.brand {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.1rem;
}

.site-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-link:hover {
  border-color: var(--secondary);
  color: #d68910;
}

.menu-toggle {
  display: inline-flex;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 1rem 1.4rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.nav-links.show {
  display: flex;
}

.nav-links a {
  padding: 0.55rem 0;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(25, 17, 8, 0.82), rgba(192, 57, 43, 0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--light);
}

.hero-tag {
  display: inline-block;
  background: rgba(243, 156, 18, 0.2);
  border: 1px solid rgba(255, 209, 102, 0.6);
  color: var(--accent);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.15;
  max-width: 680px;
}

.hero-subtitle {
  margin: 1rem 0 1rem;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.hero-chip {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 209, 102, 0.45);
  color: #fff8e7;
}

.hero-quote {
  max-width: 520px;
  margin-bottom: 1.25rem;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 248, 231, 0.98);
  font-weight: 500;
}

.hero-quote-en {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82em;
  font-weight: 400;
  opacity: 0.88;
  font-style: italic;
}

.regions-section {
  background: linear-gradient(180deg, #fffdfb 0%, var(--bg-soft) 45%, #fffdfb 100%);
  padding-top: 3rem;
}

.investment-banner {
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.95), rgba(243, 156, 18, 0.88));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.investment-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  opacity: 0.95;
  margin-bottom: 0.65rem;
}

.investment-hindi {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.investment-hindi strong {
  color: var(--accent);
}

.investment-en {
  font-size: 0.92rem;
  opacity: 0.94;
  line-height: 1.55;
  margin: 0;
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.region-card h3 {
  color: var(--primary);
}

.region-state {
  font-weight: 600;
  font-size: 0.92em;
  color: var(--muted);
}

.region-jump {
  margin-top: 0.65rem;
  font-size: 0.88rem;
}

.region-jump a {
  color: var(--primary);
  font-weight: 600;
}

.region-jump a:hover {
  text-decoration: underline;
}

.dholera-spotlight {
  margin-top: 2.5rem;
  background: #fff;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  border: 1px solid #f0e4d4;
  overflow: hidden;
}

.dholera-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.dholera-spotlight-copy {
  padding: 1.5rem 1.25rem 1.75rem;
}

.dholera-spotlight-visual {
  background: linear-gradient(145deg, #f8f9fc, #fff7ef);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.dholera-spotlight-visual img {
  max-height: min(72vh, 520px);
  width: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.dholera-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.dholera-spotlight-copy h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.dholera-taglines {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.65rem;
  line-height: 1.55;
}

.dholera-vision {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.96rem;
}

.dholera-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.dholera-pills li {
  background: var(--bg-soft);
  border: 1px solid #edd9c4;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5c4030;
}

.dholera-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.dholera-stats > div {
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.06), rgba(243, 156, 18, 0.08));
  border-radius: 12px;
  padding: 0.85rem;
  border: 1px solid rgba(243, 156, 18, 0.22);
}

.stat-value {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.brochure-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.references-section {
  background: linear-gradient(180deg, #fff 0%, #faf8f5 100%);
}

.reference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.reference-card {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eee6dc;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.reference-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background: #f4f4f4;
  border-radius: 0;
}

.reference-card figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid #f0e8df;
}

.footer-regions {
  font-size: 0.88rem;
  opacity: 0.92;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-outline {
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.pricing-section {
  background: radial-gradient(circle at top right, rgba(255, 209, 102, 0.3), transparent 40%), #fff;
}

.pricing-card {
  text-align: center;
  background: #fff;
  padding: 2rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 0 auto;
}

.pricing-card .label {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin: 0.5rem 0;
}

.pricing-card h3 span {
  font-size: 1rem;
  color: var(--muted);
}

.original-price {
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.card-grid,
.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  background: #fff;
  border: 1px solid #f2e8da;
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.45rem;
}

.alt-bg {
  background: var(--bg-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.feature-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateX(4px);
}

.icon {
  font-size: 1.4rem;
}

.advantage-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.advantage-list li {
  background: #fff;
  border: 1px solid #f5e3cd;
  border-radius: 10px;
  padding: 0.8rem 1rem;
}

.advantage-list li::before {
  content: "✔";
  margin-right: 0.55rem;
  color: var(--primary);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.contact-section {
  background: linear-gradient(180deg, #fffaf5, #fff);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.contact-info,
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.contact-info h2 {
  margin-bottom: 0.8rem;
}

.contact-info p {
  margin-bottom: 0.6rem;
}

.contact-info a {
  color: var(--primary);
}

.contact-form {
  display: grid;
  gap: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #dadada;
  border-radius: 10px;
  padding: 0.75rem 0.8rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
}

.footer {
  background: #160f0a;
  color: #f6e8da;
  padding: 1.4rem 0 2rem;
}

.footer-content {
  text-align: center;
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer a {
  color: #ffcf8d;
}

.footer-site {
  font-weight: 600;
}

.footer-site a {
  color: #ffd166;
}

.raj-logo {
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.raj-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  border-radius: 4px;
}

.raj-r {
  background: #e74c3c;
}

.raj-a {
  background: #3498db;
}

.raj-j {
  background: #f1c40f;
  color: #1a1a1a;
}

.floating-btn {
  position: fixed;
  right: 14px;
  z-index: 999;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.whatsapp-btn {
  bottom: 78px;
  background: #25d366;
}

.call-btn {
  bottom: 20px;
  background: linear-gradient(135deg, var(--primary), #e74c3c);
}

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

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    background: transparent;
    gap: 0.9rem;
  }

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

  .payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .contact-layout {
    grid-template-columns: 1.1fr 1fr;
  }

  .regions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dholera-spotlight-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .dholera-spotlight-visual {
    padding: 1.25rem;
  }

  .reference-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
