:root {
  --saffron: #e87722;
  --saffron-deep: #c45a14;
  --maroon: #8b1e1e;
  --gold: #d4a017;
  --gold-light: #f4d77a;
  --cream: #fff7eb;
  --cream-2: #fdf1de;
  --ink: #2a1a10;
  --muted: #6b5644;
  --line: #ead7b7;
  --shadow: 0 10px 30px rgba(139, 30, 30, 0.08);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* Custom Om cursor across the whole site */
html, body, * {
  cursor: url('om-cursor.png?v=2') 16 16, auto;
}
/* Standard hand cursor on interactive elements so clickable areas are obvious */
a, button, .service-card, .btn, .lang-toggle, .lang-opt, .hamburger,
.contact-card, .copy-btn, [role="button"], input[type="submit"], input[type="button"],
input[type="checkbox"], input[type="radio"], select, label.radio-pill,
a:hover, a:active, a:focus,
button:hover, button:active, button:focus,
.service-card:hover, .service-card:active, .service-card:focus,
.btn:hover, .btn:active, .btn:focus,
.contact-card:hover, .contact-card:active, .contact-card:focus {
  cursor: pointer !important;
  transition: color .25s cubic-bezier(.4, 0, .2, 1),
              background-color .25s cubic-bezier(.4, 0, .2, 1),
              border-color .25s cubic-bezier(.4, 0, .2, 1),
              transform .25s cubic-bezier(.4, 0, .2, 1),
              box-shadow .25s cubic-bezier(.4, 0, .2, 1),
              opacity .25s cubic-bezier(.4, 0, .2, 1),
              filter .25s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* Children of clickable elements inherit the pointer cursor */
a *, button *, .service-card *, .btn *, .contact-card *,
.lang-toggle *, .copy-btn *, label.radio-pill * {
  cursor: inherit !important;
}

/* Subtle lift on hover for any clickable element that doesn't already define one */
a:hover, button:not(:disabled):hover, .lang-toggle:hover, .lang-opt:hover,
.copy-btn:hover, label.radio-pill:hover {
  filter: brightness(1.05);
}

/* Nav links — animated underline */
.menu a {
  transition: color .25s ease;
}

/* Soft press-down feedback on click for all clickable elements */
@media (hover: hover) {
  a:active, button:not(:disabled):active, .service-card:active,
  .btn:active, .copy-btn:active, label.radio-pill:active {
    transform: translateY(1px) scale(0.99);
    transition-duration: .08s;
  }
}
/* Keep text cursor on form text inputs for usability */
input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="time"], input[type="number"], textarea {
  cursor: text;
}
/* Disabled buttons */
.btn-upcoming, [aria-disabled="true"] {
  cursor: not-allowed;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lang-hi { font-family: 'Tiro Devanagari Hindi', 'Poppins', serif; line-height: 1.8; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.hero-grid,
.hero-text,
.hero-cta,
.trust-row,
.section-head,
.services-grid,
.services-category,
.category-grid,
.pricing-grid,
.about-grid,
.booking-wrap,
.booking-form,
.form-grid,
.contact-grid,
.footer-grid {
  min-width: 0;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 247, 235, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  overflow-x: clip;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 16px; min-width: 0; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: contain;
}
.logo.small { width: 36px; height: 36px; flex-basis: 36px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--maroon);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}
body.lang-hi .brand-name { font-family: 'Tiro Devanagari Hindi', serif; }
.brand-tag { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.6px; }

.menu { display: flex; gap: 28px; }
.menu a { font-weight: 500; color: var(--ink); position: relative; padding: 6px 0; transition: color .2s; }
.menu a:hover { color: var(--saffron-deep); }
.menu a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--saffron); transition: width .25s; }
.menu a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  background: var(--cream-2); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-size: 0.85rem; color: var(--muted);
  transition: all .2s;
}
.lang-toggle:hover { border-color: var(--saffron); }
.lang-opt { padding: 2px 6px; border-radius: 999px; transition: all .2s; }
.lang-opt.active { background: var(--saffron); color: #fff; font-weight: 600; }
.divider { color: var(--line); }

.diya-audio-btn {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--muted);
  box-shadow: none;
  font-size: 1.08rem;
  line-height: 1;
}
.diya-audio-btn:hover {
  border-color: var(--saffron);
  background: #fffaf0;
  transform: none;
  box-shadow: none;
}
.diya-audio-btn.is-playing {
  border-color: var(--saffron);
  background: #fffaf0;
  color: var(--saffron-deep);
  box-shadow: none;
}
.diya-audio-btn.is-playing span {
  transform: none;
}
.diya-audio-btn.has-error {
  animation: shakeButton .32s ease-in-out;
}
@keyframes shakeButton {
  0%, 100% { transform: translateX(0); }
  35% { transform: translateX(-2px); }
  70% { transform: translateX(2px); }
}

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--maroon); border-radius: 2px; transition: all .2s; }

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(212,160,23,0.12), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(232,119,34,0.12), transparent 45%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 70px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(212,160,23,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; position: relative; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--saffron-deep); font-weight: 600;
  background: rgba(232,119,34,0.1); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.15; color: var(--maroon);
  margin: 0 0 18px; font-weight: 700;
  overflow-wrap: break-word;
}
body.lang-hi .hero h1 { font-family: 'Tiro Devanagari Hindi', serif; line-height: 1.4; }
.hero p { font-size: 1.05rem; color: var(--muted); margin: 0 0 28px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: all .25s; border: 2px solid transparent;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(232,119,34,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(232,119,34,0.45); }
.btn-ghost { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-ghost:hover { background: var(--maroon); color: #fff; }
.btn-outline { background: #fff; color: var(--saffron-deep); border-color: var(--saffron); }
.btn-outline:hover { background: var(--saffron); color: #fff; }
.btn-upcoming {
  background: var(--cream-2);
  color: var(--muted);
  border-color: var(--line);
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
  font-style: italic;
  letter-spacing: 0.3px;
}
.btn-upcoming::before {
  content: "⏳";
  font-style: normal;
  margin-right: 4px;
}
.btn.full { width: 100%; justify-content: center; }

.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 540px; }
.trust-row > div { display: flex; flex-direction: column; padding: 12px 14px; background: rgba(255,255,255,0.6); border: 1px solid var(--line); border-radius: 10px; }
.trust-row strong { color: var(--maroon); font-size: 0.95rem; }
.trust-row span { font-size: 0.78rem; color: var(--muted); }

.hero-art { position: relative; display: flex; justify-content: center; }
.diya-circle {
  width: min(420px, 90%); aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--gold-light) 0%, var(--saffron) 60%, var(--saffron-deep) 100%);
  padding: 18px;
  box-shadow: 0 30px 60px rgba(139,30,30,0.25), inset 0 0 60px rgba(255,255,255,0.3);
  position: relative; animation: gentle-glow 4s ease-in-out infinite;
}
.diya-circle img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 6px solid #fff;
}
@keyframes gentle-glow {
  0%, 100% { box-shadow: 0 30px 60px rgba(139,30,30,0.25), inset 0 0 60px rgba(255,255,255,0.3), 0 0 0 0 rgba(232,119,34,0.4); }
  50% { box-shadow: 0 30px 60px rgba(139,30,30,0.25), inset 0 0 60px rgba(255,255,255,0.3), 0 0 0 18px rgba(232,119,34,0); }
}
.ornament { position: absolute; width: 80px; height: 80px; border-radius: 50%; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); opacity: 0.35; }
.ornament.top-left { top: -10px; left: 0; }
.ornament.bottom-right { bottom: 10px; right: 0; }

