/* ===== Mana Oori Palu — aesthetic pass ===== */
:root {
  --cream: #fffdf8;
  --cream-alt: #fbf7ee;
  --cream-deep: #f3ecdc;
  --green-950: #10301b;
  --green-900: #173f26;
  --green-700: #2a6340;
  --green-600: #397e52;
  --green-100: #e3efe6;
  --gold: #c98a2d;
  --gold-soft: #f5e6c8;
  --wa-green: #22c15e;
  --wa-green-dark: #189a49;
  --ink: #24312a;
  --ink-soft: #64746a;
  --white: #ffffff;
  --radius: 20px;
  --shadow-sm: 0 2px 10px rgba(23, 63, 38, 0.06);
  --shadow: 0 10px 30px rgba(23, 63, 38, 0.1);
  --shadow-lg: 0 18px 44px rgba(23, 63, 38, 0.14);
  --font-body: "Noto Sans Telugu", "Nunito Sans", system-ui, sans-serif;
  --font-display: "Noto Serif Telugu", "Noto Sans Telugu", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[lang="en"] { font-family: "Nunito Sans", var(--font-body); }

h1, h2, h3 { line-height: 1.3; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow { max-width: 620px; }

.muted { color: var(--ink-soft); font-size: 0.92rem; }

::selection { background: var(--gold-soft); }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-float { animation: none !important; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-height: 48px;
  letter-spacing: 0.01em;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; min-height: 56px; }
.btn-sm { padding: 0.5rem 1.05rem; min-height: 40px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-whatsapp {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(34, 193, 94, 0.35);
}
.btn-whatsapp:hover { box-shadow: 0 12px 28px rgba(34, 193, 94, 0.45); }

.btn-call {
  background: var(--green-900);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-call:hover { background: var(--green-700); }

.btn-outline {
  background: rgba(255, 255, 255, 0.75);
  color: var(--green-900);
  border-color: var(--green-900);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: var(--white); box-shadow: var(--shadow); }

.btn-cream {
  background: var(--cream);
  color: var(--green-900);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}
.btn-cream:hover { background: #fff; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 63, 38, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 0 0 1.5px rgba(23, 63, 38, 0.12), var(--shadow-sm);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }

.brand-te {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--green-900);
}

.brand-en {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 700;
}

.nav { display: none; gap: 1.5rem; }

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav a:hover { color: var(--green-700); }
.nav a:hover::after { transform: scaleX(1); }
.nav a span { color: var(--ink-soft); font-weight: 400; }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.55rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 4.5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--green-900);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav.open {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
  padding: 0.9rem 1.25rem 1.1rem;
  box-shadow: var(--shadow);
}

.nav.open a { padding: 0.55rem 0; }

/* ===== Hero ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 4rem 0 6.5rem;
  background:
    radial-gradient(900px 480px at 15% -10%, var(--gold-soft) 0%, transparent 60%),
    radial-gradient(900px 520px at 95% 15%, var(--green-100) 0%, transparent 60%),
    linear-gradient(180deg, #fffdf8 0%, #fdf9f0 100%);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-blob-1 {
  width: 380px; height: 380px;
  background: var(--gold-soft);
  top: -140px; left: -120px;
}

.hero-blob-2 {
  width: 420px; height: 420px;
  background: var(--green-100);
  bottom: -180px; right: -140px;
}

.hero-float {
  position: absolute;
  font-size: 2rem;
  opacity: 0.5;
  pointer-events: none;
  animation: floaty 6s ease-in-out infinite;
}

.hero-float-1 { top: 18%; left: 7%; animation-delay: 0s; }
.hero-float-2 { top: 30%; right: 8%; animation-delay: 1.8s; font-size: 1.6rem; }
.hero-float-3 { bottom: 22%; left: 12%; animation-delay: 3.2s; font-size: 1.7rem; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-16px) rotate(5deg); }
}

.hero-inner { position: relative; z-index: 1; }

.hero-logo {
  display: block;
  margin-inline: auto;
  width: clamp(150px, 26vw, 210px);
  height: auto;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  filter: drop-shadow(0 14px 30px rgba(23, 63, 38, 0.22));
  animation: logo-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes logo-in {
  from { opacity: 0; transform: translateY(-14px) scale(0.94); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.kicker-line {
  display: inline-block;
  width: 34px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 4rem);
  font-weight: 800;
  color: var(--green-950);
  line-height: 1.28;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: normal;
  color: var(--green-700);
  background: linear-gradient(180deg, transparent 62%, var(--gold-soft) 62%);
  padding: 0 0.15em;
  border-radius: 4px;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

.hero-sub b { color: var(--gold); }

.badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}

.badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(23, 63, 38, 0.1);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-900);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-note { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;
}

/* ===== Sections ===== */
.section { padding: 4rem 0; }
.section-alt { background: var(--cream-alt); }

.eyebrow {
  text-align: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--green-950);
  text-align: center;
  margin-bottom: 0.6rem;
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(23, 63, 38, 0.06);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.75rem;
}

.cards-2 { display: grid; gap: 1.4rem; margin-top: 2.25rem; }

.product-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--green-600));
  opacity: 0;
  transition: opacity 0.22s ease;
}

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

.product-card:hover::before { opacity: 1; }

.product-emoji {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.product-emoji span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  font-size: 2.6rem;
  background: radial-gradient(circle at 30% 25%, var(--gold-soft), var(--green-100));
  box-shadow: inset 0 0 0 1px rgba(23, 63, 38, 0.08);
}

