:root {
  --p: #6a1b9a;
  --pl: #b983ff;
  --pd: #2d0f4f;
  --pdk: #1a0b2e;
  --s: #7b1fa2;
  --sd: #4a148c;
  --gold: #f59e0b;
  --hot: #ef4444;
  --teal: #0ea5e9;
  --mint: #10b981;
  --light: #f3e8ff;
  --soft: #e8daef;
  --ink: #1f1f1f;
  --muted: #667781;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  font-size: 17px;
}

/* ── Custom Cursor ── */
#cur {
  width: 14px;
  height: 14px;
  background: var(--p);
  border-radius: 50%;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
  mix-blend-mode: multiply;
}
#cur-r {
  width: 36px;
  height: 36px;
  border: 2px solid var(--pl);
  border-radius: 50%;
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  transition: all 0.1s;
}

/* ── Backgrounds ── */
.kolam-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20px 20px, var(--pl) 1.5px, transparent 1.5px),
    radial-gradient(circle at 60px 60px, var(--p) 1px, transparent 1px),
    radial-gradient(circle at 60px 20px, var(--soft) 1px, transparent 1px),
    radial-gradient(circle at 20px 60px, var(--soft) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.06;
}
.jaali {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40M0 0l40 40M40 0L0 40' stroke='%236A1B9A' stroke-width='0.4' fill='none' opacity='0.4'/%3E%3Ccircle cx='20' cy='20' r='2' fill='%236A1B9A' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.055;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.9rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(106, 27, 154, 0.07);
  box-shadow: 0 2px 20px rgba(106, 27, 154, 0.05);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-logo-text {
  font-family: "Baloo Thambi 2", cursive;
  font-size: 1.45rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--p), var(--pl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--p), var(--sd));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(106, 27, 154, 0.3);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--p);
  border-radius: 1px;
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--p);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--p);
}
.nav-links a.active::after {
  width: 100%;
}
.nav-dl {
  background: linear-gradient(135deg, var(--p), var(--sd));
  color: #fff;
  border: none;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(106, 27, 154, 0.28);
  transition: all 0.25s;
  font-family: "Nunito", sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-dl:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(106, 27, 154, 0.44);
}

/* ── heros ── */
#heros {
  min-height: 52vh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9rem 4rem 5rem;
  background: linear-gradient(155deg, #fff 50%, var(--light) 100%);
  overflow: hidden;
  text-align: center;
}
.heros-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(185, 131, 255, 0.2),
    rgba(106, 27, 154, 0.02)
  );
  right: -160px;
  top: -80px;
  pointer-events: none;
  animation: cb 7s ease-in-out infinite;
}
.heros-circle2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 131, 255, 0.15), transparent);
  left: -100px;
  bottom: -60px;
  pointer-events: none;
  animation: cb 9s ease-in-out infinite reverse;
}
@keyframes cb {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.06) rotate(4deg);
  }
}
.heros-ring {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 2px dashed rgba(106, 27, 154, 0.15);
  border-radius: 50%;
  top: 14%;
  right: 18%;
  animation: spinRing 32s linear infinite;
}
.heros-ring2 {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1.5px dashed rgba(185, 131, 255, 0.22);
  border-radius: 50%;
  bottom: 22%;
  left: 12%;
  animation: spinRing 22s linear infinite reverse;
}
@keyframes spinRing {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes hIn {
  from {
    opacity: 0;
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light);
  border: 1px solid rgba(185, 131, 255, 0.4);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--p);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  animation: hIn 0.7s ease both;
  position: relative;
  z-index: 2;
}
.heros-title {
  font-family: "Baloo Thambi 2", cursive;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 2;
  animation: hIn 0.8s ease 0.18s both;
}
.bw {
  background: linear-gradient(135deg, var(--p), var(--pl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heros-sub-line {
  font-family: "Caveat", cursive;
  font-size: 0.58em;
  color: var(--muted);
  display: block;
  font-weight: 600;
  margin-top: 0.2rem;
}
.heros-desc {
  font-size: 1.07rem;
  color: var(--muted);
  line-height: 1.82;
  max-width: 560px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
  animation: hIn 0.8s ease 0.36s both;
}

/* ── Search Bar ── */
.search-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  animation: hIn 0.8s ease 0.5s both;
}
.search-bar {
  width: 100%;
  padding: 1rem 1.4rem 1rem 3.4rem;
  border-radius: 50px;
  border: 2px solid rgba(185, 131, 255, 0.35);
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  background: #fff;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.1);
  transition: all 0.3s;
}
.search-bar:focus {
  border-color: var(--p);
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.22);
}
.search-bar::placeholder {
  color: #aaa;
}
.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--p);
  font-size: 1rem;
}
.search-btn {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--p), var(--sd));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s;
  font-family: "Nunito", sans-serif;
}
.search-btn:hover {
  transform: translateY(-50%) scale(1.04);
}

