:root {
  --primary-color: #B795D9; /* Bootstrap Primary Blue */
  --secondary-color: #6c757d; /* Bootstrap Secondary Gray */
  --black: #0A0A0A;
  --light-gray: #f8f9fa;
  --dark-blue: #0A2342;
  --text-color: #212529;
  --white: #ffffff;
  --border-radius: 0.5rem;
  --card-background: #F0F5F6;
  --low-emphasis-text: #5F6060;
  --green: #40BE71;
}

body {
  font-family: 'Raleway', sans-serif!important;
  font-weight: 400;
  color: var(--text-color);
  background-color: var(--white);
}

/* --- Helper Classes --- */
.section-padding {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--light-gray);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark-blue);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* --- Top Bar --- */
.top-bar {
  background-color: var(--primary-color);
  color: var(--white);
  height: 50px;
  font-size: 0.9rem;
}
.top-bar .container, .top-bar .container > div {
  height: 100%;
}
.top-bar-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: Arial;
}
.top-bar-link:hover {
  color: var(--black);
}
.top-bar-separator {
  color: var(--white);
}
.top-bar-social-link {
  color: var(--white);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.top-bar-social-link:hover {
  color: var(--black);
}

/* --- Navigation Bar --- */
.navbar {
  padding: 1.2rem 0;
  transition: all 0.4s ease-in-out; /* Smooth transition for all properties */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
  background-color: var(--white); /* Default solid background */
}

.navbar.navbar-scrolled {
  top: 20px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px); /* Adjust width for left/right spacing */
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background for the effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  box-shadow: 0 2px 7px rgba(0,0,0,0.06);
}

/* --- Hero Section --- */
#hero {
  color: var(--white);
  padding-bottom: 0; /* Adjusted padding */
}
.hero-content {
  padding: 0px 0;
}

/* Override Bootstrap container width for a wider hero banner */
@media (min-width: 576px) {
  .hero-content .container {
    max-width: calc(540px + 40px);
  }
}
@media (min-width: 768px) {
  .hero-content .container {
    max-width: calc(720px + 40px);
  }
}
@media (min-width: 992px) {
  .hero-content .container {
    max-width: calc(960px + 40px);
  }
}
@media (min-width: 1200px) {
  .hero-content .container {
    max-width: calc(1140px + 80px);
  }
}
@media (min-width: 1400px) {
  .hero-content .container {
    max-width: calc(1320px + 80px);
  }
}

.hero-cards {
  transform: translateY(50%);
}
.hero-cards .card {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* --- Advantage & Services Section --- */
#advantage {
  padding-top: 100px; /* Offset for hero cards */
}
.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.card {
  border: none;
  overflow: hidden; /* Good for keeping the pseudo-element within the rounded corners */
  border-radius: 40px;
  padding: 36px 45px !important;
  transition: all 0.3s ease-in-out;
  height: 100%;
  background: var(--card-background);
  position: relative; /* Crucial for positioning the pseudo-element */
  z-index: 1; /* Ensures the card content stays above the pseudo-element */
  border: 1px solid #eaeff0;
}

.section-bg .card {
  background: var(--white);
}

.card::before {
  content: ''; /* Pseudo-elements require a content property to exist */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(to bottom, #F0F5F6, #D9F1FB);*/
  background: linear-gradient(to bottom, #F0F5F6, #D9F1FB);
  z-index: -1; /* Pushes the pseudo-element behind the card's content */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.card:hover::before {
  opacity: 1;
}

/* --- How It Works Section --- */
.step-container {
  text-align: center;
  padding: 2rem;
}
.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* --- About Section --- */
#about .about-text {
  font-style: italic;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Contact Form & Map --- */
#map-popup {
  display: none;
  position: absolute;
  bottom: 100%; /* Changed from top to bottom */
  left: 0;
  width: 100%;
  z-index: 1000;
  margin-bottom: 0.5rem; /* Changed from margin-top */
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  overflow: hidden; /* Ensures map corners are rounded */
}
#map {
  height: 300px;
}
.form-control, .form-select {
  min-height: 50px;
  border-radius: var(--border-radius);
}
.form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  border-color: var(--primary-color);
}

