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

  html { scroll-behavior: smooth; }

  body {
    overflow-x: hidden;
  }

  /* Custom button styles */
  .btn-primary {
    background: linear-gradient(135deg, #5B2C6F 0%, #4a235a 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(91, 44, 111, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 44, 111, 0.4);
  }

  .btn-secondary {
    background: #fff;
    color: #5B2C6F;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(91, 44, 111, 0.12);
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .btn-secondary:hover {
    border-color: #5B2C6F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 44, 111, 0.15);
  }

  /* Navigation */
  #site-header {
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  }

  #site-header.scrolled {
    background: rgba(250, 245, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(91, 44, 111, 0.08);
  }

  .nav-link {
    position: relative;
  }

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

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

  /* 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 #f3e8ff;
  }

  .mobile-link:last-child {
    border-bottom: none;
  }

  /* Floating stat cards */
  .card-float-1 {
    animation: float1 4s ease-in-out infinite;
  }

  .card-float-2 {
    animation: float2 5s ease-in-out infinite;
    animation-delay: 1s;
  }

  .card-float-3 {
    animation: float3 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
  }

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

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

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

  /* Service cards */
  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-6px);
  }

  /* Listing cards */
  .listing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .listing-card:hover {
    transform: translateY(-4px);
  }

  /* Testimonial cards */
  .testimonial-card {
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
  }

  /* Scroll animations */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

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

  /* Selection color */
  ::selection {
    background: #fde68a;
    color: #3b1d48;
  }

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

    #hero {
      min-height: auto;
      padding-top: 6rem;
      padding-bottom: 4rem;
    }

    .section-padding {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .font-display {
      font-size: 3.5rem;
    }
  }
