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

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

  /* ── Navbar ── */
  #navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  }
  #navbar.scrolled {
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  }
  #navbar.scrolled .nav-link { color: #064e3b !important; }
  #navbar.scrolled .btn-primary { background: #059669 !important; }

  /* ── Buttons ── */
  .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, #34d399, #10b981);
  }
  .btn-secondary {
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .btn-secondary:hover { transform: translateY(-2px); }

  /* ── Badges ── */
  .badge-emerald {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
  }
  .badge-cream {
    display: inline-block;
    background: rgba(253, 249, 238, 0.15);
    color: #fde68a;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(253, 249, 238, 0.2);
  }

  /* ── Service Cards ── */
  .service-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.08);
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.12);
    border-color: rgba(16, 185, 129, 0.2);
  }

  /* ── Feature Cards ── */
  .feature-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.1);
  }

  /* ── Gallery Items ── */
  .gallery-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
  }
  .gallery-item:hover { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); }

  /* ── Scroll Indicator ── */
  .scroll-indicator {
    animation: bounce 2s infinite;
    opacity: 0.6;
  }
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
  }

  /* ── Mobile Menu ── */
  #mobile-menu {
    animation: slideDown 0.3s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .mobile-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
    text-decoration: none;
  }
  .mobile-link:last-child { border-bottom: none; }

  /* ── Form Styling ── */
  input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
  }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .font-display { font-size: 2.2rem; }
  }
