/* Allentown Junk Pros - Custom Styles */

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

/* Hero gradient overlay */
.hero-gradient {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 50%, #1e3a5f 100%);
}

/* Hero pattern overlay */
.hero-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Animate CTA pulse */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.cta-pulse {
  position: relative;
}

.cta-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  background: #f97316;
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}

/* Star rating */
.stars {
  color: #fbbf24;
  letter-spacing: 2px;
}

/* FAQ accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 0.75rem;
  padding-bottom: 1rem;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  transition: transform 0.3s ease;
}

/* Form focus styles */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #1e3a5f;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}

/* Card hover effects */
.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

/* Smooth page transitions */
main {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Badge style */
.trust-badge {
  background: linear-gradient(135deg, #059669, #047857);
}

/* Mobile bottom CTA spacing */
@media (max-width: 1023px) {
  footer { padding-bottom: 80px; }
}

/* Blog content styling */
.blog-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #4b5563;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.625;
  color: #4b5563;
}

.blog-content ul li { list-style-type: disc; }
.blog-content ol li { list-style-type: decimal; }

.blog-content strong {
  color: #1f2937;
}

.blog-content a {
  color: #1e3a5f;
  text-decoration: underline;
}

.blog-content a:hover {
  color: #f97316;
}

/* Process step connector */
.step-connector {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  width: 2px;
  height: calc(100% + 2rem);
  background: #e5e7eb;
}