/* Custom styles for validation feedback */
.form-control.is-valid, .form-control.is-invalid {
  background-image: none !important; /* Remove default Bootstrap icons */
  border-width: 2px;
}
.form-control.is-valid {
  border-color: #198754 !important;
}
.form-control.is-invalid {
  border-color: #dc3545 !important;
}

/* --- Choices.js Custom Styling --- */
.choices__inner {
  background-color: #fff;
  min-height: 50px;
  border-radius: var(--border-radius);
  border: 1px solid #ced4da;
  padding-top: 0.5rem;
}
.choices__list--multiple .choices__item {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 0.25rem;
}
.choices[data-type*="select-multiple"] .choices__button, .choices[data-type*="text"] .choices__button {
  border-left: 1px solid #0a58ca;
  margin-left: 8px;
}

/* --- Footer --- */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding-top: 40px;
}
footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: var(--black);
}
footer .footer-slogan {
  font-style: italic;
  color: var(--secondary-color);
}
.footer-legal {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
  font-size: 0.9rem;
}
.footer-legal a {
  margin: 0 10px;
}








/******************************************
BUTTONS
******************************************/
.btn-round{
  border-radius: 100px!important;
}

.btn.primary{
  border: none;
  border-color: transparent;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 30px;
}

.btn.light{
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  color: #0A0A0A;
}

.btn.light:hover{
  background-color: var(--black);
  color: var(--white);
}

