/* ==========================================================================
   Vaidik Sanatani — Global Stylesheet
   Sections: 1 Tokens · 2 Base · 3 Layout · 4 Buttons · 5 Header/Nav
   6 Hero · 7 Cards · 8 Forms · 9 Booking/Calendar · 10 Components
   11 Dashboard · 12 Footer · 13 Utilities · 14 Responsive
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  --saffron: #e8751a;
  --saffron-dark: #c65c0c;
  --saffron-soft: #fdeede;
  --maroon: #7a1f1f;
  --maroon-dark: #561414;
  --gold: #d4a017;
  --gold-soft: #fbf3d9;
  --cream: #fff8ee;
  --paper: #ffffff;
  --ink: #2b1b12;
  --text: #4a3a30;
  --muted: #7a6a5f;
  --border: #eadbc8;
  --success: #2e7d32;
  --success-soft: #e6f4e7;
  --warning: #b7791f;
  --warning-soft: #fdf3dc;
  --danger: #c62828;
  --danger-soft: #fdeaea;
  --info: #1f5f99;
  --info-soft: #e5eff9;

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-deva: "Tiro Devanagari Hindi", "Noto Sans Devanagari", serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(122, 31, 31, 0.06);
  --shadow: 0 10px 30px rgba(122, 31, 31, 0.09);
  --shadow-lg: 0 20px 50px rgba(122, 31, 31, 0.15);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 76px;
}

/* 2. Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
html[lang="hi"] body { font-family: "Noto Sans Devanagari", var(--font-body); }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--saffron-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--maroon); }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.25; margin: 0 0 .6em; font-weight: 700; }
html[lang="hi"] h1, html[lang="hi"] h2, html[lang="hi"] h3, html[lang="hi"] h4 { font-family: var(--font-deva); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.2rem; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--maroon); color: #fff; padding: .6rem 1rem; z-index: 999; }
.skip-link:focus { left: 1rem; top: 1rem; color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.deva { font-family: var(--font-deva); }
::selection { background: var(--saffron); color: #fff; }

/* 3. Layout ---------------------------------------------------------------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.container-sm { max-width: 860px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--paper); }
.section-dark { background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)); color: #f5e6d6; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p { color: var(--muted); }
.section-dark .section-head p { color: #eed9c4; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--saffron-dark); margin-bottom: .6rem;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 22px; height: 2px; background: var(--gold); }
.section-dark .eyebrow { color: var(--gold); }
.divider-om { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--gold); margin: .2rem 0 1rem; }
.divider-om::before, .divider-om::after { content: ""; height: 1px; width: 60px; background: currentColor; opacity: .6; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.layout-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 36px; align-items: start; }
.sticky-side { position: sticky; top: calc(var(--header-h) + 20px); }

/* 4. Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: 50px; border: 2px solid transparent;
  font-weight: 600; font-size: .95rem; line-height: 1.2; cursor: pointer; text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled, .btn.is-disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); color: #fff; box-shadow: 0 6px 18px rgba(232, 117, 26, .35); }
.btn-primary:hover { color: #fff; box-shadow: 0 10px 24px rgba(232, 117, 26, .45); }
.btn-maroon { background: var(--maroon); color: #fff; }
.btn-maroon:hover { background: var(--maroon-dark); color: #fff; }
.btn-outline { border-color: var(--saffron); color: var(--saffron-dark); background: transparent; }
.btn-outline:hover { background: var(--saffron); color: #fff; }
.btn-light { background: #fff; color: var(--maroon); }
.btn-light:hover { color: var(--maroon-dark); box-shadow: var(--shadow); }
.btn-ghost-light { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-ghost-light:hover { background: #fff; color: var(--maroon); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { color: #fff; background: #a31f1f; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { color: #fff; background: #236226; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn .spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.5); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.link-arrow { font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.link-arrow i { transition: transform .2s var(--ease); }
.link-arrow:hover i { transform: translateX(4px); }

/* 5. Header / Nav ---------------------------------------------------------- */
.topbar { background: var(--maroon-dark); color: #f3dcc6; font-size: .83rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; }
.topbar a { color: #f3dcc6; }
.topbar a:hover { color: #fff; }
.topbar-info, .topbar-actions { display: flex; align-items: center; gap: 1.25rem; }
.topbar i { color: var(--gold); margin-right: .35rem; }
.lang-switch { display: inline-flex; background: rgba(255,255,255,.1); border-radius: 50px; padding: 3px; }
.lang-switch button { border: 0; background: transparent; color: #f3dcc6; font-size: .8rem; padding: .2rem .7rem; border-radius: 50px; cursor: pointer; font-weight: 600; }
.lang-switch button.active { background: var(--saffron); color: #fff; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 248, 238, .96); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: .6rem; color: var(--maroon); flex-shrink: 0; }
.logo:hover { color: var(--maroon); }
.logo-mark {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--saffron), var(--maroon)); color: #fff;
  font-family: var(--font-deva); font-size: 1.6rem; box-shadow: 0 4px 12px rgba(232,117,26,.35);
}
.logo-text { font-family: var(--font-head); font-size: 1.35rem; line-height: 1.05; color: var(--ink); }
.logo-text strong { color: var(--saffron-dark); }
.logo-text small { display: block; font-family: var(--font-body); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.main-nav ul { list-style: none; display: flex; gap: .25rem; margin: 0; padding: 0; }
.main-nav a { display: block; padding: .5rem .85rem; color: var(--ink); font-weight: 500; font-size: .95rem; border-radius: 50px; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 50%; bottom: 2px; width: 0; height: 2px; background: var(--saffron); transition: width .25s var(--ease), left .25s var(--ease); }
.main-nav a:hover::after, .main-nav a.active::after { width: 40%; left: 30%; }
.main-nav a.active { color: var(--saffron-dark); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 10px; background: #fff; cursor: pointer; padding: 11px 10px; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 2px; background: var(--maroon); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-mobile-extra { display: none; }

/* 6. Hero ------------------------------------------------------------------ */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--maroon-dark); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(43, 12, 8, .9) 0%, rgba(86, 20, 20, .72) 45%, rgba(86, 20, 20, .25) 100%); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; padding: 80px 0; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold); }
.hero-sub { font-size: 1.12rem; color: #f5e2cf; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; font-size: .9rem; color: #f0dcc6; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust i { color: var(--gold); }
.hero-shloka { font-family: var(--font-deva); color: var(--gold); font-size: 1.15rem; margin-bottom: 1rem; letter-spacing: .02em; }

.quick-book { position: relative; z-index: 5; margin-top: -60px; }
.quick-book-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px; display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 16px; align-items: end; border-top: 4px solid var(--saffron); }
.quick-book-card .form-group { margin: 0; }

.page-hero { position: relative; padding: 90px 0 70px; color: #fff; text-align: center; overflow: hidden; background: var(--maroon-dark); }
.page-hero img.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58, 14, 10, .82), rgba(122, 31, 31, .78)); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .4rem; }
.page-hero p { color: #f3dcc6; max-width: 640px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 0 0 .9rem; font-size: .88rem; }
.breadcrumb li { color: #f0d6be; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--gold); }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: #fff; }

/* 7. Cards ----------------------------------------------------------------- */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-body { padding: 22px; }
.card-img { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--saffron-soft); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card-hover:hover .card-img img { transform: scale(1.06); }
.card-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.95); color: var(--maroon); font-size: .75rem; font-weight: 600; padding: .25rem .7rem; border-radius: 50px; }
.card-badge.gold { background: var(--gold); color: #fff; }
.card-title { font-size: 1.2rem; margin-bottom: .35rem; }
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--saffron-dark); }
.card-sub { font-family: var(--font-deva); color: var(--saffron-dark); font-size: .95rem; margin-bottom: .6rem; }
.card-text { color: var(--muted); font-size: .92rem; }
.card-meta { display: flex; flex-wrap: wrap; gap: .9rem; font-size: .83rem; color: var(--muted); margin: .6rem 0 1rem; }
.card-meta i { color: var(--saffron); margin-right: .25rem; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-top: 1rem; border-top: 1px dashed var(--border); }
.price { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--maroon); }
.price small { font-family: var(--font-body); font-size: .75rem; color: var(--muted); font-weight: 400; display: block; line-height: 1; }

