.offer-banner {
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: #fff;
  text-align: center;
  padding: 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}
.offer-banner:hover {
  transform: scale(1.02);
}
.offer-banner h4 {
  margin: 0 0 6px;
  font-weight: 700;
}
.offer-banner p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}
.offer-banner i {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

/* Creative Offer Modal */
.offer-modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}
.offer-modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer-modal-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(10deg);
  }
}
.offer-modal-header .close {
  position: absolute;
  top: 12px;
  right: 18px;
  color: #7b63bb;
  opacity: 0.8;
  font-size: 28px;
  text-shadow: none;
  z-index: 2;
}
.offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.offer-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
  z-index: 1;
}
.offer-icon-wrap i {
  font-size: 36px;
  color: #fff;
}
.offer-img-wrap {
  width: 200px;
  height: 140px;
  margin: 0 auto 15px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.offer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offer-modal-header h2 {
  color: #fff;
  font-weight: 800;
  font-size: 28px;
  margin: 0 0 6px;
  position: relative;
  z-index: 1;
}
.offer-modal-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin: 0;
  position: relative;
  z-index: 1;
}
.offer-modal-body {
  padding: 30px;
  text-align: center;
  background: #fff;
}
.offer-description {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.offer-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 14px 50px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  border: none;
  cursor: pointer;
}
.offer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
  color: #fff;
  text-decoration: none;
}
.offer-footer-text {
  font-size: 12px;
  color: #bbb;
  margin-top: 15px;
}
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  margin-right: 5px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .page-header-section h1 {
    font-size: 24px;
  }
  .blog-section {
    padding: 30px 0 50px;
  }
  .blog-meta-bar span {
    display: block;
    margin-bottom: 5px;
  }
  .sidebar-card {
    margin-top: 30px;
  }
}
