/* ===================================
   BOOM Smiles - Main Stylesheet
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* CSS Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1d59aa;
    --dark-navy: #0f386e;
    --text-dark: #2e3032;
    --text-black: #0a0a0a;
    --light-blue-bg: #f4f9ff;
    --light-blue-pill: #e6effb;
    --icon-bg: #d0e7fb;
    --white: #ffffff;
    --divider-color: #0f386e;
    --card-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
    --border-radius-pill: 120px;
    --border-radius-card: 22px;
    --font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

.container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 120px;
}

.custom_container_1680 {
    max-width: 1680px;
    margin: 0 auto;
    width: 100%;
}

.custom_container_1200 {
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

/*-------------------*/

body.menu-open .uwy.userway_p5 {
    display: none;
}
/*----------------------*/

/* ===================================
   Typography - Reusable Classes
   =================================== */

.section-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: var(--dark-navy);
    letter-spacing: -0.42px;
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    letter-spacing: -0.36px;
}

.section-subtitle--center {
    text-align: center;
}

.heading-lg {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    color: var(--dark-navy);
    letter-spacing: -0.56px;
}

.heading-md {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: var(--dark-navy);
    letter-spacing: -0.42px;
}

.heading-sm {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6;
    color: var(--primary-blue);
    letter-spacing: 0.4px;
}

.body-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    letter-spacing: 0.36px;
}

.body-text--medium {
    font-weight: 500;
    letter-spacing: 0.36px;
}

/* ===================================
   Buttons - Reusable Classes
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.32px;
    padding: 15px 48px;
    border-radius: var(--border-radius-pill);
    border: 1px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: fit-content;
}

.btn--primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn--primary:hover {
    background-color: var(--dark-navy);
    opacity: 1;
}

.btn--outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.btn--outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    opacity: 1;
}

.btn--white-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn--white-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    opacity: 1;
}

.btn-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 575px) {
    .btn {
        width: 100% !important;
        text-align: center;
    }
}

/* ===================================
   Header / Navigation
   =================================== */

.header {
    padding: 20px 30px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1720px;
    width: 100%;
    margin: auto;
}

.header__logo {
    width: 96px;
    height: 54px;
    flex-shrink: 0;
}

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 80px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-item {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.header__nav-link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    color: var(--text-black);
}

.header__nav-arrow {
    width: 20px;
    height: 20px;
}

.header__cta .btn {
    padding: 15px 36px;
}

/* Mobile menu toggle */
.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.header__mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-navy);
    border-radius: 2px;
    transition: 0.3s;
}

@media only screen and (min-width: 1101px) and (max-width: 1280px) {
    .header__right {
        gap: 40px;
    }

    .header__nav {
        gap: 13px;
    }

    .header__nav-link {
        font-size: 14px;
    }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    padding: 100px 30px;
    background: var(--light-blue-bg);
}

.hero_container {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1680px;
    width: 100%;
    margin: auto;
}

.hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
    min-width: 0;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--light-blue-pill);
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    align-self: flex-start;
}

.hero__badge-icon {
    width: 18px;
    height: 18px;
}

.hero__badge-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.32px;
    color: var(--primary-blue);
}

.hero__image {
    flex: 1;
    min-width: 0;
}

.hero__image img {
    width: 100%;
    height: 634px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

@media only screen and (max-width: 575px) {
    .btn-group a {
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 991px) {
    section.hero {
        padding: 50px 20px;
    }

    .hero_container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .hero__image {
        width: 100%;
    }
}

/* ===================================
   Experience / Stats Section
   =================================== */

.experience {
    padding: 100px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
}


.experience__header {
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: auto;
    margin-bottom: 50px;
}

.experience__divider {
    width: 80px;
    height: 2px;
    background: var(--dark-navy);
}

.experience__stats {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.experience__stat {
    width: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.experience__stat-number {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: var(--dark-navy);
    letter-spacing: -0.42px;
}

.experience__stat-label {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    letter-spacing: -0.36px;
}

/* ===================================
   First Visit (Image + Text) Section
   =================================== */

.first-visit {
    padding: 100px 30px;
    background: var(--light-blue-bg);
}

.first_visit_container {
    width: 100%;
    max-width: 1680px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: space-between;
}

.first-visit--reverse {
    flex-direction: row-reverse;
    background: var(--white);
}

.first-visit__image {
    flex: 1;
    min-width: 0;
}

.first-visit__image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

.first-visit__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 42px;
    min-width: 0;
}

.first-visit__text-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.first-visit__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 46px;
    line-height: 1.2;
    color: var(--dark-navy);
    letter-spacing: -0.46px;
}

@media only screen and (max-width: 575px) {
    .first_visit_container .first-visit__image img {
        height: auto !important;
    }
}

@media only screen and (max-width: 991px) {
    .first-visit {
        padding: 50px 20px;
    }

    .first_visit_container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .first-visit__image {
        width: 100%;
        flex: unset;
    }

    .first-visit__content {
        width: 100%;
        flex: unset;
    }

    .first-visit__image img {
        height: 500px !important;
        width: auto;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1440px) {
    .first_visit_container {
        gap: 50px;
    }
}

/* ===================================
   Why Choose Section
   =================================== */

.why-choose {
    padding: 100px 30px;
}

.why_choose_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 1680px;
    width: 100%;
    margin: auto;
}

.why-choose__cards {
    display: flex;
    gap: 26px;
    width: 100%;
}

.why-choose__card {
    flex: 1;
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.why-choose__icon {
    width: 68px;
    height: 68px;
    background: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose__icon img {
    width: 32px;
    height: 32px;
}

.why-choose__card-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .why-choose {
        padding: 50px 20px;
    }
}

/* ===================================
   Services Grid Section
   =================================== */

.services {
    padding: 100px 30px;
    background-color: #F4F9FF;
}

.services_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 1680px;
    width: 100%;
    margin: auto;
}

.services__header {
    text-align: center;
    max-width: 852px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.services__card {
    border-radius: var(--border-radius-card);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--card-shadow);
}

.services__card-image {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.services__card-body {
    padding: 14px 18px 18px;
}

.services__card-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6;
    color: var(--dark-navy);
    margin-bottom: 6px;
}

.services__card-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    letter-spacing: 0.36px;
}

.services__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .services {
        padding: 50px 20px;
    }
}

