/* ===================================
   WEB DEVELOPER SECTION STYLES
   =================================== */

.webdev-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.webdev-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.webdev-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.webdev-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.webdev-badge i {
  font-size: 1.2rem;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.webdev-title {
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gradient-text {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #ffd700, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.highlight-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.webdev-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.webdev-subtitle strong {
  color: #ffd700;
  font-weight: 700;
}

/* Features Grid */
.webdev-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.webdev-feature-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.webdev-feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: #764ba2;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.webdev-feature-item:hover .feature-icon-box {
  transform: scale(1.1) rotate(10deg);
}

.webdev-feature-item h4 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.webdev-feature-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Creator Section */
.webdev-creator {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  padding: 2.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.creator-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #764ba2;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
  animation: pulse-avatar 2s ease-in-out infinite;
}

@keyframes pulse-avatar {
  0%, 100% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.8); }
}

.creator-info h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.creator-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.creator-name strong {
  font-weight: 800;
}

.separator {
  color: white;
  font-size: 1.2rem;
  margin: 0 0.25rem;
}

.creator-tagline {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.creator-tagline i {
  color: #ffd700;
}

/* Benefits */
.webdev-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

.benefit-item i {
  font-size: 1.5rem;
  color: #ffd700;
}

.benefit-item span {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

/* CTA Section */
.webdev-cta {
  text-align: center;
  margin-bottom: 3rem;
}

.webdev-cta h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.webdev-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.btn-webdev {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-webdev::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-webdev:hover::before {
  width: 400px;
  height: 400px;
}

.btn-webdev:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}

.btn-webdev i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.btn-webdev span {
  position: relative;
  z-index: 1;
}

.btn-webdev small {
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

/* Testimonial */
.webdev-testimonial {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.webdev-testimonial .quote-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.webdev-testimonial p {
  font-size: 1.1rem;
  color: white;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.testimonial-author {
  color: #ffd700;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .webdev-section {
    padding: 3rem 1.5rem;
  }

  .gradient-text {
    font-size: 2rem;
  }

  .highlight-text {
    font-size: 1.5rem;
  }

  .webdev-subtitle {
    font-size: 1rem;
  }

  .webdev-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .webdev-creator {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .creator-name {
    justify-content: center;
    font-size: 1.2rem;
  }

  .creator-tagline {
    justify-content: center;
    font-size: 0.9rem;
  }

  .webdev-benefits {
    grid-template-columns: 1fr;
  }

  .webdev-cta h3 {
    font-size: 1.5rem;
  }

  .webdev-cta p {
    font-size: 1rem;
  }

  .btn-webdev {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }

  .btn-webdev i {
    font-size: 1.5rem;
  }

  .webdev-testimonial p {
    font-size: 1rem;
    padding-left: 1rem;
  }
}

@media (max-width: 480px) {
  .gradient-text {
    font-size: 1.5rem;
  }

  .highlight-text {
    font-size: 1.2rem;
  }

  .webdev-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .feature-icon-box {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .webdev-feature-item h4 {
    font-size: 1.1rem;
  }

  .creator-avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .creator-name {
    font-size: 1rem;
  }

  .webdev-cta h3 {
    font-size: 1.2rem;
  }

  .btn-webdev {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

