html {
    scroll-behavior: smooth;
}

#formevent {
    scroll-margin-top: 120px;
    /* adjust based on header height */
}

.mobile-only-title {
    display: none !important;
}

.top-bar {
    background-color: #3B82F6;
    /* Dark grey from the image */
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 170px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Optional shadow for depth */
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* Recreating the logo from the image using CSS/HTML since I don't have the image file */
.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666666;
}

.logo-icon {
    margin-bottom: 8px;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #666666;
    stroke-width: 1.5;
}

.logo-text-main {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 6px;
}

.logo-text-sub {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text-sub::before,
.logo-text-sub::after {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background-color: #cccccc;
}

.button-group {
    display: flex;
    gap: 15px;
}

.header-btn {
    background-color: #99bec3;
    /* Teal/Blue color from image */
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.header-btn:hover {
    background-color: #87acb1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .top-bar {
        font-size: 12px;
    }
}

label.wpforms-field-label.wpforms-label-hide {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: #2b2b2b;
    /* Fallback with dark overlay */
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://www.surbitondental.co.uk/wp-content/uploads/2026/06/home-pageads-scaled.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
    height: auto !important;
}

/* Floating Action Buttons */
.hero-floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.hero-fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #93b8bd;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-fab:hover {
    background-color: #7aa2a7;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.hero-fab svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
    vertical-align: middle;
}

.package-content p {
    line-height: 26px;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1160px;
    gap: 40px;
}

.hero-left {
    max-width: 600px;
    text-align: left;
}

.trust-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 100;
    margin-bottom: 30px;
    color: #ffffff;
}

.stars {
    color: #fca311;
    font-size: 15px;
}

.trust-divider {
    width: 1px;
    height: 14px;
    background-color: #aaaaaa;
}

.hero-date-sub {
    font-size: 31px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

svg {
    vertical-align: sub;
}

.hero-title {
    font-size: 55px;
    line-height: 1.4;
    font-weight: 400;
    margin: 0 0 45px 0;
    font-family: 'Playfair Display', serif !important;
}

.hero-title i {
    font-style: italic;
    font-family: 'Playfair Display', serif !important;
}

.package-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 25px;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
}

.package-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 600;
}

.check-icon {
    color: #ffffff;
    background-color: #00c853;
    /* Green check circle */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.discount-badge {
    background-color: #91B9C0;
    /* Gold color */
    color: #ffffff;
    padding: 16px 35px;
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
    border-radius: 6px;
    margin-bottom: 25px;
}

.finance-text {
    font-size: 26px;
    font-weight: 400;
    font-family: Montserrat;
}

/* Hero Right Form */
.hero-right {
    background-color: #ffffff;
    border-radius: 20px;
    width: 515px;
    padding: 55px 45px 35px 45px;
    color: #000000;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.form-top-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3B82F6;
    /* Red color */
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    font-family: Montserrat;
}

.form-title {
    text-align: center;
    font-size: 31px;
    font-weight: 600;
    margin: 0 0 17px 0;
    line-height: 1.2;
    font-family: 'NeutraTextBookAlt';
}

.form-title span {
    font-weight: 400;
}

.form-subtitle {
    text-align: center;
    font-size: 15px;
    color: #000000;
    margin-bottom: 35px;
    line-height: 1.5;
    font-weight: 600;
    font-family: Montserrat;
    padding-top: 12px;
}

button#wpforms-submit-9211 {
    background: #91B9C0;
    color: #fff;
    width: 100%;
}

.buttongroup {
    padding-top: 5em;
    display: flex;
    gap: 24px;
    align-items: center;
}

.buttongroup a:nth-child(1) {
    background: #91B9C0;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
}

.buttongroup a:nth-child(2) {
    color: #fff;
    padding: 12px 30px;
    border: 1px solid #91B9C0;
    text-decoration: none;
}

@media (max-width: 767px) {
    .buttongroup {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: #333333;
}

.hero-form input::placeholder {
    color: #999999;
}

.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #cccccc;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 0 15px;
    background-color: #ffffff;
}

.phone-input-wrapper input {
    border: none;
    margin-bottom: 0;
    padding: 16px 10px;
    outline: none;
    flex-grow: 1;
}

.flag-placeholder {
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

input#wpforms-9081-field_3 {
    padding-left: 50px !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
    padding: 10px 0;
    clear: both;
    padding-bottom: 0 !important;
}

form#wpforms-form-9081 div.wpforms-container-full .wpforms-form input[type=date],
div.wpforms-container-full .wpforms-form input[type=datetime],
div.wpforms-container-full .wpforms-form input[type=datetime-local],
div.wpforms-container-full .wpforms-form input[type=email],
div.wpforms-container-full .wpforms-form input[type=month],
div.wpforms-container-full .wpforms-form input[type=number],
div.wpforms-container-full .wpforms-form input[type=password],
div.wpforms-container-full .wpforms-form input[type=range],
div.wpforms-container-full .wpforms-form input[type=search],
div.wpforms-container-full .wpforms-form input[type=tel],
div.wpforms-container-full .wpforms-form input[type=text],
div.wpforms-container-full .wpforms-form input[type=time],
div.wpforms-container-full .wpforms-form input[type=url],
div.wpforms-container-full .wpforms-form input[type=week],
div.wpforms-container-full .wpforms-form select,
div.wpforms-container-full .wpforms-form textarea {
    width: 100%;
    padding: 11px !important;
    margin-bottom: 1px !important;
    border: 1px solid #605f5f !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    box-sizing: border-box !important;
    height: 35px !important;
    color: #333333 !important;
    font-family: Montserrat !important;
}

button#wpforms-submit-9081 {
    background-color: #99bec3;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 0px !important;
    transition: background-color 0.3s;
}

.wpforms-submit-container {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.submit-btn {
    background-color: #99bec3;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 18px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 30px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #87acb1;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eeeeee;
    padding-top: 25px;
}

.limited-text {
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    font-family: Montserrat;
    background: #3B82F6;
    position: absolute;
    bottom: -22px;
    padding: 9px 20px 12px 20px;
    width: 95%;
    left: 0;
    text-align: center;
    border-radius: 20px;
    right: 0;
    margin: 0 auto;
}

.spots-badge {
    background-color: #3b82f6;
    /* blue color from screenshot */
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

/* OR Divider Style */
.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #8c8c8c;
    font-size: 13px;
    font-weight: 500;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eeeeee;
}

.or-divider:not(:empty)::before {
    margin-right: 15px;
}

.or-divider:not(:empty)::after {
    margin-left: 15px;
}

/* Book Online Button Style */
.book-online-btn {
    display: block;
    text-align: center;
    border: 1px solid #99bec3;
    color: #99bec3;
    background-color: transparent;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: Montserrat;
}

.book-online-btn:hover {
    background-color: #99bec3;
    color: #ffffff;
}

/* Implant Intro Section Style (Content & Image - Image Left Side) */
.implant-intro-section {
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    overflow: hidden;
}

.implant-intro-container {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.implant-intro-image {
    width: 50%;
    flex: 0 0 50%;
    min-height: 520px;
    display: flex;
    overflow: hidden;
}

.implant-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.implant-intro-content {
    width: 50%;
    flex: 0 0 50%;
    padding: 80px max(30px, calc((100vw - 1200px) / 2 + 20px)) 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    box-sizing: border-box;
}

.implant-intro-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 22px 0;
}

.implant-intro-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #4a4a4a;
}