/* ===================================
   Gallery / Before & After Section
   =================================== */

.gallery {
    padding: 100px 30px;
}

.gallery_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1680px;
    width: 100%;
    margin: auto;
}

.gallery__image {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

.gallery__dots {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.gallery__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--icon-bg);
    cursor: pointer;
    transition: background 0.3s;
}

.gallery__dot--active {
    background: var(--primary-blue);
}

/* ===================================
   Meet Doctor Section
   =================================== */

.meet-doctor {
    padding: 100px 30px;
    background: var(--light-blue-bg);
    position: relative;
    overflow: hidden;
}

/* Owl Carousel container */
.meet-doctor_container {
    width: 100%;
    max-width: 1680px;
    margin: auto;
    position: relative;
}

.meet-doctor_row {
    width: 100%;
}

/* Each slide: content left + image right */
.meet-doctor_col1 {
    display: flex !important;
    align-items: center;
    gap: 100px;
    margin: 0 40px;
}

.meet-doctor__content {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    gap: 42px;
    min-width: 0;
    max-width: fit-content;
    width: 100%;
}

.meet-doctor__text-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.meet-doctor__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 50px;
    line-height: 1.0;
    color: var(--dark-navy);
}

.meet-doctor__image {
    width: 100%;
    max-width: 620px;
    /* flex-shrink: 0; */
}

.meet-doctor__image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

/* Owl Carousel Navigation Buttons */
.meet-doctor .owl-controls {
    position: static;
}

.meet-doctor .owl-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.meet-doctor .owl-prev,
.meet-doctor .owl-next {
    pointer-events: all;
}

.meet-doctor__nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1D59AA;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
    color: var(--dark-navy);
    padding: 0;
    line-height: 1;
}

.meet-doctor__nav-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Hide default Owl pagination dots for this section */
.meet-doctor .owl-pagination {
    display: none;
}

.meet-doctor_row .owl-wrapper-outer .owl-item {
    max-width: 90%;
    margin: auto;
}


.meet-doctor_container .meet-doctor_row .owl-controls .owl-buttons {
    padding: 0;
}

.meet-doctor_container .meet-doctor_row .owl-controls .owl-buttons .owl-prev,
.meet-doctor_container .meet-doctor_row .owl-controls .owl-buttons .owl-next {
    background: transparent;
    padding: 0;
    margin: 0;
    opacity: 1;
}

.meet-doctor_container .meet-doctor_row .owl-controls .owl-buttons .owl-prev button {
    position: absolute;
    left: -20px;
}

.meet-doctor_container .meet-doctor_row .owl-controls .owl-buttons .owl-next button {
    right: -20px;
    position: absolute;
}

@media only screen and (max-width: 575px) {
    .meet-doctor__nav-btn {
        width: 30px;
        height: 30px;
    }

    .meet-doctor__nav-btn svg {
        width: 6px;
    }
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
    padding: 100px 30px;
    background: linear-gradient(135deg, #0f386e 0%, #1d59aa 100%);
    position: relative;
}

.testimonials_container {
    max-width: 1680px;
    width: 100%;
    margin: auto;
}

.testimonials__header {
    text-align: center;
    max-width: 944px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonials__header .section-title {
    color: var(--white);
}

.testimonials__header .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials__cards {
    display: flex;
    gap: 32px;
}

.testimonials__card {
    flex: 1;
    background: var(--white);
    border-radius: var(--border-radius-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 10px;
}

.testimonials__stars {
    display: flex;
    gap: 6px;
}

.testimonials__stars svg {
    width: 24px;
    height: 24px;
    fill: #f5a623;
}

.testimonials__name {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6;
    color: var(--dark-navy);
}

.testimonials__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    letter-spacing: 0.36px;
}

.testimonials__nav {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.testimonials__nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    font-size: 18px;
    color: var(--dark-navy);
    transition: background 0.3s;
}

.testimonials__nav-btn:hover {
    background: var(--light-blue-bg);
}

.testimonials__cards .owl-buttons {
    display: none;
}

/*---------------------*/
.testi-owl {
    padding: 4px 2px 8px;
}

.testi-owl .testimonials__card {
    margin: 0;
}

.testimonials__card p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testimonials__card p.expanded {
    overflow: auto;
}

.read-more-btn {
    color: #144589;
    cursor: pointer;
    font-weight: 600;
    margin-top: 0;
    display: inline-block;
}

.testimonials_container .testimonials__cards .owl-controls .owl-page span {
    background: #ffffff;
}

/*---------------------*/
/* ===================================
   Membership Section
   =================================== */

.membership {
    padding: 100px 30px;
    background: var(--white);
}

.membership_container {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1680px;
    width: 100%;
    margin: auto;
}

.membership__image {
    flex: 1;
    min-width: 0;
}

.membership__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

.membership__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 42px;
    min-width: 0;
}

.membership__text-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


@media only screen and (max-width: 767px) {
    .membership_container .membership__image img {
        height: auto !important;
    }
}

@media only screen and (max-width: 991px) {
    .membership_container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .membership_container .membership__image {
        flex: unset;
        width: auto;
    }

    .membership_container .membership__content {
        flex: unset;
        width: 100%;
    }

    .membership_container .membership__image img {
        height: 500px;
    }
}


@media only screen and (min-width: 992px) and (max-width: 1440px) {
    .membership_container {
        gap: 50px;
    }
}

/* ===================================
   Facebook Section
   =================================== */

.facebook {
    padding: 100px 30px;
    text-align: center;
    background-color: #F4F9FF;
}

.facebook_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 1680px;
    width: 100%;
    margin: auto;
}