/* ── Quick Stats ── */
.heros-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.8rem;
  animation: hIn 0.8s ease 0.65s both;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
}
.h-stat {
  text-align: center;
}
.h-s-num {
  font-family: "Baloo Thambi 2", cursive;
  font-size: 1.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--p), var(--pl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h-s-lbl {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── Marquee ── */
.marquee-sec {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--p), var(--sd));
  padding: 1.05rem 0;
  overflow: hidden;
}
.m-track {
  display: flex;
  animation: mq 26s linear infinite;
  white-space: nowrap;
}
.m-track span {
  padding: 0 2rem;
  font-family: "Baloo Thambi 2", cursive;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
@keyframes mq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── Section Common ── */
section {
  position: relative;
  z-index: 1;
}
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light);
  border: 1px solid rgba(185, 131, 255, 0.35);
  color: var(--p);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.sec-title {
  font-family: "Baloo Thambi 2", cursive;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 0.7rem;
}
.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ── Scroll Reveal ── */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.sr.vis {
  opacity: 1;
  transform: none;
}
.sr-l {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.sr-l.vis {
  opacity: 1;
  transform: none;
}
.sr-r {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.sr-r.vis {
  opacity: 1;
  transform: none;
}

/* ── Quick Help Cards ── */
#quick-help {
  padding: 6rem 5rem;
  background: #fff;
  overflow: hidden;
}
.qh-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.qh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.qh-card {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(185, 131, 255, 0.2);
  padding: 2rem 1.6rem;
  box-shadow: 0 4px 24px rgba(106, 27, 154, 0.06);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.qh-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(185, 131, 255, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.qh-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(106, 27, 154, 0.15);
  border-color: var(--pl);
}
.qh-card:hover::before {
  opacity: 1;
}
.qh-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.qh-card-title {
  font-family: "Baloo Thambi 2", cursive;
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}
.qh-card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.qh-card-arrow {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p);
  font-size: 0.78rem;
  transition: all 0.3s;
}
.qh-card:hover .qh-card-arrow {
  background: var(--p);
  color: #fff;
  transform: translate(2px, -2px);
}

/* ── Contact Section ── */
#contact {
  padding: 6rem 5rem;
  background: linear-gradient(160deg, var(--light) 0%, #fff 60%);
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.contact-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid rgba(185, 131, 255, 0.2);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 4px 18px rgba(106, 27, 154, 0.07);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: var(--pl);
  box-shadow: 0 8px 28px rgba(106, 27, 154, 0.14);
}
.cc-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.cc-title {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.cc-sub {
  font-size: 0.82rem;
  color: var(--muted);
}
.cc-badge {
  margin-left: auto;
  background: var(--light);
  color: var(--p);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border: 1px solid rgba(185, 131, 255, 0.3);
}
.cc-badge.green {
  background: #d1fae5;
  color: #065f46;
  border-color: rgba(16, 185, 129, 0.3);
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid rgba(185, 131, 255, 0.2);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(106, 27, 154, 0.1);
}
.form-title {
  font-family: "Baloo Thambi 2", cursive;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.form-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.form-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
}
.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(185, 131, 255, 0.25);
  font-family: "Nunito", sans-serif;
  font-size: 0.93rem;
  color: var(--ink);
  outline: none;
  background: #fafafa;
  transition: all 0.25s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--p);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.07);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-select {
  cursor: pointer;
}
.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--p), var(--sd));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(106, 27, 154, 0.3);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(106, 27, 154, 0.44);
}

