/* ===== Additional Animations ===== */

/* Float animation for buttons */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}
.btn-primary {
  animation: float 3s ease-in-out infinite;
}

/* Pulse glow effect */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(60,255,143,.22); }
  50% { box-shadow: 0 0 35px rgba(60,255,143,.45); }
}
.btn-primary {
  animation: float 3s ease-in-out infinite, pulseGlow 2.5s ease-in-out infinite;
}

/* Slide in animation */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-left {
  animation: slideInLeft 0.8s ease-out forwards;
}
.quote-box {
  animation: slideInRight 0.8s ease-out forwards;
}

/* Fade in for service cards */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.service-card {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Hover shake effect for buttons */
@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}
.btn-secondary:hover {
  animation: shake 0.3s ease-in-out;
}

/* Gradient text animation */
.hero-title {
  background: linear-gradient(90deg, #2bdc77, #13d6ff, #f97316, #2bdc77);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Service list items animation */
.services-inline .list li {
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards;
}
.services-inline .list li:nth-child(1) { animation-delay: 0.15s; }
.services-inline .list li:nth-child(2) { animation-delay: 0.25s; }
.services-inline .list li:nth-child(3) { animation-delay: 0.35s; }
.services-inline .list li:nth-child(4) { animation-delay: 0.45s; }
.services-inline .list li:nth-child(5) { animation-delay: 0.55s; }

/* Bounce effect on nav links */
.nav a {
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}
.nav a:hover::after {
  width: 100%;
}

/* Card hover glow */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(43,220,119,.1), transparent);
  transition: left 0.5s ease;
}
.service-card:hover::before {
  left: 100%;
}

/* Loading spinner for auto send */
.btn-primary.loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn-primary.loading::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Quick action buttons */
.quick-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.quick-action-btn {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(43,220,119,.45);
  background: rgba(0,0,0,.25);
  color: rgba(242,255,248,.92);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.quick-action-btn:hover {
  background: rgba(43,220,119,.15);
  border-color: rgba(43,220,119,.7);
  transform: translateY(-2px);
}
.quick-action-btn:active {
  transform: translateY(0);
}

/* Status badge animation */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(43,220,119,.15);
  border: 1px solid rgba(43,220,119,.4);
  font-size: 11px;
  font-weight: 700;
}
.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2bdc77;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Public Gallery Styles */
.public-gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:16px;margin-top:20px;}
.public-gallery-item{aspect-ratio:4/3;border-radius:12px;overflow:hidden;box-shadow:0 4px 12px rgba(0,0,0,.2);transition:transform .3s ease;}
.public-gallery-item:hover{transform:scale(1.03);}
.public-gallery-item img{width:100%;height:100%;object-fit:cover;}
@media (max-width:600px){.public-gallery{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:10px;}}