.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--saffron); }
.icon-circle { width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1.1rem; background: var(--saffron-soft); color: var(--saffron-dark); font-size: 1.6rem; transition: background .3s, color .3s; }
.feature-card:hover .icon-circle { background: var(--saffron); color: #fff; }
.feature-card p { color: var(--muted); font-size: .93rem; margin: 0; }

/* Puja card */
.puja-card { display: flex; flex-direction: column; height: 100%; border-radius: var(--radius-lg); position: relative; }
.puja-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 2px solid transparent; pointer-events: none; z-index: 3; transition: border-color .3s var(--ease); }
.puja-card:hover::before { border-color: rgba(212, 160, 23, .55); }
.puja-card .card-img { aspect-ratio: 4 / 3; }
.puja-card .card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,12,8,0) 45%, rgba(43,12,8,.78) 100%); pointer-events: none; }
.puja-card .card-badge { z-index: 2; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.puja-img-meta { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: .5rem; color: #fff; font-size: .8rem; font-weight: 500; }
.puja-img-meta span { display: inline-flex; align-items: center; gap: .35rem; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); padding: .28rem .7rem; border-radius: 50px; border: 1px solid rgba(255,255,255,.25); }
.puja-img-meta i { color: var(--gold); }
.puja-card .card-body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 20px; }
.puja-card .card-title { font-size: 1.28rem; margin-bottom: .1rem; }
.puja-card .card-sub { display: flex; align-items: center; gap: .5rem; margin-bottom: .7rem; }
.puja-card .card-sub::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--border), transparent); }
.puja-card .card-text { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: .9rem; }
.puja-modes { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.1rem; list-style: none; padding: 0; }
.puja-modes li { display: inline-flex; align-items: center; gap: .35rem; font-size: .76rem; font-weight: 500; color: var(--maroon); background: var(--gold-soft); padding: .22rem .65rem; border-radius: 50px; }
.puja-modes i { color: var(--saffron-dark); font-size: .72rem; }
.puja-card .card-foot { margin-top: auto; }
.puja-card .card-foot .btn i { transition: transform .2s var(--ease); }
.puja-card:hover .card-foot .btn i { transform: translateX(3px); }
html[lang="hi"] .puja-card .card-title { font-size: 1.35rem; }

