/*/ ///////// IPAD MEDIA QUERIES //////////*/
@media (max-width: 1200px) {
  html body {
    width: 100%;
    height: 100%;
  }
  label.logo {
    font-size: 24px;
    margin-left: 16px;
  }
  nav ul {
    float: right;
    margin-right: 16px;
    padding-left: 0px !important;
  }
  nav ul li a {
    font-size: 15px;
    margin-left: 16px;
  }

  .benefits-section {
    margin-right: 16px;
    margin-left: 16px;
  }

  .bcard {
    padding: 48px 24px;
  }
  .small-card-text {
    font-size: 1.4em;
  }

  .overview {
    margin-right: 16px;
    margin-left: 16px;
    margin-top: 96px;
    margin-bottom: 96px;
  }

  /*// TESTIMONIALS //*/

  .testimonials-container {
    height: 50vh;
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
  }

  .testimonial .slide {
    padding: 16px !important;
  }
  .slide .quote-icon {
    font-size: 48px;
  }
  .slide .details {
    margin-left: 16px;
    margin-right: 16px;
  }
  .details .name {
    font-size: 1.3em;
    margin-top: 56px;
    margin-right: 48px !important;
    margin-left: 48px !important;
  }

  .details .job {
    font-size: 1em;
    padding: 12px;
  }
  /* // BOOK APPOINTMENT // */
  .wrap {
    margin-right: 16px;
    margin-left: 16px;
    margin-top: 56px;
  }

  .appointment-title {
    font-size: 2.2em;
    padding: 24px;
  }

  /*// SERVICES PAGE //*/
  p.heading-title {
    font-size: 1em;
    letter-spacing: 0.2em;
  }
  .services-container {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  .accordion {
    font-size: 1.3em !important;
    width: 100%;
    text-align: left;
  }
  .fee-text {
    font-size: 1.1em;
    font-weight: 400;
    margin-top: 24px;
  }

  .service-description {
    font-size: 1.3em;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  /*  NOTE TO CLIENTS  */
  .note-wrap {
    margin-right: 16px !important;
    margin-left: 16px !important;
    margin-top: 56px !important;
  }
  .note-title {
    font-family: "Jost", sans-serif;
    font-size: 1.1em;
    color: #4a4b49;
    padding: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* GALLERY */
  .gallery-container {
    margin-right: 16px;
    margin-left: 16px;
    margin-top: 100px;
  }

  /* //FAQs Page */
  .faq-container {
    margin-right: 24px;
    margin-left: 24px;
    margin-top: 56px;
  }
}
@media (max-width: 900px) {
  /* GALLERY */
  .gallery-container {
    margin-right: 16px;
    margin-left: 16px;
    margin-top: 100px;
  }

  footer .content .link-boxes {
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box {
    width: 40%;
    margin-top: 10px;
  }
  footer .bottom-details {
    width: 100%;
    background: #d8c4c8;
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  /* GALLERY */
  .gallery-container {
    margin-right: 16px;
    margin-left: 16px;
    margin-top: 100px;
  }

  footer {
    position: relative;
  }
  .content .top .logo-details {
    font-size: 26px;
  }
  .content .top .media-icons a {
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  footer::before {
    top: 145px;
  }
  footer .content .top {
    flex-direction: column;
  }
  footer .content {
    padding-top: 40px;
  }
  .content .top .media-icons {
    margin-top: 16px;
  }
  /* Footer styles handled by 800px media query */
  footer .content .link-boxes .input-box {
    width: 100%;
  }
}

/* Hide mobile menu items on desktop (screens larger than 800px) */
.mobile-menu-item {
  display: none !important;
}

/*/ ///////// MOBILE FOOTER 800px //////////*/
@media (max-width: 800px) {
  /* Override the main flexbox layout */
  footer .content .link-boxes {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    justify-content: space-between !important;
  }
  
  /* Left column: Address and hours (Column 1) */
  footer .content .link-boxes .box:first-child {
    width: 45% !important;
    margin-right: 5% !important;
    margin-bottom: 0 !important;
    order: 1 !important;
  }
  
  /* Right column: Combine ALL menu items from columns 2, 3, 4 */
  footer .content .link-boxes .box:nth-child(2) {
    width: 50% !important;
    margin: 0 !important;
    order: 2 !important;
  }
  
  /* Show ALL mobile menu items (from columns 3 and 4) in column 2 */
  .mobile-menu-item {
    display: block !important;
  }
  
  /* Override inline styles on mobile */
  .mobile-menu-item[style*="display: none"] {
    display: block !important;
  }
  
  /* Force show mobile menu items with highest specificity */
  li.mobile-menu-item {
    display: block !important;
  }
  
  /* Hide original columns 3 and 4 completely on mobile */
  footer .content .link-boxes .box:nth-child(3),
  footer .content .link-boxes .box:nth-child(4) {
    display: none !important;
  }
  
  /* Style all menu items in the right column */
  footer .content .link-boxes .box:nth-child(2) li {
    margin: 3px 0 !important;
  }
}

/*/ ///////// MOBILE NAVIGATION MEDIA QUERIES //////////*/
@media (max-width: 1200px) {
  /*/ ///////// NAVIGATION //////////*/
  html body {
    width: 100%;
    height: 100%;
  }

  .checkbtn {
    display: block !important;
  }
  
  nav {
    height: 80px;
  }
  
  nav ul {
    position: fixed !important;
    width: 100% !important;
    height: 100vh !important;
    background: white !important;
    top: 80px !important;
    left: -100% !important;
    text-align: center !important;
    transition: all 0.5s !important;
    display: block !important;
  }
  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a {
    font-size: 15px;
    color: #6f6f6f;
    margin-left: 0px;
  }
  nav ul li a:hover,
  nav ul li a.active {
    background: none !important;
    color: #bfa5a3 !important;
  }
  nav ul li a.testimonials-active {
    color: #bfa5a3 !important;
  }
  #check:checked ~ ul {
    left: 0 !important;
  }
  
  #check:checked + label + a + ul {
    left: 0 !important;
  }

  .fas fa-bars {
    margin-left: 16px !important;
  }
  /* //////////HERO SECTION //////////*/

  .title {
    font-size: 2.5em;
  }

  .subtitle {
    font-size: 1.2em;
    padding: 1em;
  }
  /*////////// OVERVIEW //////////*/

  .img-fluid rounded-start {
    height: auto;
    width: 20%;
  }

  .overview {
    text-align: center;
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .attention-title {
    margin-left: 0;
  }
  .card-title {
    margin-top: 16px;
    margin-bottom: 48px;
  }

  /*/ ///////// BENEFITS //////////*/
  .benefits-section {
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .middle-card {
    padding-bottom: 0 auto;
  }

  .bcard {
    padding: 48px 24px;
  }

  .small-card-text {
    font-size: 1.4em;
  }

  /*////////// TESTIMONIALS //////////*/

  .testimonials-container {
    height: 50vh;
    width: auto;
  }

  .testimonial .slide {
    padding: 16px !important;
  }
  .slide .quote-icon {
    font-size: 0px;
  }
  .slide .details {
    margin-left: 40px;
    margin-right: 40px;
  }
  .details .name {
    font-size: 1.2em;
    margin-top: 56px;
    margin-right: 4px !important;
    margin-left: 4px !important;
    padding: 0px !important;
  }

  .details .job {
    font-size: 0.9em;
  }

  /* ////////// BOOK APPOINTMENT ////////// */
  .wrap {
    margin-right: 16px;
    margin-left: 16px;
    margin-top: 56px;
  }

  .appointment-title {
    font-size: 1.5em;
    padding: 16px;
  }

  /*////////// SERVICES PAGE //////////*/
  p.heading-title {
    font-size: 1em;
    letter-spacing: 0.2em;
  }
  .services-container {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  .accordion {
    font-size: 1em !important;
    padding: 0px;
    width: 100%;
    text-align: left;
  }
  .fee-text {
    font-size: 1.1em;
    font-family: "Jost", sans-serif !important;
    font-weight: 400;
    margin-top: 24px;
  }

  .services-title {
    font-family: "Bodoni Moda", serif;
    font-size: 2em;
    color: #4a4b49;
    margin-bottom: 24px;
  }

  .service-description {
    font-size: 1.1em;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  /*///////// GALLERY //////////*/
  .gallery-container {
    margin-right: 16px !important;
    margin-left: 16px !important;
    margin-top: 100px !important;
  }

  .gallery-container:first-of-type {
    margin-top: 150px !important;
  }

  .gallery-container-videos {
    margin-left: 16px !important;
    margin-right: 16px !important;
    margin-top: 40px !important;
  }

  /* ///////////FAQs Page /////////*/
  .faq-container {
    margin-right: 16px;
    margin-left: 16px;
  }

  .cherry-video {
    width: 325px;
    height: 300px;
  }
  /*/////// FOOTER //////////*/

  footer .content {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  footer .bottom_text {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
}
