/* ==========================================================================
   ORGANIZED CSS STRUCTURE
   ========================================================================== */

/* ==========================================================================
   1. ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0); 
    }
    40% { 
        transform: translateY(-10px); 
    }
    60% { 
        transform: translateY(-5px); 
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   2. UNIVERSAL COMPONENTS
   ========================================================================== */

/* Scroll Arrows */
.section-scroll-arrow {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.section-4 .section-scroll-arrow { 
    margin-top: 60px; 
}

.section-scroll-arrow .scroll-arrow {
    width: 40px;
    height: 40px;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.section-scroll-arrow .scroll-arrow:hover {
    transform: scale(1.1);
}

/* Universal Carousel Base Styles */
.mobile-carousel {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}

.mobile-carousel .carousel-arrow {
    width: 13px;
    height: 22px;
    cursor: pointer;
    z-index: 15;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-carousel .carousel-arrow:hover {
    transform: scale(1.1);
}

.mobile-carousel .carousel-arrow.prev {
    margin-right: 15px;
}

.mobile-carousel .carousel-arrow.next {
    margin-left: 15px;
}

/* Carousel Container & Slides */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    top: 50%;
    transform-origin: center center;
    width: 100%;
}

.carousel-slide.active {
    transform: translateY(-50%) translateX(0) scale(1);
    opacity: 1;
    z-index: 10;
}

.carousel-slide.prev {
    transform: translateY(-50%) translateX(-100%) scale(0.8);
    opacity: 0;
    z-index: 5;
}

.carousel-slide.next {
    transform: translateY(-50%) translateX(100%) scale(0.8);
    opacity: 0;
    z-index: 5;
}

.carousel-slide.hidden {
    transform: translateY(-50%) translateX(-200%) scale(0.8);
    opacity: 0;
    z-index: 1;
}

.carousel-slide.hidden.right {
    transform: translateY(-50%) translateX(200%) scale(0.8);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--secondary-color);
}

/* Carousel Arrow Styles (used in sections 6+) */
.carousel-arrow {
    width: 13px;
    height: 22px;
    cursor: pointer;
    z-index: 15;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    transform: scale(1.1);
}

.carousel-arrow.prev {
    margin-right: 15px;
}

.carousel-arrow.next {
    margin-left: 15px;
}

/* Universal Image Styles */
.feature-box img,
.tab-box img,
.section-5-box img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 4px solid var(--light-color);
    padding: 10px;
}

/* ==========================================================================
   3. SECTION-SPECIFIC STYLES
   ========================================================================== */

/* Section 2 - Features */
.section-2 {
    padding: 50px 0 75px;
}

.section-2 h2 {
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    justify-content: center;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 75px;
}

.feature-box {
    text-align: center;
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
}

.feature-3 .feature-box {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
}

.feature-5 .feature-box {
    flex: 1 1 calc(20% - 30px);
    max-width: calc(20% - 30px);
}

