/* ── VARIABLES ── */
:root {
  --sky: #0ea5e9;
  --deep: #0369a1;
  --midnight: #0a1628;
  --warm: #f59e0b;
  --snow: #ffffff;
  --muted: #64748b;
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Syne', sans-serif; background: var(--midnight); color: var(--snow); overflow-x: hidden; }

/* ── NAV ── */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 32px;
  background: rgba(10,22,40,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14,165,233,0.15);
}

.lang-toggle {
  justify-self: end;
}
.logo-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--sky);
}
.logo-bar span { color: var(--snow); }
.logo-bar img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--sky); }
.lang-toggle {
  display: flex; background: rgba(14,165,233,0.12);
  border-radius: 100px; padding: 4px; gap: 2px;
}
.lang-btn {
  padding: 6px 18px; border: none; border-radius: 100px;
  font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: all 0.25s; background: transparent; color: var(--muted);
}
.lang-btn.active { background: var(--sky); color: white; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.stars {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(14,165,233,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(3,105,161,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(14,165,233,0.1) 0%, transparent 50%);
}
.star-field {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 60%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 25%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 75%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 45%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(2px 2px at 92% 12%, rgba(14,165,233,0.9) 0%, transparent 100%);
}

/* AC Illustration */
.ac-illustration {
  width: 180px; height: 80px;
  background: linear-gradient(135deg, rgba(14,165,233,0.3), rgba(3,105,161,0.5));
  border: 2px solid rgba(14,165,233,0.5); border-radius: 12px;
  margin-bottom: 36px; position: relative;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 0 40px rgba(14,165,233,0.3);
  animation: float 4s ease-in-out infinite;
}
.ac-vents { display: flex; flex-direction: column; gap: 6px; }
.ac-vent { width: 60px; height: 4px; background: rgba(14,165,233,0.7); border-radius: 2px; }
.ac-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--warm); box-shadow: 0 0 12px var(--warm);
  animation: pulse 2s ease-in-out infinite;
}
.ac-snowflakes {
  position: absolute; bottom: -30px;
  display: flex; gap: 14px; font-size: 1.1rem;
  opacity: 0.6; animation: drift 3s ease-in-out infinite;
}

/* Hero text */
.hero-badge {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--sky); text-transform: uppercase; margin-bottom: 18px;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
}
.hero h1 em { font-style: normal; color: var(--sky); }
.hero-subtitle {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: clamp(1rem, 3vw, 1.4rem); color: rgba(255,255,255,0.6);
  max-width: 480px; margin-bottom: 40px; line-height: 1.7;
  opacity: 0; animation: fadeUp 0.7s 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 0.7s 0.8s forwards;
}

/* ── ANIMATIONS ── */
@keyframes float    { 0%,100% { transform: translateY(0); }    50% { transform: translateY(-8px); } }
@keyframes pulse    { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
@keyframes drift    { 0%,100% { opacity: 0.4; transform: translateY(0); } 50% { opacity: 0.9; transform: translateY(6px); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes bounceIn { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
  background: linear-gradient(135deg, #25d366, #128c7e); color: white;
  border-radius: 100px; font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
  background: rgba(14,165,233,0.12); border: 1.5px solid rgba(14,165,233,0.4);
  color: var(--sky); border-radius: 100px; font-weight: 700;
  font-size: 1rem; text-decoration: none; transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(14,165,233,0.25); transform: translateY(-3px); }

/* ── SECTIONS ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sky); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.section-subtitle { font-family: 'Tiro Devanagari Hindi', serif; font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 52px; max-width: 520px; }
.divider { width: 48px; height: 4px; background: linear-gradient(90deg, var(--sky), transparent); border-radius: 2px; margin-bottom: 28px; }

/* ── SERVICES ── */
#services { background: rgba(14,165,233,0.03); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.service-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(14,165,233,0.15);
  border-radius: var(--radius); padding: 36px 28px; transition: all 0.35s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky), transparent); opacity: 0; transition: opacity 0.35s;
}
.service-card:hover { background: rgba(14,165,233,0.1); border-color: rgba(14,165,233,0.4); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(14,165,233,0.15); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.service-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.service-title-ne { font-family: 'Tiro Devanagari Hindi', serif; font-size: 0.95rem; color: var(--sky); margin-bottom: 14px; }
.service-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.service-price {
  display: inline-block; margin-top: 18px; padding: 5px 14px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
  background: rgba(14,165,233,0.12); color: var(--sky); border: 1px solid rgba(14,165,233,0.25);
}

/* ── SHOP ── */
#shop { background: var(--midnight); }
.shop-toolbar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; align-items: center; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px; font-family: 'Syne', sans-serif;
  font-size: 0.8rem; font-weight: 700; cursor: pointer; transition: all 0.25s;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
}
.filter-btn.active, .filter-btn:hover { background: var(--sky); border-color: var(--sky); color: white; }
.shop-search {
  margin-left: auto; padding: 9px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  color: white; font-family: 'Syne', sans-serif; font-size: 0.85rem;
  outline: none; transition: border-color 0.25s; min-width: 200px;
}
.shop-search:focus { border-color: var(--sky); }
::placeholder { color: rgba(255,255,255,0.3); }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.product-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); overflow: hidden; transition: all 0.35s;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(14,165,233,0.35); box-shadow: 0 20px 50px rgba(14,165,233,0.12); }
.product-img {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(3,105,161,0.1));
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.product-badge {
  position: absolute; top: 12px; right: 12px; padding: 4px 10px;
  border-radius: 100px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
}
.product-badge.instock  { background: rgba(34,197,94,0.9);  color: #000; }
.product-badge.outstock { background: rgba(239,68,68,0.85); color: white; }
.product-body { padding: 20px; }
.product-category { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky); margin-bottom: 6px; }
.product-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.product-desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-size: 1.15rem; font-weight: 800; }
.product-price small { font-size: 0.7rem; color: rgba(255,255,255,0.4); font-weight: 400; display: block; }
.btn-order {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px;
  background: linear-gradient(135deg, #25d366, #128c7e); color: white;
  border-radius: 100px; font-size: 0.78rem; font-weight: 700; text-decoration: none;
  transition: all 0.25s; border: none; cursor: pointer; font-family: 'Syne', sans-serif;
}
.btn-order:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.btn-order.disabled { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.35); pointer-events: none; }