.facebook__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.facebook__label {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    letter-spacing: -0.36px;
}

.facebook__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: var(--dark-navy);
    letter-spacing: -0.42px;
}

.facebook__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 100%;
    max-width: 1280px;
}

.facebook__grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

@media only screen and (max-width: 575px) {
    .facebook__grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* ===================================
   CTA Section
   =================================== */

.cta {
    padding: 100px 120px;
    background: var(--primary-blue);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.cta__header {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta .section-title {
    color: var(--white);
}

.cta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn--primary {
    background: var(--white);
    color: var(--primary-blue);
}

.cta .btn--primary:hover {
    background: var(--light-blue-bg);
    opacity: 1;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 70px 30px 0;
}

.footer__main {
    display: flex;
    gap: 60px;
    padding-bottom: 60px;
    max-width: 1680px;
    width: 100%;
    margin: auto;
}

.footer__brand {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo {
    width: 119px;
    height: 67px;
}

.footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer__brand-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.footer__social-label {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    letter-spacing: 0.3px;
}

.footer__social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.footer__social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
}

.footer__social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer__columns {
    display: flex;
    gap: 48px;
    flex: 1;
}

.footer__column {
    min-width: 0;
    flex: 1;
}

.footer__column--contact {
    flex: 1.1;
}

.footer__column--services {
    flex: 1.6;
}

.footer__column-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.32px;
    position: relative;
    padding-bottom: 12px;
}

.footer__column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 1px;
}

.footer__column-subtitle {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 6px;
}

.footer__column-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.footer__column-text a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer__column-text a:hover {
    color: var(--white);
}

.footer__contact-block {
    margin-bottom: 18px;
}

.footer__contact-block:last-child {
    margin-bottom: 0;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__link:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer__services-grid {
    display: flex;
    gap: 32px;
}

.footer__services-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Hours table styling */
.footer__hours {
    gap: 8px;
}

.footer__hour-row {
    display: flex;
    gap: 8px;
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer__hour-day {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    min-width: 40px;
}

.footer__hour-time {
    font-weight: 400;
}

/* Footer Bottom */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 1680px;
    width: 100%;
    margin: auto;
}

.footer__bottom-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__bottom-text a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer__bottom-text a:hover {
    color: var(--white);
}

.footer__bottom-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
}

@media only screen and (max-width: 991px) {
    .footer {
        padding: 50px 20px 0 !important;
    }
}

/* ===================================
   Inner Page Hero Banner
   =================================== */

.page-banner {
    background: linear-gradient(135deg, #0f386e 0%, #1d59aa 100%);
    padding: 80px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.page-banner__content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.page-banner__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.5px;
}

.page-banner__subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.page-banner__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
}

.page-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.page-banner__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.page-banner__breadcrumb a:hover {
    color: var(--white);
    opacity: 1;
}

.page-banner__breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   Meet The Team Page
   =================================== */

.team-intro {
    padding: 100px 30px;
    background: var(--white);
}

.team-intro__container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Doctor Profile Card */
.doctor-profile {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.doctor-profile:nth-child(even) {
    flex-direction: row-reverse;
}

.doctor-profile__image {
    width: 480px;
    flex-shrink: 0;
}

.doctor-profile__image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

.doctor-profile__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    padding-top: 20px;
}

.doctor-profile__name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: var(--dark-navy);
    letter-spacing: -0.4px;
}

.doctor-profile__role {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: var(--primary-blue);
    letter-spacing: 0.36px;
}

.doctor-profile__bio {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Team Section */
.team-support {
    padding: 100px 30px;
    background: var(--light-blue-bg);
    text-align: center;
}

.team-support__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ===================================
   Our Office Page
   =================================== */

/* Office Content Block (image + text side-by-side) */
.office-block {
    padding: 100px 30px;
}

.office-block--alt {
    background: var(--light-blue-bg);
}

.office-block__container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.office-block__container--reverse {
    flex-direction: row-reverse;
}

.office-block__image {
    flex: 1;
    min-width: 0;
}

.office-block__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

.office-block__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.office-block__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: var(--dark-navy);
    letter-spacing: -0.42px;
}

