:root {
  --primary-color: #0b5079; /* A blue color for primary actions */
  --secondary-color: #d29e31; /* A gray for secondary elements */
  --fourth-color: white; /* Light gray for backgrounds */
  --text-color: black; /* Dark color for body text */
  --third-color: #000001; /* A green color for success messages */
}
html,
body {
  height: 100%;
}
.text-color {
  color: var(--text-color) !important;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content grows to push footer down */
main.flex-grow-1 {
  flex: 1 0 auto;
}

#footer-placeholder {
  flex-shrink: 0;
  margin-top: auto;
}

/* Ensure footer fills its container */
#footer-placeholder footer {
  width: 100%;
}

/* ===== Enhanced Navbar Styles ===== */
.navbar {
  background: rgba(0, 0, 0, 0.98);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  padding: 0.5rem 0;
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  opacity: 1;
}

/* Logo */
.logo-nav {
  height: 70px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .logo-nav {
  height: 50px;
}

/* Nav Links */
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin: 0 4px;
  padding: 10px 16px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.navbar .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar .nav-link:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.navbar .nav-link:hover::before {
  opacity: 1;
}

.navbar .nav-link.active {
  color: var(--secondary-color) !important;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(210, 158, 49, 0.5);
}

/* Mobile Menu Toggle */
.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  border-color: var(--secondary-color);
  background: rgba(210, 158, 49, 0.1);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(210, 158, 49, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d29e31' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu */
.navbar-collapse {
  transition: all 0.3s ease;
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
  background: rgba(0, 0, 0, 0.95);
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
  .navbar .nav-link {
    padding: 12px 16px;
    margin: 4px 0;
  }

  .navbar .nav-link:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
  }

  .navbar .nav-link.active::after {
    display: none;
  }

  .navbar .nav-link.active {
    background: rgba(210, 158, 49, 0.15);
    border-left: 3px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
  }

  .navbar .btn-brand {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
}

/* Book Now Button in Navbar */
.navbar .btn-brand {
  padding: 10px 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(210, 158, 49, 0.3);
}

.navbar .btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(210, 158, 49, 0.4);
}
.section-padding {
  padding-top: 30px;
}
.hero-section {
  background-color: #ffffff;
  overflow: hidden;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-section h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: -2px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 600px;
}

.btn-dark {
  background-color: black !important;
  transition: all 0.3s ease;
  border: none;
}
.btn-dark:hover {
  background-color: black !important;
  border: none;
  transform: translateY(-2px);
}

/* Footer Styles - Matching Navbar */
.site-footer {
  background-color: black;
  position: relative;
  margin-top: auto;
}

.footer-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.footer-logo {
  height: 70px;
  width: auto;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-heading {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact-list li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--secondary-color);
}

.footer-contact-list i {
  color: var(--secondary-color);
  width: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--secondary-color);
}

/* Brand Color Utility Classes */
.brand-text {
  color: var(--secondary-color) !important;
}

.brand-bg {
  background-color: var(--secondary-color) !important;
}

.btn-brand {
  background: var(--secondary-color) !important;
  border: none;
  color: white;
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 0.95;
  background-color: var(--secondary-color) !important;
  color: white !important;
}

/* Programs Page Styles */
.programs-hero {
  background-color: #fff;
}

.tier-card {
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.tier-featured {
  border: 2px solid var(--secondary-color);
}

.tier-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--secondary-color) 15%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tier-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
}

/* FAQ Accordion Styles */
.accordion-button:not(.collapsed) {
  background-color: color-mix(in srgb, var(--secondary-color) 10%, transparent);
  color: var(--secondary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--secondary-color) 25%, transparent);
}

.accordion-body ul li {
  margin-bottom: 0.5rem;
}

/* Smooth scroll for programs page */
html {
  scroll-behavior: smooth;
}

/* About Page Styles */
.about-hero-img {
  max-height: 500px;
  object-fit: cover;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.credential-card {
  transition: all 0.3s ease;
}

.credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.credential-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--secondary-color) 15%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.pillar-icon {
  flex-shrink: 0;
}

