/* ============================================
   RESPONSIVE STYLES - MOBILE, TABLET, DESKTOP
   ============================================ */

/* ============================================
   MOBILE MENU STYLES
   ============================================ */

/* Hamburger Menu Icon */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 2px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 5px;
    background: var(--color-primary);
    transition: all var(--transition-medium);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 111;
    padding: 100px 30px 30px;
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    display: block;
}

.m-tes {
    display: none !important;
}

.mobile-nav-content {
    display: grid;
    gap: 0;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-items: center;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-medium);
    text-align: center;
}

.mobile-nav-overlay .megamenu {
    display: none;
}

.m-cnt,
.m-cnt-one {
    display: grid;
    gap: 10px;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    border: 1px solid #000;
    width: 100%;
    height: 100%;
}

.m-cnt {
    border-top: 0;
}

.megamenu.add-jumbo {
    display: block;
    position: absolute;
    opacity: 1;
    visibility: visible;
    background: #fff !important;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 30px;
    height: fit-content;
}

.megamenu.add-jumbo .head {
    border: 1px solid #000;
    padding: 20px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    cursor: pointer;
}

.megamenu.add-jumbo .head img {
    width: 16px;
    height: auto;
    object-fit: contain;
}

.megamenu.add-jumbo .megamenu-hero-container {
    margin: 0;
    background: #000;
    border: 0;
    padding: 20px;
}

.megamenu.add-jumbo .box {
    border: 1px solid #fff;
    padding: 20px;
}

.main-div {
    height: 100%;
    width: 100%;
    position: relative;
}


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media screen and (min-width:1241px) and (max-width:1500px) {
    .logo-placeholder {
        width: fit-content;
    }

    .org-logos {
        gap: 40px;
    }

    .testimonials-section {
        padding: 100px 0 60px;
    }

    .header-container {
        gap: 0;
    }

    .services-grid::before {
        width: calc(100% + 80px);
        left: -40px;
    }

    .providers-slider .slick-next {
        right: -90px
    }

    .providers-slider .slick-prev {
        left: -90px
    }
}

