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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    overflow-x: hidden;
  }

  /* Section spacing */
  .section {
    padding: 80px 0;
  }

  @media (max-width: 640px) {
    .section {
      padding: 60px 0;
    }
  }

  /* Navigation */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
  }

  #navbar.nav-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #059669;
    border-radius: 1px;
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Mobile menu */
  #mobileMenu.show {
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Hero section */
  .hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, #fefdf8 0%, #ecfdf5 50%, #d1fae5 100%);
    overflow: hidden;
  }

  /* Floating stat cards */
  .floating-card {
    position: absolute;
    z-index: 10;
  }

  .card-1 {
    top: 10%;
    left: -20px;
    animation: float1 4s ease-in-out infinite;
  }

  .card-2 {
    bottom: 25%;
    right: -15px;
    animation: float2 5s ease-in-out infinite;
  }

  .card-3 {
    bottom: 5%;
    left: 10%;
    animation: float3 4.5s ease-in-out infinite;
  }

  @keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
  }

  @keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(1deg); }
    50% { transform: translateY(-16px) rotate(-1deg); }
  }

  @keyframes float3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  /* Buttons */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #059669;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
  }

  .btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #059669;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #059669;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-secondary:hover {
    background: #ecfdf5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.15);
  }

  /* Badge */
  .badge-emerald {
    display: inline-block;
    background: #d1fae5;
    color: #047857;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* Service cards */
  .service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .service-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Review cards */
  .review-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .review-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Contact info cards */
  .contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 20px;
    border: 1px solid #f5e6c8;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .contact-info-card:hover {
    border-color: #a7f3d0;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.1);
    transform: translateX(4px);
  }

  /* Input fields */
  .input-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #f5e6c8;
    border-radius: 14px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: #374151;
    background: #fefdf8;
    transition: all 0.3s ease;
    outline: none;
  }

  .input-field:focus {
    border-color: #059669;
    background: white;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
  }

  .input-field::placeholder {
    color: #9ca3af;
  }

  /* Scroll animations */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Decorative background shapes */
  .hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 243, 208, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(217, 240, 229, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .card-1 {
      left: 0;
    }
    .card-2 {
      right: 0;
    }
  }

  @media (max-width: 640px) {
    .floating-card {
      display: none;
    }

    .hero-section {
      padding-top: 80px;
    }

    h1 {
      font-size: 2.25rem !important;
    }
  }