.why-card {
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-icon {
  flex-shrink: 0;
}

/* Vault Page Styles */
.vault-hero {
  background-color: #fff;
}

.vault-tab {
  background-color: transparent;
  color: var(--text-color);
  font-weight: 600;
  border: 2px solid var(--secondary-color);
  border-radius: 50px !important;
  transition: all 0.3s ease;
}

.vault-tab:hover {
  background-color: color-mix(in srgb, var(--secondary-color) 15%, transparent);
  color: var(--text-color);
}

.vault-tab.active {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: white !important;
}

/* Gallery Styles */
.gallery-item {
  cursor: pointer;
  aspect-ratio: 1;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-img {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

/* Lightbox Styles */
.lightbox-image {
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-nav:hover {
  background: var(--secondary-color);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

/* Blog Card Styles */
.blog-card {
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-img-placeholder {
  height: 200px;
  background-color: #f8f9fa;
}

/* Blog Detail Styles */
.blog-detail-img {
  max-height: 400px;
  object-fit: cover;
}

.blog-content {
  line-height: 1.6;
  font-size: 1rem;
  color: black;
}

.blog-content p {
  margin-bottom: 0.75rem;
  color: black;
}

.blog-content p:last-child {
  margin-bottom: 0;
}

.blog-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
}
.btn-primary {
  background: var(--brand-primary) !important;
  border: none;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 0.95;
  background-color: var(--brand-primary) !important;
}
.btn {
  border-radius: 12px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

/* ===== Contact Page Styles ===== */
.contact-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info-card {
  background-color: black;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-color);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(210, 158, 49, 0.15);
  border-radius: 12px;
  color: var(--secondary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary-color);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

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

.contact-form-card {
  border: 1px solid #e9ecef;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.875rem 1rem;
  transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(210, 158, 49, 0.15);
}

.contact-form-card .form-control::placeholder {
  color: #adb5bd;
}

.contact-form-card .form-label {
  color: #495057;
  margin-bottom: 0.5rem;
}

.contact-form-card .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.contact-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#contactSuccessAlert {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

#contactErrorAlert {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

/* ===== Waiver/Terms Styles ===== */
.waiver-link {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.waiver-link:hover {
  color: #b8872a;
}

#waiverCheck {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.15em;
}

#waiverCheck:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

#waiverCheck:focus {
  box-shadow: 0 0 0 3px rgba(210, 158, 49, 0.25);
  border-color: var(--secondary-color);
}

#waiverModal .modal-header {
  background-color: black;
  color: white;
  border-bottom: 3px solid var(--secondary-color);
}

#waiverModal .modal-title {
  font-weight: 700;
}

#waiverModal .btn-close {
  filter: invert(1);
}

#waiverModal .modal-body h6 {
  color: #212529;
  margin-top: 1.5rem;
}

#waiverModal .modal-body h6:first-child {
  margin-top: 0;
}

#waiverModal .modal-body p {
  color: #495057;
  line-height: 1.7;
}

#waiverModal .modal-footer {
  border-top: 1px solid #e9ecef;
}

/* ===== Reviews Section Styles ===== */
.reviews-section {
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-color);
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.review-quote-icon {
  color: var(--secondary-color);
  font-size: 3rem;
  line-height: 1;
  opacity: 0.8;
}

.review-quote-icon i {
  transform: rotate(180deg);
  display: inline-block;
}

.review-message {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.8;
  font-style: italic;
}

.review-rating {
  color: var(--secondary-color);
  font-size: 1.25rem;
  letter-spacing: 4px;
}

.review-rating .bi-star {
  color: rgba(255, 255, 255, 0.3);
}

.review-name {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.review-term {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Carousel Controls */
#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
  width: 60px;
  opacity: 1;
}

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

.carousel-control-icon-wrapper i {
  font-size: 1.25rem;
  color: white;
}

#reviewsCarousel .carousel-control-prev:hover .carousel-control-icon-wrapper,
#reviewsCarousel .carousel-control-next:hover .carousel-control-icon-wrapper {
  background: var(--secondary-color);
}

#reviewsCarousel .carousel-control-prev:hover .carousel-control-icon-wrapper i,
#reviewsCarousel .carousel-control-next:hover .carousel-control-icon-wrapper i {
  color: black;
}

/* Carousel Indicators */
#reviewsCarousel .carousel-indicators {
  bottom: -50px;
}

#reviewsCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
}

#reviewsCarousel .carousel-indicators button.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .review-message {
    font-size: 1rem;
  }

  #reviewsCarousel .carousel-control-prev,
  #reviewsCarousel .carousel-control-next {
    display: none;
  }

  .review-card {
    padding: 1.5rem !important;
  }
}

/* ===== Features & Stats Section ===== */
.features-stats-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Stats Styling */
.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 600;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(210, 158, 49, 0.1) 0%,
    rgba(210, 158, 49, 0.2) 100%
  );
  border-radius: 16px;
  color: var(--secondary-color);
  font-size: 1.75rem;
}

.feature-card:hover .feature-icon {
  background: var(--secondary-color);
  color: white;
}

.feature-card h5 {
  color: #212529;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }

  .stat-suffix {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}

/* ===== CTA Section ===== */

.cta-card {
  background-color: black;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 0 0 4px 4px;
}

.cta-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(210, 158, 49, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-section .btn-outline-light {
  border-width: 2px;
}

.cta-section .btn-outline-light:hover {
  background: white;
  color: #111;
}

/* ===== Booking Status Pages ===== */
.booking-status-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.status-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.status-icon {
  font-size: 5rem;
  line-height: 1;
}

.status-icon.success {
  color: #28a745;
}

.status-icon.cancelled {
  color: #dc3545;
}

.confirmation-box {
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.08),
    rgba(40, 167, 69, 0.03)
  );
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.confirmation-box li {
  color: #555;
}

.info-box {
  background: linear-gradient(
    135deg,
    rgba(108, 117, 125, 0.08),
    rgba(108, 117, 125, 0.03)
  );
  border: 1px solid rgba(108, 117, 125, 0.2);
}

.info-box a {
  color: #333;
  transition: color 0.3s ease;
}

.info-box a:hover {
  color: var(--secondary-color);
}