/* ---------- SECTIONS ---------- */
.section { padding: 80px 0; }
.section-alt { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--maroon); margin: 0 0 12px; font-weight: 700;
}
body.lang-hi .section-head h2 { font-family: 'Tiro Devanagari Hindi', serif; }
.section-head p { color: var(--muted); margin: 0; }

/* ---------- SERVICES ---------- */
.services-intro {
  max-width: 880px; margin: 0 auto 48px; text-align: center;
  color: var(--muted); font-size: 1rem; line-height: 1.8;
  padding: 0 8px;
}
body.lang-hi .services-intro { font-family: 'Tiro Devanagari Hindi', serif; line-height: 1.9; }

.services-grid {
  display: block;          /* full-width stacked categories */
}
.services-category {
  position: relative;
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #ffffff, #fffaf3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px 28px;
  margin-bottom: 40px;
  box-shadow: 0 10px 28px rgba(160, 90, 30, 0.07);
  overflow: hidden;
}
.services-category::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron-deep));
}
.services-category:nth-child(2)::before {
  background: linear-gradient(90deg, var(--maroon), var(--saffron-deep), var(--maroon));
}
.services-category:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gold), var(--saffron), var(--gold));
}

.category-head {
  display: flex; align-items: center; gap: 16px;
  margin: 0 0 26px; padding-bottom: 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--maroon); font-weight: 700;
  border-bottom: 1px solid var(--gold-light);
  position: relative;
  line-height: 1.3;
}
.category-head::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 110px; height: 3px; background: var(--saffron);
  border-radius: 2px;
}
.category-head .cat-icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 1.55rem; line-height: 1; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(200, 140, 50, 0.22);
}
body.lang-hi .category-head { font-family: 'Tiro Devanagari Hindi', serif; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 16px;
  display: flex; align-items: center; gap: 14px;
  text-align: left; width: 100%;
  font-family: inherit; color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer; min-height: 72px;
}
.service-card:focus-visible {
  outline: 2px solid var(--saffron); outline-offset: 2px;
}
.service-card:active { transform: translateY(-1px); }
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--saffron);
  box-shadow: 0 10px 22px rgba(200, 100, 30, 0.14);
}
.service-card .sym {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #fff6e3, #ffe9c2);
  border: 1px solid var(--gold-light);
  color: var(--maroon); font-size: 1.15rem; flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .2s;
}
.service-card:hover .sym {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-color: transparent;
  transform: scale(1.05) rotate(-2deg);
}
.service-card span.label {
  font-weight: 600; font-size: 0.92rem; color: var(--ink); line-height: 1.35;
}
body.lang-hi .service-card span.label { font-weight: 500; font-size: 0.95rem; }

