/* ============================================================
   Cherry Hill Junk Removal - Animations & Extras
   ============================================================ */

/* Fade in up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Counter animation */
.counter { display: inline-block; }

/* Google Maps embed */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* Review badge */
.review-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.review-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
}
.review-badge .stars-sm { color: var(--accent); font-size: 0.75rem; }
.review-badge strong { font-size: 0.88rem; color: var(--secondary); }
.review-badge span { font-size: 0.78rem; color: var(--text-light); }

/* Ribbon tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tag-red { background: rgba(230,48,18,.1); color: var(--primary); }
.tag-green { background: rgba(34,197,94,.1); color: var(--success); }
.tag-blue { background: rgba(26,39,68,.08); color: var(--secondary); }
.tag-orange { background: rgba(245,166,35,.12); color: var(--accent-dark); }

/* List check items */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.check-list li i { color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* Image with overlay */
.img-overlay {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.img-overlay img { width: 100%; height: 100%; object-fit: cover; }
.img-overlay-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(230,48,18,.06) 0%, rgba(245,166,35,.06) 100%);
  border: 1.5px solid rgba(230,48,18,.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* Number list */
.number-list { display: flex; flex-direction: column; gap: 18px; }
.number-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.number-list-num {
  width: 34px; height: 34px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.number-list-text h4 { font-size: 0.98rem; margin-bottom: 4px; }
.number-list-text p { font-size: 0.86rem; margin: 0; }

/* Service area banner */
.area-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.area-banner h3 { color: var(--white); margin-bottom: 6px; font-size: 1.2rem; }
.area-banner p { color: rgba(255,255,255,.7); margin: 0; font-size: 0.9rem; }

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}
.form-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 14px;
  display: block;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { margin: 0; }

/* Tabs */
.tab-nav {
  display: flex;
  gap: 4px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(230,48,18,.3);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Responsive extras */
@media (max-width: 768px) {
  .map-embed iframe { height: 250px; }
  .area-banner { flex-direction: column; text-align: center; }
}
