:root {
  --primary-color: #007ee2;
  --secondary-color: #eaeaec;
  --accent-color: #aaddff;
  --dark-color: #005bb1;
  --light-color: #f8f9fa;
  --text-dark: #333;
  --text-light: #777;
  --gradient-start: #0540a7;
  --gradient-mid: #0866d0;
  --gradient-end: #59c2ff;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-mid),
    var(--gradient-end)
  );
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto !important;
  position: relative;
  height: auto;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Decorative Elements - Fixed for mobile */
.decorative-orb {
  position: fixed; /* Change to fixed instead of absolute */
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1)
  );
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  z-index: 0;
  pointer-events: none; /* Ensure they don't interfere with clicks */
}

.orb-1 {
  width: 200px;
  height: 200px;
  top: 15%;
  right: 5%;
  animation: float 15s ease-in-out infinite;
}

.orb-2 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 8%;
  animation: float 12s ease-in-out infinite reverse;
}

.orb-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 15%;
  animation: float 10s ease-in-out infinite 2s;
}

.orb-4 {
  width: 80px;
  height: 80px;
  top: 35%;
  left: 12%;
  animation: float 8s ease-in-out infinite 1s;
}

.orb-5 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-15px) translateX(10px);
  }
  50% {
    transform: translateY(0) translateX(0);
  }
  75% {
    transform: translateY(15px) translateX(-10px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

/* Light beam effects - Fixed for mobile */
.light-beam {
  position: fixed; /* Change to fixed instead of absolute */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
  transform-origin: top center;
  z-index: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none; /* Ensure they don't interfere with clicks */
  max-width: 100vw; /* Limit width to viewport width */
  overflow: hidden; /* Hide overflow */
}

.beam-1 {
  width: 30%; /* Reduce width to percentage of viewport */
  height: 100vh;
  top: -50px;
  left: -5%; /* Position slightly off-screen */
  transform: rotate(-25deg);
  opacity: 0.5;
  animation: beam-fade 8s infinite alternate;
}

.beam-2 {
  width: 20%; /* Reduce width to percentage of viewport */
  height: 80vh;
  top: -50px;
  right: -5%; /* Position slightly off-screen */
  transform: rotate(15deg);
  opacity: 0.3;
  animation: beam-fade 10s infinite alternate-reverse;
}

@keyframes beam-fade {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.5;
  }
}

/* Cloud-like elements - Fixed for mobile */
.cloud-element {
  position: fixed; /* Change to fixed instead of absolute */
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05),
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none; /* Ensure they don't interfere with clicks */
  overflow: hidden; /* Hide overflow */
}

.cloud-1 {
  width: 40%; /* Reduce width to percentage of viewport */
  height: 30%;
  top: 10%;
  left: -10%; /* Position slightly off-screen */
}

.cloud-2 {
  width: 40%; /* Reduce width to percentage of viewport */
  height: 25%;
  bottom: 5%;
  right: -10%; /* Position slightly off-screen */
}

.cloud-3 {
  width: 30%; /* Reduce width to percentage of viewport */
  height: 18%;
  top: 40%;
  right: 0; /* Keep within viewport */
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 126, 226, 0.08);
  padding: 15px 0;
  transition: all 0.4s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--primary-color) !important;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 12px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-color) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    rgba(5, 64, 167, 0.9),
    rgba(8, 102, 208, 0.9),
    rgba(89, 194, 255, 0.85)
  );
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=2068")
    no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Start Now Button */
.start-now-btn {
  background: white;
  color: var(--primary-color);
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.start-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.9);
}

.start-now-btn i {
  transition: transform 0.3s ease;
}

.start-now-btn:hover i {
  transform: translateY(3px);
}

/* Section Container */
.section-container {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.section-title p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

/* Price Cards */
.price-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 126, 226, 0.1);
}

.price-title {
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  height: 60px; /* Fixed height for title */
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-value {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  height: 40px; /* Fixed height for price */
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-description {
  color: var(--text-light);
  margin-bottom: 20px;
  min-height: 100px; /* Minimum height for description */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.availability-info {
  background-color: rgba(0, 126, 226, 0.1);
  padding: 10px;
  border-radius: 8px;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 20px;
  height: 42px; /* Fixed height for availability info */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form Controls */
.form-label {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-control {
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 126, 226, 0.25);
}

.quantity-input {
  max-width: 150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 85px;
  justify-content: center;
}

/* Buttons with improved visibility */
.btn-primary {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background-color: var(--light-color);
  border-color: var(--light-color);
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
  color: white;
  border-color: white;
  background-color: transparent;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover:not([disabled]) {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-light {
  background-color: white;
  color: var(--primary-color);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Alert Custom */
.alert-custom {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

/* Merchandise Image */
.merch-img-container {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.merch-img {
  max-height: 150px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-mid),
    var(--gradient-end)
  );
  color: white;
  padding: 60px 0 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 10; /* Ensure footer is above decorative elements */
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1606811971618-18320fcc4614?q=80&w=2148")
    no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

/* Ensure footer content is clickable */
.footer .container,
.footer p,
.footer a {
  position: relative;
  z-index: 11; /* Higher than footer background */
}

/* Add light ray effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.05) 75%,
    transparent 100%
  );
  background-size: 200% 200%;
  animation: lightRays 15s linear infinite;
  z-index: -1;
}

@keyframes lightRays {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-container {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .price-title {
    font-size: 1.5rem;
  }

  .price-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .start-now-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .section-title p {
    font-size: 1rem;
  }
}

/* Custom Card Styles */
.card-custom {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  padding: 0;
  height: auto;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  margin-bottom: 20px;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 126, 226, 0.1);
}

.card-title-custom {
  background: linear-gradient(45deg, var(--primary-color), var(--dark-color));
  color: white;
  padding: 20px 25px;
  border-radius: 16px 16px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.card-body-custom {
  padding: 20px;
}

/* Custom List Group */
.list-group-custom {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

.list-item-custom {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 126, 226, 0.1);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.list-item-custom:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(0, 126, 226, 0.05);
}

.item-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.item-quantity {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-left: 10px;
}

.price-badge {
  background: linear-gradient(45deg, var(--primary-color), var(--dark-color));
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Total Section */
.total-section {
  background-color: rgba(0, 126, 226, 0.05);
  padding: 12px 15px;
  border-radius: 12px;
  margin-top: 15px;
}

/* Payment Styles */
.payment-amount-section {
  padding: 30px;
  background-color: rgba(0, 126, 226, 0.05);
  border-radius: 16px;
  margin: 30px 0;
}

.payment-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 20px 0;
  text-shadow: 0 2px 10px rgba(0, 126, 226, 0.2);
}

/* Shipping Details */
.shipping-details {
  background-color: rgba(0, 126, 226, 0.05);
  padding: 12px 15px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.shipping-cost,
.total-amount {
  font-weight: 700;
  color: var(--primary-color);
}

/* Fix for horizontal scrolling on mobile - Apply to all pages */
html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  background-image: url("./BG02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body {
  overflow-x: hidden !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-section {
    padding: 80px 0 40px;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .btn-primary,
  .btn-light,
  .btn-outline-primary {
    padding: 8px 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
}

.card-action-container {
  margin-top: auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