/* Office Gallery Grid */
.office-gallery {
    padding: 100px 30px;
}

.office-gallery--alt {
    background: var(--light-blue-bg);
}

.office-gallery__container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.office-gallery__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.office-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.office-gallery__grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

.office-gallery__grid--single {
    grid-template-columns: 1fr;
}

.office-gallery__grid--single img {
    height: 500px;
}

/* Office Full-Width Text Block */
.office-text {
    padding: 100px 30px;
    text-align: center;
}

.office-text--alt {
    background: var(--light-blue-bg);
}

.office-text__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* ===================================
   Header Dropdown Navigation
   =================================== */

.header__nav-item.has-dropdown {
    position: relative;
}

.header__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    padding: 10px 0;
    z-index: 1100;
    border-top: 3px solid var(--primary-blue);
}

.header__nav-item.has-dropdown:hover .header__dropdown {
    display: flex;
    flex-direction: column;
}

.header__dropdown-link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-navy);
    padding: 10px 20px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.header__dropdown-link:hover {
    background: var(--light-blue-bg);
    color: var(--primary-blue);
    opacity: 1;
}

/* ===================================
   Inner Page - Shared Section Styles
   =================================== */

.inner-section {
    padding: 90px 30px;
}

.inner-section--alt {
    background: var(--light-blue-bg);
}

.inner-section__container {
    max-width: 1680px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.inner-section__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Content block: text + images side by side */
.content-block {
    display: flex;
    align-items: center;
    gap: 80px;
}

.content-block--reverse {
    flex-direction: row-reverse;
}

.content-block__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.content-block__images {
    flex: 1;
    min-width: 0;
    display: grid;
    gap: 16px;
    width: auto;
}

.custom_width_dr_sec .content-block__images {
    width: auto;
    max-width: fit-content;
}

.content-block__images--two {
    grid-template-columns: 1fr 1fr;
}

.content-block__images--one {
    grid-template-columns: 1fr;
}

.content-block__images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

.content-block__images--one img {
    height: 500px;
    object-position: top;
}

.content-block__images--three {
    grid-template-columns: 1fr 1fr 1fr;
}

.content-block__images--three img {
    height: 220px;
}

/* Section with 3 images across the bottom */
.images-row {
    display: grid;
    gap: 20px;
    width: 100%;
}

.images-row--two {
    grid-template-columns: 1fr 1fr;
}

.images-row--three {
    grid-template-columns: 1fr 1fr 1fr;
}

.images-row img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

/* ===================================
   Treatment / Service Cards
   =================================== */

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
}

.treatment-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(29, 89, 170, 0.15);
}

.treatment-card__img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.treatment-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.treatment-card__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-navy);
    line-height: 1.3;
}

/* ===================================
   Steps / Process Cards
   =================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
}

.step-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-card__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-navy);
}

/* ===================================
   FAQ Section
   =================================== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    padding: 28px 32px;
    border-left: 4px solid var(--primary-blue);
}

.faq-question {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 26px;
    font-weight: 300;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-left: 20px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    display: none;
    padding-top: 16px;
}

.faq-item.open .faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 20px 20px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* ===================================
   Pricing Cards - Membership Plan
   =================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 4px solid var(--icon-bg);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(29, 89, 170, 0.15);
}

.pricing-card--featured {
    border-top-color: var(--primary-blue);
    background: var(--primary-blue);
}

.pricing-card__name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-navy);
}

.pricing-card--featured .pricing-card__name {
    color: var(--white);
}

.pricing-card__age {
    font-family: var(--font-family);
    font-size: 13px;
    color: var(--text-dark);
    background: var(--light-blue-pill);
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}

.pricing-card--featured .pricing-card__age {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.pricing-card__price {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    color: var(--dark-navy);
}

.pricing-card--featured .pricing-card__price {
    color: var(--white);
}

.pricing-card__period {
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--text-dark);
    margin-top: -8px;
}

.pricing-card--featured .pricing-card__period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card__savings {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 13px;
    color: #1a7f3c;
    background: #dcf5e7;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}

.pricing-card--featured .pricing-card__savings {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.pricing-card__divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.pricing-card--featured .pricing-card__divider {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.pricing-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.pricing-card--featured .pricing-card__feature {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card__check {
    width: 18px;
    height: 18px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 10px;
    color: var(--white);
    font-weight: 700;
}

.pricing-card--featured .pricing-card__check {
    background: rgba(255, 255, 255, 0.3);
}

/* ===================================
   Insurance Grid
   =================================== */

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.insurance-item {
    background: var(--white);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-navy);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.insurance-item::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

/* ===================================
   Benefits / Exclusions
   =================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.benefits_grid_items {
    grid-template-columns: 1fr;
    max-width: 1100px;
    margin: auto;
}

.benefits_grid_items .benefits_list_para p:not(:last-child) {
    margin-bottom: 15px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.benefit-item--yes::before {
    content: '✓';
    color: #1a7f3c;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item--no::before {
    content: '✗';
    color: #c0392b;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===================================
   New Patient Special Cards
   =================================== */

.special-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: fit-content;
    margin: 0 auto;
    width: auto;
}

.special-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    padding: 48px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 5px solid var(--primary-blue);
    transition: transform 0.3s;
}

