.quote-section {
  background: #fff;
  padding: 80px 20px;
}

.quote-section__container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-section__content {
  flex: 1 1 500px;
}

.quote-section__title {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: #000F20;
  line-height: 1.3;
  margin-bottom: 20px;
}

.quote-section__title .highlight {
  color: #FBCA19;
  font-style: italic;
}

.quote-section__desc {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.6;
}

.quote-section__desc a {
  color: #000F20;
  text-decoration: underline;
}

.quote-section__form {
  margin-top: 24px;
  width: 100%;
}

.form-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.form-group input {
  flex: 1 1 180px;
  min-width: 160px;
  padding: 10px 14px;
  font-size: 0.95rem;
  border: 2px solid #FBCA19;
  border-radius: 8px;
  color: #000F20;
  background: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: #e0a200;
}

.quote-section__form button {
  padding: 10px 22px;
  font-size: 0.95rem;
  background-color: #FBCA19;
  color: #000F20;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quote-section__form button:hover {
  background-color: #e0a200;
}

.quote-section__review {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #999;
}

.quote-section__image {
  flex: 1 1 440px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.quote-section__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* 动画关键帧定义 */
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 应用动画效果 */
.quote-section__title {
  animation: slideFadeIn 1s ease-out both;
}

.quote-section__desc:nth-of-type(1) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.quote-section__desc:nth-of-type(2) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}
.quote-section__desc:nth-of-type(3) {
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.quote-section__form {
  animation: bounceIn 0.8s ease-out 0.9s both;
}

.quote-section__image img {
  animation: slideInRight 1.2s ease-out 0.5s both;
}

