/* Custom styles for Valley Wide Demo */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
}

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

/* Custom button hover effects */
.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact form styling */
#contactForm input:focus,
#contactForm textarea:focus,
#contactForm select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Hero section background pattern */
.hero-bg {
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Service cards hover effect */
.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive image galleries */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item:hover {
  transform: scale(1.02);
  transition: all 0.3s ease;
}

/* Phone number styling */
.phone-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}

.phone-link:hover {
  color: #1e40af;
}

/* Loading animation for form submission */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.25rem !important;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}