.implant-intro-description p {
    font-size: 14px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.implant-intro-description strong,
.implant-intro-description b,
.implant-intro-content strong,
.implant-intro-content b {
    font-weight: 700 !important;
    color: #111111 !important;
}

.implant-intro-description ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 28px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.implant-intro-description ul li {
    position: relative;
    padding-left: 28px;
    font-size: 13.5px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0;
    font-weight: 400;
}

.implant-intro-description ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238bb3b9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.implant-intro-description ul li strong,
.implant-intro-description ul li b {
    font-weight: 700 !important;
    color: #111111 !important;
}

.implant-intro-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.implant-btn,
.implant-intro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 0.2px;
    line-height: 1.4;
    transition: all 0.25s ease;
    cursor: pointer;
}

.implant-btn-primary,
.implant-intro-btn {
    background-color: #8bb3b9;
    color: #ffffff !important;
    border: 1px solid #8bb3b9;
}

.implant-btn-primary:hover,
.implant-intro-btn:hover {
    background-color: #75a1a7;
    border-color: #75a1a7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 179, 185, 0.35);
}

.implant-btn-secondary {
    background-color: #ffffff;
    color: #8bb3b9 !important;
    border: 1px solid #8bb3b9;
}

.implant-btn-secondary:hover {
    background-color: #f3f8f9;
    border-color: #75a1a7;
    color: #75a1a7 !important;
    transform: translateY(-2px);
}

/* Hide mobile title on desktop */
.mobile-only-title {
    display: none;
}

.desktop-only-title {
    display: block;
}

/* Tablet / Mobile */
@media (max-width: 900px) {
    .implant-intro-container {
        flex-direction: column;
        gap: 0;
    }

    .implant-intro-image,
    .implant-intro-content {
        width: 100%;
        flex: 0 0 100%;
    }

    .implant-intro-image {
        min-height: 320px;
        height: 340px;
    }

    .implant-intro-image img {
        min-height: 320px;
        height: 340px;
        object-fit: cover;
    }

    .implant-intro-content {
        padding: 40px 20px 50px;
    }

    .mobile-only-title {
        display: block !important;
        padding: 30px 20px 10px;
        margin: 0;
        font-size: 22px;
    }

    .desktop-only-title {
        display: none !important;
    }

    .implant-intro-description p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .implant-intro-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .implant-btn {
        width: 100%;
        text-align: center;
    }
}

/*team*/
.clinical-team-section {
    background: #fff;
    padding: 55px 0 60px;
    overflow: hidden;
}

/* Header */
.clinical-team-header {
    text-align: center;
    margin-bottom: 28px;
}

.clinical-team-header h2 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #111;
}

.clinical-team-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #333;
}


/* Carousel */
.clinical-team-carousel {
    width: 100%;
    padding-left: 12.5%;
}

.clinical-team-carousel .owl-stage {
    display: flex;
}

.clinical-team-carousel .owl-item {
    display: flex;
}

.clinical-team-carousel .owl-item .team-card {
    width: 100%;
}


/* Card */
.team-card {
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    margin: 0 12px 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}


/* Image */
.team-image {
    width: 100%;
    height: 248px;
    overflow: hidden;
    background: #ddd;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(100%);
}


/* Content */
.team-content {
    padding: 13px 15px 22px;
    min-height: 145px;
}

.team-content h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 500;
    color: #222;
    text-transform: uppercase;
}

.team-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    color: #222;
}


/* Hide Owl controls */
.clinical-team-carousel .owl-nav,
.clinical-team-carousel .owl-dots {
    display: none;
}


/* Tablet */
@media (max-width: 1199px) {

    .clinical-team-carousel {
        padding-left: 6%;
    }

}


/* Mobile */
@media (max-width: 767px) {

    .clinical-team-section {
        padding: 40px 0;
    }

    .clinical-team-header {
        padding: 0 20px;
        margin-bottom: 25px;
    }

    .clinical-team-header h2 {
        font-size: 21px;
    }

    .clinical-team-header p {
        font-size: 11px;
    }

    .clinical-team-header p br {
        display: none;
    }

    .clinical-team-carousel {
        width: 90%;
        padding-left: 5%;
    }

    .team-image {
        height: 260px;
    }

    .team-content {
        min-height: 150px;
    }

}

/*treatment*/
.treatments-section {
    background: #f2f2f2;
    padding: 45px 0 28px;
    overflow: hidden;
}

.treatments-header {
    text-align: center;
    margin-bottom: 25px;
}

.treatments-header h2 {
    margin: 0 0 10px;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: #111;
}

.treatments-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}


/* Top treatment list */

.treatment-categories {
    max-width: 1190px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 0.9fr;
    gap: 30px;
}

.treatment-category h4 {
    font-size: 16px;
    margin: 0 0 20px;
    font-weight: 600;
    color: #111;
}

.treatment-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.treatment-category li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 9px;
    font-size: 16px;
    line-height: 1.45;
    color: #333;
}

.treatment-category li:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 6px;
    width: 14px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10' fill='none'%3E%3Cpath d='M1 5L5 9L13 1' stroke='%2391B9C0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}


/* Carousel */

.treatments-carousel {
    width: 100%;
    padding-left: 11.5%;
}

.treatments-carousel .owl-stage {
    display: flex;
}

.treatments-carousel .owl-item {
    display: flex;
}

.treatments-carousel .owl-item>.treatment-card {
    width: 100%;
}


/* Card */

.treatment-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 10px 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.treatment-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.treatment-content {
    padding: 17px 15px 20px;
    min-height: 155px;
}

.treatment-content h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 500;
    color: #222;
}

.treatment-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-weight: 400;
}


/* Hide navigation */

.treatments-carousel .owl-nav,
.treatments-carousel .owl-dots {
    display: none;
}


/* Tablet */

@media (max-width: 991px) {

    .treatment-categories {
        padding: 0 25px;
        grid-template-columns: 1fr 1fr;
    }

    .treatments-carousel {
        padding-left: 5%;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .treatments-section {
        padding: 35px 0 25px;
    }

    .treatments-header {
        padding: 0 20px;
    }

    .treatments-header h2 {
        font-size: 20px;
    }

    .treatments-header h2 br {
        display: none;
    }

    .treatments-header p br {
        display: none;
    }

    .treatment-categories {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 25px;
    }

    .treatments-carousel {
        width: 92%;
        padding-left: 4%;
    }

    .treatment-image {
        height: 220px;
    }

    .treatment-content {
        min-height: 160px;
    }

}

.treatments-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.treatments-carousel .owl-dot {
    width: 8px;
    height: 8px;
    padding: 0 !important;
    margin: 0 !important;
    border: 0;
    border-radius: 50%;
    background: #fff !important;
}

.treatments-carousel .owl-dot.active {
    background: #91B9C0 !important;
}

.top-info-bar {
    width: 100%;
    background-color: #242424;
    color: #ffffff;
    padding: 12px 20px;
    position: relative;
    z-index: 10;
    font-family: 'Inter', sans-serif;
}

.top-info-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.top-info-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: #ffffff;
}

