.premium-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hover-glow:hover {
  border-color: rgba(236, 109, 19, 0.3);
  box-shadow: 0 0 30px rgba(236, 109, 19, 0.15);
}

.hover-border:hover {
  border-color: #ec6d13;
}

/* Glass effect refinement */
.glass-overlay {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.dark .premium-card {
  background: #1f2937;
  border-color: rgba(255, 255, 255, 0.05);
}


/* Header Zoom Refinement */
header nav a {
  position: relative;
  display: inline-block;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: #062541; /* Primary */
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

/* Header Logo Interaction */
.logo-zoom {
  transform: scale(2.5) ;
  transform-origin: left
	 !important;
}

/* Footer Logo specifically to avoid cutting off on the left */
.footer-logo-zoom {
  transform: scale(3.0);
  transform-origin: left !important;
}

/* Contact Form Styles */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #111827;
  -webkit-box-shadow: 0 0 0px 1000px #f9fafb inset;
  transition: background-color 5000s ease-in-out 0s;
}

#contactForm input:focus,
#contactForm textarea:focus {
  background: white;
  box-shadow: 0 10px 15px -3px rgba(6, 37, 65, 0.05), 0 4px 6px -2px rgba(6, 37, 65, 0.02);
}

/* Captcha Noise Texture */
#captchaText {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3), -1px -1px 2px rgba(255,255,255,0.1);
  letter-spacing: 0.4em;
}

.group\/captcha:hover #captchaText {
  filter: blur(0.5px);
  transition: filter 0.3s ease;
}
