/* Root Colors */
:root {
  --primary: #00003a;
  --green: #56b94d;
  --secondary: #f4c129;
  --tertiary: #f68926;
  --lightGreen: #86c548;
  --lightBlue: #3672b9;
  --blueGrey: #27aee4;
  --lightGrey: #d3d3d3;
}

/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc;
  color: var(--primary);
}

.momentumLogo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.globe {
  width: 50px;
  height: 50px;
}

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

.main-content {
  padding: 2rem 1rem;
}

.section {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2rem;
}

/* Header */
.header {
  background-color: var(--primary);
  color: #fff;
  padding: 1.5rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.header h1 {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0;
}

.cta-button {
  background-color: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  padding: 0.25rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  gap: 1rem;
}

.cta-button:hover {
  background-color: var(--tertiary);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--lightGrey);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background-color: #f8f8f8;
  border: 2px solid var(--lightBlue);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lightBlue);
}

.pricing-subtitle {
  color: #666;
  margin-top: 0.5rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lightBlue);
}

.register-button {
  background-color: var(--lightBlue);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
}

.register-button:hover {
  background-color: var(--primary);
}

.silver-card {
  background-color: var(--secondary);
  color: #fff;
}

.elite-card {
  background-color: var(--primary);
  color: #fff;
}

.elite-card .pricing-title {
  color: var(--tertiary);
}

.elite-card .price-amount {
  color: var(--secondary);
}

.elite-card .register-button {
  background-color: var(--tertiary);
  color: var(--primary);
}

.elite-card .register-button:hover {
  background-color: var(--secondary);
}

.elite-card .pricing-list li::before {
  color: var(--secondary);
}.paymentPrompt {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
  font-style: italic;
}

.promotion-text {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 1rem;
}

/* Payment Section Styling */
.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.payment-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.payment-logo {
  max-width: 120px;
  margin: 0 auto 1rem;
  display: block;
}

.payment-method {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.payment-steps {
  list-style: decimal inside;
  text-align: left;
  padding-left: 0;
  margin: 0 auto;
  max-width: 280px;
  color: #444;
  font-size: 0.95rem;
}

.payment-steps li {
  margin-bottom: 0.5rem;
}

/* Section background to separate visually */
.section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
}


.section-note {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: #555;
}

.section-note strong {
  color: #a11;
}

/* Confirmation Form */
.confirmation-box {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.04);
}

.confirmation-box h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
}

.confirmation-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.confirmation-box label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  text-align: left;
}

.confirmation-box input,
.confirmation-box select {
  padding: 0.7rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  width: 100%;
}

.confirmation-box input:focus,
.confirmation-box select:focus {
  border-color: #a11;
  outline: none;
  box-shadow: 0 0 0 2px rgba(160, 20, 20, 0.15);
}

.confirmation-box button {
  background: #a11;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.confirmation-box button:hover {
  background: #900;
}

/* Success & Error Messages */
.success-message {
  background: #e9f9ec;
  border: 1px solid #b7e1c0;
  color: #236b2a;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  max-width: 480px;
  margin: 1.5rem auto;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  animation: fadeInScale 0.5s ease forwards;
}

.error-message {
  background: #fdeaea;
  border: 1px solid #f5b5b5;
  color: #a12424;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  max-width: 480px;
  margin: 1.5rem auto;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}




.contact-info {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: #555;
}

.contact-link {
  color: var(--lightBlue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--blueGrey);
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.875rem;
}

.footer a {
  color: var(--secondary);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media screen and (min-width: 768px) {
    .header-container {
        flex-direction: row;
    }

    .header h1 {
        margin-bottom: 0.5rem;
    }
}
