/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eff9f1;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 4.6rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #32a045;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #4c9a5a;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #56ae66;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background-color: #eff9f1;
  padding: 4.8rem 0 8rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 8rem;
  align-items: center;
}

.hero-description {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4rem;
  padding-right: 1rem;
  font-weight: 400;
}

.hero-img {
  width: 100%;
  border-radius: 11px;
}
.btn-cta {
  margin-right: 1.6rem;
}

/**************************/
/* SERVICES SECTION */
/**************************/

.services-section {
  padding: 8rem 0;
  scroll-margin-top: 3rem;
}

.service {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.015);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
  border: 2px solid rgba(76, 154, 90, 0.15);
  align-items: center;
  justify-content: center;
}
.grid-services {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr 1fr 1fr; /* Three columns */
  grid-auto-flow: row; /* This changes the flow to go down the columns first */
}

.service:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.045);
}

.service-content {
  padding: 1.6rem 1.8rem 1.6rem 1.8rem;
  display: inline-block;
}

.service-name {
  font-size: 1.6rem;
  /* font-size: 1.8rem; */
  color: #555;
  font-weight: 600;
}
.text-services-extra {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #555;
  margin-top: 3.2rem;
  text-align: center;
}
/**************************/
/* ABOUT THE DOCTOR SECTION */
/**************************/

.meet-the-doctor-section {
  padding: 8rem 0;
  scroll-margin-top: 3rem;
}
.doctor-text {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: start;
  display: inline-block;
}
.doctor-img-box {
  justify-items: center;
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
}
.doctor-img {
  width: 100%;
  border-radius: 9px;
}
.doctor-container {
  /* display: flex;
  gap: 6.4rem;
  align-items: center; */
  display: grid;
  gap: 6.4rem;
  grid-template-columns: 35fr 65fr;
  align-items: center;
  margin-bottom: 6.4rem;
}

.quote-box {
  margin-bottom: 2.4rem;
  display: inline-block;
  padding: 1.8rem;
  border-radius: 9px;
  border: 0.5px solid rgb(50, 160, 69, 0.21);
  box-shadow: 0 0.6rem 1rem rgba(0, 0, 0, 0.03);
}
.quote-name {
  font-size: 1.4rem;
  text-align: center;
}
.quote {
  font-size: 1.6rem;
  text-align: start;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.doctor-title {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin-bottom: 1.4rem;
  font-weight: 600;
}
.techniques-container {
  display: grid;
  width: 60%;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 1.8rem;
}
.technique-content {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.technique-name {
  font-size: 1.6rem;
  line-height: 1.6;
}

.link-college {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #32a045;
}

.list-icon {
  display: block;
  width: 24px;
  height: 24px;
  color: #32a045;
}
.text-techniques-extra {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: start;
  margin: 0 auto;
  margin-top: 3.2rem;
}
/* SECTION STEPS */
/**************************/
.step-img {
  width: 100%;
}
.steps-icon {
  color: #4c9a5a;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #eff9f1;
  margin-bottom: 2.4rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.section-steps {
  padding: 8rem 0;
  scroll-margin-top: 3rem;
}

.step-number {
  font-size: 9.6rem;
  font-weight: 700;
  color: #888;
  display: inline-block;
}

.step-description {
  font-size: 1.6rem;
  line-height: 1.6;
}

.step-img-box {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 90%;
  justify-self: center;
}

.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 60%;
  /* height: 60%; */

  /* 60% of parent's width */
  padding-bottom: 60%;

  background-color: #eff9f1;
  z-index: -2;
}

.step-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #d7f0db;
  z-index: -1;
}

.step-img {
  width: 35%;
  /* z-index: 10; */
}

/* /* SECTION TESTIMONIALS */
.section-testimonials {
  padding: 8rem 0;
  scroll-margin-top: 3rem;
}
.section-testimonials h2.heading-secondary {
  margin-bottom: 4.8rem;
}
.carousel-container {
  width: 75%;
  margin: auto;
  font-family: sans-serif;
  position: relative;
}
.carousel {
  display: none;
  text-align: center;
  border-radius: 1rem;
}
.carousel.active {
  display: block;
}
.stars {
  color: #444;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #555;
  position: relative;
}
.disclaimer-text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 1.8rem;
  text-align: center;
  color: #555;
}
.reviewer-name {
  font-size: 1.6rem;
  color: #6f6f6f;
  margin-bottom: 2.4rem;
}
.dots {
  text-align: center;
  margin-bottom: 1.6rem;
}
.dot {
  height: 1rem;
  width: 1rem;
  margin: 0 0.5rem;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.dot.active {
  background-color: #717171;
}
.arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-100%);
  width: auto;
  padding: 0.5rem;
  color: #555;
  font-weight: bold;
  font-size: 3.6rem;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem transparent;
}
.arrow:hover {
  background-color: #ddd;
}
.arrow-left {
  left: -5rem;
}
.arrow-right {
  right: -5rem;
}
.icon-link {
  display: block;
  height: 2rem;
  width: 2rem;
  font-weight: bold;
}
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}

