/* =================================================================
   LOTUS SHADES — marketing.css
   File location: lotusshades.com/css/marketing.css
   =================================================================
   Light-theme stylesheet for public marketing pages:
   - index.html (homepage hub)
   - uv-flatbed.html, uv-dtf-stickers.html, ecosolvent.html,
     hazchem-labels.html, iso-tank-graphics.html,
     custom-stickers-labels.html, signage-displays.html,
     promotional-corporate.html

   NOT used by: account/*.php, backend/admin/*.php (dark theme,
   self-contained inline styles)
   ================================================================= */

:root {
  --navy: #2D1B8A;
  --navy-deep: #1c1157;
  --orange: #E87722;
  --orange-light: #FFF1E4;
  --ink: #1A1A24;
  --paper: #FBFAFC;
  --line: #E9E5F2;
  --muted: #6b6480;
  --glass: linear-gradient(135deg, rgba(232,119,34,0.14), rgba(45,27,138,0.10));
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  padding-bottom: 74px;
}
@media (min-width: 840px) { body { padding-bottom: 0; } }

h1, h2, h3, .display { font-family: 'Poppins', sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,252,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; }
.nav img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--navy-deep); }
.nav-links a:hover { color: var(--orange); }
.nav a.cta {
  background: var(--orange); color: #fff; padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
}
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--navy-deep); display: block; }
@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Hero (used by homepage hub) ── */
.hero {
  background: radial-gradient(1200px 500px at 80% -10%, rgba(232,119,34,0.16), transparent),
              radial-gradient(900px 400px at -10% 10%, rgba(45,27,138,0.14), transparent);
  padding: 64px 0 48px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-light); color: var(--orange);
  font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px,5vw,52px); font-weight: 800; color: var(--navy-deep); line-height: 1.08;
  max-width: 820px;
}
.hero h1 span { color: var(--orange); }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 600px; margin-top: 18px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn-primary {
  background: var(--orange); color: #fff; padding: 15px 26px; border-radius: 10px;
  font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 10px 24px rgba(232,119,34,0.28);
}
.btn-ghost {
  border: 1.5px solid var(--navy); color: var(--navy); padding: 14px 26px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
}
.hero-strip {
  margin-top: 44px; display: flex; gap: 0; border-top: 1px solid var(--line); padding-top: 24px;
  flex-wrap: wrap;
}
.hero-strip .stat { flex: 1; min-width: 140px; }
.hero-strip .stat b { font-family: 'Poppins'; font-size: 22px; color: var(--navy-deep); display: block; }
.hero-strip .stat span { font-size: 13px; color: var(--muted); }