.special-card:hover {
    transform: translateY(-4px);
}

.special-card__price {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    color: var(--primary-blue);
}

.special-card__name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    color: var(--dark-navy);
}

.special-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    text-align: left;
}

.special-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--text-dark);
    padding: 10px 16px;
    background: var(--light-blue-bg);
    border-radius: 8px;
}

.special-card__feature::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: 700;
    flex-shrink: 0;
}

/* Doctor profile card (Meet The Team) */
.doctor-card {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    padding: 80px 30px;
}

.doctor-card--alt {
    background: var(--light-blue-bg);
}

.doctor-card--reverse {
    flex-direction: row-reverse;
}

.doctor-card__container {
    max-width: 1680px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

.doctor-card--reverse .doctor-card__container {
    flex-direction: row-reverse;
}

.doctor-card__image {
    width: 460px;
    flex-shrink: 0;
}

.doctor-card__image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

.doctor-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
    padding-top: 16px;
}

.doctor-card__name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.15;
    color: var(--dark-navy);
    letter-spacing: -0.4px;
}

.doctor-card__role {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-blue);
    letter-spacing: 0.3px;
    margin-top: -16px;
}

.doctor-card__bio {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Responsive for inner pages */
@media (max-width: 1100px) {

    .content-block,
    .doctor-card__container {
        flex-direction: column-reverse !important;
        gap: 40px;
    }

    .content-block__images--two,
    .content-block__images--three {
        grid-template-columns: 1fr 1fr;
    }

    .content-block__images img,
    .content-block__images--one img {
        height: auto;
    }

    .content-block__images--one {
        margin-left: 0;
        margin-right: auto;
        width: 100% !important;
        max-width: 576px;
        order: 1;
    }

    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doctor-card__image {
        width: 100%;
    }

    .doctor-card__image img {
        height: 420px;
    }

    .images-row--three {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-banner__title {
        font-size: 36px;
    }

    .page-banner__subtitle {
        font-size: 18px;
    }

    .special-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

@media (max-width: 576px) {
    .inner-section {
        padding: 60px 20px;
    }

    .doctor-card {
        padding: 60px 20px;
    }

    .treatment-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .insurance-grid {
        grid-template-columns: 1fr;
    }

    .content-block__images--two,
    .content-block__images--three {
        grid-template-columns: 1fr;
    }

    .images-row--two,
    .images-row--three {
        grid-template-columns: 1fr;
    }

    .doctor-card__name {
        font-size: 28px;
    }

    .page-banner {
        padding: 60px 20px;
    }

    .page-banner__title {
        font-size: 28px;
    }
}

/* ===================================
   Responsive Styles
   =================================== */

/* Mobile breakpoint: 1100px */
@media (max-width: 1100px) {
    .container {
        padding: 0 40px;
    }

    .header {
        padding: 15px 20px;
    }

    /* Hide desktop nav, show hamburger */
    .header__nav {
        display: none;
    }

    .header__nav-item {
        width: 100%;
    }

    .header__right {
        gap: 20px;
    }

    .header__mobile-toggle {
        display: flex;
    }

    /* Full-height mobile menu overlay */
    .header.active .header__nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        background: var(--white);
        padding: 30px 20px 30px;
        gap: 24px;
        z-index: 999;
        overflow-y: auto;
    }

    .header.active .header__nav .header__nav-item {
        padding-bottom: 16px;
        border-bottom: 1px solid #eee;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .header__dropdown-link {
        padding-left: 0;
        font-size: 16px;
    }

    a.header__dropdown-link:last-child {
        padding-bottom: 0;
    }

    .header.active .header__nav .header__nav-link {
        font-size: 16px;
    }

    /* Close button styling when menu is active */
    .header.active .header__mobile-toggle {
        /* position: fixed; */
        top: 20px;
        right: 20px;
        z-index: 1001;
    }

    .header.active .header__mobile-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .header.active .header__mobile-toggle span:nth-child(2) {
        opacity: 0;
    }

    .header.active .header__mobile-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Mobile dropdown: disable hover, use click (.open class) instead */
    .header.active .header__nav-item.has-dropdown:hover .header__dropdown {
        display: none;
    }

    .header.active .header__nav-item.has-dropdown.open .header__dropdown {
        display: flex;
        flex-direction: column;
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 8px;
        border-top: none;
        padding: 8px 0 8px 16px;
        min-width: unset;
        width: 100%;
        background: transparent;
    }

    .header.active .header__nav-item.has-dropdown .header__nav-arrow {
        transition: transform 0.2s;
    }

    .header.active .header__nav-item.has-dropdown.open .header__nav-arrow {
        transform: rotate(180deg);
    }

    /* Typography scaling */
    .heading-lg {
        font-size: 38px;
    }

    .section-title,
    .heading-md {
        font-size: 32px;
    }

    .first-visit__title {
        font-size: 34px;
    }

    .meet-doctor__title {
        font-size: 34px;
    }

    /* Hero stacking */
    .hero {
        flex-direction: column;
        gap: 40px;
    }

    .hero__content {
        gap: 40px;
    }

    .hero__image img {
        height: 400px;
    }

    /* First Visit stacking */
    .first-visit,
    .first-visit--reverse {
        flex-direction: column;
    }

    .first-visit__image img {
        height: 400px;
    }

    /* Why Choose 2-column */
    .why-choose__cards {
        flex-wrap: wrap;
    }

    .why-choose__card {
        flex: 1 1 calc(50% - 13px);
        min-width: 250px;
    }

    /* Services 2-column */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery */
    .gallery__image {
        height: 400px;
    }

    /* Meet Doctor stacking */
    .meet-doctor_col1 {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .meet-doctor__image {
        max-width: fit-content;
        width: 100%;
        margin-left: 0;
        margin-right: auto;
    }

    .meet-doctor__image img {
        height: 450px;
    }

    .meet-doctor .owl-buttons {
        padding: 0 10px;
    }

    /* Testimonials stacking */
    .testimonials__cards {
        flex-direction: column;
    }

    /* Membership stacking */
    .membership {
        flex-direction: column;
        gap: 40px;
    }

    .membership__image img {
        height: 400px;
    }

    /* Facebook 2-column */
    .facebook__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stats wrap */
    .experience__stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Footer */
    .footer__main {
        flex-direction: column;
        padding-bottom: 40px;
        gap: 40px;
    }

    .footer__brand {
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
    }

    .footer__brand-text {
        max-width: 480px;
    }

    .footer__columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 40px;
    }

    .footer__column--services {
        grid-column: span 1;
    }

    .footer__services-grid {
        gap: 40px;
    }

    .footer__bottom {
        padding: 20px 40px;
    }
}

@media (max-width: 991px) {

    /* Section padding */
    .hero,
    .experience,
    .first-visit,
    .services,
    .gallery,
    .meet-doctor,
    .testimonials,
    .membership,
    .facebook,
    .cta {
        padding: 50px 20px;
    }
}

/* Small mobile: 576px */
@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .hero,
    .experience,
    .first-visit,
    .why-choose,
    .services,
    .gallery,
    .meet-doctor,
    .testimonials,
    .membership,
    .facebook,
    .cta {
        padding: 48px 20px;
    }

    .header.active .header__nav {
        padding: 30px 20px 30px;
    }

    .header__right .header__cta {
        display: none;
    }

    .heading-lg {
        font-size: 30px;
    }

    .section-title,
    .heading-md {
        font-size: 26px;
    }

    .first-visit__title,
    .meet-doctor__title {
        font-size: 28px;
    }

    .hero__image img {
        height: 280px;
    }

    .first-visit__image img {
        height: 280px;
    }

    .why-choose__card {
        flex: 1 1 100%;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .gallery__image {
        height: 240px;
    }

    .meet-doctor__image img {
        height: auto;
    }

    .facebook__grid img {
        height: 180px;
    }

    .btn {
        padding: 12px 32px;
        font-size: 14px;
    }

    .experience__stat-number {
        font-size: 32px;
    }

    /* .meet-doctor .owl-buttons {
        display: none;
    } */

    .meet-doctor_col1 {
        margin: 0 10px;
    }

    .testimonials__nav {
        display: none;
    }

    .footer__main {
        padding-bottom: 20px;
        gap: 32px;
    }

    .footer__columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__column--services {
        grid-column: span 1;
    }

    .footer__services-grid {
        flex-direction: column;
        gap: 10px;
    }

    .footer__bottom {
        flex-direction: column;
        padding: 20px;
        gap: 8px;
    }

    .footer__bottom-divider {
        display: none;
    }
}


@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 575px) {}

@media only screen and (min-width: 576px) and (max-width: 767px) {}

@media only screen and (max-width: 767px) {}

@media only screen and (min-width: 576px) and (max-width: 991px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (min-width: 992px) and (max-width: 1100px) {
    .footer__columns {
        gap: 20px;
        display: flex !important;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1140px) {}

@media only screen and (min-width: 1141px) and (max-width: 1280px) {}

@media only screen and (min-width: 1101px) and (max-width: 1440px) {
    .footer__main {
        flex-wrap: wrap;
    }

    .footer__brand {
        width: 100%;
        max-width: 450px;
        flex-shrink: unset;
    }

    .footer__columns {
        flex: unset;
        width: 100%;
    }
}

@media only screen and (min-width: 1441px) and (max-width: 1680px) {}

/* ===================================
   Treatment Tabs (Left Nav + Right Panel)
   =================================== */
.treatment-tabs {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.treatment-tabs__nav {
    width: 300px;
    flex-shrink: 0;
}

.treatment-tabs__nav-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 16px 0;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: none;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    color: #aaa;
    cursor: pointer;
    transition: color 0.25s;
    line-height: 1.4;
}

.treatment-tabs__nav-btn:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.treatment-tabs__nav-btn::after {
    content: '→';
    font-size: 18px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
    margin-left: 8px;
}

.treatment-tabs__nav-btn:hover {
    color: var(--primary-blue);
}

.treatment-tabs__nav-btn.active {
    color: var(--primary-blue);
    font-weight: 700;
}

.treatment-tabs__nav-btn.active::after {
    opacity: 1;
    transform: translateX(0);
}

.treatment-tabs__content {
    flex: 1;
    min-width: 0;
}

.treatment-tab-panel {
    display: none;
}

.treatment-tab-panel.active {
    display: block;
    animation: tabFadeIn 0.3s ease;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.treatment-tab-panel h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.treatment-tab-panel p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.treatment-tab-panel img {
    width: auto;
    border-radius: 12px;
    margin-top: 24px;
    object-fit: cover;
    max-height: 340px;
    display: none;
}

.custom_tab_service_option {
    max-width: 1100px;
    width: 100%;
    margin: auto;
}

/* ===================================
   Numbered Option List (Timeline style)
   =================================== */
.option-list {
    display: flex;
    flex-direction: column;
}

.option-list__item {
    display: flex;
    gap: 20px;
    padding-bottom: 40px;
    position: relative;
}

.option-list__item:last-child {
    padding-bottom: 0;
}

.option-list__num {
    font-size: 28px;
    font-weight: 800;
    color: #d0d8e4;
    min-width: 44px;
    line-height: 1;
    padding-top: 2px;
    letter-spacing: -1px;
}

.option-list__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 20px;
}

.option-list__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 4px;
}

.option-list__line {
    flex: 1;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            var(--primary-blue) 0px,
            var(--primary-blue) 5px,
            transparent 5px,
            transparent 10px);
    margin-top: 6px;
    min-height: 32px;
}

.option-list__item:last-child .option-list__line {
    display: none;
}

.option-list__body {
    flex: 1;
    padding-top: 0;
}

.option-list__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.option-list__desc {
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 15px;
}

.option-list__label {
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.option-list__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-list__bullets li {
    padding: 3px 0 3px 18px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.option-list__bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 16px;
}

/* Responsive: Treatment Tabs */
@media (max-width: 1100px) {
    .treatment-tabs {
        flex-direction: column;
        gap: 0;
    }

    /* Hide the desktop left-nav entirely */
    .treatment-tabs__nav {
        display: none;
    }

    /* Dropdown trigger */
    .treatment-tabs__dropdown {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 18px;
        background: var(--primary-blue);
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        border: none;
        border-radius: 8px 8px 0 0;
        cursor: pointer;
        user-select: none;
        margin-bottom: 15px;
    }

    .treatment-tabs__dropdown-arrow {
        display: inline-block;
        transition: transform 0.25s ease;
        font-style: normal;
        font-size: 18px;
        line-height: 1;
    }

    .treatment-tabs__dropdown.open .treatment-tabs__dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Dropdown list */
    .treatment-tabs__dropdown-list {
        display: none;
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-top: none;
        border-radius: 0 0 8px 8px;
        overflow: hidden;
        margin-bottom: 24px;
    }

    .treatment-tabs__dropdown-list.open {
        display: flex;
    }

    .treatment-tabs__dropdown-list button {
        width: 100%;
        padding: 13px 18px;
        background: #fff;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        text-align: left;
        font-size: 14px;
        font-weight: 500;
        color: #444;
        cursor: pointer;
    }

    .treatment-tabs__dropdown-list button:hover {
        background: #f5f7fa;
        color: var(--primary-blue);
    }

    .treatment-tabs__dropdown-list button.active {
        background: var(--primary-blue);
        color: #fff;
        font-weight: 700;
    }

    .treatment-tabs__content {
        margin-top: 0;
    }

    .option-list__num {
        font-size: 22px;
        min-width: 36px;
    }

    .option-list__title {
        font-size: 17px;
    }
}

@media only screen and (min-width: 1101px) {

    .treatment-tabs button.treatment-tabs__dropdown,
    .treatment-tabs .treatment-tabs__dropdown-list {
        display: none;
    }
}

/* ===================================
   Call Now Dropdown
   =================================== */

.call-dropdown {
    position: relative;
    display: inline-flex;
}

.call-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.call-dropdown__arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.call-dropdown.open .call-dropdown__arrow {
    transform: rotate(180deg);
}

.call-dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
}

.call-dropdown.open .call-dropdown__menu {
    display: block;
}

.call-dropdown__item {
    display: block;
    padding: 14px 20px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.call-dropdown__item:hover {
    background: var(--light-blue-bg);
    color: var(--primary-blue);
}

.call-dropdown__item+.call-dropdown__item {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ===================================
   Specials Page – Implant Cards
   =================================== */

.special-cards--three {
    grid-template-columns: repeat(3, 1fr);
}

.special-card__note {
    font-family: var(--font-family);
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.special-card__financing-note {
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 32px auto 0;
}

/* ===================================
   Location Pages – Services List
   =================================== */

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.services-list__item {
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    padding: 24px 28px;
    border-left: 4px solid var(--primary-blue);
}

.services-list__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 17px;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.services-list__desc {
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===================================
   Location & Contact Cards
   =================================== */

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.location-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    padding: 40px;
}

.location-card__title {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-blue);
}

.location-card__info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.location-card__info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.location-card__label {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-blue);
    min-width: 56px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 2px;
}

.location-card__value {
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.location-card__value a {
    color: var(--primary-blue);
    text-decoration: none;
}

.location-card__value a:hover {
    text-decoration: underline;
}

.location-card__hours-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.location-hours {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.location-hours__row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-dark);
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.location-hours__row:last-child {
    border-bottom: none;
}

.location-hours__day {
    font-weight: 600;
    color: var(--dark-navy);
}

/* ===================================
   Contact Page – Form
   =================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form__title {
    font-family: var(--font-family);
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form__label {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-navy);
}

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-family);
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.contact-form__textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form__note {
    font-family: var(--font-family);
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .special-cards--three {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

/*--------------------------*/

.insurance_logo_container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.insurance_logo_module {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: -20px;
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
}

.insurance_logo_module a {
    width: 25%;
    height: 100%;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (max-width: 575px) {
    .insurance_logo_module a {
        width: 50% !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .insurance_logo_module a {
        width: 33.33% !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .insurance_logo_module a {
        width: 33.33% !important;
    }
}


@media only screen and (min-width: 1101px) and (max-width: 1200px) {
    .special-cards--three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 1101px) {
    .special-card__name {
        height: 70px;
    }
}

/*----------------*/

.call_number_dropdown {
    position: relative;
}

.call_number_dropdown_item button#call_number_dropdown_item_Btn {
    gap: 5px;
}

.call_number_dropdown_item_menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: auto;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
}

.call_number_dropdown_item_menu.active {
    display: block;
}

.call_number_dropdown_item_menu {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.call_number_dropdown_item_menu.active {
    opacity: 1;
    visibility: visible;
}

.call_number_dropdown_item_menu {
    display: none;
}

.call_number_dropdown_item.active .call_number_dropdown_item_menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.call_number_dropdown_item_num {
    display: block;
    padding: 14px 20px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.call_number_dropdown_item button svg {
    transition: 1s;
}

.call_number_dropdown_item.active button svg {
    transform: rotate(-180deg);
}

.call_number_dropdown_item_num:hover {
    opacity: 1;
    background: var(--light-blue-bg);
    color: var(--primary-blue);
}

@media only screen and (max-width: 575px) {
    .call_number_dropdown {
        width: 100% !important;
    }
    .call_number_dropdown_item.active .call_number_dropdown_item_menu {
        width: 100%;
        margin: auto;
        max-width: fit-content;
        right: 0;
        left: 0;
    }
}
/* ===================================
   Blog Page Styles
   =================================== */

/* Blog Section */
.blog-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.blog-section .inner-section__container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15);
}

/* Blog Card Image */
.blog-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.04);
}

/* Blog Card Body */
.blog-card__body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.45;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
    margin-top: auto;
}

.blog-card__link:hover {
    color: var(--dark-navy);
    gap: 10px;
}

.blog-card__link svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-card__link svg {
    transform: translateX(3px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-family);
    background: var(--white);
    color: var(--text-dark);
    border: 1.5px solid #d5e3f5;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-pagination__btn:hover {
    background: var(--light-blue-bg);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.blog-pagination__btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.blog-pagination__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    pointer-events: none;
}

/* Blog page responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-section {
        padding: 40px 0 60px;
    }

    .blog-card__body {
        padding: 20px 20px 24px;
    }
}


/* ============================================================
   LEGAL / DISCLAIMER PAGES
   ============================================================ */
.legal-section {
    padding: 80px 24px 100px;
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 52px 56px;
    box-shadow: 0 8px 36px rgba(3, 187, 199, .08);
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark-teal);
    margin: 36px 0 12px;
    border-bottom: 2px solid rgba(3, 187, 199, .15);
    padding-bottom: 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #444;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: .97rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin: 0 0 20px;
}

