/* ===================================
   VISUAL ENHANCEMENTS & EFFECTS
   =================================== */

/* -------- Gradient Backgrounds -------- */
.gradient-primary {
  background: linear-gradient(135deg, #1af07d 0%, #1a73f0 100%);
}

.gradient-secondary {
  background: linear-gradient(135deg, #1a73f0 0%, #9c27b0 100%);
}

.gradient-accent {
  background: linear-gradient(135deg, #1af07d 0%, #00d4ff 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #1af07d 0%, #1a73f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-text-alt {
  background: linear-gradient(135deg, #1a73f0 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* -------- Glassmorphism Cards -------- */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(26, 240, 125, 0.3);
  box-shadow: 0 8px 32px rgba(26, 240, 125, 0.1);
}

.glass-card-elevated {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(26, 240, 125, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* -------- Card Effects -------- */
.card-hover-lift {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(26, 240, 125, 0.15);
}

.card-with-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border-radius: 12px;
}

.card-with-shadow:hover {
  box-shadow: 0 20px 50px rgba(26, 240, 125, 0.2);
}

/* -------- Enhanced Buttons -------- */
.btn-enhanced {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #1af07d 0%, #1a73f0 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 240, 125, 0.2);
}

.btn-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 240, 125, 0.4);
}

.btn-enhanced:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(26, 240, 125, 0.3);
}

.btn-outline-enhanced {
  background: transparent;
  border: 2px solid #1af07d;
  color: #1af07d;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1af07d 0%, #1a73f0 100%);
  transition: left 0.3s ease;
  z-index: -1;
  border-radius: 25px;
}

.btn-outline-enhanced:hover {
  left: 0;
  color: white;
  box-shadow: 0 4px 15px rgba(26, 240, 125, 0.3);
}

.btn-outline-enhanced:hover::before {
  left: 0;
}

/* -------- Enhanced Social Links -------- */
.social-link-enhanced {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(26, 240, 125, 0.3);
  color: #1af07d;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.social-link-enhanced::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(26, 240, 125, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.social-link-enhanced:hover {
  border-color: #1af07d;
  color: white;
  box-shadow: 0 0 20px rgba(26, 240, 125, 0.5);
  transform: translateY(-5px);
}

.social-link-enhanced:hover::before {
  width: 100%;
  height: 100%;
}

/* -------- Text Effects -------- */
.text-glow {
  text-shadow: 0 0 10px rgba(26, 240, 125, 0.5), 0 0 20px rgba(26, 115, 240, 0.3);
  transition: text-shadow 0.3s ease;
}

.text-glow:hover {
  text-shadow: 0 0 20px rgba(26, 240, 125, 0.8), 0 0 40px rgba(26, 115, 240, 0.5);
}

.text-gradient {
  background: linear-gradient(135deg, #1af07d 0%, #1a73f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-alt {
  background: linear-gradient(135deg, #1a73f0 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -------- Section Styling -------- */
.section-enhanced {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.section-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(26, 240, 125, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-enhanced > * {
  position: relative;
  z-index: 1;
}

/* -------- Divider Lines -------- */
.divider-gradient {
  height: 2px;
  background: linear-gradient(90deg, transparent, #1af07d, transparent);
  margin: 30px 0;
  border: none;
}

.divider-animated {
  height: 3px;
  background: linear-gradient(90deg, transparent, #1af07d, #1a73f0, transparent);
  animation: slideInWidth 2s ease;
  border: none;
}

/* -------- Badge Styling -------- */
.badge-enhanced {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(26, 240, 125, 0.1);
  border: 1px solid #1af07d;
  border-radius: 20px;
  color: #1af07d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.badge-enhanced:hover {
  background: rgba(26, 240, 125, 0.2);
  box-shadow: 0 0 15px rgba(26, 240, 125, 0.3);
  transform: scale(1.05);
}

.badge-enhanced-alt {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(26, 115, 240, 0.1);
  border: 1px solid #1a73f0;
  border-radius: 20px;
  color: #1a73f0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.badge-enhanced-alt:hover {
  background: rgba(26, 115, 240, 0.2);
  box-shadow: 0 0 15px rgba(26, 115, 240, 0.3);
  transform: scale(1.05);
}

/* -------- Progress Bars Enhanced -------- */
.progress-enhanced {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0;
}

.progress-enhanced-bar {
  height: 100%;
  background: linear-gradient(90deg, #1af07d 0%, #1a73f0 100%);
  border-radius: 10px;
  animation: slideInWidth 1s ease forwards;
  box-shadow: 0 0 10px rgba(26, 240, 125, 0.5);
}

.progress-enhanced-bar.animated {
  animation: slideInWidthVariant 1.5s ease forwards;
}

/* -------- Hover Lift Effects -------- */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hover-lift-more {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift-more:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(26, 240, 125, 0.2);
}

/* -------- Glow Background -------- */
.glow-background {
  position: relative;
  background: radial-gradient(ellipse at center, rgba(26, 240, 125, 0.1) 0%, transparent 70%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: inset 0 0 30px rgba(26, 240, 125, 0.05);
}

/* -------- Border Animated -------- */
.border-animated {
  position: relative;
  border: 2px solid transparent;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, #1af07d 0%, #1a73f0 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: borderGlow 3s ease infinite;
  border-radius: 12px;
}

/* -------- Smooth Transitions Global -------- */
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* -------- Link Enhancements -------- */
a {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, #1af07d 0%, #1a73f0 100%);
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

/* -------- Input Fields Enhanced -------- */
input[type="text"],
input[type="email"],
textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(26, 240, 125, 0.3);
  border-radius: 8px;
  padding: 10px 15px;
  color: #fff;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #1af07d;
  box-shadow: 0 0 20px rgba(26, 240, 125, 0.3);
  outline: none;
}

/* -------- Smooth Scroll Behavior -------- */
html {
  scroll-behavior: smooth;
}

/* -------- Scroll Animations -------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* -------- Responsive Adjustments -------- */
@media (max-width: 768px) {
  .glass-card,
  .glass-card-elevated {
    border-radius: 10px;
  }

  .btn-enhanced,
  .btn-outline-enhanced {
    padding: 10px 20px;
    font-size: 14px;
  }

  .social-link-enhanced {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .section-enhanced {
    padding: 40px 0;
  }
}
