/* =========================================
   MAA SANTOSHI AGRO - PREMIUM CSS
   ========================================= */

:root {
  --gold: #D4AF37;
  --gold-light: #FFD700;
  --gold-dark: #B8860B;
  --black: #050505;
  --black-2: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --green: #0D3320;
  --green-light: #1a5c3a;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.05);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(212,175,55,0.15);
  --gold-glow: rgba(212,175,55,0.3);
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --radius: 16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: var(--gold); color: var(--black); }

.gold-text { color: var(--gold); }
.white-text { color: var(--white); }
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── LOADER ─────────────────────────────── */
#loader {
  position: fixed; inset: 0; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader-logo { width: 140px; height: 140px; object-fit: contain; animation: loaderPulse 2s ease-in-out infinite; filter: drop-shadow(0 0 30px var(--gold-glow)); }
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px var(--gold-glow)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 50px var(--gold)); }
}
.loader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark)); border-radius: 2px; animation: loaderFill 2s ease-in-out forwards; }
@keyframes loaderFill { from { width: 0% } to { width: 100% } }
.loader-text { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; opacity: 0.8; }

/* ── NAVBAR ─────────────────────────────── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 14px 0; transition: var(--transition); }
#navbar.scrolled { background: rgba(5,5,5,0.96); backdrop-filter: blur(20px); padding: 8px 0; border-bottom: 1px solid var(--glass-border); }
.nav-container { max-width: 1300px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; filter: drop-shadow(0 0 10px var(--gold-glow)); transition: var(--transition); }
.nav-logo:hover img { filter: drop-shadow(0 0 20px var(--gold)); transform: scale(1.05); }
.nav-brand-text { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; display: none; }
#navbar.scrolled .nav-brand-text { display: block; }
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a { color: var(--white-80); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: var(--transition); letter-spacing: 0.3px; }
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-donate { border: 1px solid rgba(212,175,55,0.35); color: var(--gold) !important; border-radius: 8px; padding: 8px 14px; }
.nav-links .nav-donate:hover { background: rgba(212,175,55,0.1); }
.nav-links .nav-cta { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); font-weight: 600; padding: 10px 20px; border-radius: 8px; }
.nav-links .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--gold-glow); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; background: rgba(5,5,5,0.98); backdrop-filter: blur(20px); border-top: 1px solid var(--glass-border); padding: 16px 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white-80); text-decoration: none; padding: 14px 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.05); transition: var(--transition); }
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }

/* ── HERO ───────────────────────────────── */
#hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(13,51,32,0.2) 0%, rgba(5,5,5,0.65) 65%, rgba(5,5,5,0.95) 100%); pointer-events: none; }

/* DEITY IMAGE */
.hero-devi-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 5; pointer-events: none; }
.hero-devi-img { height: 72vh; max-height: 620px; min-height: 300px; width: auto; object-fit: contain; opacity: 0.32; filter: drop-shadow(0 0 80px rgba(212,175,55,0.6)) drop-shadow(0 0 160px rgba(212,175,55,0.25)) brightness(1.05) saturate(1.15); animation: deviFloat 8s ease-in-out infinite; user-select: none; }
.hero-devi-glow { position: absolute; width: 400px; height: 600px; background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, rgba(180,80,0,0.06) 40%, transparent 70%); border-radius: 50%; animation: deviGlowPulse 4s ease-in-out infinite; pointer-events: none; }
@keyframes deviFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-18px); } }
@keyframes deviGlowPulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }

.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 24px; max-width: 900px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); padding: 8px 20px; border-radius: 50px; font-size: 12px; color: var(--gold); letter-spacing: 0.5px; margin-bottom: 24px; font-weight: 500; }
.badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); } 50% { box-shadow: 0 0 0 6px rgba(212,175,55,0); } }
.hero-title { font-family: 'Cinzel', serif; font-size: clamp(40px, 7vw, 90px); font-weight: 900; line-height: 1.1; margin-bottom: 10px; letter-spacing: -1px; }
.hero-brand-name { font-family: 'Cinzel', serif; font-size: clamp(18px, 3vw, 32px); font-weight: 600; color: var(--white-80); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; }
.hero-sub { font-size: clamp(14px, 2vw, 18px); color: var(--white-60); line-height: 1.7; margin-bottom: 36px; font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 20px; padding: 20px 40px; }
.stat { text-align: center; padding: 0 30px; }
.stat-num { font-family: 'Cinzel', serif; font-size: 32px; font-weight: 700; color: var(--gold); display: inline-block; }
.stat span { font-size: 24px; color: var(--gold); }
.stat p { font-size: 12px; color: var(--white-60); margin-top: 4px; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 44px; background: var(--glass-border); }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 10; }
.scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(212,175,55,0.5); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(12px); } }
.scroll-indicator p { font-size: 11px; letter-spacing: 2px; color: var(--white-60); text-transform: uppercase; }

/* ── TRUST BAR ──────────────────────────── */
.trust-bar { background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(13,51,32,0.3), rgba(212,175,55,0.08)); border-top: 1px solid rgba(212,175,55,0.2); border-bottom: 1px solid rgba(212,175,55,0.2); padding: 20px 0; }
.trust-bar-inner { max-width: 1300px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 0 40px; }
.trust-icon { font-size: 28px; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: 14px; color: var(--gold); font-weight: 600; }
.trust-item span { font-size: 12px; color: var(--white-60); }
.trust-divider { width: 1px; height: 40px; background: rgba(212,175,55,0.2); }

/* ── BUTTONS ────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px; border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; letter-spacing: 0.5px; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); color: var(--black); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px var(--gold-glow); }
.btn-whatsapp { background: linear-gradient(135deg, #128C7E, #25D366); color: white; }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,0.3); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid rgba(212,175,55,0.4); }
.btn-outline:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); transform: translateY(-3px); }

/* ── SECTION COMMON ─────────────────────── */
section { padding: 100px 0; }
.section-container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(212,175,55,0.3); padding: 6px 18px; border-radius: 50px; margin-bottom: 18px; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(26px, 4vw, 46px); font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--white-60); font-family: 'Cormorant Garamond', serif; font-weight: 300; }

/* ── ABOUT ──────────────────────────────── */
#about { background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }
.about-glow-ring { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(ellipse, rgba(212,175,55,0.15) 0%, transparent 70%); animation: ringPulse 4s ease-in-out infinite; }
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } }
.about-logo { width: 260px; height: 260px; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 0 40px rgba(212,175,55,0.4)); animation: logoFloat 6s ease-in-out infinite; }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.about-badge-card { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); padding: 10px 18px; border-radius: 10px; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 8px 30px rgba(212,175,55,0.4); z-index: 3; position: relative; }
.about-badge-card svg { width: 14px; height: 14px; }
.owner-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; padding: 14px 20px; display: flex; align-items: center; gap: 14px; position: relative; z-index: 3; width: 100%; max-width: 280px; }
.owner-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.owner-card strong { display: block; font-size: 15px; color: var(--white); }
.owner-card span { font-size: 12px; color: var(--gold); }

