/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { -webkit-font-smoothing: antialiased; }

/* ── Navbar ── */
#navbar { background: transparent; }
#navbar.scrolled {
  background: rgba(250, 255, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(27, 67, 50, 0.08);
}

/* ── Mobile Menu ── */
#mobile-menu.open { opacity: 1; pointer-events: all; }
#mobile-menu.closed { opacity: 0; pointer-events: none; }
.bar.active:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.bar.active:nth-child(2) { opacity: 0; }
.bar.active:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.mobile-link:hover { color: #FF6B6B !important; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  background: #1B4332; color: #FAFFF5;
  border-radius: 60px; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.3);
  transition: all 0.3s ease;
}
.btn-primary:hover { background: #2D6A4F; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(27, 67, 50, 0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent; color: #1B4332;
  border-radius: 60px; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 2px solid rgba(27, 67, 50, 0.3);
  transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: #1B4332; background: rgba(27, 67, 50, 0.05); transform: translateY(-2px); }
.btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  background: #FF6B6B; color: #FAFFF5;
  border-radius: 60px; font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}
.btn-cta:hover { background: #e85555; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent; color: #FAFFF5;
  border-radius: 60px; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 2px solid rgba(250, 255, 245, 0.4);
  transition: all 0.3s ease;
}
.btn-cta-outline:hover { border-color: #FAFFF5; background: rgba(250, 255, 245, 0.1); transform: translateY(-2px); }

/* ── Inputs ── */
.input-field {
  width: 100%; padding: 0.875rem 1rem;
  background: #FAFFF5; border: 2px solid rgba(27, 67, 50, 0.1);
  border-radius: 14px; font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  color: #1B4332; outline: none; transition: all 0.3s ease;
}
.input-field::placeholder { color: rgba(27, 67, 50, 0.4); }
.input-field:focus { border-color: #1B4332; box-shadow: 0 0 0 4px rgba(27, 67, 50, 0.08); }

/* ── Geometric Shapes ── */
.geo-shape { position: absolute; pointer-events: none; }
.shape-circle-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27, 67, 50, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px; right: -150px;
  animation: float 8s ease-in-out infinite;
}
.shape-circle-2 {
  width: 200px; height: 200px;
  background: rgba(255, 107, 107, 0.08);
  border-radius: 50%;
  bottom: 20%; left: 5%;
  animation: float 6s ease-in-out infinite reverse;
}
.shape-circle-3 {
  width: 300px; height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -50px; right: -80px;
  animation: float 10s ease-in-out infinite;
}
.shape-square-1 {
  width: 120px; height: 120px;
  background: rgba(27, 67, 50, 0.05);
  border-radius: 24px;
  top: 30%; right: 8%;
  transform: rotate(15deg);
  animation: spin-slow 20s linear infinite;
}
.shape-triangle-1 {
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid rgba(255, 107, 107, 0.06);
  top: 60%; left: 3%;
  animation: float 7s ease-in-out infinite;
}
.shape-ring-1 {
  width: 160px; height: 160px;
  border: 4px solid rgba(27, 67, 50, 0.08);
  border-radius: 50%;
  top: 15%; left: 15%;
  animation: spin-slow 15s linear infinite reverse;
}
.shape-dots-1 {
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(27, 67, 50, 0.15) 2px, transparent 2px);
  background-size: 16px 16px;
  top: 40%; right: 3%;
  animation: float 9s ease-in-out infinite;
}
.shape-dots-2 {
  width: 200px; height: 200px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
  background-size: 20px 20px;
  top: 10%; right: 5%;
  animation: float 11s ease-in-out infinite reverse;
}
.shape-dots-3 {
  width: 150px; height: 150px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 2px, transparent 2px);
  background-size: 18px 18px;
  bottom: 10%; left: 10%;
  animation: float 8s ease-in-out infinite;
}

/* ── Floating Cards ── */
.floating-card {
  background: #FAFFF5; border-radius: 20px; padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.12);
  border: 1px solid rgba(27, 67, 50, 0.06);
}
.card-1 { animation: float 5s ease-in-out infinite; }
.card-2 { animation: float 6s ease-in-out infinite 0.5s; }
.card-3 { animation: float 5.5s ease-in-out infinite 1s; }

.floating-badge {
  position: absolute; bottom: 2rem; left: -1rem;
  background: #FAFFF5; border-radius: 60px;
  padding: 0.6rem 1.2rem; box-shadow: 0 8px 32px rgba(27, 67, 50, 0.15);
  display: flex; align-items: center; gap: 0.5rem;
  animation: float 4s ease-in-out infinite;
}

/* ── Product Cards ── */
.product-card {
  background: #FAFFF5; border-radius: 28px; padding: 1.25rem;
  border: 1px solid rgba(27, 67, 50, 0.06);
  transition: all 0.4s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(27, 67, 50, 0.12); border-color: rgba(27, 67, 50, 0.12); }

/* ── Service Cards ── */
.service-card { transition: all 0.3s ease; }

/* ── Review Cards ── */
.review-card { transition: all 0.3s ease; }

/* ── Scroll Reveal ── */
.scroll-reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
@keyframes float-reverse {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-slow-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .floating-card { display: none; }
  .floating-badge { display: none; }
  .shape-circle-1 { width: 300px; height: 300px; }
  .shape-square-1 { display: none; }
  .shape-triangle-1 { display: none; }
  .shape-ring-1 { display: none; }
}