.custom-note {
  text-align: center; margin: 36px auto 0; color: var(--saffron-deep);
  font-weight: 500; font-size: 0.98rem;
  background: linear-gradient(135deg, #fff6e3, #fffaf3);
  border: 1px dashed var(--gold);
  border-radius: 14px; padding: 16px 22px;
  max-width: 760px;
}

/* ---------- PUJA DETAILS PAGE ---------- */
.detail-hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(circle at 12% 25%, rgba(212,160,23,0.14), transparent 38%),
    radial-gradient(circle at 88% 70%, rgba(232,119,34,0.12), transparent 40%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212,160,23,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.detail-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  min-width: 0;
  position: relative;
}
.detail-hero-inner > * {
  min-width: 0;
}
.detail-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--maroon);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 12px 0 18px;
  overflow-wrap: break-word;
  letter-spacing: -0.01em;
}
body.lang-hi .detail-hero h1 { font-family: 'Tiro Devanagari Hindi', serif; line-height: 1.4; letter-spacing: 0; }
.detail-hero p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 26px;
  overflow-wrap: break-word;
  font-size: 1.02rem;
  line-height: 1.7;
}
body.lang-hi .detail-hero p { line-height: 1.85; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.detail-actions .btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}
.detail-hero-badge {
  width: min(280px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, #fffaf0 0 46%, rgba(244,215,122,0.55) 47% 52%, var(--saffron) 53% 66%, rgba(139,30,30,0.08) 67%);
  box-shadow: 0 26px 56px rgba(139, 30, 30, 0.18);
  animation: gentle-glow 5s ease-in-out infinite;
}
.detail-hero-badge img {
  width: 72%;
  height: 72%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fffaf0;
}
.detail-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.detail-sidebar {
  position: sticky;
  top: 92px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 12px 30px rgba(139,30,30,0.08);
  overflow: hidden;
}
.detail-sidebar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron-deep));
}
.detail-sidebar h2 {
  font-size: 0.78rem;
  color: var(--maroon);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.detail-nav-list {
  display: grid;
  gap: 4px;
  max-height: calc(100vh - 180px);
  overflow: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-light) transparent;
}
.detail-nav-list::-webkit-scrollbar { width: 6px; }
.detail-nav-list::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }
.detail-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.3;
  transition: background .2s, color .2s, transform .15s;
  position: relative;
}
.detail-nav-list a > span {
  font-size: 1rem;
  flex-shrink: 0;
}
.detail-nav-list a:hover {
  background: var(--cream-2);
  color: var(--maroon);
  transform: translateX(2px);
}
.detail-nav-list a.is-active {
  background: linear-gradient(135deg, rgba(232,119,34,0.12), rgba(212,160,23,0.10));
  color: var(--maroon);
  font-weight: 600;
}
.detail-nav-list a.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--saffron);
}
.detail-content {
  display: grid;
  gap: 22px;
}
.detail-category-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0 4px;
  padding: 20px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff6e3 0%, #fffaf3 100%);
  border: 1px solid var(--gold-light);
  color: var(--maroon);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.detail-category-title::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--saffron), var(--gold), var(--saffron-deep));
}
.detail-category-title > span:first-child {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.detail-content > .detail-category-title:first-of-type { margin-top: 4px; }
body.lang-hi .detail-category-title { font-family: 'Tiro Devanagari Hindi', serif; line-height: 1.4; }
.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 24px;
  box-shadow: 0 10px 26px rgba(160, 90, 30, 0.06);
  scroll-margin-top: 100px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
}
.detail-card::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -11px;
  transform: translateX(-50%);
  width: 56px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 22' fill='%23d4a017' opacity='0.55'><circle cx='8' cy='11' r='2'/><circle cx='28' cy='11' r='3'/><circle cx='48' cy='11' r='2'/><path d='M14 11 L22 11 M34 11 L42 11' stroke='%23d4a017' stroke-width='1' opacity='0.55'/></svg>") center/contain no-repeat;
  pointer-events: none;
}
.detail-card:last-child::after { display: none; }
.detail-card.is-highlighted {
  border-color: var(--saffron);
  box-shadow: 0 18px 40px rgba(232,119,34,0.18);
  transform: translateY(-2px);
}
.detail-intro-card {
  background: linear-gradient(135deg, #fffdf8, #fff6e3);
  border-color: rgba(212,160,23,0.42);
}
.detail-intro-card .detail-title .sym {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--maroon);
  border-color: var(--gold);
  font-weight: 700;
}
.detail-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  color: var(--maroon);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(212,160,23,0.4);
}
body.lang-hi .detail-title { font-family: 'Tiro Devanagari Hindi', serif; line-height: 1.4; }
.detail-title .sym {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff6e3, #ffe9c2);
  border: 1px solid var(--gold-light);
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(212,160,23,0.18);
}
.detail-card p {
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 68ch;
}
.detail-card p:last-of-type { margin-bottom: 0; }
body.lang-hi .detail-card p { line-height: 2; font-size: 1.02rem; max-width: 62ch; }
.detail-card ul {
  margin: 20px 0 0;
  padding: 16px 18px;
  list-style: none;
  display: grid;
  gap: 10px;
  background: linear-gradient(135deg, rgba(212,160,23,0.06), rgba(232,119,34,0.04));
  border: 1px dashed rgba(212,160,23,0.35);
  border-radius: 12px;
}
.detail-card li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
}
body.lang-hi .detail-card li { line-height: 1.75; }
.detail-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--saffron);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(232,119,34,0.25);
}
.detail-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(212,160,23,0.3);
}