.about-desc { color: var(--white-60); line-height: 1.8; margin-bottom: 18px; font-size: 15px; font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.about-desc strong { color: var(--gold); font-weight: 600; }

.gstin-badge { display: flex; align-items: center; gap: 12px; background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.25); border-radius: 10px; padding: 12px 18px; margin: 20px 0; flex-wrap: wrap; }
.gstin-label { font-size: 13px; color: var(--white-60); }
.gstin-number { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 700; color: var(--gold); letter-spacing: 1px; }
.gstin-verified { font-size: 12px; color: #25D366; font-weight: 600; }

.about-model { margin: 20px 0; }
.model-title { font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.model-steps { display: flex; flex-direction: column; gap: 10px; }
.model-step { display: flex; align-items: flex-start; gap: 14px; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.model-step p { font-size: 14px; color: var(--white-60); line-height: 1.5; padding-top: 5px; }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.pillar { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 14px; padding: 18px; transition: var(--transition); }
.pillar:hover { border-color: var(--gold); background: rgba(212,175,55,0.05); transform: translateY(-4px); }
.pillar-icon { font-size: 26px; margin-bottom: 8px; }
.pillar h4 { font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 6px; }
.pillar p { font-size: 13px; color: var(--white-60); }

/* ── PRODUCTS ───────────────────────────── */
#products { background: var(--black); }
.product-category { margin-bottom: 48px; }
.cat-label { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 24px; padding: 12px 20px; background: rgba(212,175,55,0.08); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; display: inline-block; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 26px 22px; position: relative; overflow: hidden; transition: var(--transition); cursor: pointer; }
.product-card:hover { border-color: var(--gold); transform: translateY(-8px) rotateX(2deg); box-shadow: 0 20px 60px rgba(212,175,55,0.15), 0 0 0 1px rgba(212,175,55,0.2); }
.card-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 60%); pointer-events: none; opacity: 0; transition: opacity 0.4s ease; }
.product-card:hover .card-glow { opacity: 1; }
.card-icon { font-size: 38px; margin-bottom: 14px; display: block; }
.product-card h3 { font-family: 'Cinzel', serif; font-size: 18px; color: var(--gold); margin-bottom: 4px; }
.card-hindi { font-size: 12px; color: var(--white-60); margin-bottom: 12px; font-style: italic; }
.card-desc { font-size: 14px; color: var(--white-60); line-height: 1.6; margin-bottom: 14px; font-family: 'Cormorant Garamond', serif; font-size: 15px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.card-tags span { font-size: 11px; padding: 3px 10px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2); border-radius: 50px; color: var(--gold); }
.card-btn { display: block; text-align: center; background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05)); border: 1px solid rgba(212,175,55,0.3); color: var(--gold); padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: var(--transition); }
.card-btn:hover { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); }

/* ── SERVICES ───────────────────────────── */
#services { background: linear-gradient(135deg, var(--dark) 0%, var(--green) 50%, var(--dark) 100%); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 64px; }
.service-card { background: rgba(0,0,0,0.4); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 32px 24px; position: relative; overflow: hidden; transition: var(--transition); }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,175,55,0.05), transparent); opacity: 0; transition: opacity 0.4s; }
.service-card:hover { transform: translateY(-8px); border-color: var(--gold-glow); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-num { font-family: 'Cinzel', serif; font-size: 44px; font-weight: 900; color: rgba(212,175,55,0.1); line-height: 1; margin-bottom: 14px; }
.service-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.service-card h3 { font-family: 'Cinzel', serif; font-size: 17px; color: var(--gold); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--white-60); line-height: 1.7; font-family: 'Cormorant Garamond', serif; font-size: 15px; }

/* WHY CHOOSE US */
.why-us { margin-top: 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card { background: rgba(0,0,0,0.3); border: 1px solid rgba(212,175,55,0.15); border-radius: 12px; padding: 20px 24px; display: flex; align-items: center; gap: 14px; transition: var(--transition); }
.why-card:hover { border-color: var(--gold); background: rgba(212,175,55,0.05); }
.why-card span { font-size: 20px; flex-shrink: 0; }
.why-card p { font-size: 14px; color: var(--white-80); line-height: 1.5; }

/* CUSTOMERS WE SERVE */
.customers-section { margin-top: 64px; }
.customers-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.customer-type { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 24px 16px; text-align: center; transition: var(--transition); font-size: 32px; }
.customer-type:hover { border-color: var(--gold); transform: translateY(-4px); }
.customer-type p { font-size: 12px; color: var(--white-60); margin-top: 10px; line-height: 1.4; }

/* ── REVIEWS ────────────────────────────── */
#reviews { background: var(--black); overflow: hidden; }

/* Rating Summary */
.rating-summary { display: flex; align-items: center; gap: 60px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; padding: 36px 48px; margin-bottom: 48px; }
.rating-big { text-align: center; flex-shrink: 0; }
.rating-score { font-family: 'Cinzel', serif; font-size: 72px; font-weight: 900; color: var(--gold); line-height: 1; display: block; }
.rating-stars-big { font-size: 24px; letter-spacing: 2px; margin: 8px 0; }
.rating-big p { font-size: 13px; color: var(--white-60); }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; }
.rating-bar-row > span:first-child { font-size: 13px; color: var(--white-60); width: 36px; flex-shrink: 0; }
.rating-bar-row > span:last-child { font-size: 13px; color: var(--gold); width: 36px; flex-shrink: 0; text-align: right; }
.bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 4px; transition: width 1s ease; }

