/* =========================================
   Premium 2026 Animations & Glassmorphism
   Task Colors • Smooth Staggers • Interactive
   ========================================= */

:root {
  /* Reuse from style.css + Animation Vars */
  --blob-primary: #0F4C81;     /* Task Deep Blue */
  --blob-secondary: #2DA9FF;   /* Task Sky Blue */
  --blob-accent: #FF7A18;      /* Task Orange */
  --glow-primary: 0 0 25px rgba(15,76,129,0.5);
  --glow-secondary: 0 0 25px rgba(45,169,255,0.5);
}

/* Floating Hero Blobs - hidden for simpler visibility */
.hero-blobs {
  display: none;
}

.blob {
  display: none;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--blob-primary);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--blob-secondary);
  bottom: 20%;
  right: 15%;
  animation-delay: -7s;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: var(--blob-accent);
  top: 60%;
  left: 70%;
  animation-delay: -12s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 40px) scale(0.95); }
}

/* Hero Card Panel (Simple & Visible) */
.hero-glass {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 24px;
  padding: var(--space-xl);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

/* Staggered FadeUp Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 1;
  transform: none;
  transition: none;
}

.fade-up.animate {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Simple Card Style (Clean + Visible) */
.modern-card {
  background: var(--white-color);
  border: 1px solid rgba(15, 76, 129, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.modern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* Service Cards Enhancement */
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.service-card-img {
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.icon-wrapper {
  width: 52px;
  height: 52px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: var(--space-lg);
}

.feature-card i {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 4px 8px rgba(15,76,129,0.3));
}

/* Section Dividers */
.section-divider {
  height: 1px;
  background: var(--gradient-primary);
  margin: var(--space-xl) 0;
  opacity: 0.3;
}

/* Premium Contact Form */
.contact-form-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--glass-border);
}

.form-control {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.9);
  transition: all 0.4s ease;
  font-family: var(--font-body);
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(45,169,255,0.1);
  transform: scale(1.02);
}

/* Floating WhatsApp Enhanced */
.floating-wa {
  position: fixed;
  bottom: calc(var(--space-lg) * 1.4);
  right: calc(var(--space-lg) * 1.4);
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 10px 36px rgba(37,211,102,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  animation: pulse 2.2s infinite ease-in-out;
}

.floating-wa:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 14px 45px rgba(37,211,102,0.55);
}

.back-to-top {
  position: fixed;
  bottom: calc(var(--space-lg) * 2.8);
  right: calc(var(--space-lg) * 1.4);
  width: 52px;
  height: 52px;
  background: rgba(15, 76, 129, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

@keyframes pulse {
  0% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
  100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
}

/* Responsive Animation Tweaks */
@media (max-width: 768px) {
  .blob { 
    display: none; 
  }
  
  .modern-card:hover {
    transform: translateY(-8px);
  }
}

