/* Assignment Hero Section Styles - Updated with proper colors and design */
.assignment-hero-section {
  /* background: linear-gradient(135deg, #8b6914 0%, #a67c00 25%, #bf9000 50%, #d4a017 75%, #ffbf00 100%); */
  background: linear-gradient(135deg, var(--theme-color2) 0%, var(--theme-color) 100%);

  padding: 100px 0;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

.assignment-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(189, 210, 57, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.assignment-hero-content {
  color: var(--white-color);
  padding-right: 30px;
  position: relative;
  z-index: 2;
}

.assignment-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: var(--title-font);
}

.assignment-subtitle {
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 90%;
}

.features-row {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.feature-icon {
  all: unset;
  width: 60px;
  height: 60px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(189, 210, 57, 0.3);
}

.feature-icon img {
  max-width: 50%;
  height: auto;
}

.feature-content h4 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  font-family: var(--title-font);
}

.feature-content p {
  color: var(--white-color);
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.action-buttons {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.whatsapp-btn {
  background-color: var(--white-color);
  color: #25d366;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-weight: 600;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  color: #25d366;
  text-decoration: none;
}

.whatsapp-btn i {
  font-size: 28px;
}

.whatsapp-btn div span {
  display: block;
  font-size: 12px;
  color: var(--body-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp-btn div strong {
  display: block;
  font-size: 16px;
  color: #25d366;
  font-weight: 700;
}

.assignment-btn {
  background: var(--theme-color2);
  color: var(--white-color);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--theme-color2);
  min-width: 250px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assignment-btn:hover {
  background: transparent;
  color: var(--white-color);
  text-decoration: none;
  border-color: var(--white-color);
}

.assignment-form-container {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-top: 20px;
}

.limited-offer-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 3;
}

.offer-text {
  background-color: var(--white-color);
  color: var(--title-color);
  padding: 10px 20px;
  border-radius: 25px 0 0 25px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.discount-badge {
  background: linear-gradient(135deg, var(--theme-color) 0%, #7a9a00 100%);
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: 0 25px 25px 0;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.assignment-form .form-group {
  margin-bottom: 20px;
}

.assignment-form .form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.assignment-form .form-control:focus {
  outline: none;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(189, 210, 57, 0.1);
  background-color: var(--white-color);
}

.assignment-form .form-control::placeholder {
  color: var(--body-color);
  opacity: 0.7;
  text-transform: capitalize;
}

.assignment-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--theme-color) 0%, #7a9a00 100%);
  color: var(--title-color);
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(189, 210, 57, 0.3);
  background: linear-gradient(135deg, #7a9a00 0%, var(--theme-color) 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
  .assignment-hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .assignment-title {
    font-size: 36px;
  }

  .action-buttons {
    justify-content: center;
  }

  .assignment-hero-section {
    padding: 170px 0;
  }
}

@media (max-width: 768px) {
  .assignment-hero-section {
    padding: 60px 0;
    
  }

  .assignment-title {
    font-size: 28px;
  }

  .features-row {
    margin-bottom: 30px;
  }

  .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-btn,
  .assignment-btn {
    justify-content: center;
    text-align: center;
  }

  .assignment-form-container {
    margin-top: 0;
  }

  .feature-item {
    padding: 12px 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .assignment-title {
    font-size: 24px;
  }

  .assignment-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .assignment-form-container {
    padding: 25px 20px;
  }

  .limited-offer-badge {
    position: static;
    justify-content: center;
    margin-bottom: 20px;
    right: auto;
    top: auto;
  }

  .offer-text,
  .discount-badge {
    padding: 8px 15px;
    font-size: 11px;
  }

  .feature-item {
    gap: 15px;
  }

  .whatsapp-btn {
    padding: 12px 20px;
  }

  .assignment-btn {
    padding: 12px 25px;
  }
}

/* Additional animations */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.assignment-hero-content {
  animation: slideInFromLeft 0.8s ease-out;
}

.assignment-form-container {
  animation: slideInFromRight 0.8s ease-out 0.2s both;
}
