  /* Custom styles for D & S Enterprises */

  html {
    scroll-behavior: smooth;
  }

  body {
    background-color: #0a1628;
  }

  /* Navbar scroll effect */
  #navbar.scrolled {
    background-color: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  /* Nav links */
  .nav-link {
    position: relative;
  }

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

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

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

  #mobile-menu.closed {
    opacity: 0;
    pointer-events: none;
  }

  .menu-line {
    transition: all 0.3s ease;
  }

  .menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
  }

  .menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-link {
    transition: all 0.3s ease;
  }

  /* Service cards */
  .service-card {
    transition: all 0.4s ease;
    transform: translateY(0);
  }

  .service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

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

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

  /* Stagger children */
  .stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
  .stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
  .stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
  .stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
  .stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }
  .stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }

  /* Gold gradient text option */
  .text-gold-gradient {
    background: linear-gradient(135deg, #d4af57, #c9a84c, #b8943f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Input autofill override */
  input:-webkit-autofill,
  textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #0a1628 inset !important;
    -webkit-text-fill-color: #fff !important;
  }

  /* Map filter for dark theme */
  iframe[title*="location"] {
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
  }

  /* Selection color */
  ::selection {
    background-color: rgba(201, 168, 76, 0.3);
    color: #fff;
  }
