/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll { opacity: 0; transform: translateY(25px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-visible { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.14s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.24s; }
.stagger > *:nth-child(6) { transition-delay: 0.28s; }

/* ===== CARD HOVER ===== */
.card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card-hover:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

/* ===== IMAGE ZOOM ===== */
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform 0.5s ease; }
.img-zoom:hover img { transform: scale(1.05); }

/* ===== BUTTON GLOW ===== */
.btn-glow { position: relative; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.btn-glow:hover { box-shadow: 0 8px 25px rgba(27,42,74,0.35); transform: translateY(-2px); }
.btn-glow::after { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent); transform: translateX(-100%); transition: transform 0.5s; }
.btn-glow:hover::after { transform: translateX(100%); }

.btn-glow-red { position: relative; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.btn-glow-red:hover { box-shadow: 0 8px 25px rgba(255,130,0,0.4); transform: translateY(-2px); }
.btn-glow-red::after { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent); transform: translateX(-100%); transition: transform 0.5s; }
.btn-glow-red:hover::after { transform: translateX(100%); }

.btn-glow-blue { position: relative; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.btn-glow-blue:hover { box-shadow: 0 8px 25px rgba(52,152,219,0.4); transform: translateY(-2px); }
.btn-glow-blue::after { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent); transform: translateX(-100%); transition: transform 0.5s; }
.btn-glow-blue:hover::after { transform: translateX(100%); }

.btn-glow-accent { transition: box-shadow 0.3s, transform 0.3s; }
.btn-glow-accent:hover { box-shadow: 0 8px 25px #2ecc714D; transform: translateY(-2px); }

/* ===== DIVIDER ===== */
.accent-divider { height: 2px; background: linear-gradient(to right, transparent, #1B2A4A, #FF8200, #3498db, transparent); }

/* ===== STARS ===== */
.star-rating { color: #F4C430; }

/* ===== PRICING TABLE ===== */
.pricing-card { transition: transform 0.3s ease, box-shadow 0.3s ease; border: 2px solid transparent; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.pricing-featured { border-color: #FF8200; position: relative; }
.pricing-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF8200;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 9999px;
}

/* ===== BADGE ===== */
.badge-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  transition: transform 0.3s ease;
}
.badge-icon:hover { transform: scale(1.1) rotate(5deg); }

/* ===== NAV ACTIVE ===== */
.nav-active { color: #1B2A4A !important; font-weight: 700 !important; }

/* ===== HERO OVERLAY ===== */
.hero-overlay {
  position: relative;
}
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.85) 0%, rgba(27,42,74,0.6) 50%, rgba(230,57,70,0.4) 100%);
  z-index: 1;
}
.hero-overlay > * { position: relative; z-index: 2; }

/* ===== COUNTER ANIMATION ===== */
.counter-box {
  transition: transform 0.3s ease;
}
.counter-box:hover { transform: scale(1.05); }

/* ===== FORM FOCUS ===== */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #1B2A4A !important;
  box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}

/* ===== PULSE ANIMATION ===== */
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}
.pulse-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #FF8200;
  animation: pulse-ring 2s ease-out infinite;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  background: linear-gradient(135deg, #e8ecf1 0%, #d1d9e3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8896a8;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ===== SCHEDULE TABLE ===== */
.schedule-table th {
  background: #1B2A4A;
  color: white;
  padding: 12px 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.schedule-table td {
  padding: 10px 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid #f0f0f0;
}
.schedule-table tr:hover td {
  background: #f8f9fa;
}