.google-logo {
  height: 2rem;
  filter: brightness(0);
  opacity: 0.5;
}
.read-more:link,
.read-more:visited {
  display: inline-block;
  font-size: 1.6rem;
  color: #777;
  border-bottom: 1px #555 solid;
  padding-bottom: 0.5px;
  text-decoration: none;
  margin-right: 0.4rem;
  transition: all 0.3s;
}
.read-more:hover,
.read-more:active {
  color: #32a045;
  border-bottom: none;
}

.link-test:link,
.link-test:visited {
  color: #777;
}

.link-test:hover,
.link-test:active {
  color: #32a045;
}

/* FAQ SECTION*/
.faq-section {
  padding: 8rem 0;
  scroll-margin-top: 3rem;
}
.faq-container .heading-secondary {
  margin-bottom: 4.8rem;
}
.faq-container {
  max-width: 66.6%;
  margin: auto;
  /* box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(85, 85, 85, 0.11); */
  border-radius: 1rem;
  font-family: sans-serif;
}

.faq {
  border-bottom: 0.1rem solid #dff3e3;
  margin-bottom: 1.8rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; /* Removes the blue highlight on tap */
  outline: none; /* Removes any outline that may appear */
}
.faq-last {
  margin-bottom: 0;
}
.faq-question {
  padding: 1.8rem 2.4rem;
  background-color: #dff3e3;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}
.heading-faq {
  margin-bottom: 3.2rem;
}
.faq-question:hover {
  background-color: #7fcd8d;
  color: #222;
}
.faq-text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 3.2rem;
  text-align: center;
}
.faq-answer {
  padding: 3.2rem;
  color: #555;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  line-height: 1.6;
  display: none;
  border: 0.5px solid #cfecd4;
}
.faq-list {
  margin-left: 1.8rem;
}
/* CTA SECTION */
.cta {
  font-family: sans-serif;
  scroll-margin-top: 3rem;
  padding: 8rem 0 3.2rem 0;
}

.cta-content {
  display: grid;
  grid-template-columns: 69fr 31fr;
  height: 100%;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
}

.cta-map {
  height: 100%;
}

.cta-info {
  background-color: #7fcd8d;
  padding: 3.2rem; /* Padding applied to all sides */
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #333;
  height: 100%;
}

.cta-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  color: #333;
  font-weight: 500;
}

.cta-info p,
.hours-list {
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

a.btn-call {
  display: block;
}

.btn-call:link,
.btn-call:visited {
  /* display: inline-block; */
  padding: 1.6rem;
  text-decoration: none;
  font-size: 2rem;
  color: #222;
  text-align: center;
  background-color: #ebf7ed;
  border-radius: 11px;
  transition: all 0.5s;
}
.btn-call:hover,
.btn-call:active {
  color: #ebf7ed;
  background-color: #222;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
}

/* EXPANDEBLE */
.expandable {
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  /* Adjust width to fit the content */
  margin-bottom: 4.54rem;
}

.expandable-header {
  display: flex;
  font-size: 1.6rem;
  line-height: 1.6;
  justify-content: start;
}

.expandable-icon {
  font-size: 2.4rem;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}
.icon-menu {
  font-size: 2.4rem;
  color: #32a045;
}

.expandable-title {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  color: #333;
}

.expandable-content {
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.expandable-content ul {
  margin: 0;
  list-style: none;
}

.expandable-content li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-left: 1.6rem;
  display: flex;
}
.expandeble-text {
  margin-left: 1rem;
}
.expandable.active .expandable-content {
  max-height: 50rem;
  padding: 1.5rem 2rem;
}

.expandable.active .expandable-icon {
  transform: rotate(180deg);
}

.extra {
  font-size: 1.6rem;
  display: inline-block;
  margin-top: 1.8rem;
}

/* FOOTER */

.footer {
  padding: 2.4rem 0;
  border-top: 1px solid #ddd;
  text-align: center;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}
.break-footer {
  display: none;
}

.footer-link {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
  text-decoration: none;
  /* font-weight: bold; */
}