.shop-loading { text-align: center; padding: 60px 0; color: rgba(255,255,255,0.4); }
.spinner { width: 40px; height: 40px; border: 3px solid rgba(14,165,233,0.2); border-top-color: var(--sky); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 16px; }
.shop-empty { text-align: center; padding: 60px 0; color: rgba(255,255,255,0.35); font-size: 0.95rem; }

/* Sheet Setup Banner */
.sheet-banner {
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3);
  border-radius: 12px; padding: 20px 24px; margin-bottom: 32px;
  font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.8;
}
.sheet-banner b  { color: var(--warm); }
.sheet-banner code { background: rgba(255,255,255,0.08); padding: 2px 7px; border-radius: 5px; font-size: 0.78rem; color: var(--sky); }
.sheet-input-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 12px; }
.sheet-input {
  padding: 9px 14px; border-radius: 8px; border: 1.5px solid rgba(14,165,233,0.4);
  background: rgba(255,255,255,0.05); color: white; font-family: 'Syne', sans-serif;
  font-size: 0.82rem; outline: none; min-width: 280px; flex: 1;
}
.sheet-input:focus { border-color: var(--sky); }
.btn-small { padding: 9px 20px; border: none; border-radius: 8px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.82rem; cursor: pointer; transition: all 0.2s; }
.btn-save { background: var(--sky); color: white; }
.btn-save:hover { background: var(--deep); }
.btn-hide { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.4); }

/* ── WHY ── */
#why { background: rgba(14,165,233,0.03); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.why-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 28px 24px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); transition: border-color 0.3s;
}
.why-item:hover { border-color: rgba(14,165,233,0.3); }
.why-num  { font-size: 2rem; font-weight: 800; color: var(--sky); }
.why-text { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }


/* ── CONTACT ── */
#contact { background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(3,105,161,0.05)); border-top: 1px solid rgba(14,165,233,0.12); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; }
.contact-item-icon { font-size: 1.6rem; }
.contact-item-text small { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sky); margin-bottom: 2px; }
.contact-item-text span { font-size: 1rem; font-weight: 600; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1); border-radius: 10px;
  color: var(--snow); font-family: 'Syne', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sky); }
.form-group textarea { height: 100px; resize: vertical; }
.form-group select option { background: #0a1628; }
.btn-submit {
  padding: 16px; background: linear-gradient(135deg, var(--sky), var(--deep));
  color: white; border: none; border-radius: 10px; font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(14,165,233,0.35); }

/* ── LOCATION LINK ── */
.contact-item a.icon-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  width: 100%;
  color: inherit;
}

.contact-item a.icon-link:hover .contact-item-icon {
  transform: scale(1.2);
  transition: transform 0.2s;
}

.contact-item a.icon-link:hover small {
  color: #38bdf8;
}

.contact-item a.icon-link:hover span {
  color: var(--snow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-item:has(a.icon-link) {
  padding: 0;
  overflow: hidden;
}

.contact-item:has(a.icon-link) a.icon-link {
  padding: 18px 22px;
}

.contact-item:has(a.icon-link):hover {
  border-color: rgba(14,165,233,0.4);
  background: rgba(14,165,233,0.08);
  transition: all 0.25s;
}

/* ── FOOTER ── */
footer { text-align: center; padding: 36px 24px; background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.82rem; color: rgba(255,255,255,0.3); }
footer a { color: var(--sky); text-decoration: none; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  text-decoration: none; animation: bounceIn 0.8s 1.5s both; transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.12); }

/* ── BILINGUAL TOGGLE ── */
[data-lang="ne"]      { display: none; }
body.lang-ne [data-lang="en"] { display: none; }
body.lang-ne [data-lang="ne"] { display: block; }
.inline-ne            { display: none; }
body.lang-ne .inline-ne { display: inline; }
body.lang-ne .inline-en { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .nav-links      { display: none; }
  .lang-bar       { padding: 10px 16px; }
  .shop-search    { min-width: 130px; margin-left: 0; width: 100%; }
}
/* ── MOBILE NAV FIX ── */
@media (max-width: 768px) {
  /* Fix navbar */
  .lang-bar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 10px 12px;
    gap: 6px;
  }

  .logo-bar {
    font-size: 0.72rem;
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-bar img {
    height: 30px;
  }

  .nav-links {
    display: none;
  }

  .lang-toggle {
    flex-shrink: 0;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  /* Fix why section */
  .why-text strong {
    display: block;
    margin-bottom: 4px;
  }

  .why-text span {
    display: block;
  }
}