  /* Custom styles and animations */

  html {
    scroll-behavior: smooth;
  }

  body {
    overflow-x: hidden;
  }

  /* Selection color */
  ::selection {
    background-color: rgba(212, 168, 83, 0.3);
    color: #faf9f6;
  }

  /* Scrollbar styling */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #0a0f0c;
  }
  ::-webkit-scrollbar-thumb {
    background: #065f46;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #047857;
  }

  /* Navbar scroll effect */
  #navbar.scrolled {
    background: rgba(10, 15, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  /* Service card shimmer effect */
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.03), transparent);
    transition: left 0.7s ease;
    z-index: 0;
  }
  .service-card:hover::before {
    left: 100%;
  }

  /* Gold glow animation for hero */
  @keyframes goldPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  .animate-gold-pulse {
    animation: goldPulse 3s ease-in-out infinite;
  }

  /* Fade-in animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation delays */
  .stagger-1 { transition-delay: 0.1s; }
  .stagger-2 { transition-delay: 0.2s; }
  .stagger-3 { transition-delay: 0.3s; }
  .stagger-4 { transition-delay: 0.4s; }
  .stagger-5 { transition-delay: 0.5s; }
  .stagger-6 { transition-delay: 0.6s; }

  /* Mobile menu transitions */
  #mobileMenu.open {
    opacity: 1;
    pointer-events: all;
  }

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

  /* Image hover zoom */
  .img-zoom {
    transition: transform 0.6s ease;
  }
  .img-zoom:hover {
    transform: scale(1.03);
  }

  /* Gradient text fallback */
  .text-gradient-gold {
    background: linear-gradient(135deg, #d4a853, #c9952e, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

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

  /* Print styles */
  @media print {
    nav, #backToTop, button { display: none; }
    body { background: white; color: black; }
  }