/* Section heading ornament */
.section-head h2::after { content: ""; display: block; width: 120px; height: 14px; margin: 14px auto 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14'%3E%3Cpath d='M0 7h46M74 7h46' stroke='%23d4a017' stroke-width='1.5'/%3E%3Cpath d='M60 1l6 6-6 6-6-6z' fill='%23e8751a'/%3E%3Ccircle cx='50' cy='7' r='2' fill='%23d4a017'/%3E%3Ccircle cx='70' cy='7' r='2' fill='%23d4a017'/%3E%3C/svg%3E") center / contain no-repeat; }
.section-head p { font-size: 1.02rem; }

/* Pandit card */
.avatar { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.35rem; flex-shrink: 0; background: linear-gradient(135deg, var(--saffron), var(--maroon)); box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--gold-soft); }
.avatar-lg { width: 120px; height: 120px; font-size: 2.6rem; }
.avatar-sm { width: 40px; height: 40px; font-size: .95rem; box-shadow: none; }
.pandit-card { padding: 0 20px 20px; display: flex; flex-direction: column; height: 100%; text-align: center; border-radius: var(--radius-lg); position: relative; }
.pandit-card:hover { border-color: rgba(212, 160, 23, .6); }
.pandit-banner { position: relative; height: 92px; margin: 0 -20px; background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%); overflow: hidden; }
.pandit-banner::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.22) 1px, transparent 0); background-size: 14px 14px; }
.pandit-banner::after { content: "ॐ"; position: absolute; right: 14px; top: 2px; font-family: var(--font-deva); font-size: 4.2rem; line-height: 1; color: rgba(255,255,255,.14); }
.pandit-online { position: absolute; left: 12px; top: 12px; z-index: 1; font-size: .72rem; font-weight: 600; color: #fff; background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.3); padding: .18rem .6rem; border-radius: 50px; backdrop-filter: blur(4px); }
.pandit-online i { color: #7dffa0; }
.pandit-avatar-wrap { position: relative; width: 92px; margin: -46px auto 10px; }
.avatar-md { width: 92px; height: 92px; font-size: 2rem; box-shadow: 0 0 0 4px #fff, 0 0 0 7px var(--gold-soft), 0 8px 20px rgba(122,31,31,.25); }
.pandit-verified { position: absolute; right: 2px; bottom: 4px; width: 26px; height: 26px; border-radius: 50%; background: var(--success); color: #fff; font-size: .7rem; display: grid; place-items: center; border: 3px solid #fff; }
.pandit-info h3 { font-size: 1.15rem; margin: 0 0 .15rem; }
.pandit-info h3 a { color: var(--ink); }
.pandit-info h3 a:hover { color: var(--saffron-dark); }
html[lang="hi"] .pandit-info h3 { font-size: 1.25rem; }
.pandit-info .pandit-loc { margin: 0 0 .2rem; }
.pandit-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 1rem 0; padding: .7rem 0; border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border); }
.pandit-stats div + div { border-left: 1px solid var(--border); }
.pandit-stats dt { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); line-height: 1.3; }
html[lang="hi"] .pandit-stats dt { text-transform: none; letter-spacing: 0; font-size: .75rem; }
.pandit-stats dd { margin: 0; font-family: var(--font-head); font-weight: 700; color: var(--maroon); font-size: 1.02rem; white-space: nowrap; }
.pandit-stats dd i { color: var(--gold); font-size: .75rem; }
.pandit-card .tags { justify-content: center; margin-bottom: .7rem; }
.pandit-langs { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; }
.pandit-langs i { color: var(--saffron); margin-right: .2rem; }
.pandit-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.pandit-foot .price { margin-bottom: .7rem; }
.pandit-foot .price small { display: inline; margin-right: .35rem; }
.pandit-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.pandit-actions .btn { white-space: nowrap; padding-left: .5rem; padding-right: .5rem; }
.pandit-head { display: flex; gap: 14px; align-items: center; margin-bottom: 1rem; }
.pandit-head h3 { font-size: 1.12rem; margin: 0 0 .15rem; }
.pandit-head h3 a { color: var(--ink); }
.pandit-loc { font-size: .83rem; color: var(--muted); }
.verified { color: var(--success); font-size: .9rem; margin-left: .25rem; }
.stars { color: var(--gold); font-size: .85rem; letter-spacing: 1px; }
.stars .count { color: var(--muted); letter-spacing: 0; margin-left: .3rem; }
.pandit-card .card-foot { margin-top: auto; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.tag { font-size: .75rem; padding: .22rem .65rem; border-radius: 50px; background: var(--saffron-soft); color: var(--saffron-dark); font-weight: 500; }
.tag-muted { background: #f4ede4; color: var(--muted); }

/* Blog card */
.blog-card .card-meta { margin: 0 0 .6rem; }
.blog-card .card-title { font-size: 1.15rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--gold); line-height: 1.1; }
.stat-label { font-size: .92rem; color: #f0dcc6; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; position: relative; }
.step-box { text-align: center; position: relative; padding: 0 8px; }
.step-box .step-num { width: 72px; height: 72px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2px dashed var(--saffron); color: var(--saffron-dark); font-size: 1.5rem; position: relative; z-index: 1; }
.step-box .step-num b { position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; border-radius: 50%; background: var(--maroon); color: #fff; font-size: .8rem; display: grid; place-items: center; }
.steps::before { content: ""; position: absolute; top: 36px; left: 12%; right: 12%; border-top: 2px dashed var(--border); }
.step-box p { font-size: .92rem; color: var(--muted); }

/* Testimonials */
.testimonial { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); position: relative; height: 100%; }
.testimonial::before { content: "\201C"; position: absolute; top: -8px; right: 22px; font-family: var(--font-head); font-size: 5rem; color: var(--saffron-soft); line-height: 1; }
.testimonial p { font-style: italic; color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 1rem; }
.testimonial-author strong { display: block; color: var(--ink); font-size: .95rem; }
.testimonial-author span { font-size: .8rem; color: var(--muted); }

/* CTA band */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 60px 48px; color: #fff; background: var(--maroon-dark); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.cta-band > *:not(img) { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #f3dcc6; max-width: 560px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* Image frame */
.img-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; }
.img-frame-badge { position: absolute; bottom: 20px; left: 20px; background: #fff; border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow); display: flex; gap: 12px; align-items: center; }
.img-frame-badge strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--maroon); display: block; line-height: 1; }
.img-frame-badge span { font-size: .8rem; color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .6rem; }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--saffron-soft); color: var(--saffron-dark); font-size: .65rem; display: grid; place-items: center; }

