:root {
  --primary-color: #216FED;
  --accent-color: #FDBC2C;
  --text-color: #333;
  --light-gray: #F7F7F7;
  --white: #fff;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar Styles */
.top-bar {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.9rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1001;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent-color);
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  top: 36px;
  z-index: 1000;
  transition: var(--transition);
}

header.transparent {
  background: transparent;
}

header.solid {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
}

.logo h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
}

.transparent .logo h1 {
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-links {
  display: none;
}

/* Hero Section */
.hero-section {
  margin-top: 0;
  padding-top: 80px;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3); /* Lighter overlay */
  z-index: 1;
}

.swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(33,111,237,0.3), rgba(253,188,44,0.3));
  mix-blend-mode: overlay;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 3rem;
  background: rgba(0,0,0,0.4);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-weight: 800;
  background: linear-gradient(45deg, var(--white), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button-large {
  background: linear-gradient(45deg, var(--accent-color), #FFA500);
  color: var(--text-color);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(253,188,44,0.3);
  text-decoration: none;
}

.cta-button-large:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(253,188,44,0.4);
}

.cta-button-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
  transition: 0.5s;
}

.cta-button-large:hover::before {
  left: 100%;
}

.cta-button-large svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.cta-button-large:hover svg {
  transform: translateX(5px);
}

/* Mobile Responsive Design for Hero Section */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    height: 100vh;
  }

  .swiper-slide {
    height: 60vh;
  }

  .swiper-slide {
    flex-direction: column;
    justify-content: center;
    padding-bottom: 120px;
  }

  .hero-content {
    width: 90%;
    max-width: 400px;
    padding: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(to bottom, 
      rgba(0,0,0,0.8) 0%,
      rgba(0,0,0,0.9) 100%
    );
    backdrop-filter: blur(5px);
    margin: 0 auto;
    transform: translateY(0) !important;
    transition: transform 0.3s ease !important;
  }

  .hero-content h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

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

  .swiper-slide::before {
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.2) 0%,
      rgba(0,0,0,0.6) 70%,
      rgba(0,0,0,0.8) 100%
    );
  }

  .swiper-slide::after {
    background: linear-gradient(45deg, 
      rgba(33,111,237,0.2), 
      rgba(253,188,44,0.2)
    );
  }

  /* Hide pagination on mobile */
  .swiper-pagination {
    bottom: 140px !important;
  }
}

/* New Hero Promo Badge Styles */
.hero-promo-badge {
  background: var(--accent-color);
  color: var(--text-color);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(253,188,44,0.3);
  animation: bounce 2s infinite;
}

.hero-savings {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-savings-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(253,188,44,0.3);
}

.hero-savings-text {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-promo-badge {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }

  .hero-savings {
    padding: 0.8rem;
    margin: 0.8rem 0;
  }

  .hero-savings-amount {
    font-size: 1.5rem;
  }

  .hero-savings-text {
    font-size: 1rem;
  }
}

/* Raffles Section */
.raffles-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  position: relative;
  margin-top: -2rem;
}

.raffles-section h3 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 3rem;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  background: linear-gradient(45deg, var(--white) 30%, var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.raffles-section h3::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(253,188,44,0.3);
}

@keyframes titleGlow {
  from {
    filter: drop-shadow(0 0 2px rgba(253,188,44,0.3));
  }
  to {
    filter: drop-shadow(0 0 10px rgba(253,188,44,0.5));
  }
}

@media (max-width: 768px) {
  .raffles-section h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.raffle-image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.raffle-image-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.raffle-image {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.raffle-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
  perspective: 1000px;
}

.raffle-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.1);
}

.raffle-card[style*="cursor: pointer"]:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.raffle-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.raffle-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}

.raffle-content {
  padding: 2rem;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.1);
}

.raffle-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.raffle-price {
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.countdown-container {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: center;
}

.countdown-item {
  text-align: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.8rem;
  border-radius: 10px;
  min-width: 70px;
  box-shadow: 0 4px 15px rgba(33,111,237,0.2);
}

.countdown-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .countdown-item {
    min-width: 60px;
    padding: 0.6rem;
  }

  .countdown-item span {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .countdown-item label {
    font-size: 0.7rem;
  }
}

.raffle-button {
  width: 100%;
  background: linear-gradient(45deg, var(--primary-color), #4a90e2);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.raffle-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(33,111,237,0.3);
}

.raffle-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
  transition: 0.5s;
}

.raffle-button:hover::before {
  left: 100%;
}

.raffle-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.raffle-button:hover svg {
  transform: translateX(5px);
}

.raffle-description {
  color: var(--text-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  opacity: 0.9;
}

.raffle-card:first-child .raffle-price {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.raffle-card:first-child .raffle-title {
  margin-bottom: 0.5rem;
}

/* How to Section */
.how-to-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.how-to-section h3 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
  position: relative;
}

.how-to-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.steps {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 0;
}

.steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--primary-color) 0%,
    var(--accent-color) 33%,
    var(--primary-color) 66%,
    var(--accent-color) 100%
  );
  transform: translateY(-50%);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  width: 220px;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  cursor: pointer;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(33,111,237,0.9), rgba(33,111,237,0.7));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 16px rgba(33,111,237,0.2);
}