/* Marquee */
.marquee-container { overflow: hidden; margin-bottom: 20px; mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%); }
.marquee-track { display: flex; gap: 20px; width: max-content; animation: marqueeScroll 40s linear infinite; }
.marquee-track.marquee-reverse { animation: marqueeScrollReverse 45s linear infinite; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeScrollReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.marquee-container:hover .marquee-track { animation-play-state: paused; }
.marquee-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 14px; padding: 20px 24px; min-width: 300px; max-width: 300px; flex-shrink: 0; }
.marquee-card .m-stars { font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.marquee-card .m-text { font-size: 13px; color: var(--white-80); line-height: 1.6; margin-bottom: 14px; font-family: 'Cormorant Garamond', serif; font-style: italic; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.marquee-card .m-author { display: flex; align-items: center; gap: 10px; }
.m-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.m-author strong { display: block; font-size: 13px; color: var(--white); }
.m-author span { font-size: 11px; color: var(--gold); }

/* Reviews Grid */
.reviews-grid-wrap { margin-top: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.review-card-grid { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 14px; padding: 24px; transition: var(--transition); }
.review-card-grid:hover { border-color: var(--gold); transform: translateY(-4px); }
.rcg-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.rcg-stars { font-size: 14px; letter-spacing: 1px; }
.rcg-date { font-size: 11px; color: var(--white-60); }
.rcg-text { font-family: 'Cormorant Garamond', serif; font-size: 15px; line-height: 1.7; color: var(--white-80); font-style: italic; margin-bottom: 16px; }
.rcg-reviewer { display: flex; align-items: center; gap: 12px; }
.rcg-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.rcg-reviewer strong { display: block; font-size: 14px; color: var(--white); }
.rcg-reviewer span { font-size: 12px; color: var(--gold); }

.load-more-btn { display: block; margin: 0 auto 16px; background: var(--glass); border: 1px solid var(--glass-border); color: var(--gold); padding: 14px 40px; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); letter-spacing: 1px; }
.load-more-btn:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); transform: translateY(-2px); }
.load-more-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.reviews-total-text { text-align: center; font-size: 13px; color: var(--white-60); }

/* ── LOCATION ───────────────────────────── */
#location { background: var(--dark); }
.location-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.map-wrapper { display: flex; flex-direction: column; gap: 16px; }
.map-container { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.1); background: var(--glass); backdrop-filter: blur(10px); transition: var(--transition); }
.map-container:hover { box-shadow: 0 24px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.25); }
.map-location-text { display: flex; flex-direction: column; gap: 4px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; padding: 14px 20px; backdrop-filter: blur(10px); }
.map-loc-pin { font-size: 14px; font-weight: 600; color: var(--gold); }
.map-loc-name { font-size: 13px; color: var(--white-60); font-family: 'Cormorant Garamond', serif; }
.map-open-btn { align-self: flex-start; font-size: 13px; }
.location-info { display: flex; flex-direction: column; gap: 20px; }
.location-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.location-card:hover { border-color: var(--gold); }
.loc-icon { font-size: 26px; margin-bottom: 10px; }
.location-card h4 { font-family: 'Cinzel', serif; font-size: 15px; color: var(--gold); margin-bottom: 8px; }
.location-card p { font-size: 14px; color: var(--white-60); line-height: 1.6; margin-bottom: 14px; }
.location-card p strong { color: var(--white); }
.contact-btns { display: flex; gap: 10px; }

/* ── CONTACT ────────────────────────────── */
#contact { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 44px 28px; text-align: center; transition: var(--transition); }
.contact-card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(212,175,55,0.1); }
.contact-icon { font-size: 44px; margin-bottom: 18px; display: block; }
.contact-card h3 { font-family: 'Cinzel', serif; font-size: 20px; color: var(--gold); margin-bottom: 12px; }
.contact-card p { color: var(--white-60); font-size: 15px; margin-bottom: 22px; }
.contact-card small { color: var(--white-60); font-size: 13px; }

