/* ===================== Tokens & reset ===================== */
:root {
  --orange: #E8650E;
  --orange-soft: #FF7A1A;
  --cream: #FBF6EC;
  --ink: #1d1d1f;
  --muted: #555;
  --dark: #0a0a12;
  --card: #fff;
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.section { padding: 72px 0; }

.section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: .5px;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--orange);
  margin: 14px auto 40px;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 40px;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(232,101,14,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(232,101,14,.45); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,211,102,.5); }
.btn-whatsapp svg { flex: none; }

/* ===================== Header ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,18,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: flex-start; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-text { font-family: "Marcellus", serif; font-weight: 600; font-size: 1.15rem; }

.main-nav { display: flex; gap: 30px; }
.main-nav a { font-weight: 500; font-size: .95rem; position: relative; padding: 4px 0; color: #f0f0f5; }
.main-nav a:hover { color: var(--orange); }
.main-nav a.active { color: var(--orange); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--orange); border-radius: 2px;
}

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 26px; height: 3px; background: #f0f0f5; border-radius: 2px; }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  background: #05050d;
  color: #fff;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: stretch;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,5,13,.65) 0%, rgba(5,5,13,.3) 45%, rgba(5,5,13,0) 75%);
}
.hero-inner { position: relative; align-self: stretch; display: flex; padding: 70px 0 60px; }
.hero-copy {
  max-width: none; margin-left: calc(120px - (100vw - var(--maxw)) / 2);
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-copy h1 {
  font-family: "Marcellus", serif;
  font-size: clamp(1.4rem, 3.7vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 16px;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0,0,0,.6);
}
.hero-copy p { font-size: 1.15rem; color: #e6e6f2; margin-bottom: 28px; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.hero-lower { display: flex; align-items: flex-end; gap: 30px; }
.hero-actions { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.btn-upi {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 20px rgba(232,101,14,.35);
}
.btn-upi:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(232,101,14,.45); }
.btn-upi svg { flex: none; }
.hero-portrait-fig { margin: 0; }
.hero-portrait {
  width: 440px; aspect-ratio: 1 / 1;
  object-fit: cover; border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.hero-portrait-name {
  margin-top: 14px; text-align: center;
  font-family: "Marcellus", serif; font-size: 1.25rem;
  color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

/* ===================== Balance Life ===================== */
.balance { background: var(--cream); }
.balance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 40px;
  align-items: start;
}
.balance-card { text-align: left; }
.bcard-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.balance-card .bicon { color: var(--orange); display: inline-flex; flex: none; }
.balance-card .bicon svg { display: block; }
.balance-card h3 { font-size: 1.05rem; color: var(--ink); font-weight: 600; margin: 0; }
.balance-card p { font-size: .88rem; color: var(--muted); }

/* ===================== About ===================== */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.about-copy p { margin-bottom: 16px; color: var(--muted); }
.read-more { color: var(--orange); font-weight: 600; }
.about-image {
  width: 100%; aspect-ratio: 4/3; border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

/* ===================== Services ===================== */
.services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 760px; margin-inline: auto;
}
.service-card {
  background: linear-gradient(160deg, var(--orange-soft), var(--orange));
  color: #fff; border-radius: 18px;
  padding: 28px 18px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  min-height: 150px; justify-content: center;
  box-shadow: 0 10px 24px rgba(232,101,14,.28);
}
.service-card .s-ico { font-size: 2rem; }
.service-card h3 { font-size: 1rem; font-weight: 600; }