@media screen and (min-width:1025px) and (max-width:1240px) {
    .megamenu-hero-content {
        width: 100%;
    }

    .megamenu-hero-image {
        width: 100%;
        margin-bottom: 40px;
    }

    .megamenu-treatments-container {
        margin: 0;
        background: #000;
        grid-template-columns: repeat(1, 1fr);
        padding: 20px;
    }

    .megamenu.add-jumbo .megamenu-treatments-container .box {
        padding: 0;
    }

    .megamenu-treatments-column {
        padding: 20px;
        border-bottom: 1px solid #fff;
    }

    .logo-placeholder {
        width: fit-content;
    }

    .org-logos {
        gap: 40px;
    }

    .testimonials-section {
        padding: 100px 0 30px;
    }

    .footer-location p {
        word-break: break-word;
    }

    .header-container {
        gap: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .services-grid::before {
        width: calc(100% + 20px);
        left: -12px;
    }

    .footer-logo img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .footer-logo {
        height: 55px;
        width: auto;
    }

    .footer-container,
    .footer-lower-right {
        gap: 20px;
    }

    .header {
        padding: 0;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-container {
        padding: 0 0 0 15px;
        gap: 1rem;
        display: grid;
        grid-template-columns: 50px 1fr 140px;
        align-items: center;
    }

    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex;
        grid-column: 1;
        justify-self: start;
    }

    /* Center logo */
    .logo {
        grid-column: 2;
        justify-self: center;
        margin: 0;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
        letter-spacing: 1.2px;
    }

    /* Hide desktop navigation */
    .nav {
        display: none;
    }

    /* Header actions */
    .header-actions {
        grid-column: 3;
        justify-self: end;
        gap: 0;
        display: flex;
    }

    /* Hide phone number on mobile */
    .phone-number {
        display: none;
    }

    /* Book button - right side */
    .btn-book {
        padding: 24px 20px;
        white-space: nowrap;
        letter-spacing: 0.8px;
    }

    .stat-number {
        font-size: 70px;
    }

    .as-seen-on-section {
        padding: 30px 0;
    }

    .providers-section {
        padding: 70px 0;
    }

    .locations-box {
        bottom: -40px;
    }

    /* ============================================
       MEGA MENUS - MOBILE (HIDE)
       ============================================ */

    /* Hide all mega menus on mobile */
    .nav-item.has-megamenu .megamenu,
    .nav-item.has-megamenu .megamenu-hero,
    .nav-item.has-megamenu .megamenu-treatments {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* Ensure nav items don't trigger anything on mobile */
    .nav-item.has-megamenu:hover .megamenu,
    .nav-item.has-megamenu:hover .megamenu-hero,
    .nav-item.has-megamenu:hover .megamenu-treatments {
        display: none !important;
    }

    .providers-slider .slick-next {
        right: -80px
    }

    .providers-slider .slick-prev {
        left: -80px
    }

    .stat-box {
        width: 23.7%;
        min-height: 240px
    }

    .stat-box-wide {
        width: 36.5%
    }

    .as-seen-frame {
        padding: 80px 50px
    }

    .logo-img {
        height: 80px
    }

    .provider-name {
        font-size: 26px
    }

    .provider-info {
        padding: 25px 20px
    }

    .provider-image-wrapper {
        height: 300px
    }
}


/* Tablet - 768px to 1024px */
@media (max-width: 1024px) {
    .megamenu-hero-content {
        width: 100%;
    }

    .megamenu-hero-image {
        width: 100%;
        margin-bottom: 40px;
    }

    .megamenu-treatments-container {
        margin: 0;
        background: #000;
        grid-template-columns: repeat(1, 1fr) !important;
        padding: 20px;
    }

    .megamenu.add-jumbo .megamenu-treatments-container .box {
        padding: 0;
        width: 100%;
    }

    .megamenu-treatments-column {
        padding: 20px;
        border-bottom: 1px solid #fff;
    }

    /* Header adjustments for tablet */
    .header-container {
        padding: 0 var(--spacing-md);
    }

    .nav {
        gap: var(--spacing-sm);
    }

    .nav-link {
        font-size: 0.7rem;
    }

    /* Mega menu adjustments */
    .megamenu-hero-container {
        padding: 50px 40px;
        gap: 40px;
    }

    .megamenu-hero-title {
        font-size: 2.5rem;
    }

    .megamenu-treatments-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .megamenu-treatments-column:nth-child(3),
    .megamenu-treatments-column:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex;
        grid-column: 1;
        justify-self: start;
    }

    /* Center logo */
    .logo {
        grid-column: 2;
        justify-self: center;
        margin: 0;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
        letter-spacing: 1.2px;
    }

    /* Hide desktop navigation */
    .nav {
        display: none;
    }

    /* Header actions */
    .header-actions {
        grid-column: 3;
        justify-self: end;
        gap: 0;
        display: flex;
    }

    /* Hide phone number on mobile */
    .phone-number {
        display: none;
    }

    /* Book button - right side */
    .btn-book {
        padding: 24px 20px;
        font-size: 0.65rem;
        white-space: nowrap;
        letter-spacing: 0.8px;
    }

    .stat-number {
        font-size: 60px;
    }

    .as-seen-on-section {
        padding: 30px 0;
    }

    .providers-section {
        padding: 70px 0;
    }

    .locations-box {
        bottom: -40px;
    }

    /* ============================================
       MEGA MENUS - MOBILE (HIDE)
       ============================================ */

    /* Hide all mega menus on mobile */
    .nav-item.has-megamenu .megamenu,
    .nav-item.has-megamenu .megamenu-hero,
    .nav-item.has-megamenu .megamenu-treatments {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* Ensure nav items don't trigger anything on mobile */
    .nav-item.has-megamenu:hover .megamenu,
    .nav-item.has-megamenu:hover .megamenu-hero,
    .nav-item.has-megamenu:hover .megamenu-treatments {
        display: none !important;
    }

    .stats-grid {
        gap: 0;
    }

    .stat-box-wide {
        grid-column: span 1;
    }

    .stat-box:nth-child(n+5) {
        border-right: 1px solid rgba(255, 255, 255, 1);
    }

    .logo-placeholder {
        width: auto;
    }

    .services-grid::before {
        width: calc(100% + 25px);
        left: -15px;
        height: 85%;
    }

    .testimonials-box::before {
        height: 77%;
        bottom: 20px;
    }

    .footer-logo {
        height: 50px;
        width: auto;
    }

    .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .footer-container,
    .footer-lower-right {
        gap: 20px;
    }

    .footer-location p {
        word-break: break-word;
    }

    .footer-links a {
        font-size: 15px;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .services-section {
        padding: 80px 0;
    }

    .services-title,
    .providers-title,
    .membership-text,
    .locations-title,
    .testimonials-title {
        font-size: 30px;
    }

    .connected-border-wrapper::after {
        top: 100px;
        border-bottom: 0 !important;
    }

    .hero-quote p {
        font-size: 24px;
    }

    .hero-author {
        font-size: 20px;
    }

    .stat-label {
        font-size: 18px;
    }

    .providers-slider .slick-next {
        right: -80px
    }

    .providers-slider .slick-prev {
        left: -80px
    }

    .stat-box {
        width: 24.7%;
        min-height: 240px;
        padding: 30px
    }

    .stat-box-wide {
        width: 36.5%
    }

    .as-seen-frame {
        padding: 80px 50px
    }

    .logo-img {
        height: 80px
    }

    .provider-name {
        font-size: 26px
    }

    .provider-info {
        padding: 25px 20px
    }

    .provider-image-wrapper {
        height: 300px
    }
}

@media(max-width: 991px) {}

/* Mobile - Below 768px */
@media (max-width: 768px) {
    .award-badge {
        opacity: 0 !important
    }

    .award-badge.aos-init.aos-animate.slick-slide.slick-current.slick-active.slick-center {
        opacity: 1 !important
    }

    .footer-column {
        flex: unset;
    }

    .hero-slider .slick-arrow,
    .hero-slider .slick-dots {
        display: none !important;
    }

    .providers-container {
        width: 85%;
    }

    .footer-column.footer-logo-column {
        width: 100%;
    }

    .footer-container {
        flex-wrap: wrap;
    }

    .footer-upper {
        padding: 40px 0;
    }

    .footer-lower-right {
        display: grid;
        width: 100%;
        gap: 30px;
    }

    .btn-book {}

    .footer-lower .footer-container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .stat-box {
        min-height: 250px;
    }

    .header-container {
        padding: 0 0 0 15px !important;
    }

    .btn-book {
        padding: 22px 16px !important;
    }

    .testimonials-title {
        margin-bottom: 0;
    }

    .locations-header {
        padding-bottom: 0;
    }

    .services-section,
    .memberships-section {
        padding: 40px 0;
    }

    .services-title,
    .providers-title,
    .membership-text,
    .locations-title,
    .testimonials-title {
        font-size: 25px;
    }

    .org-logos {
        flex-wrap: wrap;
    }

    .org-logo,
    .logo-placeholder {
        width: auto;
        height: auto;
    }

    .providers-section {
        padding: 40px 0;
    }

    .providers-title {
        margin-bottom: 40px;
    }

    .services-grid {
        margin-bottom: 20px;
    }

    .provider-info {
        background: unset;
    }

    .provider-title {
        font-size: 18px;
        color: #fff;
        font-weight: bold;
    }

    .provider-bio {
        font-size: 18px;
    }

    .providers-slider .slick-slide {
        margin: 0;
    }

    .memberships-section {
        background: #fff;
    }

    /* ============================================
       HEADER - MOBILE
       ============================================ */

    .header {
        padding: 0;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-container {
        padding: 0.75rem 1rem;
        gap: 1rem;
        display: grid;
        grid-template-columns: 50px 1fr 140px;
        align-items: center;
    }

    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex;
        grid-column: 1;
        justify-self: start;
    }

    /* Center logo */
    .logo {
        grid-column: 2;
        justify-self: center;
        margin: 0;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
        letter-spacing: 1.2px;
    }

    /* Hide desktop navigation */
    .nav {
        display: none;
    }

    /* Header actions */
    .header-actions {
        grid-column: 3;
        justify-self: end;
        gap: 0;
        display: flex;
    }

    /* Hide phone number on mobile */
    .phone-number {
        display: none;
    }

    /* Book button - right side */
    .btn-book {
        padding: 12px 16px;
        font-size: 0.65rem;
        white-space: nowrap;
        letter-spacing: 0.8px;
    }

    /* ============================================
       MEGA MENUS - MOBILE (HIDE)
       ============================================ */

    /* Hide all mega menus on mobile */
    .nav-item.has-megamenu .megamenu,
    .nav-item.has-megamenu .megamenu-hero,
    .nav-item.has-megamenu .megamenu-treatments {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* Ensure nav items don't trigger anything on mobile */
    .nav-item.has-megamenu:hover .megamenu,
    .nav-item.has-megamenu:hover .megamenu-hero,
    .nav-item.has-megamenu:hover .megamenu-treatments {
        display: none !important;
    }

    /* ============================================
       HERO SLIDER - MOBILE
       ============================================ */

    .hero-slider {
        height: calc(100vh - 60px) !important;
        min-height: 550px;
        margin-top: 0;
    }

    .hero-slide {
        height: calc(100vh - 60px) !important;
        min-height: 550px;
    }

    .hero-slider .slick-list,
    .hero-slider .slick-track {
        height: 100% !important;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-text {
        padding-top: 40px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }

    .hero-quote {
        margin: 1.5rem 0;
    }

    .hero-quote p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .hero-author {
        font-size: 0.65rem;
        letter-spacing: 1.2px;
    }

    .btn-learn-more {
        padding: 12px 32px;
        font-size: 0.65rem;
        margin-top: 1.5rem;
        letter-spacing: 1.2px;
    }

    /* Border frame adjustment for mobile */
    .connected-border-wrapper::after {
        top: 80px;
        left: 15px;
        width: calc(100% - 30px);
        height: calc(84% - 80px);
        border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .welcome-section::after {
        z-index: 1;
        width: 94%;
    }

    /* ============================================
       WELCOME SECTION - MOBILE
       ============================================ */

    .connected-border-wrapper .welcome-section {
        padding: 40px 25px;
    }

    .welcome-container {
        padding: 0;
    }

    .welcome-title {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
        letter-spacing: 1.5px;
    }

    .welcome-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .awards-container {
        gap: 1.5rem;
        margin-top: 2rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .award-badge {
        flex: 0 0 auto;
    }

    .award-image {
        width: 110px;
        max-height: 110px;
    }

    /* ============================================
       SLICK SLIDER MOBILE ADJUSTMENTS
       ============================================ */

    /* Hero slider arrows */
    .hero-slider .slick-prev,
    .hero-slider .slick-next {
        width: 36px;
        height: 36px;
        z-index: 10;
    }

    .hero-slider .slick-prev svg,
    .hero-slider .slick-next svg {
        width: 18px;
        height: 18px;
    }

    .hero-slider .slick-prev {
        left: 20px;
    }

    .hero-slider .slick-next {
        right: 20px;
    }

    /* Dots styling */
    .hero-slider .slick-dots {
        bottom: 25px;
    }

    .hero-slider .slick-dots li {
        margin: 0 4px;
    }

    .hero-slider .slick-dots li button:before {
        font-size: 9px;
    }

    .footer-container,
    .footer-lower-right {
        flex-wrap: wrap;
    }

    .connected-border-wrapper .hero-slider {
        text-align: center;
        filter: grayscale(1);
    }

    .awards-container {
        filter: grayscale(1);
        text-align: center;
        margin-bottom: 30px;
    }

    .awards-container img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .stats-section {
        padding: 20px 0;
    }

    .stats-container {
        padding: 0 20px;
    }

    .awards-container .slick-arrow {
        color: #000;
        width: 50px;
        height: 50px;
        box-shadow: none;
    }

    .awards-container .slick-arrow svg {
        color: #000;
        filter: invert(1);
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .awards-container .slick-arrow.slick-prev {
        left: 0;
    }

    .awards-container .slick-arrow.slick-next {
        right: 0;
    }

    .stat-box {
        min-height: auto;
        padding: 20px;
        width: 49%;
        border: 1px solid #fff !important;
    }

    .stats-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }

    .stat-box:last-child {
        width: 100%
    }

    .as-seen-on-section .media-logo img {
        min-width: 100px;
        height: 80px !important;
        width: auto;
        filter: unset;
    }

    .as-seen-on-section .media-logo {
        width: auto;
        margin: 0;
    }

    .as-seen-title {
        margin-bottom: 30px;
    }

    .media-logos {
        gap: 20px;
        justify-content: center;
    }

    .providers-container {
        width: 100%;
        padding: 0;
    }

    .providers-slider .slick-prev,
    .providers-slider .slick-next,
    .locations-container .slick-arrow {
        background: transparent;
        border: 0;
        padding: 0;
        box-shadow: none;
        width: 50px;
        height: 50px;
        top: 190px;
        backdrop-filter: none;
    }

    .providers-slider .slick-prev {
        left: 30px;
    }

    .locations-container .slick-prev {
        left: -10%;
    }

    .locations-container .slick-next {
        right: -10%;
    }

    .locations-container {
        padding: 0 10px;
    }

    .providers-slider .slick-next {
        right: 30px;
    }

    .providers-slider .slick-prev svg,
    .providers-slider .slick-next svg,
    .locations-container .slick-arrow svg {
        width: 100%;
        height: 100%;
    }

    .providers-section {
        padding: 70px 0 40px;
    }

    .locations-container .slick-arrow {
        top: 20%;
        margin: auto;
        bottom: 0;
    }

    .locations-box {
        bottom: -10px;
        width: 100%;
        text-align: center;

    }

    .location-card {
        text-align: center;

    }

    .location-name {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .location-address,
    .location-email,
    .location-phone {
        font-size: 16px;
        font-weight: 100;
    }

    .locations-header {
        padding: 70px 0 0;
        margin-bottom: 10px;
    }

    .testimonials-section {
        padding: 70px 0 60px;
    }

    .footer-logo img {
        text-align: left;
        width: fit-content;
    }

    .footer-logo {
        margin-bottom: 20px
    }

    .footer-links li {
        margin: 0;
    }

    .footer-heading {
        letter-spacing: 0;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .testimonial-author {
        font-size: 18px;
    }

    .m-tes .testimonials-box::before {
        top: 0;
        bottom: 0;
        height: 88%
    }

    .m-tes .testimonials-box .testimonial-card {
        width: 100%
    }

    .desktop-f {
        display: none;
    }

    .mobile-f {
        display: flex !important;
    }

    .header-container {
        gap: 0;
    }

    .mobile-f .left {
        width: 48%
    }

    

    .mobile-f .right .footer-column {
        margin-bottom: 20px
    }

    .m-tes .testimonials-slider .slick-slide {
        text-align: left;
        padding: 30px;
        margin: 0;
    }

    .m-tes .testimonials-slider {
        z-index: 111;
    }

    .m-tes {
        display: block !important;
    }

    .d-tes {
        display: none !important;
    }

    .m-tes .testimonials-wrapper:before {
        position: absolute;
        content: '';
        width: 90%;
        height: 100%;
        border: 2px solid black;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 1;
    }

    .hero-content {
        height: 100%;
        display: grid;
        align-content: center;
    }

    .hero-slider .hero-content::after {
        height: calc(100% - 87px);
        top: unset;
        bottom: 0;
        width: calc(100% - 34px);
    }

    .footer-award-description img {
        display: block;
        width: 100%;
        max-width: 803px;
        height: auto;
        margin: 0 auto;
        border: 2px solid #000;
        padding: 5px;
    }

    .load-more-container {
        flex-wrap: nowrap;
        gap: 6px;
    }

    .load-more-btn {
        padding: 10px 8px;
        font-size: 12px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

     .locations-section .locations-box {
        width: 100%;
        padding: 0;
        z-index: 99;
    }

    .locations-section .location-card {
        padding: 30px 60px;
        box-sizing: border-box;
        text-align: center;
    }

    .locations-section .location-name,
    .locations-section .location-address,
    .locations-section .location-email,
    .locations-section .location-phone {
        text-align: center;
    }



}

/* Extra Small Mobile - Below 480px */
@media (max-width: 480px) {

    .header-container {
        grid-template-columns: 45px 1fr 120px;
        padding: 0 0 0 6px !important;
    }

    .logo img {
        height: 42px
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-name {
        font-size: 0.9rem;
    }

    .logo-tagline {
        font-size: 0.5rem;
    }

    .btn-book {
        padding: 10px 12px;
        font-size: 0.6rem;
        white-space: normal;
        width: auto;
        text-align: center;
        padding: 22px 4px !important
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-quote p {
        font-size: 0.8rem;
    }

    .btn-learn-more {
        padding: 10px 28px;
        font-size: 0.6rem;
    }

    .welcome-title {
        font-size: 1.4rem;
        line-height: normal;
        letter-spacing: 0
    }

    .welcome-description {
        font-size: 0.85rem;
    }

    .award-image {
        width: 90px;
        max-height: 90px;
    }

    .connected-border-wrapper::after {
        top: 70px;
        left: 12px;
        width: calc(100% - 24px);
    }

    .welcome-section::after {
        width: calc(100% - 34px);
        left: 0;
        right: 0;
        margin: auto;
    }

    .mobile-nav-overlay {
        padding: 95px 15px 15px
    }

    .mobile-nav-link {
        font-size: 18px;
        padding: 6px 0
    }

    .megamenu-hero-title {
        font-size: 20px
    }

    .megamenu-hero-image {
        margin-bottom: 20px
    }

    .megamenu.add-jumbo {
        top: 20px;
        padding-bottom: 15px
    }

    .megamenu.add-jumbo .head {
        padding: 15px;
        font-size: 18px;
    }

    .megamenu.add-jumbo .megamenu-hero-container {
        padding: 15px
    }

    .megamenu.add-jumbo .box {
        padding: 15px
    }

    .megamenu-hero-content {
        gap: 12px;
    }

    .megamenu-hero-btn {
        margin-top: 10px
    }

    .megamenu-hero-btn {
        padding: 12px 16px
    }

    .megamenu-treatments-column,
    .megamenu-treatments-container {
        padding: 15px
    }

    .megamenu-treatments-title {
        font-size: 18px;
        margin-bottom: 14px
    }

    .megamenu-treatments-links a {
        font-size: 16px
    }

    .megamenu-treatments-links {
        gap: 4px;
    }

    .hero-title {
        font-size: 42px
    }

    .hero-quote p {
        font-size: 16px
    }

    .hero-author {
        font-size: 14px
    }

    .btn-learn-more {
        padding: 8px
    }

    .connected-border-wrapper {
        margin: 10px 0 0
    }

    .connected-border-wrapper::after {
        top: 77px;
    }

    .welcome-section::after {
        height: 97%;
    }

    .stat-number {
        font-size: 40px
    }

    .stat-box {
        width: 48%;
        padding: 0px 15px 15px
    }

    .stat-label {
        font-size: 12px;
        letter-spacing: 0
    }

    .as-seen-on-section .media-logo img {
        height: auto !important;
    }

    .service-label {
        font-size: 18px
    }

    .locations-box {

        padding: 29px 10px !important;
        box-sizing: border-box;
        display: block !important;
    }

    .as-seen-on-section {
        padding: 15px;
        background-color: #fff
    }

    .as-seen-container {
        padding: 0
    }

    .stats-container {
        padding: 0 15px
    }

    .as-seen-frame {
        border: 3px solid rgba(0, 0, 0, 1);
    }

    .as-seen-title {
        font-size: 22px;
        letter-spacing: 0
    }

    .services-title,
    .providers-title,
    .membership-text,
    .locations-title,
    .testimonials-title {
        font-size: 22px;
        letter-spacing: 0;
        line-height: normal;
    }

    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .service-image-wrapper {
        height: 130px;
    }

    .service-card {
        width: 90%;
        margin: auto;
    }

    .services-grid::before {
        height: 87%
    }


    .map-image {
        height: 320px;
        object-fit: cover;
    }

    .testimonials-section,
    .testimonials-box {
        background-color: #fff
    }

    .mobile-f {
        padding: 0 15px
    }

    .mobile-f .left,
    .mobile-f .right {
        width: 46%
    }

    .memberships-section {
        padding: 70px 0;
    }

    .membership-text {
        letter-spacing: 0;
        line-height: normal;
    }

    .footer-heading {
        margin-bottom: 12px;
        line-height: normal;
    }

    .logo-placeholder img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .footer-lower .footer-container {
        padding: 0 15px
    }

    .testimonials-box {
        padding: 40px 0;
        width: 100%;
        margin: auto;
    }

    .testimonials-box .slick-track {
        padding: 0 50px;
        overflow: visible;
    }

    .testimonials-box .slick-list {
        overflow: visible;
    }

    .testimonials-container {
        padding: 0
    }

    .testimonials-card {
        width: 300px !important
    }

    .m-tes .quote-icon {
        line-height: 0.5;
    }

    
}

/* Landscape phones and small tablets */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        min-height: 450px;
    }

    .hero-slide {
        min-height: 450px;
    }

    .hero-text {
        padding-top: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }
}