/* ── FOOTER ─────────────────────────────── */
#footer { background: var(--black-2); border-top: 1px solid var(--glass-border); padding: 60px 0 0; }
.footer-container { max-width: 1300px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 40px; }
.footer-brand img { height: 70px; width: auto; filter: drop-shadow(0 0 15px var(--gold-glow)); margin-bottom: 10px; }
.footer-brand p { font-family: 'Cinzel', serif; font-size: 16px; color: var(--gold); margin-bottom: 4px; }
.footer-brand span { font-size: 13px; color: var(--white-60); display: block; margin-bottom: 10px; }
.footer-gstin { font-size: 12px; color: var(--gold); border: 1px solid rgba(212,175,55,0.3); display: inline-block; padding: 4px 12px; border-radius: 50px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.footer-links a, .footer-contact a { color: var(--white-60); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 32px; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--white-60); }

/* ── FLOATING BUTTONS ───────────────────── */
.fab-container { position: fixed; left: 24px; bottom: 100px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.fab { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); position: relative; }
.fab svg { width: 22px; height: 22px; }
.fab:hover { transform: scale(1.1) translateY(-3px); }
.fab-call { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); box-shadow: 0 8px 25px var(--gold-glow); }
.fab-whatsapp { background: linear-gradient(135deg, #128C7E, #25D366); color: white; box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.fab::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid; opacity: 0; animation: fabPulse 2s ease-out infinite; }
.fab-call::before { border-color: var(--gold); }
.fab-whatsapp::before { border-color: #25D366; }
@keyframes fabPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } }

/* ── CHATBOT ────────────────────────────── */
.chatbot-container { position: fixed; right: 24px; bottom: 24px; z-index: 1000; }
.chatbot-toggle { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 8px 30px var(--gold-glow); transition: var(--transition); position: relative; }
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 12px 40px var(--gold-glow); }
.chat-pulse { position: absolute; top: 0; right: 0; width: 14px; height: 14px; background: #25D366; border-radius: 50%; border: 2px solid var(--black); }
.chat-pulse::before { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid #25D366; animation: fabPulse 1.5s ease-out infinite; }
.chatbot-window { position: absolute; bottom: 80px; right: 0; width: 360px; max-height: 500px; background: var(--dark-2); border: 1px solid var(--glass-border); border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); display: none; flex-direction: column; overflow: hidden; backdrop-filter: blur(20px); }
.chatbot-window.open { display: flex; }
.chat-header { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05)); border-bottom: 1px solid var(--glass-border); }
.chat-avatar { font-size: 28px; }
.chat-info { flex: 1; }
.chat-info strong { display: block; font-size: 14px; color: var(--white); }
.chat-status { font-size: 11px; color: #25D366; }
.chat-close { background: none; border: none; color: var(--white-60); cursor: pointer; font-size: 16px; padding: 4px; transition: var(--transition); }
.chat-close:hover { color: var(--white); }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 16px; max-height: 300px; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }
.message { display: flex; }
.bot-message { justify-content: flex-start; }
.user-message { justify-content: flex-end; }
.msg-bubble { max-width: 85%; padding: 12px 16px; border-radius: 14px; font-size: 13.5px; line-height: 1.6; }
.bot-message .msg-bubble { background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2); color: var(--white-80); border-bottom-left-radius: 4px; }
.user-message .msg-bubble { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); font-weight: 500; border-bottom-right-radius: 4px; }
.typing-indicator .msg-bubble { padding: 14px 18px; }
.typing-dots { display: flex; gap: 4px; }
.typing-dots span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: typingBounce 1.2s ease-in-out infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-8px); } }
.chat-input-area { display: flex; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--glass-border); background: rgba(0,0,0,0.2); }
#chatInput { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border); border-radius: 10px; padding: 10px 14px; color: var(--white); font-size: 13px; outline: none; transition: var(--transition); }
#chatInput::placeholder { color: var(--white-60); }
#chatInput:focus { border-color: var(--gold); background: rgba(212,175,55,0.05); }
#chatSend { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
#chatSend:hover { transform: scale(1.05); }
#chatSend svg { width: 18px; height: 18px; fill: var(--black); }