/* 8. Forms ----------------------------------------------------------------- */
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-3 { grid-template-columns: repeat(3, 1fr); }
.form-group { margin-bottom: 18px; position: relative; }
.form-group label, .form-label { display: block; font-weight: 500; font-size: .9rem; color: var(--ink); margin-bottom: .4rem; }
.req { color: var(--danger); }
.form-control {
  width: 100%; padding: .78rem 1rem; font: inherit; font-size: .95rem; color: var(--ink);
  background: #fffdfa; border: 1.5px solid var(--border); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-control:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 4px rgba(232, 117, 26, .14); background: #fff; }
.form-control::placeholder { color: #b2a194; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a1f1f' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
textarea.form-control { min-height: 120px; resize: vertical; }
.input-icon { position: relative; }
.input-icon > i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--saffron); pointer-events: none; }
.input-icon .form-control { padding-left: 2.6rem; }
.input-prefix { display: flex; }
.input-prefix span { display: grid; place-items: center; padding: 0 .9rem; background: var(--saffron-soft); border: 1.5px solid var(--border); border-right: 0; border-radius: 10px 0 0 10px; font-weight: 600; color: var(--maroon); font-size: .9rem; }
.input-prefix .form-control { border-radius: 0 10px 10px 0; }
.form-control.is-invalid, .is-invalid .form-control { border-color: var(--danger); background: #fffafa; }
.form-control.is-valid { border-color: var(--success); }
.error-msg { display: block; font-size: .8rem; color: var(--danger); margin-top: .3rem; min-height: 0; }
.error-msg:empty { display: none; }
.form-hint { font-size: .8rem; color: var(--muted); margin-top: .3rem; }
.check { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: .2rem; accent-color: var(--saffron); flex-shrink: 0; }
.checks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .6rem 1rem; }
.otp-inputs { display: flex; gap: 10px; justify-content: center; margin: 1rem 0; }
.otp-inputs input { width: 50px; height: 56px; text-align: center; font-size: 1.4rem; font-weight: 700; color: var(--maroon); border: 1.5px solid var(--border); border-radius: 10px; background: #fffdfa; }
.otp-inputs input:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 4px rgba(232,117,26,.14); }
.demo-note { display: flex; gap: .6rem; align-items: flex-start; background: var(--gold-soft); border: 1px dashed var(--gold); color: #6d5410; padding: .7rem 1rem; border-radius: 10px; font-size: .85rem; margin-bottom: 1rem; }
.demo-note i { margin-top: .25rem; }
.file-drop { border: 2px dashed var(--border); border-radius: var(--radius); padding: 22px; text-align: center; color: var(--muted); cursor: pointer; transition: border-color .2s, background .2s; font-size: .9rem; }
.file-drop:hover, .file-drop.dragover { border-color: var(--saffron); background: var(--saffron-soft); }
.file-drop i { font-size: 1.6rem; color: var(--saffron); display: block; margin-bottom: .4rem; }
.pw-toggle { position: absolute; right: .8rem; top: 50%; transform: translateY(-50%); border: 0; background: none; color: var(--muted); cursor: pointer; padding: .3rem; }

/* Search / filters */
.filter-bar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 32px; box-shadow: var(--shadow-sm); }
.filter-bar .form-control { width: auto; flex: 1 1 180px; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { border: 1.5px solid var(--border); background: #fff; color: var(--text); padding: .45rem 1rem; border-radius: 50px; font-size: .87rem; font-weight: 500; cursor: pointer; transition: all .2s var(--ease); }
.chip:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.chip.active { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.results-info { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state i { font-size: 2.6rem; color: var(--border); margin-bottom: 1rem; display: block; }

/* 9. Booking / Calendar ---------------------------------------------------- */
.stepper { display: flex; justify-content: space-between; list-style: none; padding: 0; margin: 0 0 36px; position: relative; counter-reset: s; }
.stepper::before { content: ""; position: absolute; top: 20px; left: 6%; right: 6%; height: 2px; background: var(--border); }
.stepper li { flex: 1; text-align: center; position: relative; font-size: .83rem; color: var(--muted); font-weight: 500; }
.stepper li .dot { width: 42px; height: 42px; margin: 0 auto .45rem; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2px solid var(--border); color: var(--muted); font-weight: 700; position: relative; z-index: 1; transition: all .3s var(--ease); }
.stepper li.active .dot { border-color: var(--saffron); background: var(--saffron); color: #fff; box-shadow: 0 0 0 6px rgba(232,117,26,.15); }
.stepper li.active { color: var(--ink); }
.stepper li.done .dot { border-color: var(--success); background: var(--success); color: #fff; }
.step-panel { display: none; animation: fadeUp .45s var(--ease); }
.step-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.step-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border); }

.select-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.select-card { position: relative; display: block; background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: 16px; cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .2s; text-align: left; width: 100%; font: inherit; color: inherit; }
.select-card:hover { border-color: var(--saffron); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.select-card.selected { border-color: var(--saffron); background: #fffaf3; box-shadow: 0 0 0 4px rgba(232,117,26,.14); }
.select-card.selected::after { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 10px; right: 10px; width: 26px; height: 26px; border-radius: 50%; background: var(--saffron); color: #fff; font-size: .75rem; display: grid; place-items: center; }
.select-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 10px; margin-bottom: .7rem; }
.select-card h4 { margin: 0 0 .2rem; font-size: 1rem; }
.select-card .muted { font-size: .83rem; }

.calendar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-header h3, .cal-header .cal-title { margin: 0; font-size: 1.15rem; font-family: var(--font-head); color: var(--ink); font-weight: 700; }
.cal-nav { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; color: var(--maroon); transition: all .2s; }
.cal-nav:hover:not(:disabled) { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.cal-nav:disabled { opacity: .35; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { text-align: center; font-size: .75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; padding: .3rem 0; }
.cal-day { position: relative; aspect-ratio: 1; border-radius: 10px; border: 1.5px solid transparent; background: #faf5ee; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: .92rem; font-weight: 600; color: var(--ink); cursor: pointer; transition: all .18s var(--ease); padding: 0; font-family: inherit; }
.cal-day .cal-dot { width: 6px; height: 6px; border-radius: 50%; margin-top: 3px; }
.cal-day.available { background: var(--success-soft); }
.cal-day.available .cal-dot { background: var(--success); }
.cal-day.limited { background: var(--warning-soft); }
.cal-day.limited .cal-dot { background: var(--warning); }
.cal-day.booked { background: #f3eeee; color: #b8a9a9; cursor: not-allowed; text-decoration: line-through; }
.cal-day.booked .cal-dot { background: var(--danger); }
.cal-day.disabled, .cal-day.empty { background: transparent; color: #d0c4b8; cursor: default; }
.cal-day.today { border-color: var(--gold); }
.cal-day.muhurat::before { content: "\2605"; position: absolute; top: 2px; right: 5px; font-size: .6rem; color: var(--gold); }
.cal-day:not(.booked):not(.disabled):not(.empty):hover { border-color: var(--saffron); transform: scale(1.05); }
.cal-day.selected { background: var(--saffron) !important; color: #fff !important; border-color: var(--saffron); box-shadow: 0 6px 14px rgba(232,117,26,.35); }
.cal-day.selected .cal-dot { background: #fff; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: var(--muted); margin-top: 14px; }
.cal-legend span { display: inline-flex; align-items: center; gap: .35rem; }
.cal-legend i.lg { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.lg-available { background: var(--success); }
.lg-limited { background: var(--warning); }
.lg-booked { background: var(--danger); }
.lg-muhurat { color: var(--gold); font-style: normal; }
.time-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 10px; }
.slot { border: 1.5px solid var(--border); background: #fff; border-radius: 10px; padding: .6rem .5rem; text-align: center; cursor: pointer; font-weight: 600; font-size: .88rem; color: var(--ink); transition: all .18s; font-family: inherit; }
.slot small { display: block; font-weight: 400; font-size: .72rem; color: var(--muted); }
.slot:hover:not(:disabled) { border-color: var(--saffron); color: var(--saffron-dark); }
.slot.selected { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.slot.selected small { color: #fff; }
.slot:disabled { background: #f5f0f0; color: #bfb0b0; cursor: not-allowed; text-decoration: line-through; }
.slot-group-title { font-size: .85rem; font-weight: 600; color: var(--muted); margin: 1rem 0 .5rem; display: flex; align-items: center; gap: .4rem; }

.summary-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; }
.summary-card h3 { background: var(--maroon); color: #fff; margin: 0; padding: 16px 20px; font-size: 1.1rem; }
.summary-list { list-style: none; margin: 0; padding: 12px 20px; }
.summary-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px dashed var(--border); font-size: .9rem; }
.summary-list li:last-child { border-bottom: 0; }
.summary-list li span:first-child { color: var(--muted); }
.summary-list li span:last-child { font-weight: 600; color: var(--ink); text-align: right; }
.summary-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--saffron-soft); font-weight: 700; color: var(--maroon); }
.summary-total .price { font-size: 1.5rem; }

.success-box { text-align: center; padding: 40px 20px; }
.success-icon { width: 96px; height: 96px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--success-soft); color: var(--success); display: grid; place-items: center; font-size: 2.6rem; animation: pop .5s var(--ease); }
@keyframes pop { 0% { transform: scale(.3); opacity: 0; } 70% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }

/* 10. Components ----------------------------------------------------------- */
/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.acc-item.open { border-color: var(--saffron); box-shadow: var(--shadow-sm); }
.acc-btn { width: 100%; text-align: left; background: none; border: 0; padding: 18px 22px; font: inherit; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1rem; }
.acc-btn i { transition: transform .3s var(--ease); color: var(--saffron); flex-shrink: 0; }
.acc-item.open .acc-btn i { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-panel-inner { padding: 0 22px 20px; color: var(--muted); }

/* Tabs */
.tabs { display: flex; gap: .4rem; border-bottom: 2px solid var(--border); margin-bottom: 24px; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab-btn { background: none; border: 0; padding: .8rem 1.2rem; font: inherit; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: color .2s, border-color .2s; }
.tab-btn:hover { color: var(--saffron-dark); }
.tab-btn.active { color: var(--saffron-dark); border-color: var(--saffron); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .35s var(--ease); }

/* Badges / status */
.badge { display: inline-flex; align-items: center; gap: .3rem; font-size: .75rem; font-weight: 600; padding: .25rem .7rem; border-radius: 50px; white-space: nowrap; }
.badge-pending { background: var(--warning-soft); color: var(--warning); }
.badge-confirmed { background: var(--info-soft); color: var(--info); }
.badge-completed, .badge-active, .badge-approved { background: var(--success-soft); color: var(--success); }
.badge-cancelled, .badge-rejected, .badge-blocked { background: var(--danger-soft); color: var(--danger); }
.badge-neutral { background: #f1ebe4; color: var(--muted); }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(43, 12, 8, .55); backdrop-filter: blur(2px); animation: fadeIn .25s; }
.modal-dialog { position: relative; background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 520px; max-height: calc(100vh - 32px); overflow-y: auto; box-shadow: var(--shadow-lg); animation: fadeUp .3s var(--ease); }
.modal-dialog.modal-lg { max-width: 760px; }
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--border); }
.modal-head h3 { margin: 0; font-size: 1.2rem; }
.modal-close { border: 0; background: var(--saffron-soft); color: var(--maroon); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; }
.modal-body { padding: 24px; }
.modal-foot { display: flex; justify-content: flex-end; gap: .6rem; padding: 16px 24px; border-top: 1px solid var(--border); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
body.modal-open { overflow: hidden; }

/* Toast */
.toast-wrap { position: fixed; top: 20px; right: 20px; z-index: 2000; display: flex; flex-direction: column; gap: 10px; max-width: calc(100vw - 40px); }
.toast { display: flex; align-items: flex-start; gap: .7rem; background: #fff; border-left: 4px solid var(--saffron); box-shadow: var(--shadow-lg); padding: 14px 16px; border-radius: 10px; min-width: 260px; max-width: 380px; font-size: .9rem; color: var(--ink); animation: toastIn .35s var(--ease); }
.toast.hide { animation: toastOut .3s var(--ease) forwards; }
.toast i { margin-top: .2rem; }
.toast-success { border-color: var(--success); } .toast-success i { color: var(--success); }
.toast-error { border-color: var(--danger); } .toast-error i { color: var(--danger); }
.toast-info { border-color: var(--info); } .toast-info i { color: var(--info); }
.toast-otp { border-color: var(--gold); background: #fffdf5; } .toast-otp i { color: var(--gold); }
.toast-otp b { font-size: 1.15rem; letter-spacing: .2em; color: var(--maroon); }
@keyframes toastIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateX(40px); } }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: .4rem; margin-top: 40px; list-style: none; padding: 0; }
.pagination a, .pagination span { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 .6rem; border-radius: 10px; border: 1px solid var(--border); background: #fff; color: var(--ink); font-weight: 600; }
.pagination a:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.pagination .active { background: var(--saffron); border-color: var(--saffron); color: #fff; }

/* Profile / detail */
.profile-hero { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); padding: 32px; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; margin-top: -70px; position: relative; z-index: 3; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: .9rem; color: var(--muted); margin-top: .5rem; }
.profile-meta i { color: var(--saffron); margin-right: .3rem; }
.info-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.info-box h2, .info-box h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.kv-list { list-style: none; padding: 0; margin: 0; }
.kv-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--border); font-size: .92rem; }
.kv-list li:last-child { border: 0; }
.kv-list li span:first-child { color: var(--muted); }
.kv-list li span:last-child { font-weight: 600; color: var(--ink); text-align: right; }
.review { padding: 18px 0; border-bottom: 1px solid var(--border); }
.review:last-child { border: 0; }
.review-head { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-bottom: .4rem; }
.rating-bars .bar-row { display: grid; grid-template-columns: 40px 1fr 40px; gap: .6rem; align-items: center; font-size: .82rem; color: var(--muted); margin-bottom: .35rem; }
.bar { height: 8px; background: #f1e8dd; border-radius: 10px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: var(--gold); border-radius: 10px; }

/* Article */
.article { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 40px; }
.article-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.article-cover img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.article h2 { font-size: 1.6rem; margin-top: 1.8rem; }
.article h3 { margin-top: 1.4rem; }
.article blockquote { margin: 1.5rem 0; padding: 1rem 1.4rem; border-left: 4px solid var(--saffron); background: var(--saffron-soft); border-radius: 0 10px 10px 0; font-family: var(--font-deva); color: var(--maroon); font-size: 1.1rem; }
.widget { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 24px; }
.widget h3 { font-size: 1.1rem; padding-bottom: .7rem; border-bottom: 2px solid var(--saffron-soft); }
.widget-list { list-style: none; padding: 0; margin: 0; }
.widget-list li { padding: .5rem 0; border-bottom: 1px dashed var(--border); font-size: .92rem; }
.widget-list li:last-child { border: 0; }
.mini-post { display: flex; gap: 12px; align-items: center; padding: .6rem 0; }
.mini-post img { width: 72px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.mini-post a { color: var(--ink); font-weight: 500; font-size: .9rem; line-height: 1.4; }
.share-row { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.share-btn { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--saffron-soft); color: var(--maroon); border: 0; cursor: pointer; transition: all .2s; }
.share-btn:hover { background: var(--saffron); color: #fff; }

/* Auth */
.auth-wrap { min-height: calc(100vh - var(--header-h)); display: grid; grid-template-columns: 1fr 1fr; }
.auth-visual { position: relative; color: #fff; display: flex; align-items: flex-end; padding: 48px; overflow: hidden; background: var(--maroon-dark); }
.auth-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(43,12,8,.92), rgba(86,20,20,.35)); z-index: 1; }
.auth-visual > div { position: relative; z-index: 2; }
.auth-visual h2 { color: #fff; }
.auth-visual p { color: #f3dcc6; }
.auth-form-side { display: flex; align-items: center; justify-content: center; padding: 48px 16px; }
.auth-box { width: 100%; max-width: 440px; }
.role-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: #f3e9dd; padding: 5px; border-radius: 50px; margin-bottom: 24px; }
.role-toggle button { border: 0; background: transparent; padding: .6rem; border-radius: 50px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all .2s; }
.role-toggle button.active { background: #fff; color: var(--maroon); box-shadow: var(--shadow-sm); }
.or-sep { display: flex; align-items: center; gap: 1rem; color: var(--muted); font-size: .85rem; margin: 1.2rem 0; }
.or-sep::before, .or-sep::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* Contact */
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-item .icon-circle { margin: 0; width: 52px; height: 52px; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h3 { font-size: 1.05rem; margin: 0 0 .2rem; }
.contact-item p { margin: 0; color: var(--muted); font-size: .92rem; }
.map-placeholder { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: linear-gradient(135deg, #f7ecdd, #fdf6ec); min-height: 320px; display: grid; place-items: center; text-align: center; color: var(--muted); }
.map-placeholder i { font-size: 2.4rem; color: var(--saffron); margin-bottom: .6rem; }

/* 404 */
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 16px; }
.error-code { font-family: var(--font-head); font-size: clamp(6rem, 18vw, 11rem); line-height: 1; color: var(--saffron); text-shadow: 6px 6px 0 var(--saffron-soft); margin-bottom: .5rem; }

/* Floating */
.back-to-top { position: fixed; right: 20px; bottom: 20px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--maroon); color: #fff; cursor: pointer; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s var(--ease); z-index: 90; }
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--saffron); }
.wa-float { position: fixed; left: 20px; bottom: 20px; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.6rem; box-shadow: var(--shadow); z-index: 90; transition: transform .2s; }
.wa-float:hover { color: #fff; transform: scale(1.08); }

/* 11. Dashboard ------------------------------------------------------------ */
.dash-body { background: #f8f2ea; }
.dash-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); min-height: 100vh; }
.dash-sidebar { background: linear-gradient(180deg, var(--maroon-dark), #3d0e0e); color: #ecd6c1; padding: 22px 16px; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; }
.dash-sidebar .logo { margin-bottom: 26px; padding: 0 6px; }
.dash-sidebar .logo-text { color: #fff; }
.dash-sidebar .logo-text strong { color: var(--gold); }
.dash-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.dash-nav a, .dash-nav button { display: flex; align-items: center; gap: .8rem; width: 100%; padding: .72rem .9rem; border-radius: 10px; color: #ecd6c1; font-size: .92rem; font-weight: 500; border: 0; background: none; cursor: pointer; text-align: left; font-family: inherit; transition: background .2s, color .2s; }
.dash-nav a i, .dash-nav button i { width: 18px; text-align: center; color: var(--gold); }
.dash-nav a:hover, .dash-nav button:hover { background: rgba(255,255,255,.08); color: #fff; }
.dash-nav .active { background: var(--saffron); color: #fff; }
.dash-nav .active i { color: #fff; }
.dash-nav .count { margin-left: auto; background: rgba(255,255,255,.18); font-size: .72rem; padding: .05rem .5rem; border-radius: 50px; }
.dash-side-foot { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.dash-main { padding: 0 28px 40px; min-width: 0; }
.dash-topbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 18px 0; margin-bottom: 18px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: #f8f2ea; z-index: 20; }
.dash-topbar h1 { font-size: 1.5rem; margin: 0; }
.dash-topbar p { margin: 0; color: var(--muted); font-size: .88rem; }
.dash-user { display: flex; align-items: center; gap: .7rem; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--maroon); cursor: pointer; position: relative; display: grid; place-items: center; }
.icon-btn .dot-badge { position: absolute; top: 6px; right: 8px; width: 9px; height: 9px; background: var(--danger); border-radius: 50%; border: 2px solid #fff; }
.dash-menu-btn { display: none; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 24px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); display: flex; gap: 14px; align-items: center; transition: transform .25s var(--ease), box-shadow .25s; }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.stat-card .icon-circle { margin: 0; width: 52px; height: 52px; font-size: 1.2rem; flex-shrink: 0; }
.stat-card .value { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--ink); line-height: 1.1; }
.stat-card .label { font-size: .82rem; color: var(--muted); }
.stat-card .trend { font-size: .75rem; font-weight: 600; color: var(--success); }
.stat-card .trend.down { color: var(--danger); }
.ic-green { background: var(--success-soft) !important; color: var(--success) !important; }
.ic-blue { background: var(--info-soft) !important; color: var(--info) !important; }
.ic-gold { background: var(--gold-soft) !important; color: var(--warning) !important; }
.ic-red { background: var(--danger-soft) !important; color: var(--danger) !important; }
.panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 24px; overflow: hidden; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 16px 20px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.panel-head h2, .panel-head h3 { margin: 0; font-size: 1.1rem; }
.panel-body { padding: 20px; }
.dash-section { display: none; }
.dash-section.active { display: block; animation: fadeUp .35s var(--ease); }
.table-wrap { width: 100%; overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.table th { text-align: left; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); background: #fcf8f3; padding: .8rem 1rem; border-bottom: 1px solid var(--border); white-space: nowrap; }
.table td { padding: .85rem 1rem; border-bottom: 1px solid #f3ebe1; vertical-align: middle; }
.table tbody tr { transition: background .15s; }
.table tbody tr:hover { background: #fffaf4; }
.table .actions { display: flex; gap: .4rem; flex-wrap: nowrap; }
.user-cell { display: flex; align-items: center; gap: .7rem; }
.user-cell strong { display: block; color: var(--ink); font-weight: 600; font-size: .9rem; }
.user-cell span { font-size: .78rem; color: var(--muted); }
.chart-bars { display: flex; align-items: flex-end; gap: 12px; height: 200px; padding-top: 10px; }
.chart-bars .cb { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.chart-bars .cb span.b { width: 100%; max-width: 38px; background: linear-gradient(180deg, var(--saffron), var(--saffron-dark)); border-radius: 6px 6px 0 0; transition: height .8s var(--ease); }
.chart-bars .cb small { font-size: .72rem; color: var(--muted); }
.toggle-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch span { position: absolute; inset: 0; background: #ddd0c2; border-radius: 26px; cursor: pointer; transition: background .2s; }
.toggle-switch span::before { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .2s; }
.toggle-switch input:checked + span { background: var(--success); }
.toggle-switch input:checked + span::before { transform: translateX(20px); }
.list-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid #f3ebe1; }
.list-row:last-child { border: 0; }
.dash-overlay { display: none; }

/* 12. Footer --------------------------------------------------------------- */
.site-footer { background: #2a0c09; color: #d8c2ae; padding-top: 72px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.site-footer h3 { color: #fff; font-size: 1.1rem; margin-bottom: 1.1rem; position: relative; padding-bottom: .6rem; }
.site-footer h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--saffron); }
.site-footer .logo-text { color: #fff; }
.site-footer .logo-text strong { color: var(--gold); }
.site-footer .logo-text small { color: #b89e88; }
.site-footer a { color: #d8c2ae; }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a::before { content: "\203A"; margin-right: .5rem; color: var(--saffron); }
.footer-about { margin: 1rem 0 1.2rem; color: #c3ab96; }
.social { display: flex; gap: .5rem; }
.social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #f3dcc6; transition: all .2s; }
.social a:hover { background: var(--saffron); color: #fff; transform: translateY(-3px); }
.newsletter { display: flex; gap: .5rem; margin-top: .8rem; flex-wrap: wrap; }
.newsletter .form-control { flex: 1 1 160px; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); color: #fff; }
.newsletter .form-control::placeholder { color: #a8927f; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .7rem; }
.footer-contact i { color: var(--saffron); margin-top: .35rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: .84rem; color: #a8927f; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom a { color: #a8927f; margin-left: 1rem; }

/* 13. Utilities ------------------------------------------------------------ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.muted { color: var(--muted); }
.text-saffron { color: var(--saffron-dark); }
.text-maroon { color: var(--maroon); }
.fw-600 { font-weight: 600; }
.small { font-size: .85rem; }
.mt-0 { margin-top: 0 !important; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }
.mb-0 { margin-bottom: 0 !important; } .mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2.5rem; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .items-center { align-items: center; } .justify-between { justify-content: space-between; } .justify-center { justify-content: center; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.w-100 { width: 100%; }
.hidden, [hidden] { display: none !important; }
.bg-om { background-image: radial-gradient(circle at 1px 1px, rgba(212,160,23,.18) 1px, transparent 0); background-size: 22px 22px; }

/* 14. Responsive ----------------------------------------------------------- */
@media (max-width: 1100px) {
  .main-nav a { padding: .5rem .6rem; font-size: .9rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  :root { --header-h: 68px; }
  .section { padding: 68px 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .layout-sidebar { grid-template-columns: 1fr; gap: 36px; }
  .sticky-side { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .quick-book-card { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--cream); padding: 20px 16px; transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto; border-top: 1px solid var(--border); visibility: hidden; }
  .main-nav.open { transform: none; visibility: visible; height: 100vh; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: .9rem .4rem; font-size: 1.05rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .main-nav a::after { display: none; }
  .nav-mobile-extra { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.4rem; }
  .nav-actions .btn { display: none; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-visual { min-height: 240px; padding: 32px 16px; }
  .profile-hero { grid-template-columns: auto 1fr; }
  .profile-hero > :last-child { grid-column: 1 / -1; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: 270px; z-index: 300; transform: translateX(-100%); transition: transform .3s var(--ease); }
  .dash-sidebar.open { transform: none; }
  .dash-overlay.show { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 250; }
  .dash-menu-btn { display: grid; }
  .dash-main { padding: 0 16px 32px; }
}
@media (max-width: 680px) {
  body { font-size: 15px; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4, .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .form-row { gap: 0; }
  .topbar-info a:not(:first-child) { display: none; }
  .topbar-actions > a { display: none; }
  .hero { min-height: 560px; }
  .hero-content { padding: 60px 0 90px; }
  .quick-book-card { grid-template-columns: 1fr; padding: 20px; }
  .steps, .stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { flex-direction: column; align-items: flex-start; padding: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-card, .article { padding: 22px 18px; }
  .cta-band { padding: 40px 22px; }
  .profile-hero { grid-template-columns: 1fr; text-align: center; padding: 24px 18px; }
  .profile-hero .avatar { margin: 0 auto; }
  .profile-meta { justify-content: center; }
  .stepper li span.lbl { display: none; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .btn { width: 100%; }
  .otp-inputs input { width: 42px; height: 50px; font-size: 1.2rem; }
  .otp-inputs { gap: 6px; }
  .logo-text { font-size: 1.15rem; }
  .logo-mark { width: 40px; height: 40px; font-size: 1.35rem; }
  .filter-bar .form-control { flex-basis: 100%; }
  .dash-topbar h1 { font-size: 1.2rem; }
  .dash-topbar p { display: none; }
  .modal-body { padding: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* UPI payment box */
.pay-box { border: 1px dashed var(--gold); background: #fffdf5; border-radius: var(--radius); padding: 18px; margin: 1rem 0; }
.pay-title { font-size: 1.05rem; margin: 0 0 .8rem; }
.pay-grid { display: grid; grid-template-columns: 200px 1fr; gap: 18px; align-items: center; }
.pay-qr { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 6px; width: 200px; height: 200px; display: grid; place-items: center; }
.pay-qr svg, .pay-qr img { width: 100%; height: 100%; display: block; }
.pay-amt { font-size: 1.6rem; font-weight: 700; color: var(--maroon); margin: 0 0 .3rem; }
.pay-app { display: none; }
@media (max-width: 575px) {
  .pay-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .pay-app { display: inline-flex; }
}
