/* Pross Construction - Custom Styles */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Mobile menu toggle */
#mobile-menu { display: none; }
#mobile-menu.active { display: block; }

/* Hero overlay */
.hero-overlay {
  background: linear-gradient(135deg, rgba(37,59,170,0.85) 0%, rgba(42,68,192,0.7) 100%);
}

/* Service card hover */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Nav dropdown */
.nav-dropdown { display: none; }
.nav-parent:hover .nav-dropdown { display: block; }

/* Active nav link */
.nav-active { border-bottom: 2px solid #2a44c0; }

/* Form focus styles */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #2a44c0;
  box-shadow: 0 0 0 3px rgba(42,68,192,0.15);
}
