.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFF0DB 50%, #FFE8CC 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 125, 34, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(230, 125, 34, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out 0.2s backwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.badge-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.hero-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #C0392B;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1e293b;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.title-highlight {
  background: linear-gradient(135deg, #E67D22 0%, #C0392B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-details {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.5s backwards;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail-icon {
  width: 40px;
  height: 40px;
  color: #E67D22;
  padding: 8px;
  background: rgba(230, 125, 34, 0.1);
  border-radius: 8px;
}

.detail-item > div {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.detail-value {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.primary-cta {
  background: linear-gradient(135deg, #E67D22 0%, #C0392B 100%);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 24px rgba(230, 125, 34, 0.35);
  font-size: 1.05rem;
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(230, 125, 34, 0.45);
  background: linear-gradient(135deg, #D35400 0%, #A93226 100%);
}

.secondary-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  border: 2px solid #E67D22;
  color: #E67D22;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.secondary-cta:hover {
  background: rgba(230, 125, 34, 0.05);
  transform: translateY(-2px);
  border-color: #C0392B;
  color: #C0392B;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.4s backwards;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(230, 125, 34, 0.2);
  transition: transform 0.5s ease;
}

.hero-img:hover {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-details {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-img {
    height: 400px;
  }
}