.elementor-666 .elementor-element.elementor-element-b6b347e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* ===========================================================
           CSS CUSTOM PROPERTIES (Brand Palette & Tokens)
           =========================================================== */
    :root {
        /* Brand colors from identity guidelines */
        --primary: #31acaf;
        /* Teal - primary brand color */
        --primary-dark: #454C4C;
        /* Charcoal - dark headings, nav */
        --secondary: #8F9090;
        /* Grey - muted text */
        --soft-tint: #B1C9C8;
        /* Sage - soft backgrounds, borders */
        --accent: #E8A6B3;
        /* Blush
             pink - warm accent */
        --light-accent: #F6E4E8;
        /* Pale pink - very light accent bg */
        --body-text: #454C4C;
        /* Dark grey body text */
        --bg-white: #FFFFFF;
        --bg-offwhite: #F7FAFA;
        /* Very faint teal-tinted off-white */
        --bg-warm: #FDF8F9;
        /* Faint blush off-white for warmth */

        /* Shadows */
        --shadow-soft: 0 2px 12px rgba(69, 76, 76, 0.06);
        --shadow-card: 0 4px 20px rgba(69, 76, 76, 0.08);
        --shadow-hover: 0 8px 30px rgba(49, 172, 175, 0.12);

        /* Spacing */
        --section-padding: 100px 0;
        --container-width: 1140px;
        --radius: 14px;
        --radius-sm: 10px;
    }

    /* ===========================================================
           RESET & BASE
           =========================================================== */
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.75;
        color: var(--body-text);
        background-color: var(--bg-white);
        -webkit-font-smoothing: antialiased;
        text-align: justify;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Montserrat', sans-serif;
        color: var(--primary-dark);
        line-height: 1.3;
        font-weight: 700;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a {
        color: var(--primary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:focus-visible {
        outline: 3px solid var(--primary);
        outline-offset: 3px;
        border-radius: 4px;
    }

    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
        outline: 3px solid var(--primary);
        outline-offset: 2px;
        border-radius: 4px;
    }

    .container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Section label (small teal text above headings) */
    .section-label {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 12px;
        display: block;
    }

    /* Section heading */
    .section-heading {
        font-size: 2.2rem;
        margin-bottom: 18px;
        color: #454C4C;
    }

    /* Section subtext */
    .section-subtext {
        font-size: 1.05rem;
        color: var(--secondary);
        max-width: 620px;
        line-height: 1.8;
    }

    .text-center {
        text-align: center;
    }

    .text-center .section-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    /* ===========================================================
           BUTTONS
           =========================================================== */
    .btn {
        display: inline-block;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 14px 32px;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
    }

    .btn-primary {
        background-color: var(--primary);
        color: #FFFFFF;
    }

    .btn-primary:hover {
        background-color: #31acaf;
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
        color: #FFFFFF;
    }

    .btn-outline {
        background-color: transparent;
        color: var(--primary-dark);
        border: 2px solid var(--soft-tint);
    }

    .btn-outline:hover {
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-2px);
    }

    .btn-accent {
        background-color: var(--accent);
        color: #FFFFFF;
    }

    .btn-accent:hover {
        background-color: #d9909e;
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
        color: #FFFFFF;
    }

    /* ===========================================================
           NAVIGATION
           =========================================================== */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #FFFFFF;
        border-bottom: 1px solid rgba(177, 201, 200, 0.3);
        transition: box-shadow 0.3s ease;
    }

    .navbar.scrolled {
        box-shadow: var(--shadow-card);
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 76px;
    }

    /* Text-based logo since no logo file is available */
    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        background: #31acaf;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1rem;
    }

    .logo-text {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1.15rem;
        color: var(--primary-dark);
        letter-spacing: 0.5px;
    }

    .logo-text span {
        color: var(--primary);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
        list-style: none;
    }

    .nav-links a {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--primary-dark);
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--primary);
    }

    .nav-cta {
        margin-left: 8px;
    }

    .nav-cta .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    /* Hamburger */
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        background: none;
        border: none;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary-dark);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ===========================================================
           HERO
           =========================================================== */
    .hero {
        padding: 160px 0 120px;
        background: #FFFFFF;
        position: relative;
        overflow: hidden;
    }



    .hero .container {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
    }

    .hero .section-label {
        color: var(--primary);
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: 4rem;
        line-height: 1.15;
        margin-bottom: 24px;
        animation: fadeInUp 1.2s ease both;
    }

    .hero h1 span {
        color: var(--primary);
        font-size: 1.4em;
        display: block;
    }

    .hero-subtitle {
        animation: fadeInUp 1.2s ease 0.3s both;
    }

    .hero .section-label {
        animation: fadeInUp 1.2s ease 0s both;
    }

    .hero-buttons {
        animation: fadeInUp 1.2s ease 0.6s both;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero p {
        font-size: 1.15rem;
        color: var(--secondary);
        max-width: 800px;
        margin: 0 auto 40px;
        line-height: 1.8;
    }

    .hero-subtitle {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.35rem;
        font-weight: 500;
        color: var(--secondary);
        max-width: 800px;
        margin: 0 auto 40px;
        line-height: 1.8;
        letter-spacing: 0.02em;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* ===========================================================
           ABOUT
           =========================================================== */
    .about {
        padding: var(--section-padding);
        background: var(--bg-white);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-content .section-subtext {
        margin-bottom: 20px;
    }

    .about-content p {
        margin-bottom: 16px;
    }

    .about-image {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        border: 3px solid var(--primary);
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 4/3;
    }

    /* Small decorative element beside about section */
    .about-stat {
        display: flex;
        gap: 24px;
        margin-top: 32px;
        padding-top: 28px;
        border-top: 1px solid rgba(177, 201, 200, 0.4);
    }

    .about-stat-item {
        text-align: center;
    }

    .about-stat-item .stat-number {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary);
    }

    .about-stat-item .stat-label {
        font-size: 0.82rem;
        color: var(--secondary);
        margin-top: 2px;
    }

    /* ===========================================================
           SERVICES
           =========================================================== */
    .services {
        padding: var(--section-padding);
        background: var(--bg-offwhite);
    }

    .services-header {
        margin-bottom: 56px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .service-card {
        background: var(--bg-white);
        border-radius: var(--radius);
        padding: 0 0 30px 0;
        box-shadow: var(--shadow-soft);
        transition: all 0.35s ease;
        border: 3px solid var(--primary);
        overflow: hidden;
    }

    .service-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-4px);
    }

    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 12px;
        font-weight: 600;
        padding: 0 24px;
        text-align: left;
    }

    .service-card p {
        font-size: 0.92rem;
        color: var(--secondary);
        line-height: 1.7;
        padding: 0 24px;
        text-align: left;
    }

    .service-img {
        overflow: hidden;
        margin-bottom: 20px;
        padding: 16px 16px 0 16px;
    }

    .service-img img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }




    @media (max-width: 1024px) {}

    @media (max-width: 768px) {}

    @media (max-width: 480px) {}

    /* ===========================================================
           TEAM
           =========================================================== */
    .team {
        padding: var(--section-padding);
        background: var(--bg-white);
    }

    .team-header {
        margin-bottom: 56px;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .team-card {
        text-align: center;
        background: var(--bg-white);
        border-radius: var(--radius);
        padding: 36px 28px;
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(177, 201, 200, 0.2);
        transition: all 0.35s ease;
    }

    .team-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-4px);
    }

    .team-photo {
        width: 210px;
        height: 210px;
        border-radius: 0;
        margin: 0 auto 20px;
        overflow: visible;
        border: none;
        background: transparent;
    }

    .team-photo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
        filter: drop-shadow(0 4px 16px rgba(69, 76, 76, 0.13));
    }

    .team-card h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .team-card .team-role {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--primary);
        letter-spacing: 0.5px;
        margin-bottom: 14px;
    }

    .team-card p {
        font-size: 0.9rem;
        color: var(--secondary);
        line-height: 1.7;
    }

    /* ===========================================================
           FAQ
           =========================================================== */
    .faq {
        padding: var(--section-padding);
        background: var(--bg-white);
    }

    .faq-header {
        margin-bottom: 48px;
    }

    .faq-list {
        max-width: 760px;
        margin: 0 auto;
    }

    .faq-item {
        border-bottom: 1px solid rgba(177, 201, 200, 0.35);
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.02rem;
        font-weight: 600;
        color: var(--primary-dark);
        text-align: left;
        padding: 22px 40px 22px 0;
        cursor: pointer;
        position: relative;
        transition: color 0.3s ease;
    }

    .faq-question:hover {
        color: var(--primary);
    }

    .faq-question::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.4rem;
        font-weight: 400;
        color: var(--primary);
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
        content: '';
        /* Using a simple minus character */
        transform: translateY(-50%) rotate(0deg);
    }

    .faq-item.active .faq-question::after {
        content: '\2212';
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-answer-inner {
        padding: 0 0 22px;
        font-size: 0.95rem;
        color: var(--secondary);
        line-height: 1.8;
    }

    /* ===========================================================
           CONTACT
           =========================================================== */
    .contact {
        padding: var(--section-padding);
        background: var(--bg-white);
    }

    .contact-header {
        margin-bottom: 56px;
    }

    .contact-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .contact-info-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-info-card {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        background: var(--bg-white);
        border-radius: var(--radius-sm);
        padding: 22px 24px;
        box-shadow: 0 4px 20px rgba(69, 76, 76, 0.10);
        border: 1px solid rgba(177, 201, 200, 0.15);
    }

    .contact-info-card .contact-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 10px;
        background: rgba(49, 172, 175, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-info-card .contact-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--primary);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .contact-info-card h4 {
        font-size: 0.92rem;
        margin-bottom: 4px;
    }

    .contact-info-card p,
    .contact-info-card a {
        font-size: 0.9rem;
        color: var(--secondary);
    }

    .contact-info-card a:hover {
        color: var(--primary);
    }

    /* Business hours card */
    .hours-card {
        background: var(--bg-white);
        border-radius: var(--radius-sm);
        padding: 24px;
        box-shadow: 0 4px 20px rgba(69, 76, 76, 0.10);
        border: 1px solid rgba(177, 201, 200, 0.15);
        margin-top: 8px;
    }

    .hours-card h4 {
        font-size: 0.95rem;
        margin-bottom: 14px;
        color: var(--primary-dark);
    }

    .hours-row {
        display: flex;
        justify-content: space-between;
        padding: 7px 0;
        font-size: 0.88rem;
        border-bottom: 1px solid rgba(177, 201, 200, 0.2);
    }

    .hours-row:last-child {
        border-bottom: none;
    }

    .hours-row .day {
        font-weight: 500;
        color: var(--primary-dark);
    }

    .hours-row .time {
        color: var(--secondary);
    }

    .directions-note {
        margin-top: 20px;
        padding: 16px 20px;
        background: var(--bg-warm);
        border-radius: var(--radius-sm);
        font-size: 0.88rem;
        color: var(--body-text);
        border-left: 3px solid var(--accent);
    }

    /* Contact form */
    .contact-form {
        background: var(--bg-white);
        border-radius: var(--radius);
        padding: 40px;
        box-shadow: 0 4px 20px rgba(69, 76, 76, 0.10);
        border: 1px solid rgba(177, 201, 200, 0.15);
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--primary-dark);
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid rgba(177, 201, 200, 0.5);
        border-radius: var(--radius-sm);
        font-family: 'Inter', sans-serif;
        font-size: 0.92rem;
        color: var(--body-text);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        background: var(--bg-white);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(49, 172, 175, 0.1);
        outline: none;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact-form .btn {
        width: 100%;
        margin-top: 8px;
    }

    .contact-form .form-note {
        font-size: 0.92rem;
        color: var(--secondary);
        line-height: 1.7;
        margin: -12px 0 24px;
        text-align: left;
    }




    /* ===========================================================
           POPUP FORM + NEW PATIENT CONTACT FORM
           =========================================================== */
    .popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(69, 76, 76, 0.62);
        z-index: 2000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 24px;
    }

    .popup-overlay.active {
        display: flex;
    }

    .popup-card {
        position: relative;
        width: 100%;
        max-width: 480px;
        background: var(--bg-white);
        border-radius: var(--radius);
        padding: 36px;
        box-shadow: 0 18px 60px rgba(69, 76, 76, 0.25);
        border: 1px solid rgba(177, 201, 200, 0.3);
    }

    .popup-close {
        position: absolute;
        top: 14px;
        right: 16px;
        width: 34px;
        height: 34px;
        border: none;
        background: rgba(49, 172, 175, 0.1);
        color: var(--primary-dark);
        border-radius: 50%;
        font-size: 1.4rem;
        line-height: 1;
        cursor: pointer;
    }

    .popup-card h3,
    .np-contact-content h3 {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }

    .popup-card p,
    .np-contact-content p {
        color: var(--secondary);
        margin-bottom: 22px;
        line-height: 1.7;
        text-align: left;
    }

    .popup-card .btn,
    .np-contact-content .btn {
        width: 100%;
        margin-top: 8px;
    }

    .np-contact-section {
        padding: 80px 0;
        background: var(--bg-offwhite);
    }

    .np-contact-content {
        max-width: 620px;
        margin: 0 auto;
        background: var(--bg-white);
        border-radius: var(--radius);
        padding: 40px;
        box-shadow: 0 4px 20px rgba(69, 76, 76, 0.10);
        border: 1px solid rgba(177, 201, 200, 0.15);
    }

    @media (max-width: 480px) {

        .popup-card,
        .np-contact-content {
            padding: 28px 20px;
        }
    }

    /* ===========================================================
           FOOTER
           =========================================================== */
    .footer {
        background: var(--primary-dark);
        color: rgba(255, 255, 255, 0.75);
        padding: 64px 0 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand .logo-text {
        color: #FFFFFF;
        font-size: 1.2rem;
        margin-bottom: 14px;
    }

    .footer-brand .logo-text span {
        color: var(--primary);
    }

    .footer-brand p {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.6);
        text-align: left;
    }

    .footer-social {
        display: flex;
        gap: 12px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }

    .footer-social a:hover {
        background: var(--primary);
    }

    .footer-social a svg {
        width: 18px;
        height: 18px;
        fill: rgba(255, 255, 255, 0.8);
    }

    .footer h4 {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.88rem;
        font-weight: 600;
        color: #FFFFFF;
        letter-spacing: 0.5px;
        margin-bottom: 18px;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.6);
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--primary);
    }

    .footer-contact-item {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 12px;
        font-size: 0.88rem;
    }

    .footer-contact-item svg {
        width: 16px;
        height: 16px;
        min-width: 16px;
        stroke: var(--primary);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        margin-top: 3px;
    }

    .footer-bottom {
        padding: 22px 0;
        text-align: center;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.4);
    }

    /* ===========================================================
           MOBILE MENU OVERLAY
           =========================================================== */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        height: calc(100vh - 76px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        padding: 40px 24px;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu a {
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--primary-dark);
        padding: 14px 0;
        border-bottom: 1px solid rgba(177, 201, 200, 0.2);
    }

    .mobile-menu a:hover {
        color: var(--primary);
    }

    .mobile-menu .btn {
        margin-top: 24px;
        width: 100%;
    }

    /* ===========================================================
           RESPONSIVE: TABLET (768px)
           =========================================================== */
    @media (max-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .team-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
    }

    @media (max-width: 768px) {
        :root {
            --section-padding: 72px 0;
        }

        .nav-links,
        .nav-cta {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .hero {
            padding: 130px 0 80px;
        }

        .hero h1 {
            font-size: 2.1rem;
        }

        .hero p {
            font-size: 1rem;
        }

        .section-heading {
            font-size: 1.8rem;
        }

        .about-grid {
            grid-template-columns: 1fr;
            gap: 36px;
        }

        .about-image {
            order: -1;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .team-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .contact-layout {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .hero-buttons .btn {
            width: 100%;
            max-width: 300px;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 1.75rem;
        }

        .section-heading {
            font-size: 1.5rem;
        }

        .contact-form {
            padding: 28px 20px;
        }
    }

    /* === DARK SECTION ALTERNATING BACKGROUNDS === */
    .section-dark {
        background: var(--primary-dark) !important;
        color: rgba(255, 255, 255, 0.88);
    }

    .section-dark .section-label {
        color: var(--accent);
    }

    .section-dark .section-heading {
        color: #FFFFFF;
    }

    .section-dark .section-subtext {
        color: rgba(255, 255, 255, 0.65);
    }

    .section-dark p {
        color: rgba(255, 255, 255, 0.82);
    }

    /* Service cards on dark bg */
    /* FAQ on dark bg */
    .section-dark .faq-item {
        border-bottom-color: rgba(255, 255, 255, 0.12);
    }

    .section-dark .faq-question {
        color: #FFFFFF;
    }

    .section-dark .faq-question:hover {
        color: var(--primary);
    }

    .section-dark .faq-question::after {
        color: var(--accent);
    }

    .section-dark .faq-answer-inner {
        color: rgba(255, 255, 255, 0.7);
    }

    /* Service card image */
    /* On dark bg, service card needs text color fixes */

    /* === RUNNING WORDS TICKER === */
    .ticker-wrap {
        width: 100%;
        background: var(--primary);
        overflow: hidden;
        padding: 13px 0;
        position: relative;
    }

    .ticker-wrap::before,
    .ticker-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        width: 80px;
        height: 100%;
        z-index: 2;
    }

    .ticker-wrap::before {
        left: 0;
        background: linear-gradient(to right, var(--primary), transparent);
    }

    .ticker-wrap::after {
        right: 0;
        background: linear-gradient(to left, var(--primary), transparent);
    }

    .ticker-track {
        display: flex;
        width: max-content;
        animation: ticker-scroll 30s linear infinite;
    }

    .ticker-track:hover {
        animation-play-state: paused;
    }

    .ticker-item {
        display: flex;
        align-items: center;
        gap: 0;
        white-space: nowrap;
        padding: 0 8px;
    }

    .ticker-item span {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.92);
    }

    .ticker-dot {
        display: inline-block;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.45);
        margin: 0 18px;
        flex-shrink: 0;
    }

    @keyframes ticker-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* === DECORATIVE ICON ELEMENTS === */
    .deco-icon {
        position: absolute;
        background-image: url('https://kenmorechiropractic.com.au/wp-content/uploads/2026/06/cropped-c2f8afccc_648FC8E8-6CF0-4723-8871-F1A231A09025-1.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        pointer-events: none;
        z-index: 0;
    }

    /* Hero decorations */
    .deco-hero-1 {
        width: 340px;
        height: 340px;
        top: -60px;
        right: -80px;
        opacity: 0.12;
    }

    .deco-hero-2 {
        width: 180px;
        height: 180px;
        bottom: 20px;
        left: -40px;
        opacity: 0.10;
    }

    /* About section decoration */
    .deco-about {
        width: 200px;
        height: 200px;
        bottom: -60px;
        right: -60px;
        opacity: 0.10;
    }

    /* Services dark section decoration */
    .deco-services-1 {
        width: 300px;
        height: 300px;
        top: -80px;
        left: -60px;
        opacity: 0.14;
    }

    .deco-services-2 {
        width: 160px;
        height: 160px;
        bottom: 20px;
        right: 40px;
        opacity: 0.10;
    }

    /* Team section decoration */
    .deco-team {
        width: 220px;
        height: 220px;
        top: 40px;
        right: -60px;
        opacity: 0.08;
    }

    /* FAQ decoration */
    .deco-faq {
        width: 260px;
        height: 260px;
        bottom: -60px;
        left: -60px;
        opacity: 0.14;
    }

    /* Contact decoration */
    .deco-contact {
        width: 180px;
        height: 180px;
        top: 20px;
        right: -40px;
        opacity: 0.15;
    }

    /* Footer decoration */
    .deco-footer {
        width: 240px;
        height: 240px;
        top: 20px;
        right: 40px;
        opacity: 0.12;
    }

    /* Ticker section small icons */
    .ticker-icon {
        display: inline-block;
        width: 18px;
        height: 18px;
        background-image: url('https://kenmorechiropractic.com.au/wp-content/uploads/2026/06/cropped-c2f8afccc_648FC8E8-6CF0-4723-8871-F1A231A09025-1.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        vertical-align: middle;
        margin: 0 10px;
        opacity: 0.7;
        filter: brightness(10);
    }

    /* ===== 8-PERSON TEAM GRID ===== */
    .team-grid-8 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 32px;
        max-width: 1100px;
        margin: 0 auto;
    }

    @media (max-width: 900px) {
        .team-grid-8 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 540px) {
        .team-grid-8 {
            grid-template-columns: 1fr;
        }
    }

    .team-card-8 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-photo-circle {
        width: 216px;
        height: 216px;
        margin: 0 auto 18px;
        background: transparent;
        flex-shrink: 0;
    }

    .team-img-8 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    .team-info-8 {
        flex: 1;
    }

    .team-name-8 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        color: var(--primary-dark);
        margin: 0 0 4px;
    }

    .team-role-8 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 0.78rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--primary);
        margin: 0 0 10px;
    }

    .team-bio-8 {
        font-size: 0.88rem;
        color: var(--secondary);
        line-height: 1.6;
        margin: 0;
        text-align: center;
    }

    /* Service card text left-aligned */
    .service-card h3,
    .service-card p {
        text-align: left;
    }

    /* Service cards sit on white backgrounds even inside the dark section,
           so their text must stay dark grey, not white. */
    .section-dark .service-card h3 {
        color: #454C4C;
    }

    .section-dark .service-card p {
        color: #454C4C;
    }
    

    /* New Patients page specific */
    .section-divider {
        display: none;
    }

    .np-hero {
        background: var(--bg-white);
        padding: 110px 0 110px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .np-hero h1 {
        font-size: 4rem;
        line-height: 1.15;
        margin-bottom: 24px;
        animation: fadeInUp 1.2s ease both;
    }

    .np-hero h1 span {
        color: var(--primary);
        font-size: 1.4em;
        display: block;
    }

    .np-hero .section-label {
        margin-bottom: 18px;
        display: inline-block;
        color: #31acaf;
    }

    .np-hero p.np-intro {
        max-width: 720px;
        margin: 0 auto 34px auto;
        color: var(--secondary);
        font-size: 1.1rem;
    }

    .np-hero-cta {
        justify-content: center;
        margin-top: 0;
    }

    .np-hero .container,
    .np-welcome .container,
    .np-visit .container,
    .np-cta-band .container,
    .np-contact-main .container {
        position: relative;
        z-index: 1;
    }

    .np-welcome,
    .np-visit,
    .np-cta-band,
    .np-contact-main {
        position: relative;
        overflow: hidden;
    }

    .deco-np-hero-1 {
        width: 320px;
        height: 320px;
        top: -70px;
        right: -70px;
        opacity: 0.11;
    }

    .deco-np-hero-2 {
        width: 180px;
        height: 180px;
        bottom: 22px;
        left: -42px;
        opacity: 0.09;
    }

    .deco-np-welcome {
        width: 220px;
        height: 220px;
        bottom: -76px;
        right: -54px;
        opacity: 0.08;
    }

    .deco-np-visit-one {
        width: 210px;
        height: 210px;
        top: 34px;
        left: -70px;
        opacity: 0.075;
    }

    .deco-np-visit-two {
        width: 220px;
        height: 220px;
        top: 44px;
        right: -82px;
        bottom: auto;
        opacity: 0.06;
    }

    .deco-np-cta-1 {
        width: 280px;
        height: 280px;
        top: 50%;
        right: -70px;
        transform: translateY(-50%);
        opacity: 0.12;
        filter: brightness(0) invert(1);
    }

    .deco-np-cta-2 {
        width: 210px;
        height: 210px;
        bottom: -56px;
        left: -40px;
        opacity: 0.10;
        filter: brightness(0) invert(1);
    }

    .deco-np-contact {
        width: 210px;
        height: 210px;
        top: 30px;
        right: -50px;
        opacity: 0.08;
    }

    .np-welcome {
        padding: var(--section-padding) 0;
        background: var(--bg-offwhite);
    }

    .np-welcome-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    .np-welcome-image {
        border-radius: var(--radius);
        overflow: hidden;
        border: 3px solid var(--primary);
        box-shadow: var(--shadow-soft);
    }

    .np-welcome-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .np-welcome-text p {
        color: #454C4C;
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 22px;
        text-align: justify;
    }

    .np-welcome-text p:last-child {
        margin-bottom: 0;
    }

    .np-welcome-text h2 {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .np-steps {
        padding: var(--section-padding) 0;
        background: var(--bg-white);
    }

    .np-expect-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .np-expect-card {
        background: var(--bg-white);
        border: 3px solid var(--primary);
        border-radius: var(--radius);
        padding: 40px;
        box-shadow: var(--shadow-soft);
    }

    .np-expect-card .step-number {
        display: inline-block;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        color: var(--primary);
        font-size: 0.95rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .np-expect-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .np-expect-card p {
        color: #454C4C;
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 18px;
        text-align: justify;
    }

    .np-expect-card p:last-child {
        margin-bottom: 0;
    }

    /* Individual visit sections with alternating image/text */
    .np-visit {
        padding: var(--section-padding) 0;
    }

    .np-visit-white {
        background: var(--bg-white);
    }

    .np-visit-tint {
        background: var(--bg-offwhite);
        padding-bottom: 110px;
    }

    .np-visit-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    .np-visit-image {
        border-radius: var(--radius);
        overflow: hidden;
        border: 3px solid var(--primary);
        box-shadow: var(--shadow-soft);
    }

    .np-visit-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .np-visit-text .step-number {
        display: inline-block;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        color: var(--primary);
        font-size: 0.95rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .np-visit-text h2 {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .np-visit-text p {
        color: #454C4C;
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: justify;
    }

    .np-visit-text p:last-child {
        margin-bottom: 0;
    }

    /* On the second visit, place the image after the text on desktop */
    .np-visit-reverse .np-visit-image {
        order: 2;
    }

    .np-visit-reverse .np-visit-text {
        order: 1;
    }

    /* CTA connects to Visit Two by using extra Visit Two padding, not a separate top margin. */
    .np-cta-band {
        margin-top: 0;
        padding: 120px 0;
        min-height: 360px;
        display: flex;
        align-items: center;
        background:
            radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.08) 26%, transparent 48%),
            linear-gradient(135deg, #31acaf 0%, #278f91 100%);
        text-align: center;
        scroll-margin-top: 100px;
    }

    .np-cta-band h2 {
        color: #fff;
        font-size: 2.45rem;
        margin-bottom: 16px;
    }

    .np-cta-band p {
        color: rgba(255, 255, 255, 0.92);
        max-width: 680px;
        margin: 0 auto 34px auto;
        font-size: 1.05rem;
    }

    .np-cta-band .hero-buttons {
        justify-content: center;
    }

    .np-cta-band .btn-outline {
        border-color: #fff;
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
    }

    .np-cta-band .btn-outline:hover {
        background: #fff;
        color: var(--primary);
    }

    @media (max-width: 768px) {
        .np-welcome-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .np-hero h1 {
            font-size: 2.4rem;
        }

        .np-hero {
            padding: 120px 0 80px 0;
        }

        .np-expect-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .np-expect-card {
            padding: 28px;
        }

        .np-visit-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .np-visit-reverse .np-visit-image {
            order: 1;
        }

        .np-visit-reverse .np-visit-text {
            order: 2;
        }

        .np-visit-text h2 {
            font-size: 1.8rem;
        }

        .np-visit-tint {
            padding-bottom: 76px;
        }

        .np-cta-band {
            margin-top: 0;
            padding: 90px 0;
            min-height: 320px;
        }

        .np-cta-band h2 {
            font-size: 2rem;
        }

        .deco-np-hero-1 {
            width: 210px;
            height: 210px;
            top: -60px;
            right: -70px;
        }

        .deco-np-hero-2 {
            width: 130px;
            height: 130px;
            bottom: 20px;
            left: -52px;
        }

        .deco-np-welcome,
        .deco-np-visit-one,
        .deco-np-visit-two,
        .deco-np-contact {
            width: 150px;
            height: 150px;
        }
    }

    /* FINAL NP SPACING FIX
           Purpose: remove the dead/empty-looking space in the intro and visit sections,
           keep Visit Two visually connected to the CTA, and place decorative logos where
           they add texture without colliding with the copy or buttons. */

    .np-welcome,
    .np-visit {
        padding: 82px 0;
    }

    .np-welcome-grid,
    .np-visit-grid {
        gap: 52px;
        align-items: center;
    }

    .np-welcome-text p,
    .np-visit-text p {
        margin-bottom: 16px;
    }

    .np-welcome-text h2,
    .np-visit-text h2 {
        margin-bottom: 18px;
    }

    .np-visit-tint {
        background: var(--bg-offwhite);
        padding-bottom: 82px;
        margin-bottom: 0;
    }

    .np-cta-band {
        margin-top: 0;
        border-top: none;
        padding: 112px 0;
        min-height: 340px;
        position: relative;
    }

    .np-contact-main {
        padding-top: 100px;
    }

    .deco-np-welcome {
        width: 190px;
        height: 190px;
        right: -68px;
        bottom: 18px;
        opacity: 0.045;
    }

    .deco-np-visit-one {
        width: 180px;
        height: 180px;
        left: auto;
        right: -72px;
        top: auto;
        bottom: 18px;
        opacity: 0.045;
    }

    .deco-np-visit-two {
        width: 190px;
        height: 190px;
        right: -76px;
        top: 34px;
        bottom: auto;
        opacity: 0.045;
        transform: none;
    }

    .deco-np-cta-1 {
        width: 245px;
        height: 245px;
        right: -62px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.10;
        filter: brightness(0) invert(1);
    }

    .deco-np-cta-2 {
        width: 175px;
        height: 175px;
        left: -70px;
        bottom: -42px;
        opacity: 0.06;
        filter: brightness(0) invert(1);
    }

    .deco-np-contact {
        width: 180px;
        height: 180px;
        right: -72px;
        top: 48px;
        opacity: 0.045;
    }

    @media (max-width: 768px) {

        .np-welcome,
        .np-visit {
            padding: 66px 0;
        }

        .np-visit-tint {
            padding-bottom: 66px;
        }

        .np-cta-band {
            padding: 82px 0;
            min-height: 300px;
        }

        .np-contact-main {
            padding-top: 76px;
        }

        .deco-np-welcome,
        .deco-np-visit-one,
        .deco-np-visit-two,
        .deco-np-contact {
            width: 130px;
            height: 130px;
            opacity: 0.04;
        }

        .deco-np-cta-1 {
            width: 170px;
            height: 170px;
            right: -72px;
            opacity: 0.08;
        }

        .deco-np-cta-2 {
            display: none;
        }
    }/* End custom CSS */