.top-info-item.google-rating {
    gap: 12px;
}

.top-info-item .google-icon {
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.top-info-item .google-icon img,
.top-info-item .google-icon svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    object-fit: contain;
}

.top-info-item .stars {
    color: #fbbc04 !important;
    font-size: 14px;
    letter-spacing: 2.5px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.top-info-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .top-info-bar {
        padding: 10px 12px;
    }

    .top-info-inner {
        flex-wrap: wrap;
        gap: 8px 14px;
        font-size: 11.5px;
        justify-content: center;
    }

    .top-info-divider {
        display: none;
    }
}

/* Implant Tech Section Style */
.implant-tech-section {
    background-color: #ededed;
    /* Light gray background */
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.implant-tech-container {
    max-width: 1160px;
    margin: 0 auto;
}

.implant-tech-main-title {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.implant-tech-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-weight: 400;
}

.implant-tech-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.implant-tech-column {
    flex: 1;
    text-align: center;
}

.implant-tech-col-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222222;
    margin: 0 0 20px 0;
}

.implant-tech-col-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #000000;
    font-weight: 300;
    margin: 0;
}

.implant-tech-btn-container {
    display: flex;
    justify-content: center;
}

.implant-tech-btn {
    background-color: #99bec3;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
}

.implant-tech-btn:hover {
    background-color: #87acb1;
}

@media (max-width: 768px) {
    .implant-tech-grid {
        flex-direction: column;
        gap: 40px;
    }

    .implant-tech-main-title {
        font-size: 24px;
    }

    .implant-tech-subtitle {
        margin-bottom: 40px;
    }
}

/* Finance & Membership Plans Section */
.finance-membership-section {
    background-color: #f7f9fa;
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
}

.finance-membership-container {
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
}

.finance-membership-header {
    text-align: center;
    margin-bottom: 50px;
}

.finance-membership-title {
    font-size: 26px;
    font-weight: 500;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.finance-membership-subtitle {
    font-size: 14.5px;
    color: #555555;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

.finance-membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.finance-membership-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.finance-badge {
    display: inline-block;
    background-color: #e9f4f5;
    color: #5a9ca3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.finance-card-title {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.finance-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

@media (max-width: 900px) {
    .finance-membership-section {
        padding: 60px 20px;
    }

    .finance-membership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .finance-membership-card {
        padding: 30px 24px;
    }

    .finance-membership-title {
        font-size: 22px;
    }

    .finance-membership-subtitle {
        font-size: 13.5px;
    }
}

/* Implant Benefits Section Style */
.implant-benefits-section {
    background-color: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
}

.implant-benefits-container {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.implant-benefits-content {
    flex: 1.1;
    text-align: left;
}

.implant-benefits-title {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    color: #111111;
    margin: 0 0 25px 0;
}

.implant-benefits-intro {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.implant-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.implant-benefits-list li {
    font-size: 13px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 18px;
    position: relative;
    padding-left: 15px;
    font-weight: 300;
}

.implant-benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #000000;
    font-size: 14px;
}

.implant-benefits-list li strong {
    font-weight: 600;
    color: #222222;
}

.implant-benefits-btn {
    background-color: #99bec3;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
}

.implant-benefits-btn:hover {
    background-color: #87acb1;
}

.implant-benefits-image {
    flex: 1;
}

.implant-benefits-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .implant-benefits-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .implant-benefits-container .mobile-only-title {
        display: block !important;
        order: 1;
        margin-bottom: 10px;
    }

    .implant-benefits-image {
        order: 2;
        width: 100%;
        margin-bottom: 10px;
    }

    .implant-benefits-content {
        order: 3;
        width: 100%;
    }

    .implant-benefits-content .desktop-only-title {
        display: none !important;
    }

    .implant-benefits-title {
        font-size: 24px;
    }
}

/* Full Width Video Section Style */
.full-width-video-section {
    width: 100%;
    background-color: #000000;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    cursor: pointer;
}

.video-logo-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    letter-spacing: 6px;
    user-select: none;
}

.logo-digimax {
    font-weight: 700;
    text-transform: uppercase;
}

.logo-divider {
    margin: 0 25px;
    font-weight: 100;
    color: #2a2a2a;
}

.logo-dental {
    font-weight: 300;
    text-transform: uppercase;
}

.logo-dental sup {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    vertical-align: super;
}

.play-button-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    z-index: 10;
}

.play-button-link:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 100px;
    height: 100px;
    display: block;
}