/* ── QUICK REPLY CHIPS ───────────────────── */
.quick-chips {
  display: flex; gap: 8px; padding: 10px 16px 8px;
  overflow-x: auto; flex-wrap: nowrap;
  border-top: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.15);
  scrollbar-width: none;
}
.quick-chips::-webkit-scrollbar { display: none; }
.quick-chips.hidden { display: none; }
.chip {
  flex-shrink: 0; background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3); border-radius: 20px;
  color: var(--gold); font-size: 12px; font-weight: 500;
  padding: 6px 14px; cursor: pointer; white-space: nowrap;
  transition: var(--transition); font-family: 'Inter', sans-serif;
}
.chip:hover {
  background: rgba(212,175,55,0.2); border-color: var(--gold);
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,175,55,0.2);
}

/* ── ANIMATIONS ─────────────────────────── */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0, 0); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .customers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-logo { width: 200px; height: 200px; }
  .about-glow-ring { width: 250px; height: 250px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { padding: 16px 20px; }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 26px; }
  .trust-bar-inner { gap: 0; }
  .trust-item { padding: 12px 20px; }
  .trust-divider { display: none; }
  .rating-summary { flex-direction: column; gap: 32px; padding: 28px; }
  .chatbot-window { width: 320px; }
  .customers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  section { padding: 70px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 12px; border: none; background: none; }
  .stat-divider { display: none; }
  .about-pillars { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .customers-grid { grid-template-columns: repeat(2, 1fr); }
  .fab-container { left: 16px; bottom: 90px; }
  .chatbot-container { right: 16px; bottom: 16px; }
  .chatbot-window { width: calc(100vw - 32px); right: 0; }
  #backToTop { bottom: 16px; right: 16px; width: 42px; height: 42px; }
  .toast { white-space: normal; text-align: center; max-width: calc(100vw - 32px); }
  .footer-container { padding: 0 20px; }
  .trust-bar-inner { flex-direction: column; gap: 16px; }
  .rating-summary { padding: 24px 20px; }
  .rating-score { font-size: 56px; }
}

/* ── SCROLL PROGRESS BAR ────────────────── */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  z-index: 9999; transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(212,175,55,0.6);
}

/* ── BACK TO TOP ────────────────────────── */
#backToTop {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--dark-2); border: 1px solid var(--glass-border);
  color: var(--gold); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: rgba(212,175,55,0.15); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(212,175,55,0.25); }

/* ── TOAST ──────────────────────────────── */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--dark-2); border: 1px solid var(--glass-border);
  color: var(--white); padding: 14px 24px; border-radius: 12px;
  font-size: 14px; font-weight: 500; z-index: 20000;
  opacity: 0; visibility: hidden; white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 10px;
}
.toast.show {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.toast.success { border-color: rgba(37,211,102,0.4); }
.toast.success::before { content: '✅'; font-size: 16px; }

/* ── FAB REVIEW ─────────────────────────── */
.fab-review {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black); border: none; cursor: pointer;
  opacity: 0; visibility: hidden; transform: scale(0.8);
  transition: var(--transition);
}
.fab-review.visible { opacity: 1; visibility: visible; transform: scale(1); }
.fab-review:hover { transform: scale(1.1) rotate(-5deg) !important; box-shadow: 0 12px 35px rgba(212,175,55,0.5) !important; }
.fab-review::before { border-color: var(--gold); }

/* ── WRITE A REVIEW BUTTON ──────────────── */
.write-review-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-bottom: 48px;
}
.btn-write-review {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black); border: none; cursor: pointer;
  font-family: 'Cinzel', serif; font-size: 15px; font-weight: 700;
  letter-spacing: 1px; padding: 16px 36px; border-radius: 50px;
  transition: var(--transition); position: relative; overflow: hidden;
  text-transform: uppercase;
  box-shadow: 0 6px 30px rgba(212,175,55,0.4);
}
.btn-write-review::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  opacity: 0; transition: var(--transition);
}
.btn-write-review:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212,175,55,0.6); }
.btn-write-review:hover::before { opacity: 1; }
.btn-write-review svg { position: relative; z-index: 1; }
.btn-write-review span { position: relative; z-index: 1; } 
.write-review-sub { color: var(--white-60); font-size: 13px; letter-spacing: 0.3px; }