@media (max-width: 640px) {
  .services-category { padding: 26px 18px 22px; border-radius: 14px; margin-bottom: 28px; }
  .category-head { gap: 12px; font-size: 1.2rem; }
  .category-head .cat-icon { width: 44px; height: 44px; font-size: 1.25rem; border-radius: 12px; }
  .category-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { padding: 14px; min-height: 60px; }
  .services-intro { font-size: 0.95rem; }
}

@media (max-width: 900px) {
  .detail-hero { padding: 46px 0 40px; }
  .detail-hero-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .detail-actions { justify-content: center; }
  .detail-hero-badge { width: min(220px, 60vw); order: -1; }
  .detail-hero p { margin-left: auto; margin-right: auto; }
  .detail-layout { grid-template-columns: 1fr; gap: 18px; }
  .detail-sidebar {
    position: static;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .detail-sidebar h2 { margin-bottom: 10px; }
  .detail-nav-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    max-height: none;
    padding-bottom: 6px;
    padding-right: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .detail-nav-list a {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
    padding: 9px 14px;
    background: #fff;
    border: 1px solid var(--line);
  }
  .detail-nav-list a.is-active {
    border-color: var(--saffron);
    background: linear-gradient(135deg, rgba(232,119,34,0.14), rgba(212,160,23,0.10));
  }
  .detail-nav-list a.is-active::before { display: none; }
  .detail-card { padding: 24px 22px; }
  .detail-title { font-size: 1.32rem; gap: 12px; }
  .detail-title .sym { width: 42px; height: 42px; flex-basis: 42px; font-size: 1.15rem; }
}

@media (max-width: 520px) {
  .detail-hero { padding: 32px 0 30px; }
  .detail-hero h1 { font-size: 1.62rem; }
  body.lang-hi .detail-hero h1 { font-size: 1.42rem; }
  .detail-hero p { text-align: left; font-size: 0.94rem; line-height: 1.72; }
  body.lang-hi .detail-hero p { line-height: 1.95; }
  .detail-actions .btn { width: 100%; justify-content: center; }
  .detail-hero-badge { width: 156px; }
  .detail-sidebar { padding: 12px 12px; border-radius: 12px; }
  .detail-sidebar h2 { font-size: 0.72rem; }
  .detail-nav-list a { padding: 8px 12px; font-size: 0.82rem; }
  .detail-category-title {
    padding: 14px 16px 14px 20px;
    font-size: 1.1rem;
    gap: 10px;
    border-radius: 12px;
  }
  .detail-category-title::before { width: 4px; }
  .detail-category-title > span:first-child { font-size: 1.3rem; }
  .detail-card { padding: 20px 16px 18px; border-radius: 14px; scroll-margin-top: 80px; }
  .detail-card::after { bottom: -10px; width: 44px; }
  .detail-title {
    align-items: flex-start;
    font-size: 1.12rem;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }
  .detail-title .sym {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 10px;
    font-size: 1.05rem;
  }
  .detail-card p {
    font-size: 0.94rem;
    line-height: 1.78;
    margin-bottom: 12px;
  }
  body.lang-hi .detail-card p {
    font-size: 0.98rem;
    line-height: 1.95;
  }
  .detail-card ul {
    margin-top: 16px;
    padding: 12px 14px;
    gap: 8px;
  }
  .detail-card li {
    font-size: 0.9rem;
    padding-left: 26px;
  }
  .detail-card li::before {
    width: 20px;
    height: 20px;
    font-size: 0.68rem;
  }
  .detail-card-actions {
    gap: 10px;
    margin-top: 18px;
    padding-top: 14px;
  }
  .detail-card-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- PRICING ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; position: relative; text-align: center;
  transition: all .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.highlight { border: 2px solid var(--saffron); transform: scale(1.03); box-shadow: 0 20px 40px rgba(232,119,34,0.12); }
.price-card.highlight:hover { transform: scale(1.03) translateY(-6px); }
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--maroon); color: #fff; font-size: 0.72rem;
  padding: 4px 14px; border-radius: 999px; letter-spacing: 1px; text-transform: uppercase;
}
.price-card.highlight .badge { background: var(--saffron); }
.price-card h3 { font-family: 'Playfair Display', serif; color: var(--maroon); margin: 14px 0 10px; font-size: 1.3rem; }
body.lang-hi .price-card h3 { font-family: 'Tiro Devanagari Hindi', serif; }
.price { font-size: 1.6rem; font-weight: 700; color: var(--saffron-deep); margin: 12px 0; }
.price-card p { color: var(--muted); font-size: 0.92rem; margin: 0 0 20px; min-height: 60px; }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--maroon); margin: 0 0 20px;
}
body.lang-hi .about-text h2 { font-family: 'Tiro Devanagari Hindi', serif; }
.about-text p { color: var(--muted); margin: 0 0 16px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.check-list li { padding-left: 32px; position: relative; color: var(--ink); }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--saffron); color: #fff;
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 700;
}
.about-card {
  background: linear-gradient(135deg, var(--maroon), var(--saffron-deep));
  color: #fff; padding: 32px; border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(139,30,30,0.2);
  position: sticky; top: 100px;
}
.about-card h3 { font-family: 'Playfair Display', serif; margin: 0 0 12px; font-size: 1.4rem; }
body.lang-hi .about-card h3 { font-family: 'Tiro Devanagari Hindi', serif; }
.about-card p { margin: 0 0 22px; opacity: 0.9; font-size: 0.95rem; }
.about-card .btn-primary { background: #fff; color: var(--maroon); }
.about-card .btn-primary:hover { background: var(--gold-light); color: var(--maroon); }

/* ---------- BOOKING ---------- */
.booking-wrap { max-width: 820px; margin: 0 auto; }
.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field.full { grid-column: 1 / -1; margin-top: 4px; }
.field span, .field legend { font-size: 0.85rem; font-weight: 600; color: var(--maroon); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.15);
}
.platform-field {
  grid-column: 1 / -1;
  border: none;
  margin: 0;
  padding: 0;
  display: block;
}
.platform-field legend {
  display: block;
  width: 100%;
  margin-bottom: 8px;
}
.platform-field .radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 12px 8px 0;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  background: var(--cream);
  font-size: 0.9rem;
  transition: all .2s;
  white-space: nowrap;
  vertical-align: middle;
}
.platform-field .radio-pill > span {
  flex: 0 0 auto;
}
.platform-field .radio-pill:has(input:checked) {
  border-color: var(--saffron);
  background: rgba(232,119,34,0.1);
  color: var(--saffron-deep);
  font-weight: 600;
}
.platform-field input { accent-color: var(--saffron); }
.booking-form .btn-primary { margin-top: 8px; width: 100%; justify-content: center; }
.form-hint { font-size: 0.82rem; margin: 14px 0 0; text-align: center; }
.hidden { display: none !important; }
.booking-result, .booking-error {
  margin-top: 24px;
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.booking-result {
  background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(232,119,34,0.08));
  border-color: var(--gold);
}
.booking-error {
  background: #fff5f5;
  border-color: #e8b4b4;
  color: #8b1e1e;
}
.booking-result h3 {
  font-family: 'Playfair Display', serif;
  color: var(--maroon);
  margin: 0 0 10px;
  font-size: 1.25rem;
}
.booking-result .meet-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  padding: 12px 18px;
  background: var(--maroon);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  word-break: break-all;
  overflow-wrap: anywhere;
  max-width: 100%;
}
.booking-result .meet-link:hover { background: var(--saffron-deep); }
.booking-result .copy-btn {
  margin-left: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
}
.booking-result .meta { color: var(--muted); font-size: 0.9rem; margin: 8px 0 0; }
.booking-form.is-loading { opacity: 0.7; pointer-events: none; }

