body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fffaf8;
    color: #333;
    width: 100%;
    overflow-x: hidden; /* Prevent sideways scroll */
  }

  /* Logo */
  .logo {
    text-align: center;
    padding: 20px 0;
  }
  .logo img {
    max-width: 220px;
    height: auto;
  }

  /* Container */
  .container {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    /* padding: 20px; */
  }

  h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  h1 span {
    color: #ff6b47;
  }
  p {
    font-size: px;
    max-width: 1300px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }

  /* Flex Layout */
  /* .content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: wrap;
  } */
.content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: wrap;
}
  .box {
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 450px;
    height: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.3s ease-in-out;
  }

  .box:hover {
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    transform: translateY(-5px);
  }

  /* Coupon Image */
  .box img {
    max-width: 100%;
    border-radius: 12px;
    object-fit: contain;
  }

  /* Buttons under Coupon */
  .coupon-actions {
    margin-top: 15px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

/* Apply Button Styling */
.action-btn {
  background: #ff6b47;
  color: #fff;
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255,107,71,0.35);
  transition: all 0.3s ease;
  
  /* ✨ Pulse + Shadow Animation */
  animation: pulseGlow 2s infinite ease-in-out;
}

/* Hover Effect (extra glow on hover) */
.action-btn:hover {
  background: #ff4b2b;
  box-shadow: 0 6px 18px rgba(255,75,43,0.55);
}

/* Animation Keyframes */
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(255,107,71,0.35);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(255,107,71,0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(255,107,71,0.35);
  }
}

  /* Book Now Card */
  .book-box {
    flex-direction: column;
  }
  .book-box h2 {
    color: #ff6b47;
    margin-bottom: 22px;
    font-size: 1.4rem;
  }

 .btn {
  display: inline-block;
  background: #ff6b47;
  color: #fff;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255,107,71,0.35);
  transition: all 0.3s ease;
  animation: pulseShadow 2.5s infinite ease-in-out;
}

.btn:hover {
  background: #ff4b2b;
  box-shadow: 0 6px 16px rgba(255,75,43,0.45);
}

/* Button Pulse + Shadow Animation */
@keyframes pulseShadow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(255,107,71,0.35);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(255,107,71,0.5);
  }
}

  /* Confetti Animation */
  .confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff6b47;
    top: -10px;
    animation: fall linear forwards;
  }
  @keyframes fall {
    to {
      transform: translateY(400px) rotate(360deg);
      opacity: 0;
    }
  }
   :root {
      --primary-orange: #f16522;
      --primary-green: #00bfa5;
      --text-dark: #333;
      --text-light: #666;
    }
    section {
      width: 100%;
      padding: clamp(15px, 3vw, 30px) 15px;
    }

    h2, h3, p {
      margin: 0;
    }

    /* Thank You Section */
    .thank-you-section {
      background-color: #fff7f5;
      text-align: center;
      padding-bottom: 10px;
  
    }

    .thank-you-section img {
      max-height: 60px;
      width: auto;
      max-width: 100%;
      margin-bottom: 3px;
    }

    .thank-you-section h2 {
      font-size: clamp(20px, 4vw, 32px);
      font-weight: 700;
    }

    .thank-you-section span {
      color: var(--primary-orange);
    }
     @media (max-width: 768px) {
      .thank-you-section h2 {
        margin-right:30px;
      }
    }
    .paypal-box {
  width: 300px; /* same as coupon card */
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.paypal-box h3 {
  margin: 8px 0;
  font-size: 1.1rem;
}
.paypal-box .desc {
  text-align: center;
  font-size: 0.85rem;
}
.icon-circle {
   background-color: #f16522;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#paypal-button-container {
  margin-top: 10px;
}
.highlight-amount {
  color: #ff4b2b; /* Bright orange/red color */
  font-size: 1.5rem; /* Bada font size */
  font-weight: bold;
}