.step:hover .step-icon {
  transform: rotate(360deg);
  background: linear-gradient(135deg, var(--accent-color), rgba(253,188,44,0.8));
}

.step-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.step h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.step p {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
}

.step-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: linear-gradient(135deg, rgba(42,42,42,0.95), rgba(26,26,26,0.95));
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: max-content;
  max-width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.1);
}

.step-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(26,26,26,0.95);
}

.step:hover .step-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 968px) {
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .steps::before {
    height: 100%;
    width: 2px;
    left: 50%;
    transform: translateX(-50%);
  }

  .step {
    width: 280px;
  }
}

/* Testimonials Section */
.testimonials-section,
.testimonial {
  display: none;
}

/* Promotional Section */
.promo-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.promo-text {
  padding-right: 2rem;
}

.promo-text h3 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
  text-transform: uppercase;
  text-shadow: 0 2px 15px rgba(253,188,44,0.3);
  position: relative;
  animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
  from {
    text-shadow: 0 2px 15px rgba(253,188,44,0.3);
  }
  to {
    text-shadow: 0 2px 30px rgba(253,188,44,0.6);
  }
}

.promo-text .savings-badge {
  background: var(--accent-color);
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(253,188,44,0.3);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.promo-text p {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.promo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  padding: 1.2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--white);
}

.promo-feature svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.promo-feature span {
  color: var(--white);
  font-weight: 500;
}

.promo-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.2);
}

.promo-feature:hover svg {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.promo-card {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  transform: rotate(-5deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

.promo-card .savings-amount {
  color: var(--accent-color);
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1;
  text-shadow: 0 2px 15px rgba(253,188,44,0.3);
}

.promo-card .savings-label {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.promo-card .original-price {
  text-decoration: line-through;
  color: #ff4444;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.promo-button {
  width: 100%;
  background: linear-gradient(45deg, var(--accent-color), #FFA500);
  color: var(--text-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(253,188,44,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(253,188,44,0.4);
}

.promo-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
  transition: 0.5s;
}

.promo-button:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  .promo-section {
    padding: 3rem 0;
  }

  .promo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .promo-text {
    padding-right: 0;
    text-align: center;
  }

  .promo-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .promo-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .savings-badge {
    font-size: 1rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1rem;
  }

  .promo-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .promo-feature {
    padding: 1rem;
    justify-content: center;
    background: rgba(255,255,255,0.15);
  }

  .promo-feature span {
    font-size: 0.9rem;
  }

  .promo-button {
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-color), #FFB700);
    border: 2px solid rgba(255,255,255,0.1);
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    box-shadow: 
      0 4px 15px rgba(253,188,44,0.3),
      0 2px 4px rgba(0,0,0,0.1);
    animation: pulseButton 2s infinite;
  }

  .promo-button:active {
    transform: translateY(2px);
    box-shadow: 
      0 2px 8px rgba(253,188,44,0.2),
      0 1px 2px rgba(0,0,0,0.1);
  }

  @keyframes pulseButton {
    0% {
      box-shadow: 0 4px 15px rgba(253,188,44,0.3);
    }
    50% {
      box-shadow: 0 4px 25px rgba(253,188,44,0.5);
    }
    100% {
      box-shadow: 0 4px 15px rgba(253,188,44,0.3);
    }
  }

  .promo-card {
    max-width: 300px;
    margin: 0 auto;
    padding: 1.5rem;
    transform: rotate(0);
    animation: none;
  }

  .promo-card .savings-amount {
    font-size: 4rem;
  }

  .promo-card .savings-label {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary-color), #1a4ba5);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--white);
  clip-path: ellipse(50% 50% at 50% 50%);
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #333;
  clip-path: ellipse(50% 50% at 50% 50%);
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}

.final-cta p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 300;
}

.final-cta .cta-button-large {
  background: linear-gradient(45deg, var(--accent-color), #FFD700);
  font-size: 1.4rem;
  padding: 1.5rem 4rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(253,188,44,0.3);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.final-cta .cta-button-large:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 
    0 15px 40px rgba(253,188,44,0.4),
    0 0 20px rgba(253,188,44,0.4);
}

.final-cta .cta-button-large::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.2) 0%,
    transparent 50%
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: rotate(45deg) translateY(-100%);
  }
  100% {
    transform: rotate(45deg) translateY(100%);
  }
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 5rem 0 2rem;
  position: relative;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255,255,255,0.1) 50%,
    transparent 100%
  );
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-section h4 {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
}

.footer-section p {
  color: var(--white);
  line-height: 1.6;
  opacity: 0.9;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

.footer-section a:hover {
  color: var(--accent-color);
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
}

.footer-bottom p {
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0.8;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.legal-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.legal-links a:hover {
  color: var(--accent-color);
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  header {
    top: 0;
  }
  
  .hero-section {
    padding-top: 80px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .nav-links a {
    font-size: 0.8rem;
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.footer-section svg,
.step svg,
.footer-social svg {
  fill: var(--white);
  opacity: 0.9;
}

.footer-section a:hover svg,
.step:hover svg {
  opacity: 1;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
  background-color: #1fbd58;
}

@media screen and (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}