/* ── FAQ Section ── */
#faq {
  padding: 6rem 5rem;
  background: #fff;
  overflow: hidden;
}
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.faq-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.faq-tab {
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(185, 131, 255, 0.3);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
  background: #fff;
  font-family: "Nunito", sans-serif;
}
.faq-tab.on {
  background: var(--p);
  color: #fff;
  border-color: var(--p);
  box-shadow: 0 4px 16px rgba(106, 27, 154, 0.25);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-acc {
  border: 1.5px solid rgba(185, 131, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(106, 27, 154, 0.04);
  transition: all 0.3s;
}
.faq-acc.open {
  border-color: rgba(185, 131, 255, 0.45);
  box-shadow: 0 6px 24px rgba(106, 27, 154, 0.1);
}
.faq-btn {
  width: 100%;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Nunito", sans-serif;
  gap: 1rem;
}
.faq-q {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
}
.faq-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  color: var(--p);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-acc.open .faq-ico {
  background: var(--p);
  color: #fff;
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-acc.open .faq-body {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}
.faq-a {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Video Guides ── */
#guides {
  padding: 6rem 5rem;
  background: linear-gradient(160deg, #fff 40%, var(--light) 100%);
  overflow: hidden;
}
.guides-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.guide-card {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(185, 131, 255, 0.18);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(106, 27, 154, 0.07);
  transition: all 0.3s;
  cursor: pointer;
}
.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(106, 27, 154, 0.16);
  border-color: var(--pl);
}
.guide-thumb {
  width: 100%;
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.guide-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p);
  font-size: 1.3rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  padding-left: 3px;
}
.guide-card:hover .guide-play-btn {
  transform: scale(1.12);
}
.guide-body {
  padding: 1.3rem 1.5rem 1.5rem;
}
.guide-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.18rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.guide-title {
  font-family: "Baloo Thambi 2", cursive;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.guide-meta {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* ── Floating Notif Cards ── */
.notif-card {
  background: #fff;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  box-shadow: 0 8px 28px rgba(106, 27, 154, 0.18);
  border: 1px solid rgba(185, 131, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  animation: floatN 4s ease-in-out infinite;
  position: absolute;
  z-index: 10;
}
@keyframes floatN {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.nc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nc-dot.g {
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}
.nc-dot.o {
  background: #f59e0b;
}
.nc-dot.b {
  background: var(--teal);
  box-shadow: 0 0 6px var(--teal);
}
.nc-title {
  font-size: 0.76rem;
  font-weight: 800;
  color: #1f1f1f;
}
.nc-sub {
  font-size: 0.66rem;
  color: var(--muted);
}

/* ── Status Banner ── */
#status {
  padding: 4rem 5rem;
  background: linear-gradient(135deg, var(--pd), var(--pdk));
  position: relative;
  overflow: hidden;
}
#status .jaali {
  opacity: 0.08;
}
.status-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.status-left {
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #6ee7b7;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.status-dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.status-title {
  font-family: "Baloo Thambi 2", cursive;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.status-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}
.status-checks {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 260px;
}
.s-check {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.s-check-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.s-check-status {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.op {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
}
.up {
  background: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
}

/* ── Legal Policies Section ── */
#legal {
  padding: 5rem 5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.legal-head {
  text-align: center;
  margin-bottom: 3rem;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.legal-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.2rem 1.5rem;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  border: 2px solid rgba(185, 131, 255, 0.22);
  background: #fff;
  box-shadow: 0 4px 24px rgba(106, 27, 154, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.legal-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 20px;
}
.legal-btn:hover {
  transform: translateY(-6px);
  border-color: var(--pl);
  box-shadow: 0 16px 44px rgba(106, 27, 154, 0.16);
}
.legal-btn:hover::before {
  opacity: 1;
}

.legal-btn.tc::before {
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.05),
    rgba(185, 131, 255, 0.07)
  );
}
.legal-btn.pp::before {
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.05),
    rgba(186, 230, 253, 0.1)
  );
}
.legal-btn.dp::before {
  background: linear-gradient(
    135deg,
    rgba(5, 150, 105, 0.05),
    rgba(167, 243, 208, 0.1)
  );
}

.legal-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}
.legal-btn:hover .legal-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}
.legal-btn-title {
  font-family: "Baloo Thambi 2", cursive;
  font-size: 1.12rem;
  font-weight: 800;
  text-align: center;
  position: relative;
  z-index: 1;
}
.legal-btn-desc {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.legal-btn-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.22rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.legal-btn:hover .legal-btn-tag {
  transform: scale(1.05);
}

@media (max-width: 700px) {
  .legal-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  #legal {
    padding: 4rem 1.5rem;
  }
}

.btn-main {
  background: black;
  color: #fff;
  padding: 0.88rem 2.1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(106, 27, 154, 0.33);
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(106, 27, 154, 0.48);
}

@media (max-width: 1024px) {
  .btn-main {
    display: none !important;
  }
}

/* ── Toast ── */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 0.9rem;
  font-weight: 700;
}
#toast.show {
  transform: translateX(0);
}
.toast-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
}

