:root {
  --primary-color: #FF5722;
  /* Vibrant Orange */
  --secondary-color: #008751;
  /* Nigeria Green */
  --dark-bg: #1a1a2e;
  /* Deep Blue/Black */
  --light-bg: #f8f9fa;
  --text-color: #333;
  --white: #ffffff;
  --font-family: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

/* Header */
header {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--dark-bg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-small {
  background: var(--secondary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 40px 0 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 87, 34, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.85rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(255, 107, 107, 0.6);
  }
}

.hero-headline {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
  color: var(--primary-color);
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #FF5722, #FF8A65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-video-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 25px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 87, 34, 0.3);
}

.hero-video-container::before {
  content: '';
  display: block;
  padding-top: 177.78%;
  /* 9:16 aspect ratio for shorts */
}

.hero-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-sub {
  font-size: 1.15rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.6;
}

.media-container {
  margin: 20px auto;
  max-width: 600px;
  position: relative;
}

.trust-badge-box {
  background: rgba(232, 245, 233, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px;
  border-radius: 8px;
  display: inline-block;
  margin: 20px 0;
  border: 1px solid rgba(67, 160, 71, 0.3);
  width: 100%;
  max-width: 500px;
}

.trust-badge-box p {
  font-weight: bold;
  color: #4caf50;
  margin: 0;
  font-size: 0.95rem;
}

.price-box {
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.1rem;
  display: block;
}

.new-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 10px rgba(255, 87, 34, 0.5);
  line-height: 1;
}

.discount-badge {
  background: #4caf50;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.urgency-text {
  font-size: 1rem;
  color: #ffeb3b;
  font-weight: bold;
  margin-top: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
  display: inline-block;
  color: white;
  padding: 18px 30px;
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}

.btn-pulse {
  background: linear-gradient(45deg, #008751, #00693e);
  animation: pulse 2s infinite;
}

.btn-block {
  width: 100%;
  margin-top: 15px;
  background: #333;
}

.btn-hot {
  background: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

/* Sections */
.section-dark {
  background: var(--dark-bg);
  padding: 40px 0;
  color: white;
}

.section-title,
.section-title-white {
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.8rem;
}

.section-title {
  color: #333;
}

.section-title-white {
  color: white;
}

.section-sub-white {
  color: #ccc;
  text-align: center;
  margin-bottom: 30px;
}

.action-gif {
  border: 4px solid white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.features {
  padding: 50px 0;
  background: white;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  text-align: center;
}

.feature-card img {
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #eee;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
  padding: 50px 0;
  background: #f1f8e9;
}

.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  text-align: center;
}

.review-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  margin-bottom: 15px;
}

.stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.verified {
  color: var(--secondary-color);
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Offers / Packages */
.offer-section {
  padding: 50px 0 80px 0;
  background: #eef2f3;
}

.offer-title {
  text-align: center;
  font-weight: 900;
  font-size: 2rem;
  color: #333;
}

.offer-sub {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

.package-grid {
  display: grid;
  gap: 30px;
}

.package-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #eee;
  text-align: center;
  position: relative;
}

.package-card.popular {
  border: 2px solid var(--primary-color);
  background: #fff3e0;
}

.badge-pop {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  margin: 10px 0;
}

.price-pop {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin: 10px 0;
}

.strikethrough {
  text-decoration: line-through;
  color: #999;
}

.save-text {
  color: red;
  font-weight: bold;
  margin-bottom: 15px;
}

.benefit-list {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.benefit-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Order Form Styles */
.order-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.order-form h2 {
  color: var(--dark-bg);
  text-align: center;
  margin-bottom: 10px;
}

.timer {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-family);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

select.form-input {
  cursor: pointer;
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

/* Footer & Sticky CTA */
footer {
  background: #111;
  color: #777;
  text-align: center;
  padding: 40px 0 100px 0;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 15px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.btn-order {
  background: linear-gradient(135deg, #FF5722, #FF8A65);
  color: white;
  width: 100%;
  animation: pulse 2s infinite;
  font-size: 0.95rem;
  padding: 14px 20px;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }

  .sticky-cta {
    display: none;
  }

  .btn {
    width: auto;
    min-width: 300px;
  }
}

/* Mobile optimizations for cross-sell cards */
@media (max-width: 767px) {
  .cross-sell-card {
    padding: 15px !important;
  }

  .cross-sell-grid {
    grid-template-columns: 100px 1fr !important;
    gap: 15px !important;
  }

  .cross-sell-image {
    height: 90px !important;
  }

  .cross-sell-title {
    font-size: 1.1rem !important;
  }

  .cross-sell-description {
    font-size: 0.85rem !important;
  }

  .cross-sell-price {
    font-size: 1.3rem !important;
  }

  .cross-sell-badge {
    font-size: 0.7rem !important;
    padding: 2px 8px !important;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 30px; */
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 30px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 135, 81, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(0, 135, 81, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 135, 81, 0);
  }
}