@media (max-width: 768px) {
    .video-container {
        height: 320px;
    }

    .video-logo-bg {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .logo-divider {
        margin: 0 15px;
    }

    .play-icon {
        width: 70px;
        height: 70px;
    }

    .logo-dental sup {
        font-size: 10px;
    }
}

/* Implant Journey Timeline Section Style */
.implant-journey-timeline-section {
    background-color: #ededed;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-main-title {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.timeline-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    max-width: 600px;
    margin: 0 auto 60px auto;
    font-weight: 400;
}

.timeline-wrapper {
    position: relative;
    text-align: left;
    margin-top: 40px;
    padding-left: 100px;
}

/* Timeline vertical connector line */
.timeline-line {
    position: absolute;
    left: 35px;
    top: 35px;
    bottom: 35px;
    width: 1px;
    background-color: #cccccc;
    z-index: 1;
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Circular Step Badge */
.timeline-circle {
    position: absolute;
    left: -100px;
    width: 70px;
    height: 70px;
    background-color: #555555;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    z-index: 2;
}

.timeline-content {
    padding-top: 15px;
}

.timeline-step-title {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222222;
    margin: 0 0 15px 0;
}

.timeline-step-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #555555;
    font-weight: 300;
    margin: 0;
    max-width: 700px;
}

@media (max-width: 768px) {
    .timeline-wrapper {
        padding-left: 80px;
    }

    .timeline-circle {
        left: -80px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .timeline-line {
        left: 25px;
        top: 25px;
        bottom: 25px;
    }

    .timeline-content {
        padding-top: 10px;
    }

    .timeline-main-title {
        font-size: 24px;
    }
}

/* Implant Designs Section Style */
.implant-designs-section {
    background-color: #ededed;
    /* Light gray background matching timeline */
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.implant-designs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.implant-designs-main-title {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.implant-designs-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-weight: 400;
}

.implant-designs-grid {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 50px;
}

.implant-designs-column {
    flex: 1;
    text-align: center;
}

.implant-designs-col-title {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222222;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.implant-designs-col-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #555555;
    font-weight: 300;
    margin: 0;
}

.implant-designs-btn-container {
    display: flex;
    justify-content: center;
}

.implant-designs-btn {
    background-color: #99bec3;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
}

.implant-designs-btn:hover {
    background-color: #87acb1;
}

@media (max-width: 900px) {
    .implant-designs-grid {
        flex-direction: column;
        gap: 40px;
    }

    .implant-designs-main-title {
        font-size: 24px;
    }

    .implant-designs-subtitle {
        margin-bottom: 40px;
    }
}

@media (max-width: 1100px) {
    .hero-section {
        padding: 50px 30px;
        height: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-left {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trust-bar {
        justify-content: center;
        flex-wrap: wrap;
    }

    .package-list {
        align-items: center;
    }

    .package-list li {
        justify-content: left;
    }

    .hero-right {
        width: 100%;
        max-width: 480px;
    }

    .form-footer {
        display: block;
    }

    .limited-text {
        padding-bottom: 1em;
    }
}

/* Features Bar Section */
.features-bar {
    background-color: #808080;
    color: #fff;
    padding: 13px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 40px;
}

.feature-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: left;
    width: 191px;
}

.feature-divider {
    width: 1px;
    height: 55px;
    background-color: #fff;
    flex-shrink: 0;
}

.di3 {
    display: none;
}

section.review-section {
    background-color: #ffffff;
    padding: 100px 20px;

    color: #333333;
}

h2.google-reviwes-tret {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 30px 0;
    color: #222222;
    text-align: left;
}


.review-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.review-container p {
    padding-bottom: 2em;
}

@media (max-width: 900px) {
    .features-bar {
        flex-wrap: wrap;
        gap: 40px 0;
        padding: 40px 20px;
    }

    .feature-item {
        flex: 1 1 40%;
        max-width: none;
    }

    .feature-divider {
        display: none;
    }
}

@media (max-width: 600px) {
    .feature-item {
        flex: 1 1 100%;
    }
}

/* Journey Section */
.journey-section {
    padding: 80px 20px;
    background-color: #ffffff;
    max-width: 1160px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.journey-header {
    text-align: left;
    margin-bottom: 45px;
}

.journey-title {
    font-size: 26px;
    font-weight: 400;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    text-align: center;
}

.journey-subtitle {
    font-size: 14px;
    color: #666666;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.journey-card {
    background-color: #9abec4;
    /* The teal color */
    padding: 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.journey-card.span-2 {
    grid-column: span 2;
    /* 3 cards in row 1 */
}

.journey-card.span-3 {
    grid-column: span 3;
    /* 2 wider cards in row 2 */
}

.card-icon {
    margin-bottom: 30px;
    height: 35px;
    display: flex;
    align-items: center;
}

.card-icon svg {
    height: 100%;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-title {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 25px 0;
}

.card-desc {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
    /* Pushes footer to bottom */
    font-weight: 300;
    color: #fff;
}

.card-footer {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
}

@media (max-width: 900px) {
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-card.span-2,
    .journey-card.span-3 {
        grid-column: span 1;
    }

    .journey-title {
        font-size: 22px;
    }
}

/* Full Width Image Section */
.full-image-section {
    width: 100%;
    height: 600px;
    /* Adjust height based on preference */
    background-color: #e5e5e5;
    /* Placeholder image representing a dentist with a patient. Replace URL with the actual image. */
    background-image: url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .full-image-section {
        height: 400px;
    }
}

/* Steps Section */
.steps-section {
    background-color: #f0f0f0;
    /* Light grey */
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
    color: #333333;
}

.steps-container {
    max-width: 1160px;
    margin: 0 auto;
}

.steps-header {
    margin-bottom: 70px;
}

.steps-title {
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    color: #222222;
}

.steps-subtitle {
    font-size: 17px;
    color: #555555;
    margin: 0;
    font-weight: 400;
}

.steps-process {
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* Connecting line */
.steps-process::before {
    content: '';
    position: absolute;
    top: 35px;
    /* Half of the 70px circle height to be centered */
    left: 7.66%;
    /* Center of first flex item (which takes 33.33%) */
    right: 29.66%;
    /* Center of last flex item */
    height: 1px;
    background-color: #cccccc;
    z-index: 1;
}

.step-item {
    flex: 1;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    /* Ensures circles cover the line */
}

.step-circle {
    width: 70px;
    height: 70px;
    background-color: #555555;
    /* Dark grey */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 35px;
}

.step-title {
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    color: #333333;
}

.step-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #444444;
    margin: 0 0 25px 0;
    font-weight: 400;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #9abec4;
    /* Match existing teal */
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.step-badge svg {
    width: 12px;
    height: 12px;
}

@media (max-width: 768px) {
    .steps-process {
        flex-direction: column;
        gap: 50px;
    }

    .steps-process::before {
        display: none;
        /* Hide horizontal line on mobile */
    }

    .step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
    }
}

/* Info Section */
.info-section {
    background-color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid #CACACA;
    ;
    color: #333333;
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-title {
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 30px 0;
    color: #222222;
}

.info-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin: 0 0 45px 0;
    font-weight: 400;
}

.info-btn {
    background-color: #9abec4;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
}

.info-btn:hover {
    background-color: #87acb1;
}

/* Real Patient Results Owl Carousel Section */
.patient-results-section {
    background-color: #f7f9fa;
    padding: 90px 20px 70px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #eef1f3;
    overflow: hidden;
}

.patient-results-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.patient-results-header {
    text-align: center;
    margin-bottom: 50px;
}

.patient-results-title {
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.patient-results-subtitle {
    font-size: 14.5px;
    color: #555555;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

.patient-results-carousel {
    margin-bottom: 35px;
}

.patient-results-carousel .owl-stage {
    display: flex;
}

.patient-results-carousel .owl-item {
    display: flex;
    height: auto;
}

.patient-result-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.patient-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.patient-result-image-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    background-color: #eef2f3;
    overflow: hidden;
}

.patient-result-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(85, 145, 155, 0.78);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 3;
}

.patient-result-images {
    display: flex;
    width: 100%;
    height: 100%;
}

.patient-img-box {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.patient-img-box.before {
    border-right: 1px solid rgba(255, 255, 255, 0.6);
}

.patient-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.patient-result-content {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.patient-result-card-title {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    line-height: 1.45;
    margin: 0 0 12px 0;
    min-height: 44px;
}

.patient-result-card-desc {
    font-size: 12.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 18px 0;
    flex-grow: 1;
}

.patient-result-readmore {
    font-size: 12px;
    font-weight: 600;
    color: #63989f;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease, transform 0.2s ease;
    margin-top: auto;
}

.patient-result-readmore:hover {
    color: #437c83;
    transform: translateX(3px);
}

.patient-results-footer {
    text-align: center;
    margin-top: 25px;
}

.patient-results-view-btn {
    display: inline-block;
    padding: 9px 24px;
    border: 1.5px solid #91B9C0;
    color: #63989f;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.patient-results-view-btn:hover {
    background-color: #91B9C0;
    color: #ffffff;
}

.patient-results-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.patient-results-carousel .owl-dot {
    width: 9px;
    height: 9px;
    padding: 0 !important;
    margin: 0 !important;
    border: 0;
    border-radius: 50%;
    background: #cfdfe2 !important;
    transition: background-color 0.3s ease;
}

.patient-results-carousel .owl-dot.active {
    background: #6fa0a7 !important;
}

@media (max-width: 900px) {
    .patient-results-section {
        padding: 60px 20px 50px;
    }

    .patient-results-title {
        font-size: 22px;
    }

    .patient-results-subtitle {
        font-size: 13.5px;
    }

    .patient-result-image-wrap {
        height: 200px;
    }

    .patient-result-content {
        padding: 20px;
    }
}

/* Dental Implants vs Traditional Bridges & Dentures Comparison Section */
.implant-comparison-section {
    background-color: #ffffff;
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
}

.implant-comparison-container {
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
}

.implant-comparison-header {
    text-align: center;
    margin-bottom: 45px;
}

.implant-comparison-title {
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.implant-comparison-subtitle {
    font-size: 16.5px;
    color: #000000;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

.implant-comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.implant-comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border-radius: 8px;
    overflow: hidden;
}

.implant-comparison-table thead th {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    background-color: #ffffff;
    border-bottom: 2px solid #eef2f4;
    white-space: nowrap;
}

.comparison-header-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    vertical-align: middle;
}

.comparison-header-icon {
    max-height: 22px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.implant-comparison-table tbody tr:nth-child(odd) {
    background-color: #E1FAFF;
}

.implant-comparison-table tbody tr:nth-child(even) {
    background-color: #F3FDFF;
}

.implant-comparison-table tbody td {
    padding: 22px 24px;
    font-size: 14px;
    color: #333333;
    line-height: 1.55;
    vertical-align: middle;
}

.implant-comparison-table tbody td:first-child,
.implant-comparison-table thead th:first-child {
    font-weight: 600;
    color: #111111;
    width: 24%;
}

@media (max-width: 900px) {
    .implant-comparison-section {
        padding: 60px 20px;
    }

    .implant-comparison-title {
        font-size: 22px;
    }

    .implant-comparison-subtitle {
        font-size: 13.5px;
    }

    .implant-comparison-table {
        min-width: 680px;
    }

    .implant-comparison-table thead th,
    .implant-comparison-table tbody td {
        padding: 14px 16px;
        font-size: 13px;
    }
}

/* Dental Implant Treatments Offered Section */
.implant-treatments-section {
    background-color: #ededed;
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
}

.implant-treatments-container {
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
}

.implant-treatments-header {
    text-align: center;
    margin-bottom: 50px;
}

.implant-treatments-title {
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.implant-treatments-subtitle {
    font-size: 16.5px;
    color: #000000;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

.implant-treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.implant-treatment-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.implant-treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}

.implant-treatment-image {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.implant-treatment-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.implant-treatment-content {
    padding: 28px 24px 34px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.implant-treatment-name {
    font-size: 14.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.implant-treatment-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

@media (max-width: 992px) {
    .implant-treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .implant-treatment-card:last-child {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .implant-treatments-section {
        padding: 60px 20px;
    }

    .implant-treatments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .implant-treatment-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .implant-treatments-title {
        font-size: 22px;
    }

    .implant-treatments-subtitle {
        font-size: 13.5px;
        margin-bottom: 35px;
    }

    .implant-treatment-content {
        padding: 22px 20px 28px;
    }

    .implant-treatment-name {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .implant-treatment-desc {
        font-size: 13px;
    }
}

/* Meet Your Surgical & Implant Team Section */
.implant-team-section {
    background-color: #ededed;
    padding: 90px 20px;
    font-family: 'Montserrat', sans-serif;
}

.implant-team-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.implant-team-header {
    text-align: center;
    margin-bottom: 50px;
}

.implant-team-title {

    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.35;
}

.implant-team-subtitle {

    font-size: 14px;
    color: #4a4a4a;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

.implant-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.implant-team-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.implant-team-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.implant-team-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.implant-team-grid.cols-1 {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
}

.implant-team-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.implant-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}

.implant-team-image {
    width: 100%;
    background-color: #f0f0f0;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.implant-team-image img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.implant-team-grid.cols-3 .implant-team-image img {
    height: 340px;
}

.implant-team-content {
    padding: 24px 20px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

input#wpforms-9211-field_3 {
    padding-left: 60px !important;
}

.implant-team-name {

    font-size: 14px;
    /* font-weight: 600; */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.implant-team-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0;
}

@media (max-width: 1024px) {

    .implant-team-grid,
    .implant-team-grid.cols-4,
    .implant-team-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .implant-team-grid.cols-3 .implant-team-image img,
    .implant-team-image img {
        height: 270px;
    }
}

@media (max-width: 680px) {
    .implant-team-section {
        padding: 60px 20px;
    }

    .implant-team-grid,
    .implant-team-grid.cols-4,
    .implant-team-grid.cols-3,
    .implant-team-grid.cols-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .implant-team-title {
        font-size: 22px;
    }

    .implant-team-subtitle {
        font-size: 13.5px;
        margin-bottom: 35px;
    }

    .implant-team-grid.cols-3 .implant-team-image img,
    .implant-team-image img {
        height: 280px;
    }

    .implant-team-content {
        padding: 20px 18px 26px;
    }
}

/* Empathetic Care for Nervous Patients Section */
.nervous-patients-section {
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.nervous-patients-container {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: stretch;
    min-height: 480px;
    width: 100%;
}

.nervous-patients-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px 80px max(30px, calc((100vw - 1200px) / 2 + 20px));
    box-sizing: border-box;
}

.nervous-patients-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 22px 0;
}

.nervous-patients-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 28px 0;
    font-weight: 400;
    max-width: 580px;
}

.nervous-patients-desc p {
    font-size: 14px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.nervous-patients-desc strong,
.nervous-patients-desc b,
.nervous-patients-content strong,
.nervous-patients-content b {
    font-weight: 700 !important;
    color: #111111 !important;
}

.nervous-patients-desc ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 28px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nervous-patients-desc ul li {
    position: relative;
    padding-left: 28px;
    font-size: 13.5px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0;
    font-weight: 400;
}

.nervous-patients-desc ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238bb3b9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.nervous-patients-desc ul li strong,
.nervous-patients-desc ul li b {
    font-weight: 700 !important;
    color: #111111 !important;
}

.nervous-patients-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nervous-btn {
    font-size: 13.5px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
    line-height: 1.4;
    cursor: pointer;
}

.nervous-btn-primary {
    background-color: #8bb3b9;
    color: #ffffff !important;
    border: 1px solid #8bb3b9;
}

.nervous-btn-primary:hover {
    background-color: #75a1a7;
    border-color: #75a1a7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 179, 185, 0.35);
}

.nervous-btn-secondary {
    background-color: #ffffff;
    color: #8bb3b9 !important;
    border: 1px solid #8bb3b9;
}

.nervous-btn-secondary:hover {
    background-color: #f3f8f9;
    border-color: #75a1a7;
    color: #75a1a7 !important;
    transform: translateY(-2px);
}

.nervous-patients-image {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    overflow: hidden;
}

.nervous-patients-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

@media (max-width: 991px) {
    .nervous-patients-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .nervous-patients-content {
        padding: 50px 24px 40px;
        max-width: 100%;
    }

    .nervous-patients-title {
        font-size: 24px;
    }

    .nervous-patients-desc {
        font-size: 13.5px;
        margin-bottom: 25px;
    }

    .nervous-patients-image {
        min-height: 320px;
        height: 380px;
    }
}

@media (max-width: 576px) {
    .nervous-patients-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nervous-btn {
        width: 100%;
        text-align: center;
    }

    .nervous-patients-image {
        min-height: 260px;
        height: 280px;
    }
}

/* Real Patient Results Section */
.real-results-section {
    background-color: #ededed;
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
}

.real-results-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.real-results-header {
    text-align: center;
    margin-bottom: 45px;
}

.real-results-title {
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.real-results-subtitle {
    font-size: 14.5px;
    color: #4a4a4a;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

.real-results-card {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    align-items: center;
}

.real-results-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

.real-results-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.real-results-content {
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
}

.real-results-treatment {
    font-size: 14.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #1a1a1a;
    margin: 0 0 18px 0;
    line-height: 1.4;
}

.real-results-info {
    font-size: 13.5px;
    line-height: 1.65;
    color: #444444;
    margin: 0 0 14px 0;
}

.real-results-info strong {
    color: #111111;
    font-weight: 600;
}

.real-results-quote-box {
    background-color: #f0fafb;
    border: 1px solid #d4eff2;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 10px 0 24px 0;
}

.real-results-quote {
    font-size: 13px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    font-style: normal;
}

.real-results-readmore {
    color: #79aeb5;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
    width: fit-content;
}

.real-results-readmore:hover {
    color: #589299;
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .real-results-section {
        padding: 60px 20px;
    }

    .real-results-card {
        grid-template-columns: 1fr;
    }

    .real-results-image-wrapper img {
        height: 300px;
    }

    .real-results-content {
        padding: 30px 24px;
    }

    .real-results-title {
        font-size: 22px;
    }

    .real-results-subtitle {
        font-size: 13.5px;
        margin-bottom: 30px;
    }
}

/* Dental Conditions Invisalign Can Treat Section */
.invisalign-conditions-section {
    background-color: #ededed;
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
}

.invisalign-conditions-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.invisalign-conditions-header {
    text-align: center;
    margin-bottom: 50px;
}

.invisalign-conditions-title {
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.invisalign-conditions-subtitle {
    font-size: 14.5px;
    color: #4a4a4a;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

.invisalign-conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.invisalign-condition-card {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.invisalign-condition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}

.invisalign-condition-image {
    width: 100%;
    background-color: #f0f0f0;
    overflow: hidden;
}

.invisalign-condition-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.invisalign-condition-content {
    padding: 26px 24px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.invisalign-condition-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    line-height: 1.4;
}

.invisalign-condition-desc {
    font-size: 13px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0;
}

@media (max-width: 768px) {
    .invisalign-conditions-section {
        padding: 60px 20px;
    }

    .invisalign-conditions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .invisalign-conditions-title {
        font-size: 22px;
    }

    .invisalign-conditions-subtitle {
        font-size: 13.5px;
        margin-bottom: 35px;
    }

    .invisalign-condition-image img {
        height: 220px;
    }

    .invisalign-condition-content {
        padding: 22px 20px 26px;
    }
}

/* Complementary Aesthetic Enhancements: The Smile Glow Up Section */
.smile-glowup-section {
    background-color: #ededed;
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
}

.smile-glowup-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.smile-glowup-header {
    text-align: center;
    margin-bottom: 50px;
}

.smile-glowup-title {
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.35;
}

.smile-glowup-subtitle {
    font-size: 14.5px;
    color: #4a4a4a;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

.smile-glowup-badge {
    display: inline-block;
    background-color: #e2f4f7;
    color: #629ea5;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    width: fit-content;
}

.smile-glowup-top-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}

.smile-glowup-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 36px 36px 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smile-glowup-card:hover,
.smile-glowup-finance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}

.smile-glowup-card-title {
    font-size: 14.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    line-height: 1.4;
}

.smile-glowup-card-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.smile-glowup-finance-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smile-glowup-finance-left {
    display: flex;
    flex-direction: column;
}

.smile-glowup-finance-img {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.smile-glowup-finance-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.smile-glowup-finance-right {
    width: 100%;
}

.smile-glowup-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 6px;
    overflow: hidden;
}

.smile-glowup-table thead th {
    font-size: 13.5px;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    color: #1a1a1a;
    background: transparent;
    border: none;
}

.smile-glowup-table tbody tr:nth-child(odd) {
    background-color: #dff7fb;
}

.smile-glowup-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.smile-glowup-table tbody td {
    padding: 16px;
    font-size: 12.5px;
    line-height: 1.55;
    color: #333333;
    vertical-align: middle;
    border: none;
}

.smile-glowup-table tbody td:first-child {
    font-weight: 600;
    color: #111111;
    width: 38%;
}

@media (max-width: 900px) {
    .smile-glowup-section {
        padding: 60px 20px;
    }

    .smile-glowup-top-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .smile-glowup-finance-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 26px 20px;
    }

    .smile-glowup-card {
        padding: 26px 20px;
    }

    .smile-glowup-title {
        font-size: 22px;
    }

    .smile-glowup-subtitle {
        font-size: 13.5px;
        margin-bottom: 30px;
    }

    .smile-glowup-table thead th,
    .smile-glowup-table tbody td {
        padding: 12px 10px;
        font-size: 12px;
    }
}

/* Pricing Section */
.pricing-section {
    background-color: #f2f2f2;
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
    color: #333333;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.pricing-left {
    flex: 0.8;
    padding-right: 20px;
}

.pricing-title {
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222222;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.pricing-quote {
    font-size: 15px;
    font-weight: 500;
    color: #444444;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.pricing-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #555555;
    margin: 0 0 40px 0;
}

.pricing-btn {
    background-color: #9abec4;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
}

.pricing-btn:hover {
    background-color: #87acb1;
}

.pricing-right {
    flex: 1.2;
}

.table-title {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 15px 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    margin-bottom: 45px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.pricing-table th {
    background-color: #9abec4;
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px;
    text-align: left;
}

.pricing-table th:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing-table td {
    padding: 20px;
    font-size: 12px;
    color: #444444;
    border-bottom: 1px solid #eeeeee;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-disclaimer {
    font-size: 11px;
    line-height: 1.6;
    color: #666666;
    margin-top: -10px;
}

.pricing-disclaimer p {
    margin: 0 0 5px 0;
}

@media (max-width: 900px) {
    .pricing-container {
        flex-direction: column;
        gap: 50px;
    }
}

.review-container p {
    padding-bottom: 2em;
}

/* Payment Banner Section */
.payment-banner {
    background-color: #6a6a6a;
    /* Dark grey */
    padding: 70px 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.payment-banner-title {
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 50px 0;
}

.payment-features {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-feature-item {
    flex: 1;
    padding: 0 30px;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

/* Vertical dividers */
.payment-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 35px;
    /* Fixed height for the line */
    width: 1px;
    background-color: #ffffff;
}

.payment-check {
    margin-right: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

@media (max-width: 900px) {
    .payment-features {
        flex-direction: column;
        gap: 30px;
    }

    .payment-feature-item {
        padding: 0;
        justify-content: left;
        text-align: center;
    }

    .payment-feature-item:not(:last-child)::after {
        display: none;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: #333333;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.faq-left {
    flex: 1.2;
}

.faq-title {
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222222;
    margin: 0 0 15px 0;
}

.faq-subtitle {
    font-size: 14px;
    color: #000000;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.faq-item {
    margin-bottom: 5px;
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    user-select: none;
}

.faq-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: #9abec4;
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    transition: background-color 0.3s;
}

.faq-item .faq-icon-wrapper::after {
    content: '+';
}

.faq-item.open .faq-icon-wrapper::after {
    content: '\2212';
    /* Minus sign */
}

.faq-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease-out;
}

.faq-item.open .faq-content-wrapper {
    grid-template-rows: 1fr;
}

.faq-content {
    overflow: hidden;
}

.faq-content-inner {
    padding: 10px 40px 30px 0;
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    font-weight: 300;
}

.faq-right {
    flex: 1;
}

.faq-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
    .faq-section {
        padding: 50px 20px;
    }

    .faq-container {
        flex-direction: column;
    }

    .faq-right {
        width: 100%;
        margin-top: 40px;
    }
}

/* Location Section */
.location-section {
    background-color: #ffffff;
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
    color: #333333;
}

.location-container {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.location-left {
    flex: 1.2;
}

.location-map {
    width: 100%;
    height: 350px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f5f5f5;
}

.location-right {
    flex: 1;
    padding-right: 20px;
}

.location-title {
    font-size: 26px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333333;
    margin: 0 0 35px 0;
}

.location-details {
    font-size: 17px;
    line-height: 2.2;
    color: #000000;
    margin-bottom: 35px;
}

.location-details a {
    color: #000000;
}

.location-details p {
    margin: 0;
    font-size: 15px;
}

.location-details strong {
    font-weight: 400;
    color: #222222;
}

.location-btn {
    background-color: #9abec4;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    margin-bottom: 12px;
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.location-btn:hover {
    background-color: #87acb1;
}

.location-subtext {
    font-size: 17px;
    color: #000000;
    margin-left: 5px;
}

@media (max-width: 800px) {
    .location-section {
        padding: 50px 20px;
    }

    .location-container {
        flex-direction: column;
        text-align: center;
    }

    .location-container {
        flex-direction: column;
        gap: 30px;
    }

    .location-btn {
        max-width: 100%;
    }

    .location-left {
        flex: 1;
        width: 100%;
        position: relative;
        width: 100%;
        height: 0;
        overflow: hidden;
    }
}

/* Final CTA Section */
.final-cta-section {
    background-color: #050505;
    padding: 90px 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.final-cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 26px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.final-cta-subtitle {
    font-size: 13px;
    font-weight: 300;
    color: #cccccc;
    margin: 0 0 45px 0;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.final-cta-btn {
    background-color: #9abec4;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
}

.final-cta-btn:hover {
    background-color: #87acb1;
}

.final-cta-btn svg {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 600px) {
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer Section */
.site-footer {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #f0f0f0;
}

.footer-text {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.footer-phone {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .implant-benefits-section {
        padding: 20px 20px 50px 20px;
    }

    .patient-results-section,
    .transformations-section {
        padding: 50px 20px;
    }

    section.review-section {
        padding: 50px 20px;
    }

    .pricing-section {
        padding: 50px 20px;
    }

    .implant-designs-section {
        padding: 50px 20px;
    }

    .info-section {
        padding: 50px 20px;
    }

    .implant-intro-section {
        padding: 50px 20px;
    }

    .implant-tech-section {
        padding: 50px 20px;
    }

    .journey-section {
        padding: 50px 20px;
    }
}

.why-tolworth-section {
    width: 100%;
    background: #fff;
    padding: 30px 0 35px;
    font-family: 'Inter', sans-serif;
    color: #111;
}

.why-tolworth-top {
    max-width: 1190px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

.why-tolworth-content {
    /*padding-right: 1em;*/
}

/* Left content */

.why-tolworth-content h2 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: .3px;
}

.why-intro {
    /*max-width: 430px;*/
    margin: 0 0 50px;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}


/* Table */

.why-tolworth-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.why-tolworth-table th {
    text-align: left;
    padding: 0 10px 8px;
    font-size: 16px;
    font-weight: 600;
}

.why-tolworth-table td {
    padding: 19px 10px;
    vertical-align: top;
    font-size: 16px;
    line-height: 1.55;
}

.why-tolworth-table th:first-child,
.why-tolworth-table td:first-child {
    width: 42%;
}

.why-tolworth-table tbody tr:nth-child(odd) {
    background: #dff7fb;
}

.why-tolworth-table tbody tr:nth-child(even) {
    background: #f0fbfd;
}


/* Image */

.why-tolworth-image {
    /*   width: 100%;
    height: 350px;
    overflow: hidden;*/
}

.why-tolworth-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* Bottom three columns */

.why-tolworth-features {
    max-width: 1190px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.why-feature h3 {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}

.why-feature p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #222;
}


/* Tablet */

@media (max-width: 900px) {

    .why-tolworth-section {
        padding: 40px 25px;
    }

    .why-tolworth-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-tolworth-image {
        height: 400px;
    }

    .why-tolworth-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .why-tolworth-section {
        padding: 35px 20px;
    }

    .why-tolworth-content h2 {
        font-size: 20px;
    }

    .why-intro {
        font-size: 10px;
    }

    .why-tolworth-table {
        table-layout: auto;
    }

    .why-tolworth-table th,
    .why-tolworth-table td {
        font-size: 9px;
        padding: 9px 7px;
    }

    .why-tolworth-image {
        height: 300px;
    }

    .why-feature h3 {
        font-size: 10px;
    }

    .why-feature p {
        font-size: 9px;
        line-height: 1.7;
    }

}

/* ==========================================================================
   Contact & Location Section
   ========================================================================== */
.contact-location-section {
    padding: 80px 20px;
    background-color: #ffffff;
    border-top: 1px solid #eef0f2;
    font-family: 'Montserrat', sans-serif;
}

.contact-location-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-location-map {
    width: 100%;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-location-map iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
}

.contact-location-content {
    display: flex;
    flex-direction: column;
}

.contact-location-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 18px 0;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-location-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 28px 0;
    font-weight: 400;
}

.contact-location-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    margin-top: 1px;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: #222222;
    stroke-width: 1.8;
}

.contact-info-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

.contact-info-text p {
    margin: 0 0 4px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

.contact-item-title {
    margin: 0 0 4px 0 !important;
    font-size: 14px !important;
    color: #111111 !important;
}

.contact-item-title strong {
    font-weight: 600 !important;
    color: #111111 !important;
}

.contact-item-desc {
    margin: 0 0 12px 0 !important;
    font-size: 13.5px !important;
    color: #555555 !important;
    line-height: 1.5 !important;
}

.contact-item-label {
    color: #555555 !important;
    font-size: 13.5px !important;
    margin-bottom: 3px !important;
    font-weight: 400 !important;
}

.contact-item-val {
    margin: 0 !important;
    font-size: 14px !important;
    color: #111111 !important;
    font-weight: 600 !important;
}

.contact-item-val strong {
    font-weight: 700 !important;
    color: #111111 !important;
}

.contact-item-val a {
    color: #111111 !important;
    text-decoration: none;
    font-weight: 700 !important;
}

.contact-item-val a:hover {
    color: #75a1a7 !important;
}

.contact-phone-lead {
    margin: 0 0 3px 0 !important;
    font-size: 13.5px !important;
    color: #444444 !important;
}

.contact-phone-lead strong {
    color: #111111 !important;
    font-weight: 600 !important;
}

.contact-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #8bb3b9;
    color: #ffffff !important;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.2px;
    transition: background-color 0.25s ease, transform 0.2s ease;
    line-height: 1.4;
}

.contact-btn:hover {
    background-color: #75a1a7;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.contact-email-link {
    font-size: 14px;
    color: #333333 !important;
    text-decoration: none;
    font-weight: 400 !important;
    transition: color 0.2s ease;
}

.contact-email-link:hover {
    color: #75a1a7 !important;
}

/* Tablet */
@media (max-width: 991px) {
    .contact-location-section {
        padding: 50px 20px;
    }

    .contact-location-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-location-map {
        height: 360px;
    }

    .contact-location-title {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .contact-location-section {
        padding: 40px 16px;
    }

    .contact-location-title {
        font-size: 22px;
    }

    .contact-location-map {
        height: 280px;
    }

    .contact-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Before & After Gallery Section (.transformations-section)
   ========================================================================== */
.transformations-section {
    padding: 70px 40px 85px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.transformations-container {
    max-width: 1180px;
    margin: 0 auto;
}

.transformations-header {
    text-align: center;
    margin-bottom: 45px;
}

.transformations-title {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #222222;
    margin: 0 0 14px 0;
    font-family: 'Inter', sans-serif;
}

.transformations-subtitle {
    font-size: 13.5px;
    line-height: 1.6;
    color: #555555;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.transformation-card {
    display: flex;
    flex-direction: column;
    background-color: #8cb5bb;
    padding-top: 4px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.img-container {
    position: relative;
    width: 100%;
    height: 175px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.img-container.before-img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 2px;
}

.img-container.after-img {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 7px;
    left: 9px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 2;
    font-family: 'Inter', sans-serif;
}

/* Tablet */
@media (max-width: 1024px) {
    .transformations-section {
        padding: 50px 25px;
    }

    .transformations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .img-container {
        height: 180px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .transformations-section {
        padding: 40px 15px;
    }

    .transformations-title {
        font-size: 22px;
    }

    .transformations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .img-container {
        height: 195px;
    }
}

/* ==========================================================================
   Finance & Membership Plans Section (.finance-membership-section)
   ========================================================================== */
.finance-membership-section {
    background-color: #f7f9fa;
    padding: 90px 20px;
    font-family: 'Montserrat', sans-serif;
}

.finance-membership-container {
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
}

.finance-membership-header {
    text-align: center;
    margin-bottom: 50px;
}

.finance-membership-title {
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.35;
}

.finance-membership-subtitle {

    font-size: 16.5px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

.finance-membership-grid {
    display: grid;
    gap: 28px;
    align-items: stretch;
}

/* Default 2-column layout */
.finance-membership-grid,
.finance-membership-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* 3 or more items layout: 3 columns */
.finance-membership-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.finance-membership-grid.cols-1 {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.finance-membership-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 36px 30px 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.finance-membership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}

.finance-badge {
    display: inline-block;
    background-color: #e6f4f6;
    color: #629ea5;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
    width: fit-content;
}

.finance-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    line-height: 1.4;
}

.finance-card-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .finance-membership-section {
        padding: 60px 20px;
    }

    .finance-membership-grid,
    .finance-membership-grid.cols-3,
    .finance-membership-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .finance-membership-title {
        font-size: 22px;
    }

    .finance-membership-subtitle {
        font-size: 13.5px;
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 680px) {

    .finance-membership-grid,
    .finance-membership-grid.cols-3,
    .finance-membership-grid.cols-2 {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .finance-membership-card {
        padding: 28px 20px;
    }
}

/* ==========================================================================
   Full Width Content Section
   ========================================================================== */
.full-width-content-section {
    width: 100%;
    padding: 30px 20px 40px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.full-width-content-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.full-width-content-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
    color: #555555;
    text-align: center;
}

.full-width-content-body p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 16px 0;
}

.full-width-content-body p:last-child {
    margin-bottom: 0;
}

.full-width-content-body strong,
.full-width-content-body b {
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.full-width-content-body em,
.full-width-content-body i {
    font-style: italic;
}

.full-width-content-body a {
    color: #75a1a7;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.full-width-content-body a:hover {
    color: #5b878d;
}

.full-width-content-body h1,
.full-width-content-body h2,
.full-width-content-body h3,
.full-width-content-body h4 {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0 0 16px 0;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .full-width-content-section {
        padding: 24px 16px 30px;
    }

    .full-width-content-body,
    .full-width-content-body p {
        font-size: 13px;
    }
}

/* ==========================================================================
   Real Patient Results Section
   ========================================================================== */
.real-results-section {
    background-color: #ededed;
    padding: 90px 20px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.real-results-container {
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
}

.real-results-header {
    text-align: center;
    margin-bottom: 45px;
}

.real-results-title {
    /* font-family: 'Montserrat', sans-serif; */
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.35;
}

.real-results-subtitle {
    /* font-family: 'Montserrat', sans-serif; */
    font-size: 14px;
    color: #4a4a4a;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

.real-results-card {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 45px;
}

.real-results-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background-color: #f7f9fa;
    display: flex;
    overflow: hidden;
}

.real-results-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.real-results-content {
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.real-results-treatment {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.real-results-info {
    font-size: 13.5px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 14px 0;
    font-weight: 400;
}

.real-results-info strong,
.real-results-info b {
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.real-results-quote-box {
    background-color: #f1f8f9;
    border: 1px solid #e1eff1;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 10px 0 20px 0;
}

.real-results-quote {
    font-size: 13px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    font-style: normal;
}

.real-results-readmore {
    font-size: 13.5px;
    font-weight: 500;
    color: #75a1a7;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.real-results-readmore:hover {
    color: #5b878d;
    transform: translateX(3px);
}

.real-results-bottom-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.real-results-bottom-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 18px 0;
}

.real-results-bottom-desc p {
    font-size: 13.5px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 10px 0;
}

.real-results-bottom-desc p:last-child {
    margin-bottom: 0;
}

.real-results-bottom-desc strong,
.real-results-bottom-desc b {
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.real-results-bottom-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.real-results-btn {
    font-size: 13.5px;
    font-weight: 500;
    padding: 12px 26px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
    line-height: 1.4;
    cursor: pointer;
}

.real-results-btn-primary {
    background-color: #8bb3b9;
    color: #ffffff !important;
    border: 1px solid #8bb3b9;
}

.real-results-btn-primary:hover {
    background-color: #75a1a7;
    border-color: #75a1a7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 179, 185, 0.35);
}

.real-results-btn-secondary {
    background-color: #ffffff;
    color: #8bb3b9 !important;
    border: 1px solid #8bb3b9;
}

.real-results-btn-secondary:hover {
    background-color: #f3f8f9;
    border-color: #75a1a7;
    color: #75a1a7 !important;
    transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 991px) {
    .real-results-section {
        padding: 60px 20px;
    }

    .real-results-card {
        grid-template-columns: 1fr;
    }

    .real-results-image-wrapper {
        min-height: 280px;
        height: 300px;
    }

    .real-results-content {
        padding: 30px 24px;
    }

    .real-results-title {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .real-results-section {
        padding: 50px 16px;
    }

    .real-results-bottom-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .real-results-btn {
        width: 100%;
        text-align: center;
    }
}