/* ── REVIEW MODAL ───────────────────────── */
.review-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.review-modal-overlay.open { opacity: 1; visibility: visible; }
.review-modal {
  background: var(--dark-2); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 40px; max-width: 520px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.1);
}
.review-modal-overlay.open .review-modal { transform: scale(1) translateY(0); }
.review-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.08); border: none; color: var(--white-80);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.review-modal-close:hover { background: rgba(212,175,55,0.2); color: var(--gold); }
.review-modal-header { text-align: center; margin-bottom: 32px; }
.review-modal-icon { font-size: 40px; margin-bottom: 12px; }
.review-modal-header h3 {
  font-family: 'Cinzel', serif; font-size: 22px; color: var(--gold);
  margin-bottom: 8px;
}
.review-modal-header p { color: var(--white-60); font-size: 14px; line-height: 1.6; }
.review-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--white-80); letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group .required { color: var(--gold); }
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 14px 16px; color: var(--white);
  font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; transition: var(--transition); resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.04);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.star-selector { display: flex; gap: 6px; }
.star-opt {
  font-size: 36px; cursor: pointer; color: rgba(255,255,255,0.2);
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
}
.star-opt.active, .star-opt.hover { color: var(--gold-light); transform: scale(1.15); }
.star-label { font-size: 12px; color: var(--white-60); margin-top: 4px; }
.btn-submit-review {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  padding: 16px; border-radius: 12px; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3); margin-top: 8px;
}
.btn-submit-review:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.review-form-note { text-align: center; font-size: 12px; color: var(--white-60); line-height: 1.5; }

/* ── DONATION SECTION ───────────────────── */
#donate { background: linear-gradient(180deg, var(--black) 0%, rgba(13,51,32,0.15) 50%, var(--black) 100%); }
.donate-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; background: var(--dark-2);
  border: 1px solid var(--glass-border); border-radius: 24px;
  padding: 56px 60px; max-width: 900px; margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(212,175,55,0.1);
}
.donate-left { display: flex; flex-direction: column; gap: 20px; }
.donate-icon { font-size: 48px; }
.donate-left h3 {
  font-family: 'Cinzel', serif; font-size: 28px; color: var(--gold);
}
.donate-left p { color: var(--white-80); font-size: 15px; line-height: 1.8; }
.donate-apps { display: flex; flex-wrap: wrap; gap: 8px; }
.donate-apps span {
  background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 6px 14px; font-size: 12px; color: var(--white-80);
  font-weight: 500;
}
.donate-thanks { font-size: 13px; color: var(--white-60); line-height: 1.6; font-style: italic; }
.donate-right { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.qr-frame {
  position: relative; display: inline-block;
  padding: 16px; background: white; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(212,175,55,0.3);
}
.qr-image { width: 220px; height: 220px; object-fit: contain; display: block; border-radius: 8px; }
.qr-corner {
  position: absolute; width: 20px; height: 20px;
  border-color: var(--gold); border-style: solid;
}
.qr-corner.tl { top: -2px; left: -2px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.qr-corner.tr { top: -2px; right: -2px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.qr-corner.bl { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
.qr-corner.br { bottom: -2px; right: -2px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }
.qr-label { color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-align: center; }

/* ── MANDI RATES SECTION ─────────────────── */
#mandi-rates { padding: 100px 0; background: linear-gradient(180deg, var(--black) 0%, rgba(13,51,32,0.15) 50%, var(--black) 100%); }

.mandi-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 36px; flex-wrap: wrap;
}
.mandi-meta-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.mandi-badge-live {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3);
  border-radius: 20px; padding: 4px 12px; font-size: 12px; color: #25D366; font-weight: 600;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #25D366;
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
.mandi-source, .mandi-location { font-size: 12px; color: var(--white-60); }
.mandi-refresh-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px; padding: 8px 16px; color: var(--gold); font-size: 13px;
  cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif;
}
.mandi-refresh-btn:hover { background: rgba(212,175,55,0.2); transform: translateY(-1px); }
.mandi-refresh-btn.spinning .refresh-icon { display: inline-block; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.mandi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.mandi-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 18px; padding: 24px 20px;
  position: relative; overflow: hidden; transition: var(--transition);
}
.mandi-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 18px;
  background: linear-gradient(135deg, rgba(212,175,55,0.06), transparent);
  opacity: 0; transition: var(--transition);
}
.mandi-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.3); }
.mandi-card:hover::before { opacity: 1; }