@keyframes flashRing {
  0%   { box-shadow: 0 0 0 0 rgba(229, 122, 38, 0.55); border-color: var(--saffron); }
  60%  { box-shadow: 0 0 0 10px rgba(229, 122, 38, 0); border-color: var(--saffron); }
  100% { box-shadow: 0 0 0 0 rgba(229, 122, 38, 0); }
}
.flash-highlight {
  animation: flashRing 1.5s ease-out;
  border-color: var(--saffron) !important;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .platform-field { grid-column: auto; }
}

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; transition: all .25s;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--saffron); box-shadow: var(--shadow); }
.contact-card .ic { font-size: 1.8rem; margin-bottom: 6px; }
.contact-card strong { color: var(--maroon); font-size: 0.95rem; }
.contact-card span { color: var(--muted); font-size: 0.9rem; word-break: break-word; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--ink); color: #f6e9d6; padding: 60px 0 20px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--gold-light); margin: 0 0 14px; font-size: 1rem; }
.footer-grid a, .footer-grid span { display: block; color: #d8c3a4; padding: 4px 0; font-size: 0.92rem; transition: color .2s; }
.footer-grid a:hover { color: var(--gold-light); }
.site-footer .brand-name { color: var(--gold-light); }
.muted { color: #a89378; font-size: 0.88rem; }
.copyright { border-top: 1px solid #3a2a1c; padding-top: 20px; text-align: center; color: #a89378; font-size: 0.85rem; }

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.4);
  animation: pulse 2s infinite;
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.08); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 24px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ---------- RESPONSIVE ---------- */

/* Tablet (≤900px) */
@media (max-width: 900px) {
  .container { padding: 0 22px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 38px; }

  .hero { padding: 52px 0 64px; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-text { text-align: center; max-width: 640px; margin: 0 auto; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-art { order: -1; max-width: 280px; margin: 0 auto; }
  .hero h1 { font-size: clamp(1.9rem, 5vw, 2.6rem); }
  .hero p { margin-bottom: 20px; }
  .hero-cta { margin-bottom: 28px; }
  .trust-row { max-width: 100%; margin: 0 auto; }

  .about-card { position: static; padding: 28px 24px; max-width: 640px; margin: 0 auto; }
  .about-text { max-width: 720px; margin: 0 auto; }
  .booking-wrap { max-width: 760px; }

  /* Pricing: 2-column with featured spanning full width on tablet */
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
    gap: 22px;
  }
  .price-card.highlight {
    transform: none;
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .price-card.highlight:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Services tablet — 2 columns of cards per category */
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .services-category { padding: 28px 22px 22px; }
}

/* iPad portrait / small tablet (≤880px) — tighter trust row + booking grid */
@media (max-width: 880px) {
  .trust-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .trust-row > div { padding: 11px 12px; }
  .trust-row strong { font-size: 0.9rem; }
  .trust-row span { font-size: 0.74rem; }

  .booking-form { padding: 24px 20px 22px; }
  .form-grid { gap: 16px 18px; }

  .about-card { padding: 26px 22px; }

  /* Detail page on tablets — keep readable but tighter */
  .detail-layout { gap: 22px; }
  .detail-card { padding: 22px 20px; }
  .detail-category-title { padding: 16px 18px; font-size: 1.22rem; }
}

/* Small tablet / Large phone (≤860px) — menu collapses before controls crowd the header */
@media (max-width: 860px) {
  .menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s;
    z-index: 49;
  }
  .menu.open { max-height: 360px; padding: 8px 20px 16px; }
  .menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .menu a:last-child { border-bottom: none; }
  .hamburger { display: flex; }

  .brand { flex: 1 1 auto; overflow: hidden; }
  .brand-tag { display: none; }
  .nav { padding: 12px 16px; gap: 10px; }
  .nav-actions { gap: 8px; }
  .logo { width: 40px; height: 40px; flex-basis: 40px; }
  .brand-name { font-size: 1.15rem; }
  .lang-toggle { padding: 5px 10px; font-size: 0.8rem; }
  .diya-audio-btn { width: 34px; height: 34px; flex-basis: 34px; font-size: 1rem; }

  .hero { padding: 36px 0 50px; }
  .hero-art { max-width: 210px; }
  .eyebrow { font-size: 0.7rem; padding: 5px 12px; margin-bottom: 14px; }
  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); line-height: 1.2; }
  body.lang-hi .hero h1 { font-size: clamp(1.5rem, 5.5vw, 2rem); line-height: 1.35; }
  .hero p { font-size: 0.98rem; }
  .hero-cta .btn { padding: 11px 18px; font-size: 0.9rem; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-row > div { padding: 10px 12px; }

  .price-card.highlight { transform: scale(1); }
  .price-card.highlight:hover { transform: translateY(-6px); }
  .pricing-grid { gap: 20px; padding-top: 14px; }

  .float-wa { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

/* Phone (≤520px) — tighter spacing, single column everywhere */
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; padding: 0 4px; }
  .section-head h2 { font-size: 1.55rem; }
  .section-head p { font-size: 0.92rem; }

  /* Header + hero compact — keep brand name visible, hide only tag */
  .site-header { position: sticky; }
  .nav { padding: 10px 14px; gap: 8px; }
  .brand { gap: 8px; min-width: 0; flex: 1 1 auto; overflow: hidden; }
  .brand-text { display: flex; min-width: 0; }
  .brand-tag { display: none; }
  .logo { width: 34px; height: 34px; flex-basis: 34px; box-shadow: none; }
  .brand-name { font-size: 1.05rem; max-width: 100%; }
  .nav-actions { gap: 6px; flex-shrink: 0; }
  .lang-toggle { padding: 4px 8px; font-size: 0.74rem; gap: 3px; }
  .lang-opt { padding: 2px 5px; }
  .diya-audio-btn { width: 34px; height: 34px; flex-basis: 34px; font-size: 0.95rem; }
  .hamburger { padding: 6px; }
  .hamburger span { width: 20px; }

  .hero { padding: 30px 0 42px; }
  .hero-grid { gap: 24px; }
  .hero-art { max-width: 168px; }
  .diya-circle { padding: 12px; }
  .diya-circle img { border-width: 4px; }
  .hero h1 { font-size: 1.5rem; line-height: 1.18; }
  body.lang-hi .hero h1 { font-size: 1.36rem; line-height: 1.35; }
  .hero p { font-size: 0.92rem; margin-bottom: 20px; max-width: 100%; overflow-wrap: break-word; }
  .eyebrow { letter-spacing: 1.2px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { width: 100%; max-width: 100%; justify-content: center; min-height: 46px; padding: 12px 16px; }
  .trust-row { grid-template-columns: 1fr; gap: 8px; max-width: 360px; margin: 0 auto; }
  .trust-row strong { font-size: 0.9rem; }
  .trust-row span { font-size: 0.75rem; }

  /* Services phone */
  .services-intro { font-size: 0.9rem; line-height: 1.68; margin-bottom: 28px; text-align: left; }
  .services-category { padding: 22px 16px 18px; border-radius: 14px; margin-bottom: 24px; }
  .services-category::before { height: 4px; }
  .category-head { align-items: flex-start; gap: 12px; font-size: 1.05rem; margin-bottom: 18px; padding-bottom: 14px; }
  .category-head .cat-icon { width: 42px; height: 42px; font-size: 1.2rem; border-radius: 10px; }
  .category-head::after { width: 70px; height: 2px; }
  .category-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { padding: 12px; min-height: 58px; border-radius: 10px; }
  .service-card .sym { width: 38px; height: 38px; font-size: 1rem; }
  .service-card span.label { font-size: 0.9rem; }
  .custom-note { font-size: 0.9rem; padding: 14px 16px; margin-top: 24px; }

  /* Pricing phone — single column, full width */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 18px;
    padding-top: 12px;
  }
  .price-card { padding: 28px 22px; border-radius: 14px; }
  .price-card.highlight {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
  .price-card h3 {
    font-size: 1.25rem;
    margin: 12px 0 8px;
    white-space: normal;
    overflow-wrap: break-word;
  }
  .price { font-size: 1.55rem; margin: 10px 0; }
  .price-card p { font-size: 0.92rem; min-height: auto; margin-bottom: 18px; line-height: 1.6; }

  /* About phone */
  .about-text h2 { font-size: 1.55rem; }
  .about-card { padding: 24px 20px; }
  .about-card h3 { font-size: 1.2rem; }
  .check-list li { font-size: 0.92rem; padding-left: 28px; }

  /* Booking form phone — full width, larger touch targets, no overflow */
  .booking-wrap { padding: 0; }
  .booking-form {
    padding: 22px 16px 20px;
    border-radius: 14px;
    overflow: hidden;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }
  .field {
    width: 100%;
    min-width: 0;
  }
  .field input, .field select, .field textarea {
    font-size: 16px;
    padding: 12px 14px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .field select {
    text-overflow: ellipsis;
    background-image: linear-gradient(45deg, transparent 50%, var(--saffron-deep) 50%),
                      linear-gradient(135deg, var(--saffron-deep) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
    padding-right: 32px;
  }
  .field input[type="date"], .field input[type="time"] { min-height: 46px; appearance: none; -webkit-appearance: none; }
  .platform-field { width: 100%; min-width: 0; }
  .platform-field .radio-pill { display: flex; margin: 0 0 8px; padding: 12px 16px; width: 100%; justify-content: center; box-sizing: border-box; }
  .booking-form .btn-primary { padding: 14px 22px; font-size: 1rem; width: 100%; }
  .booking-result, .booking-error { padding: 18px 16px; }
  .booking-result h3 { font-size: 1.1rem; }
  .booking-result .meet-link {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 11px 16px;
    font-size: 0.88rem;
    word-break: break-all;
    overflow-wrap: anywhere;
    text-align: center;
    border-radius: 14px;
  }
  .booking-result .copy-btn { width: 100%; margin-left: 0; margin-top: 8px; display: block; padding: 10px 14px; }

  /* Contact phone */
  .contact-grid { grid-template-columns: 1fr; gap: 10px; }
  .contact-card { padding: 16px 14px; align-items: flex-start; text-align: left; }
  .contact-card .ic { font-size: 1.5rem; }
  .contact-card strong { font-size: 0.88rem; }
  .contact-card span { font-size: 0.8rem; }

  /* Footer phone */
  .site-footer { padding: 44px 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .footer-grid h4 { font-size: 0.95rem; margin-bottom: 10px; }
  .footer-grid a, .footer-grid span { font-size: 0.88rem; padding: 3px 0; }

  /* Floating WhatsApp button */
  .float-wa { width: 48px; height: 48px; bottom: 12px; right: 12px; }
  .float-wa svg { width: 24px; height: 24px; }

  /* Detail page phone polish */
  .detail-hero .container,
  .detail-hero-inner {
    max-width: 100%;
    overflow: hidden;
  }
  .detail-hero h1 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .detail-hero p {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Very small phone (≤380px) */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .nav { padding: 9px 10px; gap: 6px; }
  .brand { gap: 6px; }
  .brand-text { display: none; }
  .nav-actions { gap: 5px; }
  .brand-name { font-size: 0.95rem; }
  .logo { width: 30px; height: 30px; flex-basis: 30px; }
  .lang-toggle { padding: 3px 6px; font-size: 0.7rem; }
  .lang-opt { padding: 1px 4px; }
  .diya-audio-btn { width: 30px; height: 30px; flex-basis: 30px; font-size: 0.88rem; }
  .hamburger { padding: 5px; }
  .hamburger span { width: 18px; }
  .hero { padding: 24px 0 36px; }
  .hero-art { max-width: 148px; }
  .hero h1 { font-size: 1.36rem; }
  .hero p { font-size: 0.88rem; }
  .hero-cta .btn { padding: 11px 14px; font-size: 0.9rem; }
  .section-head h2 { font-size: 1.4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .float-wa { width: 44px; height: 44px; }
  .float-wa svg { width: 22px; height: 22px; }
}

/* Landscape phone (short screens) — keep hero visible without massive padding */
@media (max-height: 480px) and (orientation: landscape) and (max-width: 900px) {
  .hero { padding: 28px 0 36px; }
  .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 24px; }
  .hero-text { text-align: left; }
  .hero-text p { margin-left: 0; margin-right: 0; }
  .hero-cta { justify-content: flex-start; margin-bottom: 16px; }
  .hero-art { order: 0; max-width: 180px; }
  .trust-row { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
}

/* Touch-friendly tweaks (any pointer-coarse device) */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 44px; }
  .service-card { min-height: 60px; }
  .field input, .field select, .field textarea { min-height: 44px; }
  .platform-field .radio-pill { min-height: 44px; }
  .lang-toggle { min-height: 36px; }
  .menu a { padding: 16px 0; }
  /* Disable hover-transform jitter on touch */
  .service-card:hover { transform: none; box-shadow: none; }
  .price-card:hover { transform: none; box-shadow: none; }
  .contact-card:hover { transform: none; }
  .btn-primary:hover { transform: none; }
  .float-wa:hover { transform: none; }
  .diya-audio-btn:hover { transform: none; }
  .menu a:hover::after { width: 0; }
}
