/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--secondary-text);
}

.section-accent {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--yellow-accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Floating background elements */
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle, rgba(250, 195, 17, 0.2) 0%, transparent 70%),
    radial-gradient(circle, rgba(250, 195, 17, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle, rgba(250, 195, 17, 0.2) 0%, transparent 70%),
    radial-gradient(circle, rgba(250, 195, 17, 0.1) 0%, transparent 60%);
  z-index: 1;
}

/* Floating elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 195, 17, 0.4) 0%, rgba(250, 195, 17, 0.1) 70%);
  box-shadow: 0 0 30px rgba(250, 195, 17, 0.5), 0 0 60px rgba(250, 195, 17, 0.2);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(250, 195, 17, 0.2);
}

/* New floating shapes */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
  transition: transform 0.3s ease-out;
  pointer-events: none;
}

.floating-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  z-index: 0;
  transform-origin: center;
  transition: transform 0.3s ease-out;
  pointer-events: none;
}

.floating-rectangle {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  z-index: 0;
  transition: transform 0.3s ease-out;
  pointer-events: none;
}

.floating-circle {
  animation: floatShapes 8s ease-in-out infinite;
}

.floating-line {
  animation: floatShapes 10s ease-in-out infinite;
}

.floating-rectangle {
  animation: floatShapes 12s ease-in-out infinite;
}

/* Enhanced floating shapes with new design concept */
.floating-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;

  transition: transform 0.5s ease-out;
}

.floating-shape.circle {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(1px);
}

.floating-shape.line {
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(1px);
}

.floating-shape.rectangle {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  filter: blur(1px);
}

/* Animation for floating shapes */
@keyframes floatAnimation {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, 20px) rotate(5deg);
  }
  50% {
    transform: translate(20px, 10px) rotate(10deg);
  }
  75% {
    transform: translate(10px, 0px) rotate(5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.floating-shape.circle {
  animation: floatAnimation 8s ease-in-out infinite;
}

.floating-shape.line {
  animation: floatAnimation 10s ease-in-out infinite;
}

.floating-shape.rectangle {
  animation: floatAnimation 12s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 70%;
  animation-delay: 4s;
}

.floating-element:nth-child(4) {
  width: 40px;
  height: 40px;
  top: 70%;
  left: 20%;
  animation-delay: 1s;
}

.floating-element:nth-child(5) {
  width: 120px;
  height: 120px;
  top: 40%;
  left: 40%;
  animation-delay: 3s;
}

.hero-content {
  max-width: 100%;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
  position: relative;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInScale 0.8s ease-out 0.3s forwards;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--dark-bg);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
  margin: 0 auto;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 0.5s forwards;
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  z-index: 2;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 1.5s forwards;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button.primary {
  background-color: var(--yellow-accent);
  color: var(--dark-bg);
  border: 2px solid var(--yellow-accent);
  box-shadow: 0 4px 15px rgba(250, 195, 17, 0.3);
  animation: subtleGlow 3s ease-in-out infinite;
}

.cta-button.primary:hover {
  background-color: transparent;
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(250, 195, 17, 0.5);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--dark-bg);
  border: 2px solid var(--dark-bg);
}

.cta-button.secondary:hover {
  background-color: var(--dark-bg);
  color: var(--white);
  transform: translateY(-3px);
}

.cta-button.large {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

.price-highlight {
  color: var(--yellow-accent);
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
  backdrop-filter: blur(5px);
}

/* Hero Content */

.cards-container:hover .card:not(:hover) {
  opacity: 0.9;
  animation-play-state: paused;
}

.card-icon {
  transition: all 0.3s ease;
}
