/* ══════════════════════════════════════════════════════════════
   GLOBAL.CSS — Prakash Nethralaya & Panchakarma Kendra
   Shared styles used by ALL pages
   ══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  color: #1a1a1a;
}
h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
}
h2 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
}
h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
}
p {
  color: #6b6b6b;
  line-height: 1.75;
}
a {
  color: #2d6a4f;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 64px 0;
}
.section-sm {
  padding: 48px 0;
}

/* Section label — home.html uses .section-label, other pages use .sl */
.section-label,
.sl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e67817;
  margin-bottom: 10px;
}
.section-label::before,
.sl::before {
  content: "";
  width: 22px;
  height: 2px;
  background: #e67817;
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: #e67817;
  color: #fff;
  border-color: #e67817;
}
.btn-primary:hover {
  background: #c45f0a;
  border-color: #c45f0a;
  color: #fff;
}
.btn-green {
  background: #2d6a4f;
  color: #fff;
  border-color: #2d6a4f;
}
.btn-green:hover {
  background: #1a3d2b;
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #2d6a4f;
  border-color: #2d6a4f;
}
.btn-outline:hover {
  background: #2d6a4f;
  color: #fff;
}
/* home.html: .btn-outline-white  |  other pages: .btn-ow */
.btn-outline-white,
.btn-ow {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline-white:hover,
.btn-ow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}
.btn-white {
  background: #fff;
  color: #e67817;
  border-color: #fff;
}
.btn-white:hover {
  background: #fef3e8;
  border-color: #fef3e8;
  color: #c45f0a;
}
.btn-lg {
  font-size: 14px;
  padding: 14px 30px;
}

/* ── CHECKLIST ── */
/* home.html: .check-list  |  other pages: .cl */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #3d3d2a;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: #2d6a4f;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.cl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cl li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3d3d2a;
  line-height: 1.55;
}
.cl li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: #f0faf3;
  border: 1.5px solid #52b788;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #2d6a4f;
  line-height: 18px;
  text-align: center;
}

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
  background: #f0faf3;
  border: 1px dashed #b5d5c5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b9b9b;
  font-size: 12px;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  padding: 20px;
}

/* ══════════════════════════════════
   HEADER — BOTH naming conventions
   home.html uses long names; all others use short names
   ══════════════════════════════════ */