.mandi-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.mandi-commodity { display: flex; align-items: center; gap: 10px; }
.mandi-icon { font-size: 28px; line-height: 1; }
.mandi-name { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.2; }
.mandi-name-en { font-size: 11px; color: var(--white-60); font-family: 'Inter', sans-serif; margin-top: 2px; }
.mandi-we-buy {
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1));
  border: 1px solid rgba(212,175,55,0.4); border-radius: 12px;
  padding: 3px 10px; font-size: 10px; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap;
}
.mandi-modal-price { margin-bottom: 12px; }
.mandi-price-label { font-size: 10px; color: var(--white-60); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.mandi-price-value { font-family: 'Cinzel', serif; font-size: 26px; font-weight: 700; color: var(--gold); line-height: 1; }
.mandi-price-unit { font-size: 11px; color: var(--white-60); margin-left: 4px; }
.mandi-range { display: flex; gap: 10px; margin-bottom: 10px; }
.mandi-range-item { flex: 1; background: rgba(255,255,255,0.04); border-radius: 8px; padding: 6px 8px; text-align: center; }
.mandi-range-label { font-size: 9px; color: var(--white-60); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.mandi-range-val { font-size: 12px; font-weight: 600; color: var(--white-80); font-family: 'Inter', sans-serif; }
.mandi-footer { font-size: 10px; color: var(--white-60); display: flex; flex-direction: column; gap: 2px; margin-top: 8px; border-top: 1px solid var(--glass-border); padding-top: 8px; }

.mandi-error-card {
  grid-column: 1 / -1; text-align: center; padding: 40px;
  color: var(--white-60); font-size: 14px;
}
.mandi-error-card a { color: var(--gold); text-decoration: none; }

/* Skeleton */
.skeleton-card { animation: shimmer 1.5s infinite linear; background: linear-gradient(90deg, var(--glass-bg) 25%, rgba(255,255,255,0.06) 50%, var(--glass-bg) 75%); background-size: 400% 100%; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.sk-line { border-radius: 6px; background: rgba(255,255,255,0.08); margin-bottom: 12px; }
.sk-title { height: 20px; width: 70%; }
.sk-price { height: 36px; width: 50%; }
.sk-range { height: 14px; width: 90%; }

.mandi-sell-cta { margin-bottom: 24px; }
.mandi-sell-inner {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(13,51,32,0.3));
  border: 1px solid rgba(212,175,55,0.25); border-radius: 20px;
  padding: 32px 36px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.mandi-sell-icon { font-size: 48px; flex-shrink: 0; }
.mandi-sell-text { flex: 1; min-width: 200px; }
.mandi-sell-text h3 { font-family: 'Cinzel', serif; font-size: 18px; color: var(--white); margin-bottom: 8px; }
.mandi-sell-text p { font-size: 14px; color: var(--white-60); line-height: 1.6; }
.btn-sell-cta {
  flex-shrink: 0; background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; font-weight: 700; border-radius: 12px;
  padding: 14px 24px; text-decoration: none; font-size: 14px;
  transition: var(--transition); white-space: nowrap; font-family: 'Inter', sans-serif;
}
.btn-sell-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.mandi-disclaimer { font-size: 12px; color: var(--white-60); text-align: center; line-height: 1.7; max-width: 600px; margin: 0 auto; }
.mandi-disclaimer strong { color: var(--gold); }

.nav-mandi { color: var(--gold) !important; font-weight: 600 !important; }

@media (max-width: 1024px) {
  .mandi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .mandi-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .mandi-sell-inner { flex-direction: column; text-align: center; padding: 24px 20px; }
  .mandi-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .donate-card { grid-template-columns: 1fr; gap: 40px; padding: 36px 28px; text-align: center; }
  .donate-apps { justify-content: center; }
  .donate-right { order: -1; }
  .review-modal { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .mandi-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .mandi-card { padding: 16px 14px; }
  .mandi-price-value { font-size: 20px; }
}
