/* Shaw Plumbing - Custom Styles */

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

/* Hero overlay */
.hero-overlay {
  background: linear-gradient(135deg, rgba(30,58,95,0.85) 0%, rgba(15,23,42,0.7) 100%);
}

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

/* Blog card image zoom */
.blog-card img {
  transition: transform 0.3s ease;
}
.blog-card:hover img {
  transform: scale(1.05);
}

/* Mobile phone bar (sticky bottom on mobile) */
@media (max-width: 767px) {
  .mobile-phone-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #2563eb;
    padding: 12px 16px;
    text-align: center;
  }
  body { padding-bottom: 56px; }
}

/* Form focus styles */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
