/* Experiences Section Styles */
.experiences-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #fff 0%, #f6f8f4 100%);
}
.experiences-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.experiences-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fade-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.experiences-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d3a2e;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .experiences-title { font-size: 3rem; }
}
.experiences-title-underline {
  width: 6rem;
  height: 5px;
  background: #eab308;
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}
.experiences-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #647060;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .experiences-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (min-width: 700px) and (max-width: 899px) {
  .experiences-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.experience-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
  padding: 2.5rem 2rem 2rem 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
  animation: scale-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.experience-card:hover {
  box-shadow: 0 16px 48px rgba(234,179,8,0.13);
  transform: translateY(-8px) scale(1.02);
  z-index: 2;
}
.experience-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  text-align: left;
}
.experience-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3a2e;
  margin-bottom: 0.7rem;
}
.experience-desc {
  font-family: 'Poppins', sans-serif;
  color: #647060;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.experience-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.experience-features li {
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  color: #647060;
  font-size: 0.98rem;
}
.experience-dot {
  width: 0.6rem;
  height: 0.6rem;
  background: #eab308;
  border-radius: 50%;
  margin-right: 0.8rem;
  display: inline-block;
  flex-shrink: 0;
}
/* Animations */
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
