:root {
    --green-dark: #00574d;
    --green: #00796b;
    --green-medium: #159b89;
    --turquoise: #45c7b7;
    --turquoise-light: #7edfd3;
    --cream: #f7faf9;
    --light: #f3f8f7;
    --text: #24302f;
    --muted: #66716f;
    --white: #ffffff;
    --border: #dce9e6;
    --shadow: 0 18px 50px rgba(0, 87, 77, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: #ffffff;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(0, 87, 77, 0.08);
}

.header-container {
    width: min(1280px, calc(100% - 42px));
    min-height: 118px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo-container {
    flex: 0 0 auto;
}

.logo-container a {
    display: block;
}

.logo-container img {
    width: 430px;
    height: 108px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    color: var(--green-dark);
    font-weight: 700;
}

.main-nav a {
    position: relative;
    padding: 45px 0;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 33px;
    left: 0;
    height: 3px;
    border-radius: 5px;
    background: var(--turquoise);
    content: "";
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-call-button {
    padding: 13px 23px !important;
    border-radius: 8px;
    background: var(--green-dark);
    color: #ffffff !important;
    box-shadow: 0 8px 22px rgba(0, 87, 77, 0.20);
}

.header-call-button::after {
    display: none;
}

.mobile-menu-button {
    display: none;
    width: 46px;
    height: 42px;
    flex: 0 0 46px;
    border: 0;
    border-radius: 8px;
    background: var(--green-dark);
    cursor: pointer;
}

.menu-line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: var(--cream);
}

.hero-background {
    position: absolute;
    inset: 0;
    background-color: var(--cream);
    background-image: url("../images/back.png");
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(247, 250, 249, 1) 0%, rgba(247, 250, 249, 0.98) 30%, rgba(247, 250, 249, 0.90) 43%, rgba(247, 250, 249, 0.56) 56%, rgba(247, 250, 249, 0.16) 69%, rgba(247, 250, 249, 0) 80%);
}

.hero-slider {
    position: relative;
    z-index: 3;
    min-height: 720px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-content {
    width: min(1180px, calc(100% - 42px));
    margin: auto;
}

.hero-copy {
    width: 58%;
    max-width: 690px;
}

.hero-small-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-small-title::before {
    width: 36px;
    height: 3px;
    border-radius: 5px;
    background: var(--turquoise);
    content: "";
}

.hero-copy h1 {
    max-width: 690px;
    margin-bottom: 24px;
    color: #111918;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.02;
    text-wrap: balance;
}

.hero-copy h1 span {
    display: block;
    margin-top: 10px;
    color: var(--green-dark);
    font-size: 0.62em;
    letter-spacing: -1.4px;
    line-height: 1.08;
    text-wrap: balance;
}

.hero-copy p {
    max-width: 625px;
    margin-bottom: 32px;
    color: #52605e;
    font-size: 18px;
    line-height: 1.72;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-button,
.section-button,
.light-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 8px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.primary-button,
.section-button {
    background: var(--green-dark);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 87, 77, 0.20);
}

.secondary-button {
    border: 1px solid #b9ceca;
    background: rgba(255, 255, 255, 0.94);
    color: var(--green-dark);
}

.hero-button:hover,
.section-button:hover,
.light-button:hover,
.cta-button:hover {
    transform: translateY(-3px);
}

.hero-dots {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 28px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #aabdb9;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-dot.active {
    width: 30px;
    border-radius: 20px;
    background: var(--turquoise);
}


/* =========================================================
   INFORMATION STRIP
========================================================= */

.information-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
    background: #ffffff;
}

.information-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 132px;
    padding: 22px;
    border-right: 1px solid var(--border);
}

.information-box:last-child {
    border-right: 0;
}

.information-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 16px;
    background: #e7f8f5;
    color: var(--green);
    font-size: 25px;
    font-weight: 900;
}

.information-box h3 {
    margin-bottom: 4px;
    color: var(--green-dark);
    font-size: 16px;
}

.information-box p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   GENERAL
========================================================= */

.section-container {
    width: min(1180px, calc(100% - 42px));
    margin: auto;
}

