* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f5f5;
  /* padding: 20px; */
}

/* Banner Container */
.promo-banner-wrapper {
  margin-top: 50px;
  background: linear-gradient(
    135deg,
    #ff6b6b 0%,
    #f39751ff 50%,
    #ff8102ff 100%
  );
  /* border-radius: 24px; */
  padding: 50px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
}

.promo-banner-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.promo-banner-wrapper::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Banner Content */
.promo-banner-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 70%;
  justify-self: center;
}

.promo-banner-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Badge */
.promo-availability-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.promo-availability-badge::before {
  content: "✨";
  font-size: 1rem;
}

/* Heading */
.promo-banner-heading {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Description */
.promo-banner-description {
  font-size: 1.1rem;
  color: white;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 700px;
}

/* Features List */
.promo-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

.promo-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.promo-feature-icon {
  font-size: 1.5rem;
}

/* CTA Buttons */
.promo-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.promo-btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.promo-btn-primary {
  background: white;
  color: #ff6b6b;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.promo-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

.promo-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.promo-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.promo-btn-icon {
  font-size: 1.2rem;
}

/* Calendar Card */
.promo-calendar-card {
  background: white;
  border-radius: 20px;
  padding: 40px 50px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  min-width: 250px;
}

.promo-calendar-year {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b6b, #feca57, #ffa502);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.promo-calendar-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .promo-banner-wrapper {
    padding: 40px 40px;
  }

  .promo-banner-heading {
    font-size: 2.5rem;
  }

  .promo-calendar-year {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .promo-banner-wrapper {
    padding: 30px 24px;
  }

  .promo-banner-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .promo-banner-heading {
    font-size: 2rem;
  }

  .promo-banner-description {
    font-size: 1rem;
  }

  .promo-features-list {
    gap: 16px;
  }

  .promo-feature-item {
    font-size: 0.9rem;
  }

  .promo-calendar-card {
    padding: 30px 40px;
    margin: 0 auto;
    max-width: 300px;
  }

  .promo-calendar-year {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .promo-banner-wrapper {
    padding: 24px 20px;
  }

  .promo-banner-heading {
    font-size: 1.75rem;
  }

  .promo-banner-description {
    font-size: 0.95rem;
  }

  .promo-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .promo-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .promo-features-list {
    flex-direction: column;
    gap: 12px;
  }

  .promo-calendar-card {
    padding: 24px 32px;
  }

  .promo-calendar-year {
    font-size: 2.5rem;
  }

  .promo-calendar-label {
    font-size: 0.85rem;
  }
}
