/* =============================================
   ADDITIONAL ANIMATIONS & EFFECTS
   ============================================= */

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Red diagonal line accent */
.line-accent {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: var(--clr-red);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* Number counter animation */
.counter-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--clr-red);
  line-height: 1;
}

/* Red gradient text */
.gradient-text {
  background: linear-gradient(135deg, #e01a1a 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Highlighted section background */
.bg-dark  { background: var(--clr-dark); }
.bg-black { background: var(--clr-black); }
.bg-card  { background: var(--clr-card); }

/* Red left border card */
.card-bordered {
  border-left: 3px solid var(--clr-red);
}

/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: var(--clr-red);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider-center { margin-inline: auto; }

/* Text center helpers */
.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

/* Spacers */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Phone link styled */
a.phone-link {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-red);
  transition: color var(--trans);
}
a.phone-link:hover { color: var(--clr-white); }

/* Map wrapper */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  height: 300px;
  background: var(--clr-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.map-placeholder {
  text-align: center;
  color: var(--clr-gray);
}
.map-placeholder i {
  font-size: 3rem;
  color: var(--clr-red);
  margin-bottom: 1rem;
}
.map-placeholder p { font-size: 0.9rem; }

/* Order note box */
.order-note {
  background: var(--clr-red-glow);
  border: 1px solid rgba(224,26,26,0.3);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
}
.order-note p {
  font-size: 0.9rem;
  color: var(--clr-light);
}
.order-note strong { color: var(--clr-red); }

/* Product details table */
.details-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.details-table th,
.details-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.88rem;
}
.details-table th {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.details-table td { color: var(--clr-gray); }
.details-table tr:hover td { color: var(--clr-light); }

/* Ribbon on card */
.ribbon {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

/* Page top red bar */
.top-bar {
  background: var(--clr-red);
  padding: 8px 0;
  font-size: 0.8rem;
  font-weight: 500;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,0.85);
}
.top-bar a { color: var(--clr-white); font-weight: 700; }
.top-bar-links { display: flex; gap: 1.5rem; }
@media (max-width: 768px) {
  .top-bar-links { display: none; }
  .top-bar-inner { justify-content: center; }
}