.section-label {
    margin-bottom: 15px;
    color: var(--green-medium);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.parts-content h2 {
    color: #111918;
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -2px;
    line-height: 1.08;
}

.section-heading h2 span,
.about-content h2 span {
    color: var(--green);
}

.section-heading p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 17px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-section .section-container {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
    gap: 80px;
}

.about-content p {
    max-width: 650px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
}

.about-list {
    margin: 27px 0 30px;
    padding: 0;
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 13px 0;
    font-weight: 700;
}

.about-list li::before {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border-radius: 50%;
    background: var(--turquoise);
    color: #ffffff;
    content: "✓";
    font-size: 14px;
}

.about-card {
    position: relative;
    overflow: hidden;
    padding: 50px 38px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #f3f8f7;
    box-shadow: var(--shadow);
    text-align: center;
}

.about-card::after {
    display: none;
}

.about-card-logo {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 25px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
}

.about-card-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-card h3 {
    margin-bottom: 10px;
    color: var(--green-dark);
    font-size: 25px;
}

.about-card p {
    color: var(--muted);
}

.location-badge {
    display: inline-block;
    margin-top: 24px;
    padding: 9px 16px;
    border: 1px solid #b8d8d2;
    border-radius: 30px;
    background: #ffffff;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   SERVICES
========================================================= */

.services-preview {
    padding: 100px 0;
    background: #f5f9f8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 455px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 87, 77, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 87, 77, 0.14);
}

.service-image {
    width: 100%;
    height: 205px;
    object-fit: cover;
    object-position: center;
    border-bottom: 4px solid var(--turquoise);
}

.service-card h3 {
    margin: 25px 28px 10px;
    color: var(--green-dark);
    font-size: 21px;
    line-height: 1.25;
}

.service-card p {
    margin: 0 28px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.service-card a {
    display: inline-block;
    margin: 0 28px 28px;
    color: var(--green);
    font-weight: 800;
}

.service-card a:hover {
    color: var(--green-dark);
}


/* =========================================================
   YOUR HEALTH MATTERS
========================================================= */

.parts-section {
    padding: 95px 0;
    background: #00574d;
}

.parts-container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.section-label-light {
    color: #8de2d7;
}

.parts-content h2 {
    color: #ffffff;
}

.parts-content h2 span {
    display: block;
    color: #8de2d7;
}

.parts-content p {
    max-width: 620px;
    margin: 24px 0 31px;
    color: #e1f0ed;
    font-size: 17px;
}

.light-button {
    background: #ffffff;
    color: var(--green-dark);
}

.parts-steps {
    display: grid;
    gap: 18px;
}

.parts-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--green-dark);
    font-weight: 900;
}

.parts-step h3 {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 17px;
}

.parts-step p {
    color: #dcefeb;
    font-size: 14px;
}


/* =========================================================
   CALL TO ACTION
========================================================= */

.call-to-action {
    padding: 62px 0;
    background: #f3f8f7;
    border-bottom: 1px solid var(--border);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.cta-container h2 {
    margin-bottom: 8px;
    color: var(--green-dark);
    font-size: clamp(28px, 4vw, 42px);
}

.cta-container p {
    color: var(--muted);
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.cta-button {
    background: var(--green-dark);
    color: #ffffff;
}

.cta-button-outline {
    border: 1px solid var(--green-dark);
    background: #ffffff;
    color: var(--green-dark);
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    padding: 65px 0 0;
    background: #00483f;
    color: #c9dfdb;
}

.footer-container {
    width: min(1180px, calc(100% - 42px));
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.65fr 0.85fr 1.35fr;
    gap: 45px;
}

.footer-column {
    min-width: 0;
}

.footer-brand img {
    width: 260px;
    max-height: 110px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 18px;
    padding: 10px;
    border-radius: 10px;
    background: #ffffff;
}

.footer-brand p {
    max-width: 330px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column a {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 9px;
    color: #c9dfdb;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column p {
    margin-bottom: 14px;
    line-height: 1.8;
}

.footer-column:last-child a {
    white-space: nowrap;
}

.footer-bottom {
    width: min(1180px, calc(100% - 42px));
    margin: 50px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #a9cbc5;
    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1120px) {

    .header-container {
        width: min(1180px, calc(100% - 34px));
        min-height: 104px;
    }

    .logo-container img {
        width: 350px;
        height: 94px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        padding: 38px 0;
    }

    .information-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .information-box:nth-child(2) {
        border-right: 0;
    }

    .information-box:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-column:last-child a {
        white-space: normal;
        overflow-wrap: anywhere;
    }

}


/* =========================================================
   TABLET / MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

    .header-container {
        position: relative;
        min-height: 88px;
    }

    .logo-container img {
        width: 300px;
        height: 80px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 88px;
        right: -17px;
        left: -17px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 17px 22px;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: #ffffff;
        box-shadow: 0 15px 30px rgba(0, 87, 77, 0.14);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 5px;
        border-bottom: 1px solid #edf3f2;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .header-call-button {
        margin-top: 10px;
        padding: 13px 20px !important;
        text-align: center;
    }

    .hero-section,
    .hero-slider {
        min-height: 690px;
    }

    .hero-background {
        background-position: right center;
        background-size: auto 100%;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(247, 250, 249, 0.99) 0%, rgba(247, 250, 249, 0.97) 50%, rgba(247, 250, 249, 0.67) 72%, rgba(247, 250, 249, 0.22) 100%);
    }

    .hero-copy {
        width: 70%;
    }

    .hero-copy h1 {
        font-size: 52px;
    }

    .about-section .section-container,
    .parts-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .cta-container {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .header-container,
    .hero-content,
    .section-container,
    .footer-container,
    .footer-bottom {
        width: calc(100% - 30px);
    }

    .header-container {
        min-height: 82px;
        gap: 8px;
    }

    .logo-container {
        min-width: 0;
        flex: 1 1 auto;
    }

    .logo-container img {
        width: 250px;
        max-width: 100%;
        height: 74px;
    }

    .main-nav {
        top: 82px;
        right: -15px;
        left: -15px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .hero-section,
    .hero-slider {
        min-height: 700px;
    }

    .hero-background {
        background-position: 72% center;
        background-size: auto 100%;
    }

    .hero-overlay {
        background: rgba(247, 250, 249, 0.90);
    }

    .hero-slide {
        align-items: center;
    }

    .hero-copy {
        width: 100%;
        max-width: none;
        padding: 30px 0 55px;
    }

    .hero-small-title {
        margin-bottom: 17px;
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .hero-small-title::before {
        width: 25px;
    }

    .hero-copy h1 {
        margin-bottom: 20px;
        font-size: clamp(38px, 11vw, 46px);
        letter-spacing: -2px;
        line-height: 1.04;
    }

    .hero-copy h1 span {
        margin-top: 8px;
        font-size: 0.70em;
        letter-spacing: -1px;
    }

    .hero-copy p {
        margin-bottom: 26px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 11px;
    }

    .hero-button,
    .section-button,
    .light-button,
    .cta-button {
        width: 100%;
        min-height: 50px;
        padding-right: 18px;
        padding-left: 18px;
        text-align: center;
    }

    .hero-dots {
        bottom: 20px;
    }

    .information-strip {
        grid-template-columns: 1fr;
    }

    .information-box,
    .information-box:nth-child(2) {
        justify-content: flex-start;
        min-height: 105px;
        padding: 18px 20px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .information-box:last-child {
        border-bottom: 0;
    }

    .information-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 13px;
        font-size: 22px;
    }

    .about-section,
    .services-preview,
    .parts-section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .about-content h2,
    .parts-content h2 {
        font-size: 34px;
        letter-spacing: -1.3px;
        line-height: 1.1;
    }

    .section-heading p,
    .about-content p,
    .parts-content p {
        font-size: 15px;
    }

    .about-section .section-container,
    .parts-container {
        gap: 38px;
    }

    .about-card {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .about-card-logo {
        padding: 12px;
    }

    .about-card h3 {
        font-size: 22px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        min-height: 0;
        border-radius: 15px;
    }

    .service-image {
        height: 220px;
    }

    .service-card h3 {
        margin: 21px 22px 9px;
        font-size: 20px;
    }

    .service-card p {
        margin: 0 22px 17px;
        font-size: 14px;
    }

    .service-card a {
        margin: 0 22px 23px;
    }

    .parts-step {
        gap: 14px;
        padding: 18px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .call-to-action {
        padding: 50px 0;
    }

    .cta-container {
        gap: 25px;
    }

    .cta-container h2 {
        font-size: 31px;
        line-height: 1.15;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .main-footer {
        padding-top: 50px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand img {
        width: min(260px, 100%);
        margin-right: auto;
        margin-left: auto;
    }

    .footer-brand p {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .footer-column:not(.footer-brand) {
        text-align: center;
    }

    .footer-column a {
        margin-right: auto;
        margin-left: auto;
    }

    .footer-column:last-child a {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .footer-bottom {
        margin-top: 38px;
        padding: 22px 0;
        align-items: center;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .header-container {
        width: calc(100% - 24px);
    }

    .logo-container img {
        width: 220px;
        max-width: 100%;
        height: 68px;
    }

    .mobile-menu-button {
        width: 43px;
        height: 40px;
        flex-basis: 43px;
    }

    .main-nav {
        right: -12px;
        left: -12px;
    }

    .hero-copy h1 {
        font-size: 37px;
    }

    .hero-section,
    .hero-slider {
        min-height: 720px;
    }

    .hero-background {
        background-position: 72% center;
        background-size: auto 100%;
    }

    .section-heading h2,
    .about-content h2,
    .parts-content h2 {
        font-size: 31px;
    }

    .service-image {
        height: 200px;
    }

}