/* ===================== Testimonials ===================== */
.testimonials { background: #fff; }
.testi-grid {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 16px; scroll-padding-left: 4px;
  -webkit-overflow-scrolling: touch;
}
.testi-grid::-webkit-scrollbar { height: 8px; }
.testi-grid::-webkit-scrollbar-thumb { background: rgba(232,101,14,.4); border-radius: 4px; }
.testi-card {
  flex: 0 0 clamp(260px, 30%, 320px); scroll-snap-align: start;
  background: var(--cream); border-radius: 14px; padding: 26px 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,.05); position: relative;
}
.testi-card .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; font-weight: 600; margin-bottom: 12px;
}
.stars-row { color: #f5a623; letter-spacing: 2px; margin-bottom: 10px; }
.testi-card p { font-size: .9rem; color: var(--muted); margin-bottom: 12px; }
.testi-name { font-weight: 600; font-size: .9rem; }

/* ===================== Blog ===================== */
.blog { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transition: transform .18s ease;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-thumb {
  height: 180px; display: grid; place-items: center; font-size: 3rem;
  background: #000;
  color: #fff; overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-thumb iframe { width: 100%; height: 100%; border: 0; display: block; }
.blog-body { padding: 16px 18px; }
.blog-body h3 { font-size: .98rem; font-weight: 600; }

/* ===================== Contact ===================== */
.contact { background: #fff; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; justify-content: center; }
.contact-info h3 {
  font-family: "Marcellus", serif; font-size: 1.35rem;
  color: var(--orange); margin-bottom: 20px;
}
.contact-info address { font-style: normal; }
.contact-info address p { margin-bottom: 18px; color: var(--muted); line-height: 1.7; }
.contact-info address strong { color: var(--ink); font-weight: 600; }
.contact-info a { color: var(--orange); }
.map-card {
  height: 360px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===================== Footer ===================== */
.site-footer { background: var(--dark); color: #cfcfe0; padding-top: 56px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  padding-bottom: 40px; align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-name { font-family: "Marcellus", serif; color: #fff; line-height: 1.4; }
.footer-col h4 {
  color: #fff; font-size: 1rem; margin-bottom: 16px; position: relative; padding-bottom: 8px;
}
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--orange); }
.footer-col a { display: block; font-size: .9rem; margin-bottom: 8px; color: #cfcfe0; }
.footer-col a:hover { color: var(--orange); }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--orange);
  color: #fff; display: grid; place-items: center; font-weight: 700; margin: 0;
  transition: transform .15s ease;
}
.socials a:hover { transform: translateY(-2px); }
.socials a[aria-label="YouTube"] { background: #FF0000; }
.socials a[aria-label="Facebook"] { background: #1877F2; }
.socials a[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 110%, #FDF497 0%, #FD5949 45%, #D6249F 70%, #285AEB 100%);
}
.footer-col address { font-style: normal; font-size: .9rem; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: .82rem; text-align: center; }

/* ===================== UPI Modal ===================== */
.upi-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; }
.upi-modal[hidden] { display: none; }
.upi-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(3px); }
.upi-modal-box {
  position: relative; z-index: 1; background: #fff; color: var(--ink);
  border-radius: 16px; padding: 30px 34px; text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.4); max-width: 90vw;
  animation: upiPop .2s ease;
}
@keyframes upiPop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.upi-modal-box h3 { font-family: "Marcellus", serif; font-size: 1.4rem; color: var(--orange); margin-bottom: 18px; }
.upi-modal-qr { width: 260px; max-width: 70vw; height: auto; border-radius: 10px; }
.upi-id { margin-top: 16px; font-size: .95rem; color: var(--muted); }
.upi-id strong { color: var(--ink); }
.upi-modal-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: 0; font-size: 1.8rem; line-height: 1;
  color: var(--muted); cursor: pointer;
}
.upi-modal-close:hover { color: var(--orange); }

/* ===================== Responsive ===================== */
/* Prevent any accidental horizontal overflow on small screens */
html, body { overflow-x: hidden; }

@media (max-width: 1024px) {
  /* On any non-wide screen the hero copy sits inside the container, not pulled to the edge */
  .hero-copy { margin-left: 0; }
}

@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,5,13,.9) 0%, rgba(5,5,13,.7) 70%, rgba(5,5,13,.45) 100%); }
  .balance-grid { grid-template-columns: 1fr 1fr; }
  .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-portrait { width: 320px; }
}

@media (max-width: 600px) {
  .nav-inner { justify-content: flex-end; }
  .nav-burger { display: flex; }
  .main-nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: rgba(10,10,18,.98);
    border-bottom: 1px solid rgba(255,255,255,.08);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .main-nav a { padding: 14px 20px; border-top: 1px solid rgba(255,255,255,.06); }
  .nav-toggle:checked ~ .main-nav { max-height: 360px; }

  /* Hero stacks: heading, subtitle, portrait, then button */
  .hero { min-height: 0; }
  .hero-inner { padding: 48px 0 56px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(5,5,13,.55) 0%, rgba(5,5,13,.35) 60%, rgba(5,5,13,.65) 100%); }
  .hero-copy h1 { white-space: normal; font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .hero-copy p { font-size: 1rem; }
  .hero-lower { flex-direction: column; align-items: flex-start; gap: 22px; }
  .hero-actions { margin-bottom: 0; width: 100%; max-width: 300px; }
  .hero-actions .btn { justify-content: center; }
  .hero-portrait-fig { width: 100%; max-width: 300px; }
  .hero-portrait { width: 100%; }
  .hero-portrait-name { font-size: 1.1rem; }

  .balance-grid, .services-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  .balance-card { text-align: center; }
  .bcard-head { justify-content: center; }
  .section { padding: 52px 0; }
}