/* ── Service grid (homepage hub) ── */
.services-hub h2 { font-size: 32px; color: var(--navy-deep); }
.services-hub .sub { color: var(--muted); max-width: 560px; margin-top: 8px; margin-bottom: 36px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.service-tile {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(45,27,138,0.10); }
.service-tile .icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--glass);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.service-tile h3 { font-family: 'Poppins'; font-size: 17px; color: var(--navy-deep); margin-bottom: 8px; }
.service-tile p { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.service-tile .link { color: var(--orange); font-weight: 700; font-size: 13.5px; }

/* ── Surfaces / info strip ── */
.info-strip { background: var(--navy-deep); color: #fff; padding: 36px 0; }
.info-strip .wrap { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between; }
.info-strip h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: #B9AEF0; font-weight: 600; }
.pill-list { display: flex; gap: 22px; flex-wrap: wrap; font-weight: 600; font-size: 15px; }
.pill-list span::before { content: "✦ "; color: var(--orange); }

/* ── Price table ── */
.price-section h2 { font-size: 32px; color: var(--navy-deep); }
.price-section .sub { color: var(--muted); max-width: 560px; margin-top: 8px; margin-bottom: 36px; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 18px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px;
  position: relative; transition: transform .15s ease, box-shadow .15s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(45,27,138,0.10); }
.price-card.popular { border: 2px solid var(--orange); }
.price-card .tag {
  position: absolute; top: -12px; right: 20px; background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: .03em;
}
.price-card h4 { font-family: 'Poppins'; font-size: 17px; color: var(--navy-deep); }
.price-card .amt { font-family: 'Poppins'; font-size: 30px; font-weight: 800; color: var(--orange); margin: 10px 0 2px; }
.price-card .amt small { font-size: 13px; color: #8b849f; font-weight: 500; }
.price-card ul { list-style: none; margin-top: 14px; font-size: 13.5px; color: #544f68; }
.price-card li { padding: 4px 0; }
.price-card li::before { content: "✓ "; color: var(--navy); font-weight: 700; }
.price-note { margin-top: 22px; font-size: 13.5px; color: #8b849f; background: #F4F2FA; padding: 14px 18px; border-radius: 10px; }

/* ── How it works ── */
.steps { background: #fff; }
.steps h2 { font-size: 32px; color: var(--navy-deep); margin-bottom: 36px; }
.step-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.step-num {
  width: 40px; height: 40px; border-radius: 10px; background: var(--glass);
  display: flex; align-items: center; justify-content: center; font-family: 'Poppins'; font-weight: 800;
  color: var(--navy-deep); margin-bottom: 14px;
}
.step-card h4 { font-family: 'Poppins'; font-size: 16px; margin-bottom: 6px; }
.step-card p { font-size: 14px; color: var(--muted); }

/* ── Gallery ── */
.gallery h2 { font-size: 32px; color: var(--navy-deep); }
.gallery .sub { color: var(--muted); max-width: 560px; margin-top: 8px; margin-bottom: 32px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 14px; }
.g-tile {
  aspect-ratio: 1/1; border-radius: 14px; background: var(--glass);
  border: 1.5px dashed #C9BEE8; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px; text-align: center; padding: 16px; color: #7a7495; font-size: 12.5px;
}
.g-tile b { color: var(--navy-deep); font-size: 13.5px; }
.g-tile.g-tile-photo {
  border: none;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.g-tile.g-tile-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── FAQ ── */
.faq { background: #fff; }
.faq h2 { font-size: 32px; color: var(--navy-deep); margin-bottom: 28px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 15.5px; color: var(--navy-deep);
}
.faq-q .plus { font-size: 20px; color: var(--orange); transition: transform .2s ease; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; font-size: 14.5px; color: #5a5470; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── CTA band ── */
.cta-band { background: linear-gradient(120deg, var(--navy-deep), var(--navy)); color: #fff; text-align: center; padding: 64px 0; }
.cta-band h2 { font-size: 30px; }
.cta-band p { color: #C9BEE8; margin-top: 10px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { margin-top: 26px; }

/* ── Sticky mobile bar ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: #fff; border-top: 1px solid var(--line); padding: 12px 16px;
  display: flex; gap: 10px; box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
}
.sticky-cta a { flex: 1; text-align: center; padding: 13px; border-radius: 10px; font-weight: 700; font-size: 14px; }
.sticky-cta .wa { background: #25D366; color: #fff; }
.sticky-cta .call { border: 1.5px solid var(--navy); color: var(--navy); }
@media (min-width: 840px) { .sticky-cta { display: none; } }

/* ── Mini home link (shown since uv-dtf-stickers.html has no nav) ── */
.mini-home-link {
  display: inline-block;
  margin: 16px 24px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.mini-home-link:hover { color: var(--orange); }

/* ── Footer ── */
.site-footer-light { text-align: center; padding: 28px 0; font-size: 13px; color: #9a93ad; }
.site-footer-light a { color: var(--navy); font-weight: 600; }

/* =================================================================
   DARK FOOTER (matches the dark homepage footer, used on light pages)
   Scoped under .dark-footer so it never inherits/clashes with the
   --navy/--orange variables defined above for the light theme.
   ================================================================= */
.dark-footer {
  background: #0B0B14;
  border-top: 1px solid #2A2A45;
  padding: 3rem 5% 2rem;
  color: #F5F5F0;
}
.dark-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1120px;
  margin: 0 auto 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #2A2A45;
}
.dark-footer .footer-logo-chip {
  display: inline-block;
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: transform .15s ease;
}
.dark-footer .footer-logo-chip:hover { transform: scale(1.03); }
.dark-footer .footer-logo-chip img { height: 90px; width: auto; display: block; }
.dark-footer .footer-tagline { font-size: 0.83rem; color: #8888AA; max-width: 260px; line-height: 1.6; margin-bottom: 1rem; }
.dark-footer .footer-social { display: flex; gap: 0.5rem; }
.dark-footer .social-btn {
  width: 34px; height: 34px; border-radius: 4px; border: 1px solid #2A2A45; background: #12121F;
  display: flex; align-items: center; justify-content: center; text-decoration: none; transition: border-color .2s;
}
.dark-footer .social-btn:hover { border-color: #E87722; }
.dark-footer .social-btn img { display: block; width: 18px; height: 18px; }
.dark-footer .footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #F5F5F0; margin-bottom: 1rem; }
.dark-footer .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.dark-footer .footer-col ul a { color: #8888AA; text-decoration: none; font-size: 0.83rem; transition: color .2s; }
.dark-footer .footer-col ul a:hover { color: #E87722; }
.dark-footer .footer-bottom {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  font-size: 0.78rem; color: #555570;
}
.dark-footer .footer-bottom a { color: #E87722; text-decoration: none; }
.dark-footer .gst-badge { background: #12121F; border: 1px solid #2A2A45; border-radius: 4px; padding: 0.3rem 0.8rem; font-size: 0.72rem; color: #8888AA; }
@media (max-width: 700px) {
  .dark-footer .footer-top { grid-template-columns: 1fr; }
  .dark-footer .footer-bottom { flex-direction: column; text-align: center; }
}

/* =================================================================
   LEGAL / CONTENT PAGES (About, Terms, Returns, Shipping, Disclaimer)
   ================================================================= */
.page-hero-light {
  padding: 48px 0 36px;
  background: linear-gradient(180deg, var(--orange-light), transparent);
}
.page-hero-light .eyebrow { margin-bottom: 10px; }
.page-hero-light h1 { font-size: clamp(28px,4vw,40px); font-weight: 800; color: var(--navy-deep); }
.page-updated-light { font-size: 13px; color: #9a93ad; margin-top: 10px; }

.content-article-light {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  line-height: 1.75;
}
.content-article-light h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  margin: 34px 0 12px;
}
.content-article-light h2:first-child { margin-top: 0; }
.content-article-light p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.content-article-light strong { color: var(--navy-deep); }
.content-article-light ul { color: var(--muted); font-size: 15px; margin: 0 0 14px 20px; }
.content-article-light li { margin-bottom: 6px; }
.content-article-light a { color: var(--orange); text-decoration: none; }
.content-article-light a:hover { text-decoration: underline; }

.legal-nav-light {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px;
}
.legal-nav-light a {
  font-size: 13px; padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); text-decoration: none; transition: all .15s ease;
}
.legal-nav-light a:hover, .legal-nav-light a.active {
  border-color: var(--orange); color: var(--orange); background: var(--orange-light);
}

.contact-block-light {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; margin-top: 20px; font-size: 14px; color: var(--muted);
}
.contact-block-light strong { color: var(--navy-deep); display: block; margin-bottom: 8px; }