.feature-box p {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Section 2 Mobile Carousel */
.section-2 .mobile-carousel {
    height: 300px;
    max-width: 350px;
}

.section-2 .carousel-container {
    width: 280px;
    height: 100%;
}

/* Section 3 - Content with Sidebar */
.section-3 {
    padding: 75px 0;
}

.section-3-wrapper {
    border: 2px solid var(--light-color);
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 60px;
}

.section-3-left,
.section-3-right {
    flex: 1;
    padding: 30px;
}

.section-3-right {
    background-color: var(--light-color);
    text-align: center;
}

.section-3-right h3 {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.disclaimer {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 75px;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
}

/* Section 4 - Tabbed Content */
.section-4 {
    padding-top: 75px;
    padding-bottom: 130px;
}

.tab-nav-strip {
    margin: 0 0 100px 0;
}

.tab-content {
    display: none;
    text-align: center;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    margin-bottom: 0.25rem;
}

.tab-content h3 {
    margin-bottom: 1.75rem;
}

.tab-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-inline: auto;
}

.tab-box {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    text-align: center;
}

/* Section 4 Mobile Carousel */
.section-4 .mobile-carousel {
    height: 300px;
    max-width: 350px;
}

.section-4 .carousel-container {
    width: 280px;
    height: 100%;
}

/* Section 5 - Hero with Boxes */
.section-5 {
    background: linear-gradient(to bottom, var(--info-color), var(--light-color));
    padding: 110px 0;
}

.section-5-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-5-full {
    width: 100%;
    margin-bottom: 60px;
}

.section-5-top-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.section-5-left {
    flex: 1;
}

.section-5-full h2,
.section-5-left h2 {
    margin-bottom: 1rem;
}

.section-5-full h3,
.section-5-left h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.section-5-full p,
.section-5-left p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.section-5-right {
    width: 500px;
    flex-shrink: 0;
}

.section-5-full img,
.section-5-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.section-5-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.section-5-box {
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
    text-align: center;
}

.section-5-boxes-3 .section-5-box,
.section-5-boxes-5 .section-5-box,
.section-5-boxes-6 .section-5-box {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
}

.section-5-box img {
    margin-bottom: 5px;
    padding: 8px;
}

.section-5-box h4 {
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    padding: 0 15px;
}

.section-5-box p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Section 5 Mobile Carousel */
.section-5 .mobile-carousel {
    height: 400px;
    max-width: 350px;
}

.section-5 .carousel-container {
    width: 280px;
    height: 100%;
}

/* Section 6 - Testimonials */
.section-6 {
    background-color: white;
    padding: 150px 0 75px;
}

.section-6-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-6 h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-6 h3 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 350px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slides {
    position: relative;
    width: 700px;
    height: 100%;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 35px 50px;
    width: 700px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    top: 50%;
    transform-origin: center center;
}

.testimonial-slide.active {
    transform: translateY(-50%) translateX(0) scale(1);
    opacity: 1;
    z-index: 10;
}

.testimonial-slide.prev {
    transform: translateY(-50%) translateX(-580px) scale(0.6);
    opacity: 0.6;
    z-index: 5;
}

.testimonial-slide.next {
    transform: translateY(-50%) translateX(580px) scale(0.6);
    opacity: 0.6;
    z-index: 5;
}

.testimonial-slide.hidden {
    transform: translateY(-50%) translateX(-1200px) scale(0.6);
    opacity: 0;
    z-index: 1;
}

.testimonial-slide.hidden.right {
    transform: translateY(-50%) translateX(1200px) scale(0.6);
}

.testimonial-content {
    position: relative;
    width: 100%;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.quotation-mark {
    position: absolute;
    bottom: -30%;
    right: 0;
    width: 50px;
    height: 40px;
    z-index: 12;
}

.slide-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 8;
    pointer-events: none;
}

.slide-overlay.left {
    left: -15px;
    background: linear-gradient(to right, white, transparent);
}

.slide-overlay.right {
    right: -15px;
    background: linear-gradient(to left, white, transparent);
}

/* Section 7 - Insurance & Payment */
.section-7 {
    background-color: white;
    padding: 75px 0 55px;
}

.section-7 h2.h1 {
    text-align: center;
    margin-bottom: 20px;
}

.section-7 h2.h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-7-text {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 65px;
}

.insurance-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 90px;
}

.insurance-track {
    display: flex;
    align-items: center;
    animation: slide 30s linear infinite;
    height: 100%;
}

.insurance-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 100%;
}

