/* ============================================
   ExcisePro – Global Styles
   ============================================ */

:root {
  --forest:      #0e2a1a;
  --forest-mid:  #183d28;
  --amber:       #c47d2a;
  --amber-light: #d9963e;
  --cream:       #f4efe6;
  --white:       #ffffff;
  --text-dark:   #1a2e1f;
  --text-muted:  #688a6e;
  --light-green: #e8f0ea;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; background: rgba(14,42,26,0.97); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 70px; border-bottom: 1px solid rgba(196,125,42,0.25); }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); text-decoration: none; }
.logo span { color: var(--amber); }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
nav ul a:hover { color: var(--amber); }
.nav-cta { background: var(--amber) !important; color: var(--white) !important; padding: 0.5rem 1.2rem; border-radius: 4px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--amber-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* BUTTONS */
.btn-primary { background: var(--amber); color: var(--white); padding: 0.85rem 2rem; border-radius: 5px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,125,42,0.35); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 0.85rem 2rem; border-radius: 5px; font-weight: 500; font-size: 0.95rem; text-decoration: none; transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

/* SECTIONS */
section { padding: 6rem 5%; }
.section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--text-dark); line-height: 1.2; margin-bottom: 1rem; }
.section-title.white { color: var(--white); }
.section-sub { color: #4a6b52; font-size: 1rem; line-height: 1.7; max-width: 520px; font-weight: 300; }
.section-sub.white { color: rgba(255,255,255,0.65); }

/* TRUST BAR */
.trust-bar { background: var(--amber); padding: 1rem 5%; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: var(--white); font-weight: 600; font-size: 0.88rem; }

/* PAGE HEADER */
.page-header { background: var(--forest); padding: 120px 5% 60px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(196,125,42,0.08), transparent 65%); }
.page-header > * { position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: var(--amber); text-decoration: none; }

/* FOOTER */
footer { background: #060f08; padding: 3rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { display: block; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; }
.footer-col h5 { color: var(--white); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a, .footer-col ul span { color: rgba(255,255,255,0.45); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.8rem; text-decoration: none; }
.footer-legal a:hover { color: var(--amber); }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 5rem; right: 2rem; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.4); z-index: 998; text-decoration: none; transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* MOBILE CTA BAR */
.mobile-cta-bar { display: none; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.7s ease both; }

/* FAQ */
.faq-item { background: var(--white); border: 1px solid rgba(14,42,26,0.08); border-radius: 12px; margin-bottom: 0.75rem; overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; padding: 1.4rem 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; text-align: left; font-family: 'DM Sans', sans-serif; font-size: 0.97rem; font-weight: 600; color: var(--text-dark); transition: background 0.2s; }
.faq-q:hover { background: rgba(196,125,42,0.05); }
.faq-icon { width: 28px; height: 28px; flex-shrink: 0; background: rgba(196,125,42,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--amber); font-size: 1.1rem; font-weight: 700; transition: transform 0.3s, background 0.2s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--amber); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-a-inner { padding: 0 1.75rem 1.4rem; color: #4a6b52; font-size: 0.92rem; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; }

/* RESPONSIVE */
@media (max-width: 1024px) { section { padding: 5rem 5%; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  section { padding: 3.5rem 5%; }
  .page-header { padding: 90px 5% 40px; }
  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--forest); padding: 1.5rem 5%; border-bottom: 1px solid rgba(196,125,42,0.2); gap: 1.2rem; z-index: 998; }
  .hamburger { display: flex; }
  .trust-bar { gap: 1rem; padding: 0.85rem 5%; }
  .trust-item { font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .mobile-cta-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 997; background: var(--forest); border-top: 1px solid rgba(196,125,42,0.25); box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
  .mobile-cta-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.9rem 0.5rem; text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: background 0.2s; }
  .mobile-cta-bar .bar-call { color: var(--white); border-right: 1px solid rgba(255,255,255,0.1); }
  .mobile-cta-bar .bar-wa { background: #25d366; color: #fff; }
  body { padding-bottom: 56px; }
  .whatsapp-float { display: none; }
  .faq-q { font-size: 0.9rem; padding: 1.2rem 1.25rem; }
  .faq-a-inner { padding: 0 1.25rem 1.2rem; }
}
@media (max-width: 480px) {
  section { padding: 3rem 5%; }
  .page-header { padding: 80px 5% 35px; }
}
