  *, *::before, *::after {
    box-sizing: border-box;
  }

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

  body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Animated blobs for hero */
  .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
  }

  .blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 171, 74, 0.6), transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
  }

  .blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 217, 171, 0.5), transparent 70%);
    bottom: 10%;
    left: -50px;
    animation-delay: -3s;
  }

  .blob-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 148, 32, 0.4), transparent 70%);
    top: 40%;
    right: 15%;
    animation-delay: -5s;
  }

  /* Animated blobs for why-us section */
  .why-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 10s ease-in-out infinite;
  }

  .why-blob.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 171, 74, 0.8), transparent 70%);
    top: -150px;
    left: -150px;
    animation-delay: -2s;
  }

  .why-blob.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 217, 171, 0.6), transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -6s;
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
  }

  /* Scroll reveal — only for below-the-fold content */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal:nth-child(2) { transition-delay: 0.1s; }
    .reveal:nth-child(3) { transition-delay: 0.2s; }
    .reveal:nth-child(4) { transition-delay: 0.3s; }
    .reveal:nth-child(5) { transition-delay: 0.4s; }
    .reveal:nth-child(6) { transition-delay: 0.5s; }
  }

  /* Service card hover glow */
  .service-card:hover {
    box-shadow: 0 20px 60px -15px rgba(123, 45, 59, 0.12);
  }

  /* Navbar scroll state */
  nav.scrolled {
    background: rgba(123, 45, 59, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  }

  /* Mobile menu link active state */
  .mobile-link.active {
    background: rgba(123, 45, 59, 0.08);
    color: #7B2D3B;
  }

  /* Selection color */
  ::selection {
    background: rgba(123, 45, 59, 0.2);
    color: #3d141c;
  }

  /* Focus visible styles */
  a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid #f4919e;
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Smooth image loading */
  img {
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #fdf2f4;
  }

  ::-webkit-scrollbar-thumb {
    background: #f9c2ca;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #f4919e;
  }