.legal-content ul li {
    color: #444;
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: .95rem;
}

.legal-content strong {
    color: var(--dark);
}

.legal-updated {
    display: inline-block;
    background: rgba(3, 187, 199, .08);
    color: var(--teal-dark);
    font-size: .82rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}

section.legal-section a {
    color: #60b8ff;
}

section.legal-section a:hover {
    color: #153869;
}

h2.revealed {
    margin-bottom: 20px;
    color: #153869;
}

.hero-buttons span {
    margin-left: 6px;
}


@media (max-width: 1820px) {
    a.nav-phone {
        display: none;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1300px) {
    .nav-right a {
        display: block !important;
    }

}


@media (max-width: 700px) {
    .legal-content {
        padding: 28px 22px;
    }

    .hero-buttons span {
        display: none;
    }
}


@media only screen and (min-width: 1025px) and (max-width: 1244px) {
    .hero {

        height: 577px;

    }

}

/*-------------------------*/

.dr_img {
    object-position: 50% 70% !important;
}

/* ===================================
   Site-wide Animations
   =================================== */

/* --- Keyframes --- */
@keyframes boomFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes boomSlideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* --- Hero load animations --- */
.hero__badge {
    animation: boomFadeInUp 0.5s ease 0.1s both;
}
.hero__text .heading-lg {
    animation: boomFadeInUp 0.6s ease 0.25s both;
}
.hero__text .body-text {
    animation: boomFadeInUp 0.6s ease 0.4s both;
}
.hero__text .btn-group {
    animation: boomFadeInUp 0.6s ease 0.55s both;
}
.hero__image {
    animation: boomSlideInRight 0.8s ease 0.3s both;
}

/* --- Scroll reveal base --- */
.anim-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Card hover lifts (where not already defined) --- */
.services__card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.why-choose__card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-choose__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.testimonials__card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonials__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* --- Header scroll shadow --- */
.header {
    transition: box-shadow 0.3s ease;
}
.header--scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}


/*--------------------*/

@media only screen and (min-width: 992px) and (max-width: 1550px) {
    .hero {
        padding: 40px 30px;
    }
}

@media only screen and (min-width: 1101px) and (max-width: 1550px) {
    .hero__image img {
        height: 500px;
    }
}














