:root {
  --bg: #fffdf8;
  --text: #1d2a2a;
  --muted: #5d6668;
  --brand: #06743f;
  --brand-dark: #044f2b;
  --accent: #dd5b0b;
  --lotus-pink: #d62a8a;
  --lotus-gold: #f3b203;
  --sky: #27a7df;
  --card: #ffffff;
  --border: #ebdfd4;
  --glow: 0 12px 30px rgba(6, 116, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, sans-serif;
  background: radial-gradient(circle at 10% 10%, #fff7e8 1%, transparent 30%), radial-gradient(circle at 90% 25%, #ffe9f6 1%, transparent 28%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  filter: blur(70px);
}

.orb-one {
  width: 240px;
  height: 240px;
  background: rgba(243, 178, 3, 0.26);
  top: 10%;
  left: -70px;
}

.orb-two {
  width: 300px;
  height: 300px;
  background: rgba(214, 42, 138, 0.2);
  top: 40%;
  right: -90px;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
}

.brand {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.25rem;
}

.brand-logo {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 20px rgba(6, 116, 63, 0.2);
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 0.3rem 0.45rem;
  border-radius: 8px;
}

.nav a:hover {
  color: var(--brand-dark);
  background: rgba(6, 116, 63, 0.09);
}

.nav a.active {
  color: var(--brand-dark);
  background: rgba(243, 178, 3, 0.18);
}

.whatsapp-nav-link {
  color: #fff !important;
  background: linear-gradient(120deg, #25d366, #0f9f45);
}

.wa-dot {
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.25;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.cta-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.btn-primary {
  background: linear-gradient(110deg, var(--brand), #0f9251);
  color: #fff;
  border: 0;
}

.btn-primary:hover {
  background: linear-gradient(110deg, var(--brand-dark), var(--brand));
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--card);
}

.stats-card,
.tab-panel,
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--glow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.num {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: var(--accent);
}

.section {
  padding: 3.2rem 0;
}

.section.alt {
  background: linear-gradient(180deg, #fffaf2 0%, #f6fff9 100%);
}

.section-intro {
  color: var(--muted);
  margin-bottom: 1rem;
}

.tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tab-btn {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(120deg, var(--lotus-pink), var(--accent));
  color: #fff;
  border-color: transparent;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chips span {
  background: #fff;
  border: 1px solid #f1ddd0;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
}

.accordion {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
}

.accordion-btn {
  width: 100%;
  text-align: left;
  border: 0;
  background: linear-gradient(90deg, #ffffff, #fff8ef);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.accordion-content {
  display: none;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid var(--border);
}

.accordion-content.open {
  display: block;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.highlights {
  padding-top: 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.highlight-card {
  background: linear-gradient(155deg, #ffffff, #fff6ec);
  border: 1px solid #f2decb;
  border-radius: 16px;
  padding: 1.05rem;
  box-shadow: 0 10px 26px rgba(221, 91, 11, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(221, 91, 11, 0.16);
}

.contact-points p {
  margin: 0.35rem 0;
}

.hint-text {
  color: var(--muted);
  font-size: 0.85rem;
  margin-left: 0.25rem;
}

.form-note {
  font-size: 0.92rem;
  margin-top: 0;
  color: var(--muted);
}

.field {
  margin-bottom: 0.8rem;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--brand-dark);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #e8d9ca;
  background: #fffefb;
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  outline: 2px solid rgba(6, 116, 63, 0.15);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.submit-btn {
  width: 100%;
}

.form-status {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  min-height: 1.3rem;
}

.form-status.success {
  color: var(--brand);
}

.form-status.error {
  color: #b33030;
}

.image-placeholder {
  border: 2px dashed #dfc2a9;
  border-radius: 14px;
  min-height: 170px;
  background: repeating-linear-gradient(
    45deg,
    #fff7ef,
    #fff7ef 12px,
    #fff2e4 12px,
    #fff2e4 24px
  );
  color: #9a6b45;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 600;
  padding: 0.8rem;
  margin: 0.8rem 0 1rem;
}

.hero-placeholder {
  min-height: 140px;
}

.section-placeholder {
  min-height: 220px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(120deg, #25d366, #0f9f45);
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 159, 69, 0.35);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.wa-icon {
  margin-right: 0.2rem;
}

.chatbot-toggle {
  position: fixed;
  right: 18px;
  bottom: 74px;
  z-index: 25;
  border: 0;
  border-radius: 999px;
  padding: 0.68rem 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(120deg, #4f46e5, #7c3aed);
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.3);
}

.chatbot-card {
  position: fixed;
  right: 18px;
  bottom: 130px;
  width: min(340px, 92vw);
  height: 420px;
  display: none;
  flex-direction: column;
  z-index: 30;
  border: 1px solid #d8d6ff;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(30, 30, 60, 0.2);
}

.chatbot-card.open {
  display: flex;
}

.chatbot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(120deg, #f5f3ff, #eef6ff);
  border-bottom: 1px solid #e4e0ff;
}

.chatbot-head h3 {
  margin: 0;
  font-size: 1rem;
}

.chatbot-head button {
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.8rem;
  background: #fafcff;
}

.msg {
  max-width: 86%;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

.msg.bot {
  background: #eef2ff;
  color: #253269;
}

.msg.user {
  margin-left: auto;
  background: #dcfce7;
  color: #105531;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid #ecebff;
}

.chatbot-form input {
  margin: 0;
}

.chatbot-form button {
  border: 0;
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  color: #fff;
  background: linear-gradient(120deg, #4f46e5, #7c3aed);
  cursor: pointer;
}

@media (max-width: 860px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.7rem 4%;
  }

  .nav.open {
    display: flex;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 0.64rem 0.9rem;
  }

  .chatbot-toggle {
    right: 12px;
    bottom: 66px;
    padding: 0.62rem 0.85rem;
  }

  .chatbot-card {
    right: 12px;
    bottom: 118px;
    height: 390px;
  }
}