.btn.light.outlined{
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn.dark{
  transition: all 0.3s ease-in-out;
  background-color: var(--black);
  color: #fff;
}

.btn.dark.outlined{
  background-color: transparent;
  color: #0A0A0A;
  border: 1px solid #0A0A0A;
}

.btn.dark.outlined:hover{
  background-color: var(--black);
  color: var(--white);
}

.btn.purple{
  background-color: var(--primary-color);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.btn.purple:hover{
  background-color: var(--black);
  color: #fff;
}

.btn.purple.outlined{
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn.purple.gradient {
  transition: all 0.3s ease-in-out;
  background: linear-gradient(to bottom right, #B795D9, #9F6FD9);
}

.btn.cardButton{
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.7rem;
  --bs-btn-font-size: 0.875rem;
  background-color: transparent;
  color: #0A0A0A;
  border: 1px solid #0A0A0A;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}
.btn.cardButton:hover{
  background-color: #0A0A0A;
  color: #fff;
}

/******************************************
SECTION GLOBAL STYLES
******************************************/
.section-title{
  font-size: 50px;
  line-height: 68px;
  font-weight: 700;
  color: var(--black);
}

.section-title .low-emphasis{
  color: var(--low-emphasis-text);
}

.section-title .high-emphasis{
  color: var(--primary-color);
}

.section-text{
  font-size: 19px;
  line-height: 32px;
  font-weight: 400;
  color: var(--black);
  padding-top: 10px;
}

.section-mb{
  margin-bottom: 64px;
}

.section-subtitle{
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  color: var(--black);
}

.section-point-title{
  font-size: 21px;
  line-height: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.section-point-text{
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: var(--black);
}

/******************************************
NAVIGATION
******************************************/
.nav-link {
  font-weight: 600;
  color: var(--black);
  padding-left: 20px !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--primary-color);
}
.nav-link.active {
  color: var(--primary-color);
}

.btn.purple.bookNowButton{
  margin-left: 30px;
  padding: 13px 22px;
}

.navbar-toggler{
  border: none;
}
.navbar-toggler:focus{
  box-shadow: none!important;
}
.navbar{
  padding: 8px 0px;
}

/******************************************
HERO
******************************************/
.hero-content .container {
  /*background-color: rgba(10, 35, 66, 0.7);  Dark blue overlay */
  background-color: transparent;
  padding: 50px 40px 40px;
  border-radius: 30px;
  /*aspect-ratio: 1398 / 852;*/
  aspect-ratio: 1398 / 782;
  background-image: url('../img/banner-female.webp');
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.hero-content .wrapper {
  background-color: transparent;
  position: relative;
  height: 100%;
}

.hero-content .lead-content {
  background-color: transparent;
  text-align: left;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 690px;
}

.hero-content .hero-cards-content {
  background-color: transparent;
  text-align: right;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 600px;
}

.hero-content .hero-cards-content .card-content {
  border: none;
  border-radius: 36px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent background for the effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  text-align: left;
  padding: 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-content .hero-cards-content .card-content:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); /* For Safari support */
}

.hero-content .hero-cards-content .card-content:hover .benefits-bg{
  bottom: -57px;
  rotate: -64deg;
}

.hero-cards-content .card-content .info {
  display: flex;
  flex-direction: row; /* Explicitly sets the direction to horizontal */
  justify-content: space-between;
  align-items: center;
}

.hero-cards-content .card-content .card-title{
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
}
.hero-cards-content .card-content .benefits-bg{
  position: absolute;
  z-index: -1;
  right: 20px;
  bottom: -47px;
  rotate: -60deg;
  height: 300px;
  width: auto;
  transition: all 0.3s ease-in-out;
}
.hero-cards-content .card-content .card-text{
  color: var(--black);
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}
.hero-cards-content .card-content .card-text.big{
  color: #0A0A0A;
  font-size: 47px;
  margin-bottom: 15px;
}

.hero-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #fff;
  opacity: 1;
  border-radius: 32px;
  flex-flow: column;
  width: 100%;
  max-width: 275px;
  padding: 24px;
  display: flex;
  overflow: hidden;
}

.hero-content h1 {
  font-size:54px;
  font-weight: 700;
  line-height: 66px;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 50px;
}

.hero-content p {
  font-size:20px;
  font-weight: 400;
  line-height: 33px;
  color: #fff;
  margin-bottom: 70px;
}

.hero-content .tagline{
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.35);
  align-items: center;
  padding: 4px 16px;
  display: inline-flex;
  justify-self: flex-start;

  /* Add these new styles for the animated glow */
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-border 2.5s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.hero-content .tagline i{
  display: inline-block;
  color: #fff;
  font-size: 19px;
  position: relative;
  bottom: -2px;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.hero-content .tagline strong {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

/******************************************
CONTACT
******************************************/
.choices__input {
  background-color: transparent;
  padding: 6px 0 4px 8px;
}

.form-container{
  background-color: var(--card-background);
  border: 1.5px solid #d3dee1;
  border-radius: 16px;
  padding: 16px 24px;
}

.form-container .form-control {
  min-height: 38px;
  border-radius: 0;
  border: none;
  padding-left: 0px;
  padding-right: 0px;
  background: transparent;
  color: var(--black);
  font-size: 14px;
}

.form-container label {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
}

.form-container .form-control:focus {
  outline: none!important;
  box-shadow: none!important;
}

.form-container .form-select:focus {
  outline: none!important;
  box-shadow: none!important;
}

.select-option-text{
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}

/* Placeholder */
.form-container .form-control::placeholder {
  color: #7f8181;
}

/* Chrome, Edge, Safari */
.form-container .form-control::-webkit-input-placeholder {
  color: #7f8181;
}

/* Firefox */
.form-container .form-control::-moz-placeholder {
  color: #7f8181;
  opacity: 1; /* Firefox applies a default opacity, so reset it */
}

/* Internet Explorer 10-11 */
.form-container .form-control:-ms-input-placeholder {
  color: #7f8181;
}

.form-container .form-select:disabled {
  background-color: transparent;
}

.form-container .form-select {
  min-height: 38px;
  border-radius: 0;
  border: none;
  font-size: 14px;
  padding-left: 0px;
  background-color: var(--card-background);
  background-position: right center;
}

#contact .appointment-title{
  font-size: 26px;
  line-height: 34px;
  font-weight: 800;
  margin-bottom: 100px;
  color: var(--black);
}

#contact .appointment-content-list{
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex
;
}

#contact .appointment-list-item{
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

#contact .appointment-list-item h3{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--black);
  line-height: 31px;
}

#contact .appointment-list-item p{
  border-top: 1px solid #0a0a0a1a;
  padding-top: 11px;
  font-size: 16px;
  color: var(--black);
}

#contact .spinner-in-button{
  display: none;
  margin-right: 10px;
}

#contact .privacy-policy-accept-modal {
  font-weight: bold; /* Makes the text bold */
  color: var(--dark-blue); /* Sets the text color to a standard blue */
  text-decoration: underline; /* Underlines the text */
  cursor: pointer; /* Changes the mouse cursor to a pointer, reinforcing that it's clickable */
}




/******************************************
BENEFITS
******************************************/
.benefits_container{
  display: flex;
  justify-content: space-between;
}

