/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0b0b0b;
  color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1f1f1f;
}

.logo img {
  height: 40px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 22px;
}

.navbar a {
  text-decoration: none;
  color: #f8fafc;
  font-weight: 500;
}

.navbar a.active,
.navbar a:hover {
  color: #d4af37;
}

.theme-toggle {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 90px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1a, #000);
}

.hero h1 {
  font-size: 2.6rem;
}

.hero h1 span {
  color: #d4af37;
}

.hero h2 {
  margin: 14px 0;
  color: #e5e7eb;
  font-weight: normal;
}

.hero p {
  max-width: 760px;
  margin: 14px auto;
}

.tagline {
  margin-top: 22px;
  font-size: 1.3rem;
  color: #d4af37;
  font-weight: bold;
}

/* =========================
   BUTTONS
========================= */
.buttons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  height: 48px;
  padding: 0 26px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,175,55,0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}

.payment-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 70px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* =========================
   HOME SERVICE NOTE
========================= */
.home-service-note {
  margin: 30px auto;
  padding: 18px 22px;
  max-width: 700px;
  border-radius: 12px;
  border: 2px solid #d4af37;
  background: rgba(212,175,55,0.08);
  text-align: center;
}

/* =========================
   SERVICE GRID
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.25);
  border-color: #d4af37;
}

/* =========================
   REVIEW SECTION
========================= */
.review-section {
  padding: 50px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1a, #000);
}

.review-btn-big {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  background: linear-gradient(135deg, #facc15, #d4af37);
  margin-top: 10px;
}

/* =========================
   APPOINTMENT FORM
========================= */
.appointment-form {
  max-width: 420px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.appointment-form input,
.appointment-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #1f1f1f;
  background: #0f0f0f;
  color: #fff;
}

.appointment-form textarea {
  resize: none;
  min-height: 100px;
}

/* =========================
   UPI PAYMENT
========================= */
.upi-box {
  max-width: 360px;
  margin: 25px auto;
  padding: 20px;
  border-radius: 16px;
  background: #0f0f0f;
  border: 2px solid #d4af37;
  text-align: center;
}

.upi-box img {
  width: 220px;
  margin-bottom: 20px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}

/* =========================
   MAP
========================= */
.map-container {
  max-width: 900px;
  margin: auto;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #d4af37;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 25px;
  text-align: center;
  background: #000;
  border-top: 1px solid #1f1f1f;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* =========================
   FLOATING BUTTONS
========================= */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: #d4af37;
  color: #000;
  text-decoration: none;
}

.whatsapp-float {
  background: #25d366;
  color: #fff;
}

.call-float {
  background: #0ea5e9;
  color: #fff;
}

/* =========================
   CURSOR + PROGRESS
========================= */
.cursor-glow {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #facc15, #d4af37);
  z-index: 9997;
}



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
