  /* Base Styles */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    overflow-x: hidden;
  }

  /* Selection */
  ::selection {
    background-color: #c94e2c;
    color: white;
  }

  /* Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #FDF8F0;
  }
  ::-webkit-scrollbar-thumb {
    background: #d4b878;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #c94e2c;
  }

  /* Hero Animation */
  .hero-label {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.2s;
  }

  .hero-label h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.4s;
  }

  .hero p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.6s;
  }

  .hero .flex-wrap {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.8s;
  }

  .hero .mt-12 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 1s;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Service Cards */
  .service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  }

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

  /* Navbar */
  #navbar {
    background: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
  }

  #navbar.scrolled {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(61, 43, 31, 0.08);
  }

  /* Mobile Menu */
  .menu-line {
    transition: all 0.3s ease;
  }

  #menuBtn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #menuBtn.active .menu-line:nth-child(2) {
    opacity: 0;
  }
  #menuBtn.active .menu-line:nth-child(3) {
    width: 24px;
    margin-left: 0;
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .mobile-link {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* Testimonial Cards */
  #testimonials .bg-cream {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  }

  #testimonials .bg-cream.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Smooth image loading */
  img {
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  img.loaded {
    opacity: 1;
  }

  /* Focus styles */
  input:focus, select:focus, textarea:focus {
    outline: none;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .font-serif {
      line-height: 1.15;
    }
  }