.insurance-logo img {
    max-width: 185px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.slider-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.slider-overlay.left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.slider-overlay.right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Section 8 - No Insurance & Coverage Questions */
.section-8 {
    padding: 55px 0 100px;
}

.section-8-boxes {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.section-8-box {
    max-width: 530px;
    flex: 1;
    padding: 38px;
    border: 2px solid var(--info-color);
    border-radius: 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-8-box.box-1 {
    background-color: var(--light-color);
}

.section-8-box img {
    margin-bottom: 5px;
    max-width: 100px;
    height: auto;
}

.section-8-box h3 {
    margin-bottom: 10px;
}

.section-8-box p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.section-8-box a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    text-decoration: underline;
}

.section-8-box a:hover {
    color: var(--accent-color-hover);
}

/* Section 9 - Locations */
.section-9 {
    padding: 75px 0;
}

.section-9-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-9 h2.h1 {
    text-align: center;
    margin-bottom: 35px;
}

.section-9-info-boxes {
    display: flex;
    gap: 60px;
    margin-bottom: 35px;
    font-size: 1.25rem;
}

.section-9-info-left {
    flex: 1;
    text-align: right;
}

.section-9-info-right {
    flex: 1;
    text-align: left;
}

.section-9-info-left h3,
.section-9-info-right h3 {
    margin-bottom: 10px;
}

.section-9-info-left p,
.section-9-info-right p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
}

.section-9-info-left p strong,
.section-9-info-right p strong {
    color: var(--secondary-color);
}

.google-map {
    width: 100%;
    height: 400px;
    border-radius: 1.75rem;
    margin-bottom: 30px;
    border: none;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    justify-items: center;
}

.location-box {
    width: 100%;
    max-width: 100%;
    border: 2px solid var(--info-color);
    border-radius: 1.75rem;
    padding: 28px 20px 28px 28px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-pin {
    width: 20px;
    height: 31px;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-content {
    flex: 1;
}

.location-content h3 {
    margin-bottom: 8px;
    font-size: 1.75rem;
}

.location-content p {
    color: var(--primary-color);
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0;
}

/* Section 9 Mobile Carousel */
.section-9 .mobile-carousel {
    height: 180px;
    max-width: 350px;
}

.section-9 .carousel-container {
    width: 320px;
    height: 100%;
}

/* ==========================================================================
   4. FOOTER & FIXED ELEMENTS
   ========================================================================== */

/* Footer */
.footer {
    background-color: var(--light-color);
    padding: 25px 0 40px;
    width: 100%;
}

.footer-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.footer-center {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.footer-center a {
    color: var(--text-gray);
    text-decoration: none;
}

.footer-center a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-call-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-call-btn:hover {
    background-color: var(--accent-color-hover);
    color:white;
    transform: translateY(-2px);
}

.footer-call-btn img {
    width: 20px;
    height: 20px;
}

/* Fixed Call Button */
.fixed-call-btn,
a.fixed-call-btn {
    position: fixed;
    right: -25px;
    top: 80%;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 15px 35px 15px 25px;
    border-radius: 50px 0 0 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.fixed-call-btn.show {
    opacity: 1;
    pointer-events: auto;
}

.fixed-call-btn:hover,
a.fixed-call-btn:hover {
    background-color: var(--accent-color-hover);
    color:white;
    right: -20px;
}

.fixed-call-btn img {
    width: 20px;
    height: 20px;
}

/**** ****/

.section-10 { padding: 70px 0; color: var(--quaternary-color); font-family: var(--font); }
.section-10 .main-title { margin-bottom: 55px; }
.section-10 .main-title h2.h3 { font-family: var(--font); color: var(--quaternary-color); font-weight: 700; }
.section-10 .cta_group { margin: 26px 0 0; }

.comparison-main { display: flex; flex-wrap: wrap; margin: 0 auto; max-width: 1100px; }
.comparison-main > div { margin: 10px; padding: 24px 10px; width: calc(33.33% - 20px); display: flex; flex-flow: column; justify-content: end; }
 

.comparison-main [class*="column-"] .box { padding: 10px; font-size: 16px; line-height: 24px; border-bottom: 1px solid #E7E7E7; display: flex; align-items: center; gap: 8px; }
.comparison-main [class*="column-"] .box:last-child { border-bottom: none; }
.comparison-main [class*="column-"] .box label { min-width: 14px; }
.comparison-main [class*="column-"] .box.close { color: var(--accent-color); }
.comparison-main [class*="column-"] .title { text-align: center; padding: 0 0 15px; }
.comparison-main [class*="column-"] .title h5 { color: var(--quaternary-color); margin: 0; font-weight: 700; }
.comparison-main [class*="column-"] .title { border-bottom: 1px solid #E7E7E7; }
.comparison-main [class*="column-2"] .box .icon-view , 
.comparison-main [class*="column-3"] .box .icon-view { display: flex; gap: 8px; }

.style-2 .comparison-main [class*="column-"] .title h5 { font-size: 16px; line-height: 28px; }
.style-2 .comparison-main [class*="column"] .box { font-weight: 400; }
.style-2 .comparison-main [class*="column-2"] .box, .style-2 .comparison-main [class*="column-3"] .box { justify-content: center; }
.style-2 .comparison-main [class*="column-2"] .box label, .style-2 .comparison-main [class*="column-3"] .box label { display: none; }
.style-2 .comparison-main [class*="column-"] .box.close { color: var(--quaternary-color); }
.style-2 .comparison-main [class*="column-2"] .box { color: var(--sky-color); }

.comparison-main .column-2 { padding: 24px 30px; border-radius: 10px; border: 1px solid #D9D9D9; background: #FFF; box-shadow: 0 10px 20px -8px rgba(51, 51, 51, 0.15); }
.comparison-main .column-1 .box { display: flex; align-items: center; font-weight: 700; gap: 14px; padding: 10px; border-bottom: 1px solid #E7E7E7; }
.comparison-main .column-1 .box .icon { min-width: 33px; line-height: 0; text-align: center; }

.style-3 .comparison-main { justify-content: center; }
.style-3 .comparison-main > div { width: calc(40% - 20px); }
.style-3 .comparison-main .column-1 .box { font-weight: 400; }
.style-3 .comparison-main .column-2 .box { color: var(--accent-color); text-align:center; justify-content:center; }
.style-3 .comparison-main .column-2 .icon-view::after {
  content: "↑";
  display: inline-block;
  margin-left: 6px;
  font-size: 0.75em;
  vertical-align: middle;
  color: var(--accent-color, #A324D1);
}

.section-15 { padding: 50px 0; overflow-x: clip; font-family: var(--font); color: var(--quaternary-color); }
.section-15 .inside { margin: 0 auto; padding: 48px 50px 44px; max-width: 1160px; width: 100%; position: relative; border-radius: 10px; background: var(--tertiary-color); }
.section-15 h2 { margin: 0 0 35px; font-size: 36px; line-height: 42px; font-weight: 700; color: var(--quaternary-color); }
.section-15 .carousel-slider { margin: 0 auto; max-width: 588px; width: 100%; }
.testimonial-box { position: absolute; text-align: center; top: 50%; transform-origin: center center; transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .6s ease; }
.testimonial-box .inner-box { margin: 0 auto; max-width: 588px; width: 100%; }
.testimonial-box .content { font-size: 32px; line-height: 40px; }
.testimonial-box p.author { margin: 18px 0 0; }

.testimonial-box.active { opacity: 1; transform: translateY(-50%) translateX(0) scale(1); z-index: 10; }
.testimonial-box.next { opacity: .6; transform: translateY(-50%) translateX(580px) scale(.6); z-index: 5; }
.testimonial-box.prev { opacity: .6; transform: translateY(-50%) translateX(-580px) scale(.6); z-index: 5; }
.testimonial-box.hidden { opacity: 0; transform: translateY(-50%) translateX(-1200px) scale(.6); z-index: 1; }
.testimonial-box.hidden.right { transform: translateY(-50%) translateX(1200px) scale(.6); }

.carousel-slider .slider-track { height: 100%; overflow: hidden; position: relative; }
.button-slider { margin: 30px 0 0; display: flex; align-items: center; justify-content: center; gap: 24px; }
.button-slider button { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: none; border-radius: 32px; background: var(--sky-color); box-shadow: 0 17px 43px 0 rgba(0, 0, 0, 0.20); cursor: pointer; }

.section-18 { padding: 50px 0 150px; font-family: var(--font); color: var(--quaternary-color); }
.section-18 h2 { margin: 0 0 15px; font-size: 36px; line-height: 42px; color: var(--quaternary-color); font-weight: 700; }
.section-18 .cta_group { margin: 35px 0 0; }

.section-13 { padding: 50px 0; font-family: var(--font); color: var(--quaternary-color); }
.section-13 .twocol-main { margin: 0 auto; max-width: 1058px; width: 100%; }
.twocol-main .left { width: 525px; line-height: 0; }
.twocol-main .right { width: calc(100% - 525px); padding-left: 48px; }
.twocol-main .left img { width: 100%; border-radius: 10px; }
.twocol-main .right .heading { margin-bottom: 28px; }
.twocol-main .right .heading h2 { font-size: 36px; line-height: 42px; font-weight: 700; color: var(--quaternary-color); }
.twocol-main .right .sub-heading { margin-bottom: 25px; font-weight: 700; color: var(--quaternary-color); }
.twocol-main .right .content { max-width: 460px; }

.section-14 { padding: 70px 0 50px; font-family: var(--font); color: #4c4c4c; }
.section-14 .container { max-width: 996px; }
.section-14.width-increase .container { max-width: 1200px; }
.cardbox-cap { max-width: 730px; margin: 0 auto 15px; }
.cardbox-cap .content,
.cardbox-cap .heading { margin-bottom: 20px; }
.cardbox-cap .heading h4,
.cardbox-cap .heading h2 { color: var(--quaternary-color); font-weight: 700; }
.cardbox-cap h6 { color: #4c4c4c; }
.cardbox-cap .heading h2 { font-size: 36px; line-height: 42px; font-weight: 700; }
.cardbox-main { margin: 0 -12px; }
.cardbox-main .cardbox-item { padding: 12px; width: 25%; }
.cardbox-item .cardbox-in { border-radius: 10px; border: 1px solid #D9D9D9; background: #FFF; box-shadow: 0 10px 20px -8px rgba(51, 51, 51, 0.15); padding: 24px; height: 100%; }
.cardbox-item .cardbox-in .icon { line-height: 0; margin: 0 0 20px; }
.section-14 .btm-text { margin: 12px auto 0; max-width: 566px; font-size: 12px; line-height: 18px; }

.section-17 { padding: 50px 0; font-family: var(--font); color: var(--quaternary-color); }
.bookapp-main { max-width: 724px; margin: 0 auto; border-radius: 10px; background: var(--tertiary-color); padding: 48px; }
.bookapp-main .sub-heading,
.bookapp-main .heading h2 { color: var(--quaternary-color); }
.bookapp-main .heading h2 { font-size: 36px; line-height: 42px; color: var(--quaternary-color); font-weight: 700; }
.bookapp-main .sub-heading,
.bookapp-main .heading,
.bookapp-main .richtext { margin-bottom: 20px; }

.another-design { font-family: var(--font); }
.another-design .insurance-logo img { filter: brightness(0) saturate(100%) invert(79%) sepia(2%) saturate(22%) hue-rotate(334deg) brightness(88%) contrast(90%); }
.section-7.another-design .section-7-wrap { padding: 0 15px; font-family: var(--font); }
.section-7.another-design h6 { color: var(--quaternary-color); margin-bottom: 10px; font-weight: 500; }
.section-7.another-design h2.h1 { font-size: 36px; color: var(--quaternary-color); font-weight: 700; line-height: 42px; }
.section-7.another-design h2.h2 { color: var(--quaternary-color); }
.section-7.another-design .section-7-text { color: var(--quaternary-color); max-width: 636px; font-size: 16px; line-height: 24px; font-weight: 400; margin: 0 auto 32px; }
.section-7.another-design .container { max-width: 100%; padding: 0; }
.section-7 .cta_group { margin-bottom: 25px; }
.section-7.another-design .slider-overlay.left { background: transparent; }
.section-7.another-design .slider-overlay.right { background: transparent; }
.section-7.another-design .section-scroll-arrow { display: none; }

.section-16 { padding: 60px 0 45px; font-family: var(--font); }
.section-16-container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }
.section-16 .heading { font-size: 36px; line-height: 42px; font-weight: 700; color: var(--quaternary-color); max-width: 783px; margin: 0 auto 20px; }
.loaction-box { margin: 0 -12px; }
.loaction-box .left { width: 33.33%; padding: 12px; font-family: var(--secondary-font); }
.loaction-box .right { width: 66.67%; padding: 12px; }
.loaction-box .loc-filter { border-radius: 10px; background: var(--tertiary-color); height: 100%; padding: 45px 30px; }
.loaction-box .loc-filter h3 { padding: 0 20px 0; color: var(--quaternary-color); font-weight: 700; margin: 0 0 16px; font-family: var(--secondary-font); }
.filter-field .form-group-one { margin: 0 0 18px; }
.filter-field .form-group-one .form-group { width: 100%; }
.filter-field .form-group-two { display: flex; flex-flow: row wrap; margin: 0 -12px; }
.filter-field .form-group-two .form-group { width: 50%; padding: 12px; }
.filter-field .form-group label { font-size: 16px; font-style: normal; font-weight: 700; line-height: 24px; width: 100%; display: inline-block; padding: 0 20px 5px; font-family: var(--secondary-font); font-weight: 700; }
.filter-field .form-group select { background:#fff url(https://21808848.fs1.hubspotusercontent-na1.net/hubfs/21808848/same-day-lp/down-arrow.png) no-repeat right 15px center; -webkit-appearance:none; -moz-appearance:none; appearance:none; border-radius: 1002px; border: 1px solid rgba(0, 0, 0, 0.17); width: 100%; height: 49px; padding: 13px 30px 13px 15px; font-size: 16px; font-style: normal; font-weight: 700; line-height: 24px; font-family: var(--secondary-font); }
.filter-field .form-group input { border-radius: 1002px; border: 1px solid rgba(0, 0, 0, 0.17); background: #FFF; height: 49px; color: var(--quaternary-color); padding: 15px; width: 100%; font-size: 16px; font-style: normal; font-weight: 700; line-height: 24px; font-family: var(--secondary-font); }
.filter-field .form-group input::placeholder { color: var(--quaternary-color); }
.filter-field .form-group input:focus-visible { outline: none; }
.loc-filter .clear-button { display: inline-block; width: 100%; text-align: center; margin-top: 20px; }
.loc-filter .clear-button a { font-size: 14px; font-style: normal; font-weight: 700; line-height: 24px; text-decoration-line: underline; text-decoration-style: solid; text-decoration-skip-ink: none; text-decoration-thickness: auto; text-underline-offset: auto; text-underline-position: from-font; color: var(--quaternary-color); }
.loaction-box .custom-map-box iframe { width: 100%; height: 100%; border-radius: 10px; }
.loaction-box .custom-map-box { width: 100%; height: 100%; border-radius: 10px; }
.location-main { margin: 0 -12px; }
.location-main .location-item { padding: 12px; width: 33.33%; }
.location-item .location-in { cursor: pointer; border-radius: 10px; border: 1px solid #D9D9D9; background: #FFF; box-shadow: 0 10px 20px -8px rgba(51, 51, 51, 0.15); padding: 21px; height: 100%; transition: transform .2s ease, box-shadow .2s ease; }
.location-item .loc-heading { color: var(--quaternary-color); font-weight: 700; border-radius: 10px; background: var(--tertiary-color); padding: 17px 15px 17px 35px; margin: 0 0 26px; }
.location-item .loaction-details { position: relative; padding-left: 30px; }
.location-item .loaction-details svg { position: absolute; left: 0; top: 3px; }
.location-item .loaction-details span { font-size: 18px; font-style: normal; font-weight: 400; line-height: 28px; }
.location-item .loaction-details:not(:last-child) { margin-bottom: 20px; }
.filter-field .form-group select:focus-visible { outline: none; }
.location-item .location-in:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, .1); transform: translateY(-2px); }

.section-16 .gm-style .gm-style-iw-c { padding: 15px !important; width: 230px; border-radius: 10px; border: 1px solid #D9D9D9; background: #FFF; box-shadow: 0 10px 20px -8px rgba(51, 51, 51, 0.15); font-family: var(--font); color: var(--quaternary-color); font-size: 14px; line-height: 22px; }
.section-16 .gm-style .gm-style-iw-c .gm-style-iw-ch { display: none; }
.section-16 .gm-style-iw-chr button.gm-ui-hover-effect { width: 30px !important; height: 30px !important; outline: none; }
.section-16 .gm-style-iw-chr { justify-content: right; position: absolute; top: 0; right: 0; }
.section-16 .gm-ui-hover-effect> span { margin: 0 !important; }
.section-16 .gm-style h4 { font-size: 18px; font-weight: 700; color: var(--quaternary-color) !important; }
.section-16 .gm-style p { color: var(--quaternary-color) !important; }

.nav-flexi { transition: all 0.3s ease; }
.nav-flexi.sticky-nav { position: fixed; top: -40px; left: 0; right: 0; z-index: 100; }

@media(max-width: 991px) {

    .section-10 { padding: 60px 0 20px; }
    .section-10 .main-title h2.h3 { margin: 0 0 24px; font-size: 26px; line-height: 34px; }
    .section-10 .main-title { margin-bottom: 18px; }
    .comparison-main > div { width: 100%; margin: 0; }
    .comparison-main .column-1 { display: none; }
    
    .comparison-main [class*=column-] { padding: 24px; }
    .comparison-main [class*=column-] .box { font-size: 15px; line-height: 22px; flex-flow: column; justify-content: center; padding: 20px 0; height: auto !important; gap: 14px 8px; text-align: center; }
    .comparison-main [class*=column-] .box .title-icon { display: flex; align-items: center; font-weight: 700; gap: 14px; color: var(--quaternary-color); /* line-height: 0; <- why was this even here */ }
    .comparison-main [class*=column-] .box .title-icon .icon { min-width: 30px; width: 30px; }
    
    .section-14 { padding: 30px 0 50px; }
    .cardbox-cap .heading h2 { font-size: 26px; line-height: 34px; }

    .section-10.style-2 { padding: 0 0 20px; }
    .style-2 .comparison-main [class*=column-] { border-radius: 10px; border: 1px solid #D9D9D9; background: #FFF; box-shadow: 0 10px 20px -8px rgba(51, 51, 51, 0.15); margin: 14px 0; }
    .style-2 .comparison-main [class*=column-] .box { flex-flow: nowrap; justify-content: space-between; }
    .style-2 .comparison-main [class*=column-] .box .title-icon { font-weight: 400; text-align: left; }
    
    .section-10 .cta_group { margin: 16px 0 0; }
    
    .twocol-main .left { width: 100%; margin: 0 auto; max-width: 500px; }
    .twocol-main .right { width: 100%; padding: 0; margin: 24px 0 0; text-align: center; font-size: 15px; line-height: 22px; }
    .twocol-main .right .content { max-width: 100%; }
    .twocol-main .right .heading h2 { font-size: 26px; line-height: 34px; }
    .twocol-main .right .sub-heading br { display: none; }
    
    .cardbox-cap .heading h4 { font-size: 20px; }
    .section-14 { font-size: 15px; line-height: 22px; }
    
    .section-15 { padding: 0; }
    .section-15 .container { padding: 0; }
    .section-15 .inside { border-radius: 0; font-size: 15px; line-height: 22px; padding: 45px 24px; }
    .section-15 h2 { font-size: 26px; line-height: 34px; margin: 0 0 28px; }
    .section-15 .carousel-slider { max-width: 588px; }
    .testimonial-box .content { font-size: 24px; line-height: 36px; }
    .testimonial-box .inner-box { max-width: 100%; }
    
    .another-design { padding: 60px 0; }
    .section-7.another-design h6 { font-size: 16px; line-height: 24px; }
    .section-7.another-design h2.h1 { font-size: 26px; line-height: 34px; }
    
    .another-design .insurance-slider { height: 60px; }
    .another-design .insurance-logo img { max-height: 24px; }
    
    .section-17 { padding: 0; }
    .bookapp-main .sub-heading { font-size: 16px; line-height: 24px; }
    .bookapp-main .heading h2 { font-size: 26px; line-height: 34px; }
    .bookapp-main { font-size: 15px; line-height: 22px; padding: 24px; }

    .section-18 { padding: 50px 0 64px; font-size: 15px; line-height: 22px; }
    .section-18 h2 { font-size: 26px; line-height: 34px; }
    
    .section-16 { padding: 40px 0 0; }
    .section-16 .heading { font-size: 26px; line-height: 34px; margin: 0 auto 20px; }
    
    .location-main { margin: 15px -12px 0; }
    .loaction-box { margin: 0; flex-wrap: wrap; }
    .loaction-box .loc-filter { width: 100%; padding: 45px 30px; border-radius: 10px 10px 0 0; }
    .loaction-box .left { width: 100%; padding: 0; }
    .loaction-box .loc-filter h3 { font-size: 20px; line-height: 26px; margin: 0 0 25px; }
    .loaction-box .right { width: 100%; padding: 0; height: 387px; border-radius: 0 0 10px 10px; overflow: hidden; }
    .location-main .location-item { width: 50%; }
    

    .cardbox-main .cardbox-item { width: 50%; }
    
    

}

@media(max-width: 767px) { 

    .cardbox-main { margin: 0; }
    .cardbox-main .cardbox-item { padding: 12px 0; width: 100%; }
    
    .section-16 .location-main { display: none; }
    .section-16 .mobile-carousel { margin:32px auto; display: block; overflow: visible; }
    
    .location-item { width: 100%; position: absolute; top: 50%; transform-origin: center center; transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .6s ease; }
    
    .location-item.active { opacity: 1; transform: translateY(-50%) translateX(0) scale(1); z-index: 10; }
    .location-item.next { opacity: 0; transform: translateY(-50%) translateX(580px) scale(1); z-index: 5; }
    .location-item.prev { opacity: 0; transform: translateY(-50%) translateX(-580px) scale(1); z-index: 5; }
    .location-item.hidden { opacity: 0; transform: translateY(-50%) translateX(-1200px) scale(1); z-index: 1; }
    .location-item.hidden.right { transform: translateY(-50%) translateX(1200px) scale(1); }
    
    .location-item .location-in:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, .1); transform: translateY(0px); }
    
    .section-18 { padding-top: 0; }

}

@media(max-width: 500px) {

    .banner-v2 .cta_group a { width: 100%; }

}


/* ==========================================================================
   5. RESPONSIVE DESIGN
   ========================================================================== */

/* Large Tablets & Small Desktops (991px and down) */
@media (max-width: 991px) {
    .feature-5 .feature-box {
        flex: 1 1 calc(33.333% - 30px);
        max-width: calc(33.333% - 30px);
    }
    
    .section-5-boxes .section-5-box {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
        text-align: center;
    }
    
    .section-5-boxes-3 .section-5-box,
    .section-5-boxes-5 .section-5-box,
    .section-5-boxes-6 .section-5-box,
    .section-5-boxes-8 .section-5-box {
        flex: 1 1 calc(33.333% - 30px);
        max-width: calc(33.333% - 30px);
    }
    
    .section-5-left,
    .section-5-right {
        width: 100%;
    }
    
    
}

/* Large Tablets (1024px and down) */
@media (max-width: 1024px) {
    .locations-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* Tablets (767px and down) */
@media (max-width: 767px) {
    /* Feature Grid Responsive */
    .feature-box,
    .feature-3 .feature-box,
    .feature-5 .feature-box {
        max-width: 100%;
    }
    
    .tab-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    /* Section 2 Mobile Carousel */
    .feature-grid {
        display: none;
    }
    
    .section-2 .mobile-carousel {
        display: flex;
    }
    
    /* Section 3 Responsive */
    .section-3-wrapper {
        flex-direction: column;
        gap: 0;
        margin: 15px;
    }
    
    .section-3-left,
    .section-3-right {
        padding: 25px;
    }
    
    .section-3-left { 
        padding-bottom: 60px; 
    }
    
    /* Section 4 Mobile Carousel */
    .tab-boxes {
        display: none;
    }
    
    .section-4 .mobile-carousel {
        display: flex;
    }
    
    /* Section 5 Responsive */
    .section-5-top-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .section-5-left {
        padding: 0 20px;
    }
    
    .section-5-box,
    .section-5-boxes-3 .section-5-box,
    .section-5-boxes-5 .section-5-box,
    .section-5-boxes-6 .section-5-box,
    .section-5-boxes-8 .section-5-box {
        max-width: 100%;
    }
    
    /* Section 5 Mobile Carousel */
    .section-5-boxes {
        display: none;
    }
    
    .section-5 .mobile-carousel {
        display: flex;
    }
    
    /* Section 6 Responsive */
    .section-6 { 
        padding: 75px 0; 
    }
    
    /* Section 7 Responsive */
    .section-7-text {
        font-size: 1.1rem;
    }
    
    .insurance-slider {
        height: 70px;
    }
    
    .insurance-logo img {
        max-width: 140px;
        max-height: 45px;
    }
    
    /* Section 8 Responsive */
    .section-8 {
      padding:55px 0;
    }

    .section-8-boxes {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-8-box {
        max-width: 100%;
    }
    
    /* Testimonial Carousel Responsive */
    .testimonial-carousel {
        min-height: 350px;
        max-width: 400px;
    }
    
    .testimonial-slides {
        width: 350px;
        overflow: unset;
    }
    
    .testimonial-slide {
        width: 350px;
        min-height: 200px;
        padding: 25px 30px;
    }
    
    .testimonial-slide.active {
        transform: translateY(-50%) translateX(0) scale(1);
    }
    
    .testimonial-slide.prev,
    .testimonial-slide.next {
        transform: translateY(-50%) translateX(-800px) scale(0.6);
        opacity: 0;
    }
    
    .testimonial-slide.next {
        transform: translateY(-50%) translateX(800px) scale(0.6);
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        font-size: 1rem;
    }
    
    .quotation-mark { 
        bottom: -20%; 
    }
    
    .slide-overlay {
        display: none;
    }
    
    /* Section 9 Responsive */
    .section-9-info-boxes {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-9-info-left,
    .section-9-info-right {
        text-align: center;
    }
    
    /* Section 9 Mobile Carousel */
    .locations-grid {
        display: none;
    }
    
    .section-9 .mobile-carousel {
        display: flex;
    }
    
    .google-map {
        height: 300px;
    }
    
    .location-box { 
        padding: 15px 10px 15px 15px; 
    }
    
    .location-content h3 { 
        font-size: 1.5rem; 
    }
    
    .location-content p { 
        font-size: 1rem; 
    }
    
    /* Footer Responsive */
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-center {
        order: -1;
    }
    
    /* Fixed Call Button Responsive */
    .fixed-call-btn {
        right: -15px;
        padding: 12px 25px 12px 15px;
        font-size: 1rem;
    }
    
    .fixed-call-btn img {
        width: 18px;
        height: 18px;
    }


    
    
}
    
}