/* Modern Header Enhancements */

/* Enhanced top contact bar */
.hero-gradient .container .flex.justify-between.items-center.py-3 {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  margin: 8px 16px;
  padding: 12px 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Modern contact info styling */
.hero-gradient .flex.items-center.space-x-6 a {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  backdrop-filter: blur(5px);
}

.hero-gradient .flex.items-center.space-x-6 a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Enhanced logo and company name section */
.hero-gradient .flex.items-center.justify-between {
  padding: 24px 0;
}

.hero-gradient .flex.items-center.space-x-4 {
  align-items: center;
}

/* Modern logo styling - ENLARGED */
.hero-gradient .h-20.w-20 {
  width: 120px !important;
  height: 120px !important;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-gradient .h-20.w-20:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

/* Enhanced company name typography */
.hero-gradient .text-3xl {
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-gradient .text-lg {
  font-weight: 400;
  opacity: 0.95;
  letter-spacing: 0.01em;
}

/* Modern button styling */
.hero-gradient .flex.space-x-4 a {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-gradient .flex.space-x-4 a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-gradient .flex.space-x-4 a:hover::before {
  left: 100%;
}

.hero-gradient .flex.space-x-4 a:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Enhanced main title section */
.hero-gradient .text-center.py-20 {
  padding: 80px 0;
}

.hero-gradient .text-5xl {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-gradient .text-xl {
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-top: 16px;
}

/* Modern CTA buttons */
.hero-gradient .flex.justify-center.space-x-6 a {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.hero-gradient .flex.justify-center.space-x-6 a:first-child {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
}

.hero-gradient .flex.justify-center.space-x-6 a:first-child:hover {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.hero-gradient .flex.justify-center.space-x-6 a:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .hero-gradient .container .flex.justify-between.items-center.py-3 {
    margin: 8px;
    padding: 16px !important;
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-gradient .flex.items-center.space-x-6 {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .hero-gradient .flex.items-center.space-x-6 a {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
  
  .hero-gradient .flex.items-center.justify-between {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .hero-gradient .flex.space-x-4 {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .hero-gradient .flex.space-x-4 a {
    width: 100%;
    text-align: center;
  }
  
  .hero-gradient .flex.justify-center.space-x-6 {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .hero-gradient .flex.justify-center.space-x-6 a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* Animation enhancements */
@keyframes modernFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-gradient .container > * {
  animation: modernFadeIn 0.8s ease-out;
}

.hero-gradient .container > *:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-gradient .container > *:nth-child(3) {
  animation-delay: 0.4s;
}



/* WhatsApp button styling for ALL WhatsApp buttons */
a.whatsapp-updated {
  background: rgba(37, 211, 102, 0.2) !important;
  border: 2px solid rgba(37, 211, 102, 0.4) !important;
  color: white !important;
  transition: all 0.3s ease !important;
}

a.whatsapp-updated:hover {
  background: rgba(37, 211, 102, 0.3) !important;
  border-color: rgba(37, 211, 102, 0.6) !important;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* WhatsApp icon for all WhatsApp buttons */
a.whatsapp-updated::before {
  content: "💬 ";
  margin-right: 8px;
}

/* Specific styling for second row WhatsApp buttons */
.hero-gradient .flex.justify-center.space-x-6 a.whatsapp-updated {
  background: rgba(37, 211, 102, 0.2) !important;
  border: 2px solid rgba(37, 211, 102, 0.4) !important;
  color: white !important;
}

.hero-gradient .flex.justify-center.space-x-6 a.whatsapp-updated:hover {
  background: rgba(37, 211, 102, 0.3) !important;
  border-color: rgba(37, 211, 102, 0.6) !important;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.3) !important;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .hero-gradient .h-20.w-20 {
    width: 80px !important;
    height: 80px !important;
  }
}

@media (max-width: 480px) {
  .hero-gradient .h-20.w-20 {
    width: 70px !important;
    height: 70px !important;
  }
}