/* Announce / top bar */
/* home.html: .announce-bar  |  others: .ab */
.announce-bar,
.ab {
  background: #7a3510;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 7px 16px;
  overflow: hidden;
}
.announce-inner,
.ab-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.announce-left,
.ab-l {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.announce-left a,
.ab-l a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.announce-right,
.ab-r {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* home.html: .soc-icon  |  others: .si */
.soc-icon,
.si {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
/* home.html: .announce-book  |  others: .abk */
.announce-book,
.abk {
  background: #e67817;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}

/* Sticky header wrapper */
/* home.html: .site-header  |  others: .sh */
.site-header,
.sh {
  position: sticky;
  top: 0;
  z-index: 500;
}
/* home.html: .nav-main  |  others: .nm */
.nav-main,
.nm {
  background: #fff;
  border-bottom: 1px solid #e4e0d8;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
/* home.html: .nav-inner  |  others: .ni */
.nav-inner,
.ni {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Logo */
/* home.html: .site-logo  |  others: .sl2 */
.site-logo,
.sl2 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
/* home.html: .logo-mark  |  others: .lm */
.logo-mark,
.lm {
  width: 44px;
  height: 44px;
  background: #d8f3dc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 700;
  color: #2d6a4f;
}
/* home.html: .logo-name  |  others: .ln */
.logo-name,
.ln {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  color: #2d6a4f;
  line-height: 1.2;
  display: block;
}
/* home.html: .logo-sub  |  others: .ls */
.logo-sub,
.ls {
  font-size: 9px;
  color: #9b9b9b;
  display: block;
}

/* Nav links */
/* home.html: .nav-links  |  others: .nl */
.nav-links,
.nl {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
/* home.html: .nav-item  |  others: .nit */
.nav-item,
.nit {
  position: relative;
}
/* home.html: .nav-link  |  others: .nk */
.nav-link,
.nk {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 8px 11px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-link:hover,
.nav-link.active,
.nk:hover,
.nk.active {
  background: #d8f3dc;
  color: #2d6a4f;
}
/* home.html: .nav-dropdown  |  others: .nd */
.nav-dropdown,
.nd {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #e4e0d8;
  border-radius: 10px;
  padding: 6px;
  min-width: 200px;
  z-index: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s;
}
.nav-item:hover .nav-dropdown,
.nit:hover .nd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a,
.nd a {
  display: block;
  font-size: 13px;
  color: #6b6b6b;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.12s;
}
.nav-dropdown a:hover,
.nd a:hover {
  background: #d8f3dc;
  color: #2d6a4f;
}

/* Nav CTAs */
/* home.html: .nav-ctas  |  others: .nc */
.nav-ctas,
.nc {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
/* home.html: .nav-cta-call  |  others: .ncc */
.nav-cta-call,
.ncc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #2d6a4f;
  background: #d8f3dc;
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
/* home.html: .nav-cta-book  |  others: .ncb */
.nav-cta-book,
.ncb {
  background: #e67817;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-cta-book:hover,
.ncb:hover {
  background: #c45f0a;
  color: #fff;
}

/* Hamburger */
/* home.html: .hamburger  |  others: .hb */
.hamburger,
.hb {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: #d8f3dc;
  border-radius: 7px;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}
.hamburger span,
.hb span {
  width: 16px;
  height: 1.8px;
  background: #2d6a4f;
  display: block;
  border-radius: 2px;
}

/* Mobile nav */
/* home.html: .mob-nav  |  others: .mn */
.mob-nav,
.mn {
  display: none;
  background: #fff;
  border-bottom: 1px solid #e4e0d8;
  padding: 0 16px 16px;
}
.mob-nav.open,
.mn.open {
  display: block;
}
/* home.html: .mob-nav-link  |  others: .mnl */
.mob-nav-link,
.mnl {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: #1a1a1a;
  border-bottom: 1px solid #f0ede8;
  text-decoration: none;
}
/* home.html: .mob-nav-ctas  |  others: .mnc */
.mob-nav-ctas,
.mnc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

/* ══════════════════════════════════
   BREADCRUMB — .bc (all inner pages)
   ══════════════════════════════════ */
.bc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.bc a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.bc a:hover {
  color: #fff;
}
.bc .sep {
  opacity: 0.4;
}

/* ══════════════════════════════════
   PAGE HERO — inner pages
   .ph / .phi (all inner pages except home)
   ══════════════════════════════════ */
.ph {
  background: linear-gradient(135deg, #1a3d2b 0%, #2d6a4f 100%);
  padding: 56px 0;
  overflow: hidden;
  position: relative;
}
.ph::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
.phi {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════
   FOOTER — BOTH naming conventions
   home.html uses long names; all others use short names
   ══════════════════════════════════ */

/* Footer CTA band */
/* home.html: .footer-cta-band  |  others: .fcb */
.footer-cta-band,
.fcb {
  background: #e67817;
  padding: 28px 0;
}
/* home.html: .footer-cta-inner  |  others: .fcbi */
.footer-cta-inner,
.fcbi {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-cta-inner h3,
.fcbi h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}
.footer-cta-inner p,
.fcbi p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}
/* home.html: .footer-cta-btns  |  others: .fcbb */
.footer-cta-btns,
.fcbb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Footer body */
/* home.html: .site-footer  |  others: .sf */
.site-footer,
.sf {
  background: #1a3d2b;
  color: #fff;
}
/* home.html: .footer-main  |  others: .fm */
.footer-main,
.fm {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 32px;
}
/* home.html: .footer-col-title  |  others: .fct */
.footer-col-title,
.fct {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* home.html: .footer-link  |  others: .fl */
.footer-link,
.fl {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-link:hover,
.fl:hover {
  color: #fff;
}
/* home.html: .footer-desc  |  others: .fdesc */
.footer-desc,
.fdesc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 18px;
}
/* home.html: .footer-logo-wrap */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-mark {
  width: 60px;
  height: 60px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.footer-logo-name {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.footer-logo-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}
/* home.html: .footer-socials / .footer-soc */
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-soc {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.footer-soc:hover {
  background: rgba(255, 255, 255, 0.2);
}
/* home.html: .footer-contact-item */
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
/* home.html: .footer-inp / .btn-callback */
.footer-inp {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 9px 12px;
  color: #fff;
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 8px;
  outline: none;
}
.footer-inp::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.btn-callback {
  width: 100%;
  background: #52b788;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}
/* home.html: .footer-accred-bar / .footer-accred-inner / .accred-badges / .accred-badge */
.footer-accred-bar {
  background: #153324;
  max-width: 100%;
}
.footer-accred-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.accred-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.accred-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-dev {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-dev a {
  color: #52b788;
  text-decoration: none;
}
/* home.html: .footer-bottom-bar / .footer-copy / .footer-legal */
.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}
/* other pages: .fcp (footer copyright bar) */
.fcp {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.fcp a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.fcp a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════
   MOBILE STICKY CTA
   home.html: .mob-sticky  |  others: .mst
   ══════════════════════════════════ */
.mob-sticky,
.mst {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e4e0d8;
  padding: 10px 16px;
  gap: 8px;
  z-index: 300;
}
.mob-sticky .btn,
.mst .btn {
  flex: 1;
  justify-content: center;
}

/* ══════════════════════════════════
   RESPONSIVE — common nav breakpoints
   ══════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links,
  .nl,
  .nav-ctas,
  .nc {
    display: none;
  }
  .hamburger,
  .hb {
    display: flex;
  }
  .announce-inner,
  .ab-in {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 40px 0;
  }
  .container {
    padding: 0 16px;
  }
  .footer-main,
  .fm {
    grid-template-columns: 1fr;
    padding: 32px 16px 16px;
  }
  .footer-cta-inner,
  .fcbi {
    flex-direction: column;
  }
  .mob-sticky,
  .mst {
    display: flex;
  }
}