/* ── Responsive ── */
@media (max-width: 800px) {
  nav {
    padding: 0.8rem 1.4rem;
  }
  .nav-links {
    display: none;
  }
  #heros {
    padding: 7rem 1.5rem 4rem;
  }
  #quick-help {
    padding: 4rem 1.5rem;
  }
 #contact {
   padding: 3rem 1.5rem;
 }

 .contact-grid {
   grid-template-columns: 1fr;
   gap: 1.5rem;
 }
  #faq {
    padding: 4rem 1.5rem;
  }
  #guides {
    padding: 4rem 1.5rem;
  }
  #status {
    padding: 3rem 1.5rem;
  }
  .status-inner {
    flex-direction: column;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1100px) {
 
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
}

@media (max-width: 600px) {
  #contact {
    padding: 2.5rem 1rem;
  }

  .contact-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .cc-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  .contact-form-wrap {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .form-title {
    font-size: 1.3rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 0.85rem;
    padding: 0.65rem 0.9rem;
  }

  .form-submit {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}

@media (max-width: 360px) {

  /* SECTION PADDING FIX */
  #contact {
    padding: 1rem 0.8rem;
    /* 🔥 reduce side space */
  }

  /* GRID */
  .contact-grid {
    gap: 1.2rem;
  }

  /* CONTACT CARDS */
  .contact-card {
    padding: 1rem;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .cc-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .cc-title {
    font-size: 0.85rem;
  }

  .cc-sub {
    font-size: 0.75rem;
  }

  /* 🔥 IMPORTANT: FIX BADGE BREAKING LAYOUT */
  .cc-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
    margin-left: 0.5rem;
  }

  /* FORM */
  .contact-form-wrap {
    padding: 1.2rem;
  }

  .form-title {
    font-size: 1.2rem;
  }

  .form-sub {
    font-size: 0.8rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 0.8rem;
    padding: 0.6rem 0.8rem;
  }

  .form-submit {
    font-size: 0.85rem;
    padding: 0.7rem;
  }
}