.benefits_container .card-title{
  color: var(--black);
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
  width: 100%;
  margin-bottom: 100px;
  height: 70px;
}

.benefits_container .card-text{
  color: #5F6060;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  padding-bottom: 15px;
}

.card:hover .benefits_icon_container {
  background-color: var(--primary-color);
}

.card:hover .benefits_icon_container i {
  color: var(--white);
}

.benefits_icon_container{
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #E1E9EB;
  transition: all 0.3s ease-in-out;
}

.benefits_icon_wrapper{
  border-top: 1px solid #D9D9D9;
  padding-top: 15px;
}

.benefits_icon_container .benefits_icon{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits_icon_container i{
  font-size: 30px;
  margin-bottom: 0px;
  transition: all 0.3s ease-in-out;
  line-height: 1;
}

/******************************************
SERVICES
******************************************/
.services_container{
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
}

/* Add a shadow to hover */
.services_container:hover {
  /*box-shadow: 0 22px 24px rgba(0, 0, 0, 0.03);*/
  /*transform: translateY(-5px);*/
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.services_container h3{
  color: var(--black);
  font-size: 19px;
  line-height: 25px;
  font-weight: 700;
  width: 100%;
  margin-bottom: 10px;
  height: 60px;
  margin-top: 20px;
}

.services_container p{
  color: #5F6060;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.card:hover .services_icon_container {
  background-color: var(--primary-color);
}

.card:hover .services_icon_container i {
  color: var(--white);
}

.services_icon_container{
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #E1E9EB;
  transition: all 0.3s ease-in-out;
}

.services_icon_wrapper{
  /*border-top: 1px solid #D9D9D9;
  padding-top: 15px;*/
  display: flex;
  justify-content: center;
}

.services_icon_container .services_icon{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services_icon_container i{
  font-size: 30px;
  margin-bottom: 0px;
  transition: all 0.3s ease-in-out;
  line-height: 1;
}


/******************************************
STEPS
******************************************/
.steps_container{
  display: flex;
  border: 1px solid var(--primary-color);
}
.steps_container:hover::before {
  opacity: 0!important;
}

.steps_container strong{
  color: var(--black);
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 160px;
}

.steps_container strong span{
  /*color: #5F6060;*/
  color: var(--primary-color);
  font-size: 32px;
  line-height: 32px;
  font-family: sans-serif;
}

.steps_container .step-circle{
  width: 80px;
  height: 80px;
  border-radius: 100px;
  border: 1px solid #E1E9EB;
  background-color:transparent;
  margin-bottom: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.steps_container .step-circle span{
  color: var(--black);
  font-size: 26px;
  line-height: 26px;
  font-family: sans-serif;
}

.steps_container h3{
  color: var(--black);
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 20px;
  margin-bottom: 15px;
  transition: color 0.3s ease-in-out;
  min-height: 80px;
}

.steps_container:hover h3{
  color: var(--black);
}

.steps_container p{
  color: #5F6060;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 0px;
}


/******************************************
OPTIONS
******************************************/
.options_container h3 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.options_container p {
  color: #5F6060; /* text-muted color */
  margin-bottom: 1.5rem;
  font-size: 13px;
}

.options_container .options-header{
  height: 210px;
}

.card-popular {
  border: 2px solid var(--primary-color);
}

.card-popular .popular{
  background-color: var(--primary-color)!important;
}

/* Styling for the feature pills */
.options_container .feature-pill {
  display: inline-block;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 999px; /* Fully rounded pill shape */
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  color: #555;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Price styling */
.options_container .price {
  font-size: 2.75rem;
  font-weight: 700;
  color: #212529;
  font-family: sans-serif;
}

.options_container .price-period {
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
}

/* Arrow button styling */
.options_container .arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  color: #212529;
  text-decoration: none;
  font-size: 1.5rem;
  transition: background-color 0.3s ease-in-out;
}
.options_container .arrow-btn i {
  color: var(--black);
  transition: color 0.3s ease-in-out;
}

.options_container .arrow-btn:hover {
  background-color: var(--black);
}

.options_container .arrow-btn:hover i{
  color: var(--white);
}


/******************************************
    PACKAGE SELECTION
******************************************/
.package-card {
  padding: 1.25rem;
  border-radius: var(--border-radius);
  background-color: var(--card-background);
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #d3dee1;
  position: relative;
}
.package-card .popular {
  background-color: var(--primary-color)!important;
  /*position: absolute;
  top: 0px;
  right: 0px;
  z-index: 100;*/
}
.package-card.selected {
  border-color: var(--primary-color);
  border-width: 2px;
  /*box-shadow: 0 0 15px rgba(183, 149, 217, 0.5);*/
}
.package-card h5 {
  margin-bottom: 0px;
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 0px;
}

.package-card p{
  font-size: 12px;
  margin-top: 14px;
}
.package-price {
  font-size: 20px;
  font-weight: 700;
  /*color: var(--primary-color);*/
  color: #9f65d9;
  margin-top: 0px;
  font-family: sans-serif;
}

.package-price .price-period {
  font-size: 12px;
  font-weight: 400;
  color: #6c757d;
}
.info-icon {
  cursor: pointer;
  color: var(--secondary-color);
  font-size: 1.1rem;
}
.feature-pill {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  background-color: #e9ecef;
  border-radius: 50rem;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  margin-right: 0.3rem;
}
.popover-header {
  font-weight: 600;
}
.popover-body {
  padding: 1rem;
}

/******************************************
MODAL
******************************************/
.modal-content {
  border-radius: 40px;
  border: none;
}

.modal-body {
  padding: 40px;
  position:relative;
  z-index: 0;
  overflow: hidden;
}

.modal-body .close-modal{
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--black);
  cursor: pointer;
  z-index: 10;
  background: transparent;
  width: 35px;
  height: 35px;
}

.bookModal .modal-title{
  color: var(--black);
  font-size: 26px;
  /*margin-bottom: 160px;*/
  margin-bottom: 20px;
}

.bookModal .modal-text{
  color: var(--black);
}

/******************************************
LOTTIE
******************************************/
.lottie-form-submit-success{
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.lottie-container-booking-fail{
  width: 180px;
  height: 130px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.modal-title.lottie-success-title {
  margin-bottom: 0px;
}
.modal-title.lottie-fail-title {
  margin-bottom: 0px;
}
.lottie-container-booking-success{
  width: 180px;
  height: 130px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.form-submit-success-lottie{
  width: 180px;
  height: 180px;
}

.lottie-container-booking-fail .form-submit-fail-lottie{
  width: 110px;
  height: 110px;
}

.lottie-form-submit-success-fullscreen {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/******************************************
Container bgg
******************************************/
.container_bgg{
  position: absolute;
  opacity: 0.1;
  z-index: 0;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, #3e73f0 5%, transparent 5%), radial-gradient(circle at 90% 10%, #3e73f0 5%, transparent 5%), radial-gradient(circle at 90% 90%, #3e73f0 5%, transparent 5%), radial-gradient(circle at 10% 90%, #3e73f0 5%, transparent 5%);
  background-size: 20px 20px;
}

.container_bgg2{
  position: absolute;
  opacity: 1;
  z-index: -1;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: white;
  background: radial-gradient(125% 125% at 50% 10%, #fff 40%, #63e 100%);
}

/* From Uiverse.io by Gautammsharma */
.circuit-wrapper {
  min-height: 100%;
  width: 100%;
  position: relative;
  background-color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.4;
}

.circuit-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 19px,
    rgba(75, 85, 99, 0.08) 19px,
    rgba(75, 85, 99, 0.08) 20px,
    transparent 20px,
    transparent 39px,
    rgba(75, 85, 99, 0.08) 39px,
    rgba(75, 85, 99, 0.08) 40px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 19px,
    rgba(75, 85, 99, 0.08) 19px,
    rgba(75, 85, 99, 0.08) 20px,
    transparent 20px,
    transparent 39px,
    rgba(75, 85, 99, 0.08) 39px,
    rgba(75, 85, 99, 0.08) 40px
  ),
  radial-gradient(
    circle at 20px 20px,
    rgba(55, 65, 81, 0.12) 2px,
    transparent 2px
  ),
  radial-gradient(
    circle at 40px 40px,
    rgba(55, 65, 81, 0.12) 2px,
    transparent 2px
  );
  background-size:
    40px 40px,
    40px 40px,
    40px 40px,
    40px 40px;
}