.product-card h3 {
  font-family: var(--font-display);
  color: var(--green-950);
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.product-card h3 span {
  display: block;
  font-family: "Nunito Sans", sans-serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.product-card p { margin-bottom: 0.4rem; }

.price-pill {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 1px rgba(23, 63, 38, 0.12);
}

/* ===== Pricing ===== */
.price-cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(23, 63, 38, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-600), var(--gold));
}

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

.price-qty {
  font-weight: 700;
  color: var(--green-900);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.price-qty span { color: var(--ink-soft); font-weight: 600; font-size: 0.85em; }

.price-amount {
  font-family: "Nunito Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--green-950);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.price-amount sup { font-size: 0.45em; font-weight: 700; color: var(--gold); margin-right: 0.05em; }
.price-amount span { font-size: 0.4em; font-weight: 700; color: var(--ink-soft); }

.price-note { font-size: 0.88rem; color: var(--ink-soft); }

.price-footnote {
  text-align: center;
  margin-top: 1.75rem;
  font-weight: 600;
  color: var(--green-900);
  font-size: 0.95rem;
  line-height: 2;
}

.price-footnote span { color: var(--ink-soft); font-weight: 500; font-size: 0.92em; }

/* ===== Features ===== */
.features { display: grid; gap: 1.1rem; margin-top: 2.25rem; }

.feature {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(23, 63, 38, 0.06);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  font-size: 1.6rem;
  background: linear-gradient(145deg, var(--green-100), var(--cream-deep));
  margin-bottom: 0.85rem;
  box-shadow: inset 0 0 0 1px rgba(23, 63, 38, 0.07);
}

.feature h3 { font-size: 1.08rem; color: var(--green-950); margin-bottom: 0.3rem; }
.feature p { font-size: 0.92rem; color: var(--ink-soft); }

/* ===== Steps ===== */
.steps {
  list-style: none;
  display: grid;
  gap: 1.4rem;
  margin-top: 2.5rem;
  position: relative;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(23, 63, 38, 0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), #b0761d);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 6px 16px rgba(201, 138, 45, 0.4);
}

.step h3 { color: var(--green-950); margin-bottom: 0.35rem; font-size: 1.12rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ===== Order form ===== */
.order-form { margin-top: 1rem; padding: 2.25rem 1.75rem; }

.form-row { margin-bottom: 1.15rem; display: flex; flex-direction: column; gap: 0.4rem; }

.form-row label {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--green-950);
}

.form-row label span { color: var(--ink-soft); font-weight: 500; }

.form-row input,
.form-row select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-deep);
  border-radius: 12px;
  background: var(--cream-alt);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.form-row input::placeholder { color: #a9b3ac; }

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(57, 126, 82, 0.15);
}

.form-grid { display: grid; gap: 0; }

.form-error {
  color: #b3261e;
  background: #fdeceb;
  border: 1px solid #f3c2be;
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.form-note {
  margin-top: 1.1rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.form-note a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1.5px solid var(--gold-soft);
}

.form-note a:hover { border-bottom-color: var(--gold); }

/* ===== CTA band ===== */
.cta-band {
  background:
    radial-gradient(700px 320px at 85% 115%, rgba(201, 138, 45, 0.35) 0%, transparent 60%),
    radial-gradient(600px 300px at 8% -20%, rgba(57, 126, 82, 0.5) 0%, transparent 60%),
    var(--green-950);
  color: var(--cream);
  text-align: center;
  padding: 4.25rem 0;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: #c3d5c8;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

/* ===== Contact ===== */
.contact-grid { display: grid; gap: 1.1rem; margin-top: 2.25rem; }

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 138, 45, 0.4);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.5rem;
  background: linear-gradient(145deg, var(--green-100), var(--gold-soft));
  margin-bottom: 0.35rem;
}

.contact-num {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-950);
  letter-spacing: 0.04em;
}

.contact-meta {
  margin-top: 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-weight: 600;
}

.insta-link {
  align-self: center;
  color: var(--green-900);
  text-decoration: none;
  font-weight: 700;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid rgba(23, 63, 38, 0.15);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.insta-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== Footer ===== */
.footer {
  background: var(--green-950);
  color: #dcE8df;
  padding: 3rem 0 1.5rem;
}

.footer-inner { display: flex; flex-direction: column; gap: 1.75rem; }

.footer-about { display: flex; align-items: flex-start; gap: 1rem; }

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.footer-brand span { font-family: "Nunito Sans", sans-serif; font-weight: 600; font-size: 0.8em; color: #9db8a2; }

.footer-tag { color: #9db8a2; font-size: 0.92rem; line-height: 1.7; }

.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }

.footer-links a {
  color: #dcE8df;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-links a:hover { color: var(--gold-soft); }

.footer-motto {
  font-family: var(--font-display);
  text-align: center;
  margin-top: 2.25rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.footer-copy {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  color: #85a08b;
}

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(34, 193, 94, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(34, 193, 94, 0.45);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::after { animation: none; display: none; }
}

.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(34, 193, 94, 0.55); }

/* ===== Desktop ===== */
@media (min-width: 720px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .nav a span { display: none; } /* desktop nav: Telugu labels only */

  .cards-2 { grid-template-columns: 1fr 1fr; }
  .price-cards { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* dashed connector between steps */
  .steps::before {
    content: "";
    position: absolute;
    top: 2.75rem;
    left: 16%;
    right: 16%;
    border-top: 2px dashed rgba(201, 138, 45, 0.45);
    z-index: 0;
  }

  .step { position: relative; z-index: 1; }

  .order-form { padding: 2.75rem 2.5rem; }

  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }

  .section { padding: 5rem 0; }
  .hero { padding: 5.5rem 0 8rem; }
  .wave { height: 90px; }
}
