/* =========================================================
   ARABIAN HOME HEALTH
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   1. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/* =========================================================
   2. GLOBAL VARIABLES
========================================================= */

:root {

    /* Brand Colors */
    --primary: #104D4D;
    --primary-dark: #BFE3D8;
    --secondary: #D8C8B8;

    /* Neutral Colors */
    --cream: #FAF5EF;
    --beige: #F3EAE1;
    --white: #FFFFFF;
    --black: #222222;
    --text: #444444;
    --light-text: #777777;

    /* Layout */
    --container-width: 1200px;

    /* Spacing */
    --section-padding: 100px;

}


/* =========================================================
   3. TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Tenor Sans', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: 38px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 12px;
}

p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: var(--text);
}


/* =========================================================
   4. CONTAINER
========================================================= */

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}


/* =========================================================
   5. EYEBROW TEXT
========================================================= */

.eyebrow {
    display: inline-block;

    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--primary);

    margin-bottom: 20px;
}


/* =========================================================
   6. BUTTONS
========================================================= */

.btn {
    display: inline-block;

    padding: 14px 28px;

    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
	border-radius: 30px;

    letter-spacing: 0.5px;

    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
	border-radius: 30px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
	color: var(--primary);
}

.btn-secondary {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* =========================================================
   7. HEADER
========================================================= */

header {
    width: 100%;

    background-color: rgba(255, 255, 255, 0.96);
	
	position: sticky;
    top: 0;

    z-index: 1000;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(50px);
}

header .container {
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 100px;
}


/* =========================================================
   8. NAVIGATION
========================================================= */

nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--black);

    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

/* =========================================================
   HERO AREA
========================================================= */

.hero-area {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    background-color: #000;
}


/* =========================================================
   HERO VIDEO
========================================================= */

.hero-area .hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


/* =========================================================
   VIDEO OVERLAY
========================================================= */

.hero-area .hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(10, 40, 40, 0.72) 0%,
            rgba(10, 40, 40, 0.50) 40%,
            rgba(10, 40, 40, 0.18) 100%
        );
}


/* =========================================================
   HEADER OVER VIDEO
========================================================= */

/* =========================================================
   FLOATING HEADER - TOP STATE
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 20px 0;

    background: transparent;

    transition:
        padding 0.35s ease,
        background 0.35s ease;
}


/* Navigation container */

.nav-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 75px;

    padding: 0;

    /* REMOVE THE WHITE BACKGROUND */
    background: transparent;

    border: none;
    border-radius: 0;

    box-shadow: none;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    transition:
        min-height 0.35s ease,
        padding 0.35s ease,
        width 0.35s ease,
        background 0.35s ease,
        border-radius 0.35s ease,
        box-shadow 0.35s ease;
		
}


/* =========================================================
   LOGO
========================================================= */

.site-header .logo img {
    width: 175px;

    transition: width 0.35s ease;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.site-header nav ul {
    display: flex;
    align-items: center;

    gap: 35px;
}

.site-header nav a {
    font-family: 'Lato', sans-serif;

    font-size: 14px;
    font-weight: 400;

    /* WHITE ON VIDEO */
    color: #ffffff;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.site-header nav a:hover {
    opacity: 0.65;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.site-header .nav-button {
    padding: 13px 24px;

    background-color: #ffffff;

    color: #0F5958;

    border-radius: 20px;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.site-header .nav-button:hover {
    background-color: #0F5958;
    color: #ffffff;
}


/* =========================================================
   AFTER SCROLL
========================================================= */

.site-header.scrolled {
    padding: 10px 0;
}


/* Floating white navigation */

.site-header.scrolled .nav-container {
    width: 86%;
    max-width: 1100px;

    min-height: 64px;

    padding: 7px 22px;

    background: rgba(255, 255, 255, 0.96);

    border-radius: 50px;

    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.10);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


/* Smaller logo */

.site-header.scrolled .logo img {
    width: 140px;
}


/* Dark navigation links */

.site-header.scrolled nav a {
    color: #0F5958;
}

.site-header.scrolled nav a:hover {
    color: var(--primary);
    opacity: 1;
}


/* Smaller button */

.site-header.scrolled .nav-button {
    padding: 10px 20px;

    background-color: #0F5958;

    color: #ffffff;
}

.site-header.scrolled .nav-button:hover {
    background-color: var(--primary-dark);
}


/* LOGO */

.hero-area .logo img {
    width: 180px;
}


/* NAVIGATION */

.hero-area nav a {
    color: #ffffff;
}

.hero-area nav a:hover {
    color: #ffffff;
    opacity: 0.75;
}


/* HEADER BUTTON */

.hero-area header .btn-primary {
    background-color: #ffffff;

    color: var(--primary);
}

.hero-area header .btn-primary:hover {
    background-color: var(--primary);

    color: #ffffff;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content-wrapper {
    position: relative;

    z-index: 5;

    flex: 1;

    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;

    padding: 70px 0 100px;
}


/* EYEBROW */

.hero-area .eyebrow {
    color: #ffffff;

    margin-bottom: 25px;
}


/* =========================================================
   HERO TEXT CAROUSEL
========================================================= */

.hero-carousel {
    position: relative;

    min-height: 220px;

    max-width: 700px;
}

.hero-slide {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;
}


/* HERO HEADING */

.hero-slide h1 {
    color: #ffffff;

    font-size: 68px;

    line-height: 1;

    margin-bottom: 10px;
}


/* HERO DESCRIPTION */

.hero-slide p {
    max-width: 560px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 0;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-area .hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 100px;
}


/* SECONDARY BUTTON */

.hero-area .btn-secondary {
    border-color: rgba(255, 255, 255, 0.75);
	border-radius: 30px;

    color: #ffffff;
}

.hero-area .btn-secondary:hover {
    background-color: #ffffff;

    border-color: #ffffff;

    color: var(--primary);
}


/* =========================================================
   HERO INDICATORS
========================================================= */

.hero-indicators {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 35px;
}

.hero-dot {
    width: 28px;
    height: 2px;

    padding: 0;

    border: none;

    background-color: rgba(255, 255, 255, 0.40);

    cursor: pointer;

    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 50px;

    background-color: #ffffff;
}

/* =========================================================
   10. INTRODUCTION
========================================================= */

.intro {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.section-heading {
    max-width: 750px;
}

.section-heading h2 {
    margin-bottom: 25px;
}

.section-heading p {
    max-width: 650px;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   11. SERVICES
========================================================= */

.services {
    padding: var(--section-padding) 0;
    background-color: var(--cream);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 50px;
}

.service-card {
    background-color: var(--white);

    overflow: hidden;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 240px;

    object-fit: cover;
}

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 20px;
}

.service-card a {
    font-size: 13px;
    font-weight: 700;

    color: var(--primary);

    letter-spacing: 0.5px;
}

.services-button {
    margin-top: 50px;
}


/* =========================================================
   12. WHY US
========================================================= */

.why-us {
    padding: var(--section-padding) 0;

    background-color: var(--white);
}

.why-us-content {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: start;
}

.why-us-content > div:first-child p {
    max-width: 500px;

    margin-top: 25px;

    line-height: 1.8;
}

.features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 50px 40px;
}

.feature h3 {
    font-family: 'Lato', sans-serif;

    font-size: 14px;
    font-weight: 700;

    color: var(--primary);

    margin-bottom: 15px;
}

.feature h4 {
    margin-bottom: 10px;
}

.feature p {
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   13. CTA
========================================================= */

.cta {
    padding: 110px 0;

    text-align: center;

    background-color: var(--cream);
}

.cta .container {
    max-width: 800px;
}

.cta h2 {
    margin-bottom: 25px;
}

.cta p {
    max-width: 600px;

    margin: 0 auto 35px;

    font-size: 17px;
    line-height: 1.8;
}

/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 70px 0 25px;
    background-color: #104d4d;
    color: var(--white);
}

.footer-content {
    display: grid;

    grid-template-columns: 1.3fr 0.9fr 1.4fr 1.2fr;

    gap: 60px;

    padding-bottom: 50px;

    align-items: start;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-content img {
    width: 170px;
    margin-bottom: 20px;
}

.footer-content p {
    color: #D5DEDD;
    font-size: 14px;
}

.footer-content h4 {
    color: var(--white);

    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;

    margin-bottom: 22px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-content a {
    display: block;

    color: #D5DEDD;

    font-size: 14px;

    margin-bottom: 12px;

    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--white);
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.social-icons {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 0;

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: var(--white);

    font-size: 16px;

    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}


/* =========================================================
   WORKING HOURS
========================================================= */

.footer-hours {
    width: 100%;
    max-width: 320px;
}

.hours-row {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 10px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    font-size: 14px;
}

.hours-row span:first-child {
    color: #D5DEDD;
}

.hours-row span:last-child {
    color: var(--white);

    text-align: right;

    white-space: nowrap;
}

.hours-note {
    margin-top: 18px;

    font-size: 13px !important;

    color: #AFC1C0 !important;

    line-height: 1.6;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    font-size: 13px;

    color: #AFC1C0;
}


/* =========================================================
   FOOTER TABLET
========================================================= */

@media (max-width: 1000px) {

    .footer-content {
        grid-template-columns: repeat(2, 1fr);

        gap: 50px 40px;
    }

}


/* =========================================================
   FOOTER MOBILE
========================================================= */

@media (max-width: 700px) {

    .footer-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-hours {
        max-width: 100%;
    }

}


/* =========================================================
   SOCIAL MEDIA ICONS
========================================================= */

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
	margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: #ffffff;

    font-size: 16px;

    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}


/* =========================================================
   15. TABLET
========================================================= */

@media (max-width: 1000px) {

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 40px;
    }

    nav ul {
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-content {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


/* =========================================================
   16. MOBILE
========================================================= */

@media (max-width: 700px) {

    :root {
        --section-padding: 70px;
    }

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 34px;
    }

    .container {
        width: 88%;
    }


    /* Header */

    header .container {
        min-height: 75px;
    }

    .logo img {
        width: 140px;
    }

    nav {
        display: none;
    }

    header .btn {
        display: none;
    }


    /* Hero */

   .hero {
        min-height: 650px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(250, 245, 239, 0.92) 0%,
                rgba(250, 245, 239, 0.65) 100%
            );
    }

    .hero-content {
        max-width: 100%;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }


    /* Services */

    .services-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .service-card img {
        height: 250px;
    }


    /* Why Us */

    .features {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* CTA */

    .cta {
        padding: 80px 0;
    }


    /* Footer */

    .footer-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}



/* =========================================
   CONTACT US
========================================= */

.contact-section {
    background: #faf0e6;
    padding: 110px 7%;
    width: 100%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-eyebrow {
    font-family: "Lato", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    margin-bottom: 18px;

    color: #8b7665;
}

.contact-info h2 {
    font-family: "Tenor Sans", sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;

    color: #2f2b28;

    margin: 0 0 25px;
}

.contact-intro {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    line-height: 1.8;

    color: #6d625b;

    max-width: 520px;

    margin-bottom: 40px;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;

    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;

    gap: 18px;
}

.contact-icon {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8b7665;

    flex-shrink: 0;
}

.contact-icon i {
    font-size: 16px;
}

.contact-item span {
    display: block;

    font-family: "Lato", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #9a8b80;

    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    font-family: "Lato", sans-serif;
    font-size: 15px;

    color: #403a35;

    text-decoration: none;

    margin: 0;

    transition: 0.3s ease;
}

.contact-item a:hover {
    color: #8b7665;
}


/* =========================================
   BOOKING BUTTON
========================================= */

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    background: #403a35;
    color: #ffffff;

    padding: 15px 25px;

    font-family: "Lato", sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;

    text-decoration: none;

    transition: 0.3s ease;
}

.contact-button i {
    font-size: 12px;

    transition: transform 0.3s ease;
}

.contact-button:hover {
    background: #8b7665;
    color: #ffffff;
}

.contact-button:hover i {
    transform: translateX(5px);
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-wrapper {
    background: #ffffff;

    padding: 45px;

    box-shadow: 0 15px 45px rgba(60, 45, 35, 0.08);
}

.contact-form-wrapper h3 {
    font-family: "Tenor Sans", sans-serif;
    font-size: 30px;
    font-weight: 400;

    color: #2f2b28;

    margin: 0 0 10px;
}

.contact-form-wrapper > p {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    line-height: 1.6;

    color: #81766e;

    margin: 0 0 30px;
}


/* =========================================
   FORM ROW
========================================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


/* =========================================
   FORM GROUP
========================================= */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-weight: 600;

    color: #514941;

    margin-bottom: 8px;
}


/* =========================================
   INPUTS
========================================= */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px 14px;

    background: #faf8f5;

    border: 1px solid #e8e0d9;

    border-radius: 0;

    outline: none;

    font-family: "Lato", sans-serif;
    font-size: 14px;

    color: #403a35;

    transition: 0.3s ease;

    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa09a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #9a8878;
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.form-submit {
    width: 100%;

    padding: 16px 20px;

    border: none;

    background: #403a35;
    color: #ffffff;

    font-family: "Lato", sans-serif;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: 0.3s ease;
}

.form-submit:hover {
    background: #8b7665;
}

.form-submit i {
    transition: transform 0.3s ease;
}

.form-submit:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .contact-section {
        padding: 80px 6%;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-info h2 {
        font-size: 42px;
    }

    .contact-intro {
        max-width: 650px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-section {
        padding: 70px 5%;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-intro {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 30px 22px;
    }

    .contact-form-wrapper h3 {
        font-size: 27px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;

    padding: 0;
}

.menu-toggle span {
    width: 22px;
    height: 2px;

    background-color: #ffffff;

    transition: all 0.3s ease;
}


/* Scrolled hamburger */

.site-header.scrolled .menu-toggle span {
    background-color: #0F5958;
}


@media (max-width: 900px) {

    .site-header {
        padding: 14px 0;
    }

    .nav-container {
        position: relative;

        width: 92%;

        min-height: 65px;
    }


    /* Hide desktop navigation initially */

    .site-header nav {
        position: absolute;

        top: calc(100% + 12px);
        left: 0;

        width: 100%;

        display: none;

        padding: 25px;

        background-color: rgba(255, 255, 255, 0.98);

        border-radius: 20px;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }


    /* Show when active */

    .site-header nav.active {
        display: block;
    }


    .site-header nav ul {
        flex-direction: column;

        align-items: flex-start;

        gap: 0;
    }


    .site-header nav li {
        width: 100%;
    }


    .site-header nav a {
        display: block;

        width: 100%;

        padding: 14px 0;

        color: #0F5958;

        border-bottom: 1px solid rgba(0, 0, 0, 0.08);

        font-size: 15px;
    }


    .site-header nav li:last-child a {
        border-bottom: none;
    }


    /* Hide large booking button */

    .site-header .nav-button {
        display: none;
    }


    /* Show hamburger */

    .menu-toggle {
        display: flex;
    }


    .site-header .logo img {
        width: 145px;
    }


    /* Scrolled mobile header */

    .site-header.scrolled {
        padding: 8px 0;
    }

    .site-header.scrolled .nav-container {
        width: 92%;

        min-height: 58px;

        padding: 6px 18px;
    }

    .site-header.scrolled .logo img {
        width: 130px;
    }

}

 /* Menu - Mobile */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   FAQ - PREMIUM HOMEPAGE STYLE
========================================================= */

.faq-section {
    padding: 120px 0;

    background-color: #ffffff;
}


/* Main Layout */

.faq-layout {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.faq-intro {
    position: sticky;

    top: 130px;

    max-width: 430px;
}

.faq-intro h2 {
    font-family: 'Tenor Sans', sans-serif;

    font-size: 48px;
    line-height: 1.15;

    color: #123f3e;

    margin-bottom: 25px;
}

.faq-intro p {
    max-width: 390px;

    font-size: 16px;
    line-height: 1.8;

    color: #6b7776;

    margin-bottom: 35px;
}


/* FAQ Contact Link */

.faq-link {
    display: inline-flex;

    flex-direction: column;

    gap: 5px;

    font-size: 14px;

    color: #6b7776;
}

.faq-link span {
    color: #0f5958;

    font-weight: 700;

    transition: opacity 0.3s ease;
}

.faq-link:hover span {
    opacity: 0.65;
}


/* =========================================================
   FAQ ITEMS
========================================================= */

.faq-list {
    width: 100%;
}

.faq-item {
    border-top: 1px solid rgba(15, 89, 88, 0.18);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(15, 89, 88, 0.18);
}


/* Question */

.faq-item summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 28px 0;

    cursor: pointer;

    list-style: none;

    font-family: 'Lato', sans-serif;

    font-size: 17px;
    font-weight: 700;

    color: #123f3e;

    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: #0f5958;
}


/* Plus Icon */

.faq-icon {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(15, 89, 88, 0.25);

    border-radius: 50%;

    color: #0f5958;

    font-size: 21px;
    font-weight: 400;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


/* Open State */

.faq-item[open] .faq-icon {
    transform: rotate(45deg);

    background-color: #0f5958;

    color: #ffffff;

    border-color: #0f5958;
}


/* =========================================================
   FAQ SMOOTH ANSWER
========================================================= */

.faq-answer {
    height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        height 0.45s ease,
        opacity 0.35s ease;
}

.faq-answer-inner {
    max-width: 700px;

    padding: 0 60px 30px 0;
}

.faq-answer-inner p {
    font-size: 15px;

    line-height: 1.85;

    color: #6b7776;
}


/* When FAQ is open */

.faq-item[open] .faq-answer {
    opacity: 1;
}

/* =========================================================
   FAQ TABLET
========================================================= */

@media (max-width: 1000px) {

    .faq-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .faq-intro {
        position: static;

        max-width: 650px;
    }

    .faq-intro h2 {
        font-size: 42px;
    }

}


/* =========================================================
   FAQ MOBILE
========================================================= */

@media (max-width: 700px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-layout {
        gap: 35px;
    }

    .faq-intro h2 {
        font-size: 36px;
    }

    .faq-intro p {
        font-size: 15px;
    }

    .faq-item summary {
        padding: 22px 0;

        font-size: 15px;

        gap: 20px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;

        font-size: 18px;
    }

    .faq-answer {
        padding: 0 45px 24px 0;
    }

    .faq-answer p {
        font-size: 14px;
    }

}

/* =========================================================
   HEADER ABOVE HERO VIDEO
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 20px 0;

    background: transparent;
}


/* =========================================================
   SERVICES HERO - IMAGE BACKGROUND
========================================================= */

.services-hero-area {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 760px;

    overflow: hidden;

    display: flex;
    align-items: center;

    background-color: #0f5958;
}


/* =========================================================
   SERVICES HERO IMAGE
========================================================= */

.services-hero-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-image: url('../images/hero/services-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;
}


/* =========================================================
   SERVICES HERO OVERLAY
========================================================= */

.services-hero-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(7, 52, 51, 0.82) 0%,
            rgba(7, 52, 51, 0.58) 42%,
            rgba(7, 52, 51, 0.20) 100%
        );

    pointer-events: none;
}


/* =========================================================
   SERVICES HERO CONTENT
========================================================= */

.services-hero-content-wrapper {
    position: relative;

    z-index: 5;

    width: 100%;

    display: flex;
    align-items: center;

    background: transparent;
}


.services-hero-content {
    max-width: 760px;

    padding-top: 110px;
}


.services-hero-content .eyebrow {
    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.82);
}


.services-hero-content h1 {
    max-width: 780px;

    margin-bottom: 28px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(56px, 5vw, 82px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -1px;

    color: #ffffff;
}


.services-hero-content p {
    max-width: 620px;

    font-family: 'Lato', sans-serif;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================================
   SERVICES INTRO
========================================================= */

.services-intro {
    padding: 110px 0;

    background-color: #ffffff;
}

.services-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;
}

.services-intro h2 {
    max-width: 520px;

    color: #123f3e;
}

.services-intro p {
    max-width: 520px;

    margin-bottom: 20px;

    font-size: 16px;
    line-height: 1.85;

    color: #6b7776;
}


/* =========================================================
   SERVICES PAGE GRID
========================================================= */

.services-page-section {
    padding: 0 0 120px;

    background-color: #ffffff;
}

.services-page-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
}

.services-page-card {
    background-color: #f7f4ef;

    overflow: hidden;
}

.services-page-image {
    height: 390px;

    overflow: hidden;
}

.services-page-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.services-page-card:hover .services-page-image img {
    transform: scale(1.04);
}

.services-page-content {
    padding: 38px 40px 42px;
}

.service-number {
    display: block;

    margin-bottom: 25px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #0f5958;
}

.services-page-content h3 {
    font-size: 32px;

    color: #123f3e;

    margin-bottom: 18px;
}

.services-page-content p {
    max-width: 500px;

    margin-bottom: 28px;

    font-size: 15px;
    line-height: 1.8;

    color: #6b7776;
}

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;
    font-weight: 700;

    color: #0f5958;
}

.service-link span {
    transition: transform 0.3s ease;
}

.service-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   SERVICE BENEFITS
========================================================= */

/* =========================================================
   WHY HOME HEALTHCARE
========================================================= */

.services-benefits {
    padding: 110px 0 120px;
    background-color: #0f6462;
}


/* Heading */

.services-benefits .section-heading {
    max-width: 750px;
    margin-bottom: 60px;
}

.services-benefits .eyebrow {
    display: block;

    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.75);
}

.services-benefits .section-heading h2 {
    font-family: 'Tenor Sans', sans-serif;

    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;

    color: #ffffff;
}


/* =========================================================
   4 COLUMNS
========================================================= */

.services-benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    width: 100%;

}


/* Individual Column */

.services-benefit {
    min-height: 260px;

    padding: 30px 35px 35px;

    border-right: 1px solid rgba(255, 255, 255, 0.22);
}


/* Remove line from final column */

.services-benefit:last-child {
    border-right: none;
}


/* Number */

.services-benefit > span {
    display: block;

    margin-bottom: 55px;

    font-family: 'Lato', sans-serif;

    font-size: 12px;
    font-weight: 700;

    color: rgba(255, 255, 255, 0.65);
}


/* Title */

.services-benefit h3 {
    margin-bottom: 15px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 27px;
    font-weight: 400;

    color: #ffffff;
}


/* Description */

.services-benefit p {
    max-width: 280px;

    font-family: 'Lato', sans-serif;

    font-size: 14px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   SERVICES RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .services-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-benefit {
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .services-benefit:nth-child(2) {
        border-right: none;
    }

    .services-benefit:nth-child(3),
    .services-benefit:nth-child(4) {
        border-bottom: none;
    }

}

@media (max-width: 600px) {

    .services-benefits {
        padding: 80px 0;
    }

    .services-benefits .section-heading {
        margin-bottom: 40px;
    }

    .services-benefits .section-heading h2 {
        font-size: 36px;
    }

    .services-benefits-grid {
        grid-template-columns: 1fr;
    }

    .services-benefit {
        min-height: auto;

        padding: 28px 0 35px;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .services-benefit:nth-child(3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .services-benefit:last-child {
        border-bottom: none;
    }

    .services-benefit > span {
        margin-bottom: 30px;
    }

    .services-benefit p {
        max-width: 100%;
    }

}

@media (max-width: 700px) {

    .services-hero-area {
        height: 100svh;
        min-height: 680px;
    }

    .services-hero-bg {
        background-position: 65% center;
    }

    .services-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 52, 51, 0.86) 0%,
                rgba(7, 52, 51, 0.62) 70%,
                rgba(7, 52, 51, 0.42) 100%
            );
    }

    .services-hero-content {
        max-width: 100%;

        padding-top: 95px;
    }

    .services-hero-content .eyebrow {
        margin-bottom: 20px;
    }

    .services-hero-content h1 {
        font-size: 46px;

        line-height: 1.08;

        margin-bottom: 22px;
    }

    .services-hero-content p {
        max-width: 95%;

        font-size: 16px;

        line-height: 1.7;
    }

}

    .services-intro {
        padding: 80px 0;
    }

    .services-page-image {
        height: 280px;
    }

    .services-page-content {
        padding: 30px 25px 35px;
    }

    .services-page-content h3 {
        font-size: 28px;
    }


/* =========================================================
   IV THERAPY HERO
========================================================= */

.iv-hero {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 150px 4% 70px;

    background:
        radial-gradient(
            circle at 72% 14%,
            rgba(80, 160, 155, 0.42) 0%,
            rgba(15, 89, 88, 0.18) 30%,
            transparent 55%
        ),
        linear-gradient(
            115deg,
            #020a0a 0%,
            #061817 50%,
            #082321 100%
        );

    color: #ffffff;
}


.iv-hero-glow {
    position: absolute;

    width: 900px;
    height: 900px;

    top: -350px;
    right: 5%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(112, 204, 195, 0.18) 0%,
            rgba(15, 89, 88, 0.05) 48%,
            transparent 70%
        );

    filter: blur(20px);

    pointer-events: none;
}


/* =========================================================
   IV HERO LAYOUT
========================================================= */

.iv-hero-inner {
    position: relative;

    z-index: 5;

    width: 100%;
    max-width: 1700px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(420px, 1fr)
        minmax(420px, 0.95fr)
        minmax(270px, 0.65fr);

    gap: 60px;

    align-items: center;
}


/* =========================================================
   IV HERO COPY
========================================================= */

.iv-hero-copy {
    max-width: 680px;
}


.iv-kicker {
    display: block;

    margin-bottom: 30px;

    font-family: 'Lato', sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.65);
}


.iv-hero-copy h1 {
    margin-bottom: 32px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(60px, 5.2vw, 96px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;

    color: #ffffff;
}


.iv-hero-copy p {
    max-width: 620px;

    margin-bottom: 42px;

    font-size: 18px;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.70);
}


/* =========================================================
   IV HERO CTA
========================================================= */

.iv-hero-cta {
    width: min(100%, 400px);

    min-height: 58px;

    padding: 0 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-radius: 50px;

    background-color: #ffffff;

    color: #0f5958;

    font-size: 14px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.iv-hero-cta:hover {
    transform: translateY(-2px);

    background-color: #edf2f1;
}


.iv-cta-arrow {
    font-size: 20px;

    transition: transform 0.3s ease;
}


.iv-hero-cta:hover .iv-cta-arrow {
    transform: translateX(5px);
}


/* =========================================================
   HERO IV IMAGE
========================================================= */

.iv-hero-visual {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.iv-hero-visual img {
    width: 100%;

    max-width: 600px;

    max-height: 750px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 40px 60px
            rgba(0, 0, 0, 0.50)
        );
}


/* =========================================================
   IV HERO STATS
========================================================= */

.iv-hero-stats {
    width: 100%;
}


.iv-stat {
    padding: 20px 0 28px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.22);
}


.iv-stat:last-child {
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.22);
}


.iv-stat-label {
    display: block;

    margin-bottom: 9px;

    font-size: 15px;

    color:
        rgba(255, 255, 255, 0.40);
}


.iv-stat strong {
    display: block;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 32px;

    font-weight: 400;

    color: #ffffff;
}


/* =========================================================
   ALL IV DRIPS SECTION
========================================================= */

.iv-drips-section {
    padding: 100px 0 120px;

    background-color: #f7f1e8;
}


.container-wide {
    width: 96%;

    max-width: 1800px;

    margin: 0 auto;
}


/* Heading */

.iv-drips-heading {
    margin-bottom: 40px;
}


.iv-drips-heading h2 {
    font-family: 'Tenor Sans', sans-serif;

    font-size: 50px;

    color: #123f3e;

    margin-bottom: 10px;
}


.iv-drips-heading p {
    font-size: 15px;

    color: #78908d;
}


/* =========================================================
   FILTER PILLS
========================================================= */

.iv-filter-scroll {
    width: 100%;

    overflow-x: auto;

    margin-bottom: 40px;

    scrollbar-width: none;
}


.iv-filter-scroll::-webkit-scrollbar {
    display: none;
}


.iv-filters {
    display: flex;

    align-items: center;

    gap: 10px;

    width: max-content;
}


.iv-filter {
    border: none;

    padding: 11px 20px;

    border-radius: 50px;

    background-color: #eee4d6;

    color: #123f3e;

    font-family: 'Lato', sans-serif;

    font-size: 14px;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.iv-filter:hover {
    background-color: #e2d5c4;
}


.iv-filter.active {
    background-color: #0f5958;

    color: #ffffff;
}


/* =========================================================
   IV PRODUCT GRID
========================================================= */

.iv-product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 32px 22px;
}


.iv-product-card {
    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


.iv-product-card.hidden {
    display: none;
}


/* Image Area */

.iv-product-image {
    position: relative;

    aspect-ratio: 0.86;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 45px;

    background-color: #eee4d6;

    border-radius: 5px;
}


.iv-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.6s ease;
}


.iv-product-card:hover
.iv-product-image img {

    transform: scale(1.035);
}


/* Product Info */

.iv-product-info {
    padding-top: 15px;
}


.iv-product-info h3 {
    margin-bottom: 7px;

    font-family: 'Lato', sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.4;

    color: #123f3e;
}


.iv-product-info span {
    font-size: 13px;

    color: #879996;
}


/* =========================================================
   IV TABLET
========================================================= */

@media (max-width: 1200px) {

    .iv-hero-inner {
        grid-template-columns:
            1fr 0.9fr;

        gap: 45px;
    }


    .iv-hero-stats {
        grid-column: 1 / -1;

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 30px;
    }


    .iv-stat:last-child {
        border-bottom: none;
    }


    .iv-product-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 900px) {

    .iv-product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .iv-product-image {
        padding: 35px;
    }

}


/* =========================================================
   IV MOBILE
========================================================= */

@media (max-width: 700px) {

    .iv-hero {
        min-height: auto;

        padding:
            140px 6%
            70px;
    }


    .iv-hero-inner {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 45px;
    }


    .iv-hero-copy {
        max-width: 100%;
    }


    .iv-hero-copy h1 {
        font-size: 50px;

        letter-spacing: -1px;

        line-height: 1.04;
    }


    .iv-hero-copy p {
        font-size: 16px;
    }


    .iv-hero-cta {
        width: 100%;
    }


    .iv-hero-visual {
        min-height: auto;
    }


    .iv-hero-visual img {
        max-width: 420px;
    }


    .iv-hero-stats {
        display: block;
    }


    .iv-stat:last-child {
        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.22);
    }


    /* Drips */

    .iv-drips-section {
        padding:
            75px 0
            80px;
    }


    .container-wide {
        width: 92%;
    }


    .iv-drips-heading h2 {
        font-size: 38px;
    }


    .iv-filter-scroll {
        width: calc(100vw - 4%);
    }


    .iv-product-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 30px 12px;
    }


    .iv-product-image {
        padding: 20px;

        aspect-ratio: 0.82;
    }


    .iv-product-info h3 {
        font-size: 14px;
    }


    .iv-product-info span {
        font-size: 12px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 440px) {

    .iv-product-grid {
        grid-template-columns: 1fr;
    }


    .iv-product-image {
        aspect-ratio: 1 / 1.05;

        padding: 40px;
    }

}


/* =========================================================
   IV PRODUCT BOOK BUTTON
========================================================= */

.iv-product-info {
    padding-top: 16px;
}


.iv-product-text {
    margin-bottom: 18px;
}


.iv-product-text h3 {
    margin-bottom: 6px;

    font-family: 'Lato', sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.4;

    color: #123f3e;
}


.iv-product-text span {
    font-size: 13px;

    color: #879996;
}


/* BOOK NOW */

.iv-book-btn {
    width: 100%;

    min-height: 48px;

    padding: 0 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 1px solid rgba(15, 89, 88, 0.25);

    border-radius: 50px;

    font-family: 'Lato', sans-serif;

    font-size: 13px;
    font-weight: 700;

    color: #0f5958;

    background-color: transparent;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.iv-book-btn i {
    font-size: 18px;

    transition: transform 0.3s ease;
}


.iv-book-btn:hover {
    background-color: #0f5958;

    border-color: #0f5958;

    color: #ffffff;

    transform: translateY(-2px);
}


.iv-book-btn:hover i {
    transform: scale(1.1);
}

.iv-product-card {
    color: inherit;
    text-decoration: none;
}


.iv-product-card > .iv-product-info {
    flex: 1;

    display: flex;
    flex-direction: column;
}


.iv-product-text {
    flex: 1;
}


.iv-book-btn {
    margin-top: auto;
}

/* =========================================================
   IV PRODUCT CLICKABLE
========================================================= */

.iv-product-card {
    cursor: pointer;
}

/* =========================================================
   IV VIEW DETAILS BUTTON
========================================================= */

.iv-view-btn {
    width: 100%;
    min-height: 46px;

    margin-top: 18px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--primary);
    border-radius: 50px;

    background: transparent;

    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;

    color: var(--primary);

    cursor: pointer;

    transition: all 0.3s ease;
}

.iv-view-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;

    transform: translateY(-2px);
}

.iv-view-btn:active {
    transform: translateY(0);
}

/* =========================================================
   IV MODAL
========================================================= */

.iv-modal {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.iv-modal.active {
    visibility: visible;
    opacity: 1;
}


/* Background */

.iv-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(3, 20, 20, 0.72);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* Popup */

.iv-modal-box {
    position: relative;

    z-index: 2;

    width: min(900px, 100%);

    max-height: 90vh;

    overflow-y: auto;
	border-radius: 10px;

    background-color: #f7f1e8;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.30);

    transform: translateY(30px) scale(0.97);

    transition:
        transform 0.35s ease;
}

.iv-modal.active .iv-modal-box {
    transform: translateY(0) scale(1);
}


/* Close */

.iv-modal-close {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.85);

    color: #0f5958;

    font-size: 25px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.iv-modal-close:hover {
    background: #ffffff;

    transform: rotate(90deg);
}


/* Modal layout */

.iv-modal-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    min-height: 520px;
}


/* Image */

.iv-modal-image {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px;

    background-color: #eee4d6;
}

.iv-modal-image img {
    width: 100%;

    max-width: 330px;

    max-height: 430px;

    object-fit: contain;
}


/* Content */

.iv-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 65px 60px;
}

.iv-modal-category {
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #78908d;
}

.iv-modal-content h2 {
    margin-bottom: 25px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 42px;

    line-height: 1.15;

    color: #123f3e;
}

.iv-modal-content p {
    margin-bottom: 35px;

    font-size: 16px;

    line-height: 1.8;

    color: #6b7776;
}


/* Book Now */

.iv-modal-book {
    width: 100%;

    min-height: 54px;

    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 50px;

    background-color: #0f5958;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.iv-modal-book:hover {
    background-color: #123f3e;

    transform: translateY(-2px);
}

.iv-modal-book i {
    font-size: 20px;
}

@media (max-width: 700px) {

    .iv-modal {
        padding: 15px;
    }

    .iv-modal-box {
        max-height: 92vh;
    }

    .iv-modal-grid {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .iv-modal-image {
        min-height: 280px;

        padding: 35px;
    }

    .iv-modal-image img {
        max-height: 250px;
    }

    .iv-modal-content {
        padding: 40px 25px 30px;
    }

    .iv-modal-content h2 {
        font-size: 32px;
    }

    .iv-modal-content p {
        font-size: 15px;
    }

    .iv-modal-close {
        top: 12px;
        right: 12px;
    }

}


/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT HERO - FULL VIDEO BACKGROUND
========================================================= */

.about-hero-area {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 760px;

    overflow: hidden;

    display: flex;
    align-items: center;

    background-color: #0f5958;
}


/* =========================================================
   ABOUT HERO VIDEO
========================================================= */

.about-hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}


/* =========================================================
   ABOUT HERO OVERLAY
========================================================= */

.about-hero-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(7, 52, 51, 0.82) 0%,
            rgba(7, 52, 51, 0.60) 42%,
            rgba(7, 52, 51, 0.22) 100%
        );

    pointer-events: none;
}


/* =========================================================
   ABOUT HERO CONTENT
========================================================= */

.about-hero-content-wrapper {
    position: relative;

    z-index: 5;

    width: 100%;

    display: flex;
    align-items: center;

    background: transparent;
}


.about-hero-content {
    max-width: 760px;

    padding-top: 110px;
}


.about-hero-content .eyebrow {
    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.82);
}


.about-hero-content h1 {
    margin-bottom: 28px;

    max-width: 750px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(56px, 5vw, 82px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -1px;

    color: #ffffff;
}


.about-hero-content p {
    max-width: 620px;

    font-family: 'Lato', sans-serif;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================================
   ABOUT STORY
========================================================= */

.about-story {
    padding: 120px 0;

    background-color: #ffffff;
}


.about-story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


/* Story Image */

.about-image {
    position: relative;

    height: 620px;

    overflow: hidden;
}


.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.about-image:hover img {
    transform: scale(1.025);
}


/* Story Content */

.about-story-content {
    max-width: 600px;
}


.about-story-content .eyebrow {
    margin-bottom: 20px;
}


.about-story-content h2 {
    margin-bottom: 30px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 48px;

    line-height: 1.15;

    color: #123f3e;
}


.about-story-content p {
    margin-bottom: 20px;

    font-size: 16px;

    line-height: 1.85;

    color: #6b7776;
}


/* =========================================================
   ABOUT APPROACH
========================================================= */

.about-approach {
    padding: 120px 0;

    background-color: #f7f1e8;
}


.about-approach .section-heading {
    max-width: 760px;
}


.about-approach .section-heading h2 {
    color: #123f3e;
}


.about-approach .section-heading p {
    color: #6b7776;
}


/* Approach Grid */

.approach-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 60px;
}


/* Approach Card */

.approach-card {
    position: relative;

    min-height: 300px;

    padding: 38px 30px;

    background-color: #ffffff;

    border: 1px solid rgba(15, 89, 88, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.approach-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px
        rgba(15, 89, 88, 0.08);
}


.approach-card > span {
    display: block;

    margin-bottom: 45px;

    font-family: 'Lato', sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #0f5958;
}


.approach-card h3 {
    margin-bottom: 16px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 27px;

    font-weight: 400;

    color: #123f3e;
}


.approach-card p {
    font-size: 15px;

    line-height: 1.8;

    color: #6b7776;
}


/* =========================================================
   MISSION AND VISION
========================================================= */

.mission {
    padding: 120px 0;

    background-color: #ffffff;
}


.mission-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}


.mission-box {
    min-height: 420px;

    padding: 65px 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background-color: #f7f1e8;
}


.mission-box:nth-child(2) {
    background-color: #0f5958;
}


.mission-box .eyebrow {
    margin-bottom: 25px;
}


.mission-box h2 {
    max-width: 520px;

    margin-bottom: 28px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 42px;

    line-height: 1.17;

    color: #123f3e;
}


.mission-box p {
    max-width: 520px;

    font-size: 16px;

    line-height: 1.85;

    color: #6b7776;
}


/* Second Mission Box */

.mission-box:nth-child(2) .eyebrow {
    color: rgba(255, 255, 255, 0.65);
}


.mission-box:nth-child(2) h2 {
    color: #ffffff;
}


.mission-box:nth-child(2) p {
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   ABOUT TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-hero-area {
        min-height: 720px;
    }


    .about-hero-content {
        max-width: 680px;

        padding-top: 100px;
    }


    .about-hero-content h1 {
        font-size: 62px;
    }


    /* Story */

    .about-story-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .about-image {
        height: 520px;
    }


    .about-story-content {
        max-width: 700px;
    }


    /* Approach */

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Mission */

    .mission-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   ABOUT MOBILE
========================================================= */

@media (max-width: 700px) {

    /* Hero */

    .about-hero-area {
        height: 100svh;

        min-height: 680px;
    }


    .about-hero-video {
        object-position: 60% center;
    }


    .about-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 52, 51, 0.86) 0%,
                rgba(7, 52, 51, 0.62) 70%,
                rgba(7, 52, 51, 0.42) 100%
            );
    }


    .about-hero-content {
        max-width: 100%;

        padding-top: 95px;
    }


    .about-hero-content .eyebrow {
        margin-bottom: 20px;
    }


    .about-hero-content h1 {
        font-size: 46px;

        line-height: 1.08;

        margin-bottom: 22px;
    }


    .about-hero-content p {
        max-width: 95%;

        font-size: 16px;

        line-height: 1.7;
    }


    /* Story */

    .about-story {
        padding: 80px 0;
    }


    .about-story-grid {
        gap: 40px;
    }


    .about-image {
        height: 400px;
    }


    .about-story-content h2 {
        font-size: 36px;
    }


    .about-story-content p {
        font-size: 15px;
    }


    /* Approach */

    .about-approach {
        padding: 80px 0;
    }


    .approach-grid {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 40px;
    }


    .approach-card {
        min-height: auto;

        padding: 32px 25px;
    }


    .approach-card > span {
        margin-bottom: 30px;
    }


    /* Mission */

    .mission {
        padding: 80px 0;
    }


    .mission-grid {
        gap: 15px;
    }


    .mission-box {
        min-height: auto;

        padding: 50px 30px;
    }


    .mission-box h2 {
        font-size: 34px;
    }


    .mission-box p {
        font-size: 15px;
    }

}

/* =========================================================
   SERVICES GRID - MOBILE
========================================================= */

@media (max-width: 700px) {

    .services-page-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-page-card {
        width: 100%;
    }

    .services-page-image {
        width: 100%;
        height: 300px;
    }

    .services-page-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .services-page-content {
        padding: 28px 24px 32px;
    }

    .services-page-content h3 {
        font-size: 27px;
    }

    .services-page-content p {
        font-size: 15px;
        line-height: 1.7;
    }

}

/* =========================================================
   SERVICES FAQ
========================================================= */

.services-faq {
    background-color: #f7f1e8;
}

.services-faq .faq-intro h2 {
    color: #123f3e;
}

.services-faq .faq-item {
    border-color: rgba(15, 89, 88, 0.18);
}

/* =========================================================
   IV THERAPY FAQ
========================================================= */

.iv-faq {
    background-color: #f7f1e8;
}

.iv-faq .faq-intro {
    max-width: 480px;
}

.iv-faq .faq-intro h2 {
    color: #123f3e;
}

.iv-faq .faq-intro p {
    color: #6b7776;
}

.iv-faq .faq-item {
    border-color: rgba(15, 89, 88, 0.18);
}


/* =========================================================
   FORM - SUCCESS MESSAGE
========================================================= */


.form-message {
    margin-bottom: 25px;
    padding: 16px 18px;

    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.form-message.success {
    background-color: rgba(15, 89, 88, 0.10);
    border: 1px solid rgba(15, 89, 88, 0.25);

    color: #0f5958;
}

.form-message.error {
    background-color: #fff1f1;
    border: 1px solid #e9caca;

    color: #8a3f3f;
}

/* =========================================================
   SIMPLE CONTACT PAGE
========================================================= */

.simple-contact-page {
    background: #ffffff;
}

.simple-contact-section {
    padding: 170px 0 110px;
}


/* GRID */

.simple-contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 85px;

    align-items: start;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.simple-contact-details {
    padding-top: 5px;
}

.simple-contact-details .eyebrow {
    display: block;

    margin-bottom: 25px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #0f5958;
}

.simple-contact-details h1 {
    max-width: 520px;

    margin: 0 0 35px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 48px;
    font-weight: 400;

    line-height: 1.15;

    color: #123f3e;
}

.simple-contact-intro {
    max-width: 500px;

    margin: 0 0 55px;

    font-size: 15px;

    line-height: 1.8;

    color: #6b7776;
}


/* CONTACT LIST */

.simple-contact-list {
    width: 100%;

    border-top:
        1px solid rgba(15, 89, 88, 0.18);
}

.simple-contact-item {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px 0;

    border-bottom:
        1px solid rgba(15, 89, 88, 0.18);

    text-decoration: none;
}

.simple-contact-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(15, 89, 88, 0.25);

    border-radius: 50%;

    color: #0f5958;
}

.simple-contact-item span {
    display: block;

    margin-bottom: 4px;

    font-size: 10px;

    color: #879895;
}

.simple-contact-item strong {
    display: block;

    font-size: 14px;
    font-weight: 400;

    color: #123f3e;
}


/* =========================================================
   WORKING HOURS
========================================================= */

.simple-contact-hours {
    margin-top: 55px;
}

.simple-contact-hours h2 {
    margin: 0 0 22px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 25px;
    font-weight: 400;

    color: #123f3e;
}

.simple-hours-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

    border-bottom:
        1px solid rgba(15, 89, 88, 0.18);
}

.simple-hours-row span,
.simple-hours-row strong {
    font-size: 12px;
}

.simple-hours-row span {
    color: #6b7776;
}

.simple-hours-row strong {
    color: #123f3e;
}


/* =========================================================
   FORM BOX
========================================================= */

.simple-contact-form-box {
    padding: 55px 60px;

    background: #f7f1e8;
}

.simple-contact-form-box .eyebrow {
    display: block;

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #0f5958;
}

.simple-contact-form-box h2 {
    margin: 0 0 18px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 43px;
    font-weight: 400;

    line-height: 1.15;

    color: #123f3e;
}

.simple-contact-form-box > p {
    max-width: 460px;

    margin: 0 0 35px;

    font-size: 14px;

    line-height: 1.7;

    color: #6b7776;
}


/* =========================================================
   FORM
========================================================= */

.simple-contact-form {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.simple-form-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 20px;
}

.simple-form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.simple-form-group label {
    font-size: 11px;

    font-weight: 700;

    color: #123f3e;
}

.simple-form-group input,
.simple-form-group select,
.simple-form-group textarea {
    width: 100%;

    box-sizing: border-box;

    border:
        1px solid rgba(15, 89, 88, 0.22);

    outline: none;

    background: rgba(255,255,255,.70);

    font-family: 'Lato', sans-serif;

    font-size: 13px;

    color: #123f3e;
}

.simple-form-group input,
.simple-form-group select {
    height: 52px;

    padding: 0 15px;
}

.simple-form-group textarea {
    min-height: 145px;

    padding: 15px;

    resize: vertical;
}

.simple-form-group input:focus,
.simple-form-group select:focus,
.simple-form-group textarea:focus {
    border-color: #0f5958;

    background: #ffffff;
}


/* CONSENT */

.simple-consent {
    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 10px;

    color: #6b7776;
}

.simple-consent input {
    accent-color: #0f5958;
}


/* BUTTON */

.simple-contact-submit {
    min-height: 54px;

    padding: 0 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border: none;

    background: #0f5958;

    font-family: 'Lato', sans-serif;

    font-size: 13px;
    font-weight: 700;

    color: #ffffff;

    cursor: pointer;

    transition: 0.3s ease;
}

.simple-contact-submit:hover {
    background: #123f3e;
}


/* =========================================================
   WHATSAPP CTA
========================================================= */

.simple-whatsapp-cta {
    padding: 65px 0;

    background: #0f6462;
}

.simple-whatsapp-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.simple-whatsapp-cta .eyebrow {
    display: block;

    margin-bottom: 15px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: rgba(255,255,255,.70);
}

.simple-whatsapp-cta h2 {
    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 36px;
    font-weight: 400;

    line-height: 1.15;

    color: #ffffff;
}

.simple-whatsapp-btn {
    min-width: 230px;

    min-height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 25px;

    border:
        1px solid rgba(255,255,255,.65);

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;

    color: #ffffff;

    text-decoration: none;

    transition: .3s ease;
}

.simple-whatsapp-btn:hover {
    background: #ffffff;

    color: #0f5958;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .simple-contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .simple-contact-section {
        padding: 130px 0 75px;
    }

    .simple-contact-details h1 {
        font-size: 38px;
    }

    .simple-contact-intro {
        margin-bottom: 40px;
    }

    .simple-contact-form-box {
        padding: 38px 24px;
    }

    .simple-contact-form-box h2 {
        font-size: 36px;
    }

    .simple-form-row {
        grid-template-columns: 1fr;
    }

    .simple-contact-item strong {
        overflow-wrap: anywhere;
    }

    .simple-whatsapp-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .simple-whatsapp-cta h2 {
        font-size: 32px;
    }

    .simple-whatsapp-btn {
        width: 100%;
    }

}



/* =========================================================
   CONTACT PAGE - CLEAN SIMPLE VERSION
========================================================= */

.simple-contact-page {
    width: 100%;
    background: #ffffff;
}

.simple-contact-section {
    width: 100%;
    padding: 170px 0 110px;
}


/* MAIN 2 COLUMN LAYOUT */

.simple-contact-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.simple-contact-details {
    width: 100%;
}

.simple-contact-details .eyebrow {
    display: block;
    margin-bottom: 22px;

    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #0f5958;
}

.simple-contact-details h1 {
    margin: 0 0 30px;
    max-width: 500px;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.15;

    color: #123f3e;
}

.simple-contact-intro {
    max-width: 500px;
    margin: 0 0 45px;

    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.8;

    color: #6b7776;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.simple-contact-list {
    width: 100%;
    border-top: 1px solid rgba(15, 89, 88, 0.18);
}

.simple-contact-item {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(15, 89, 88, 0.18);

    text-decoration: none;
}

.simple-contact-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(15, 89, 88, 0.25);
    border-radius: 50%;

    color: #0f5958;
}

.simple-contact-item span {
    display: block;

    margin-bottom: 3px;

    font-family: 'Lato', sans-serif;
    font-size: 10px;

    color: #829492;
}

.simple-contact-item strong {
    display: block;

    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;

    color: #123f3e;
}


/* =========================================================
   WORKING HOURS
========================================================= */

.simple-contact-hours {
    margin-top: 50px;
}

.simple-contact-hours h2 {
    margin: 0 0 20px;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 25px;
    font-weight: 400;

    color: #123f3e;
}

.simple-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(15, 89, 88, 0.18);
}

.simple-hours-row span,
.simple-hours-row strong {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
}

.simple-hours-row span {
    color: #6b7776;
}

.simple-hours-row strong {
    color: #123f3e;
}


/* =========================================================
   RIGHT FORM PANEL
========================================================= */

.simple-contact-form-box {
    width: 100%;
    box-sizing: border-box;

    padding: 55px 60px;

    background: #f7f1e8;
}

.simple-contact-form-box .eyebrow {
    display: block;
    margin-bottom: 18px;

    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #0f5958;
}

.simple-contact-form-box h2 {
    margin: 0 0 15px;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;

    color: #123f3e;
}

.simple-contact-form-box > p {
    max-width: 450px;
    margin: 0 0 35px;

    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.7;

    color: #6b7776;
}


/* =========================================================
   FORM
========================================================= */

.simple-contact-form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 22px;
}

.simple-form-row {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.simple-form-group {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.simple-form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;

    color: #123f3e;
}

.simple-form-group input,
.simple-form-group select,
.simple-form-group textarea {
    width: 100%;
    max-width: 100%;

    box-sizing: border-box;

    border: 1px solid rgba(15, 89, 88, 0.22);

    outline: none;

    background: rgba(255, 255, 255, 0.7);

    font-family: 'Lato', sans-serif;
    font-size: 13px;

    color: #123f3e;
}

.simple-form-group input,
.simple-form-group select {
    height: 52px;
    padding: 0 15px;
}

.simple-form-group textarea {
    min-height: 145px;
    padding: 15px;

    resize: vertical;
}

.simple-form-group input:focus,
.simple-form-group select:focus,
.simple-form-group textarea:focus {
    border-color: #0f5958;
    background: #ffffff;
}


/* CONSENT */

.simple-consent {
    display: flex;
    align-items: center;

    gap: 8px;

    font-family: 'Lato', sans-serif;
    font-size: 10px;

    color: #6b7776;
}

.simple-consent input {
    accent-color: #0f5958;
}


/* SUBMIT BUTTON */

.simple-contact-submit {
    width: 100%;
    height: 52px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 0;

    background: #0f5958;

    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;

    color: #ffffff;

    cursor: pointer;

    transition: 0.3s ease;
}

.simple-contact-submit:hover {
    background: #123f3e;
}


/* =========================================================
   WHATSAPP STRIP
========================================================= */

.simple-whatsapp-cta {
    width: 100%;
    padding: 65px 0;

    background: #0f6462;
}

.simple-whatsapp-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.simple-whatsapp-cta .eyebrow {
    display: block;
    margin-bottom: 15px;

    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: rgba(255, 255, 255, 0.7);
}

.simple-whatsapp-cta h2 {
    margin: 0;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.15;

    color: #ffffff;
}

.simple-whatsapp-btn {
    min-width: 220px;
    min-height: 48px;

    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50px;

    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;

    color: #ffffff;

    text-decoration: none;

    transition: 0.3s ease;
}

.simple-whatsapp-btn:hover {
    background: #ffffff;
    color: #0f5958;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .simple-contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .simple-contact-section {
        padding: 130px 0 70px;
    }

    .simple-contact-details h1 {
        font-size: 38px;
    }

    .simple-contact-form-box {
        padding: 38px 24px;
    }

    .simple-contact-form-box h2 {
        font-size: 36px;
    }

    .simple-form-row {
        grid-template-columns: 1fr;
    }

    .simple-whatsapp-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .simple-whatsapp-cta h2 {
        font-size: 32px;
    }

    .simple-whatsapp-btn {
        width: 100%;
    }

}


/* =========================================================
   PHYSIOTHERAPY PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.physio-hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #0f5958;
}


.physio-hero-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-image:
        url('../images/services/physio/physio-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;
}


.physio-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 43, 42, 0.90) 0%,
            rgba(5, 43, 42, 0.68) 45%,
            rgba(5, 43, 42, 0.20) 100%
        );

    z-index: 1;

    pointer-events: none;
}


.physio-hero-inner {
    position: relative;

    z-index: 5;

    width: 100%;
}


.physio-hero-copy {
    max-width: 760px;

    padding-top: 100px;
}


.physio-kicker {
    display: block;

    margin-bottom: 25px;

    font-family: 'Lato', sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;

    color: rgba(255, 255, 255, 0.75);
}


.physio-hero-copy h1 {
    margin: 0 0 28px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(58px, 5.5vw, 84px);
    font-weight: 400;

    line-height: 1.04;

    letter-spacing: -1px;

    color: #ffffff;
}


.physio-hero-copy p {
    max-width: 600px;

    margin: 0 0 35px;

    font-family: 'Lato', sans-serif;

    font-size: 18px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.86);
}


.physio-hero-btn {
    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 15px 24px;

    border:
        1px solid rgba(255, 255, 255, 0.70);

    border-radius: 50px;

    font-family: 'Lato', sans-serif;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    color: #ffffff;

    transition: all 0.3s ease;
}


.physio-hero-btn:hover {
    background: #ffffff;

    color: #0f5958;
}


/* =========================================================
   INTRO
========================================================= */

.physio-intro {
    padding: 115px 0;

    background: #f7f1e8;
}


.physio-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 100px;

    align-items: center;
}


.physio-intro .eyebrow {
    display: block;

    margin-bottom: 22px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #0f5958;
}


.physio-intro h2 {
    max-width: 650px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 50px;
    font-weight: 400;

    line-height: 1.15;

    color: #123f3e;
}


.physio-intro-content {
    max-width: 570px;
}


.physio-intro-content p {
    margin: 0 0 20px;

    font-family: 'Lato', sans-serif;

    font-size: 16px;
    line-height: 1.85;

    color: #6b7776;
}


.physio-intro-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CONDITIONS
========================================================= */

.physio-conditions {
    padding: 120px 0;

    background: #ffffff;
}


.physio-section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(0, 0.8fr);

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}


.physio-section-heading .eyebrow {
    display: block;

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #0f5958;
}


.physio-section-heading h2 {
    max-width: 700px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 48px;
    font-weight: 400;

    line-height: 1.16;

    color: #123f3e;
}


.physio-section-heading > p {
    max-width: 480px;

    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: #6b7776;
}


/* CARDS */

.physio-condition-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top:
        1px solid rgba(15, 89, 88, 0.16);

    border-left:
        1px solid rgba(15, 89, 88, 0.16);
}


.physio-condition-card {
    position: relative;

    min-height: 330px;

    padding: 35px;

    border-right:
        1px solid rgba(15, 89, 88, 0.16);

    border-bottom:
        1px solid rgba(15, 89, 88, 0.16);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.physio-condition-card:hover {
    background: #f7f1e8;
}


.physio-number {
    display: block;

    margin-bottom: 35px;

    font-size: 11px;
    font-weight: 700;

    color: #8da09d;
}


.physio-condition-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(15, 89, 88, 0.25);

    border-radius: 50%;

    font-size: 17px;

    color: #0f5958;
}


.physio-condition-card h3 {
    margin: 0 0 15px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 26px;
    font-weight: 400;

    line-height: 1.2;

    color: #123f3e;
}


.physio-condition-card p {
    max-width: 320px;

    margin: 0;

    font-size: 14px;
    line-height: 1.75;

    color: #6b7776;
}


/* =========================================================
   HOME PHYSIOTHERAPY BENEFITS
========================================================= */

.physio-home {
    padding: 115px 0;

    background: #0f6462;
}


.physio-home-heading {
    max-width: 750px;

    margin-bottom: 65px;
}


.physio-home-heading .eyebrow {
    display: block;

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: rgba(255, 255, 255, 0.65);
}


.physio-home-heading h2 {
    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 48px;
    font-weight: 400;

    line-height: 1.15;

    color: #ffffff;
}


.physio-home-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top:
        1px solid rgba(255, 255, 255, 0.22);
}


.physio-home-item {
    min-height: 260px;

    padding: 30px 32px;

    border-right:
        1px solid rgba(255, 255, 255, 0.22);
}


.physio-home-item:last-child {
    border-right: none;
}


.physio-home-item > span {
    display: block;

    margin-bottom: 55px;

    font-size: 11px;
    font-weight: 700;

    color: rgba(255, 255, 255, 0.55);
}


.physio-home-item h3 {
    margin: 0 0 14px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 27px;
    font-weight: 400;

    color: #ffffff;
}


.physio-home-item p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   PHYSIO FAQ
========================================================= */

.physio-faq {
    background: #f7f1e8;
}


.physio-faq .faq-intro h2 {
    color: #123f3e;
}


.physio-faq .faq-item {
    border-color:
        rgba(15, 89, 88, 0.18);
}


/* =========================================================
   CTA
========================================================= */

.physio-cta {
    padding: 85px 0;

    background: #123f3e;
}


.physio-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;
}


.physio-cta .eyebrow {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: rgba(255, 255, 255, 0.60);
}


.physio-cta h2 {
    max-width: 650px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 46px;
    font-weight: 400;

    line-height: 1.15;

    color: #ffffff;
}


.physio-cta-btn {
    min-width: 240px;
    min-height: 54px;

    padding: 0 26px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border:
        1px solid rgba(255, 255, 255, 0.60);

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    color: #ffffff;

    transition: all 0.3s ease;
}


.physio-cta-btn i {
    font-size: 18px;
}


.physio-cta-btn:hover {
    background: #ffffff;

    color: #123f3e;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .physio-intro-grid {
        gap: 60px;
    }


    .physio-condition-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .physio-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .physio-home-item {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.22);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* HERO */

    .physio-hero {
        height: 100svh;
        min-height: 680px;
    }


    .physio-hero-bg {
        background-position: 65% center;
    }


    .physio-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 43, 42, 0.90) 0%,
                rgba(5, 43, 42, 0.72) 70%,
                rgba(5, 43, 42, 0.45) 100%
            );
    }


    .physio-hero-copy {
        padding-top: 90px;
    }


    .physio-hero-copy h1 {
        font-size: 48px;
    }


    .physio-hero-copy p {
        max-width: 95%;

        font-size: 16px;
    }


    /* INTRO */

    .physio-intro {
        padding: 80px 0;
    }


    .physio-intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .physio-intro h2 {
        font-size: 39px;
    }


    /* CONDITIONS */

    .physio-conditions {
        padding: 80px 0;
    }


    .physio-section-heading {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 45px;
    }


    .physio-section-heading h2 {
        font-size: 39px;
    }


    .physio-condition-grid {
        grid-template-columns: 1fr;
    }


    .physio-condition-card {
        min-height: auto;

        padding: 30px 25px;
    }


    /* HOME */

    .physio-home {
        padding: 80px 0;
    }


    .physio-home-heading {
        margin-bottom: 45px;
    }


    .physio-home-heading h2 {
        font-size: 39px;
    }


    .physio-home-grid {
        grid-template-columns: 1fr;
    }


    .physio-home-item {
        min-height: auto;

        padding: 28px 0;

        border-right: none;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.22);
    }


    .physio-home-item > span {
        margin-bottom: 30px;
    }


    /* CTA */

    .physio-cta {
        padding: 70px 0;
    }


    .physio-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }


    .physio-cta h2 {
        font-size: 38px;
    }


    .physio-cta-btn {
        width: 100%;
    }

}

/* =========================================================
   HOME LAB TESTS PAGE
========================================================= */


/* HERO */

.lab-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #0f5958;
}

.lab-hero-bg {
    position: absolute;
    inset: 0;

    background-image:
        url('../images/services/lab/lab-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;
}

.lab-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 43, 42, .90) 0%,
            rgba(5, 43, 42, .66) 45%,
            rgba(5, 43, 42, .18) 100%
        );
}

.lab-hero-inner {
    position: relative;
    z-index: 5;
    width: 100%;
}

.lab-hero-copy {
    max-width: 760px;
    padding-top: 100px;
}

.lab-kicker {
    display: block;
    margin-bottom: 25px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;

    color: rgba(255,255,255,.75);
}

.lab-hero-copy h1 {
    margin: 0 0 28px;

    font-family: 'Tenor Sans', sans-serif;
    font-size: clamp(58px, 5.5vw, 84px);
    font-weight: 400;
    line-height: 1.04;

    color: #fff;
}

.lab-hero-copy p {
    max-width: 600px;

    margin: 0 0 35px;

    font-size: 18px;
    line-height: 1.8;

    color: rgba(255,255,255,.86);
}

.lab-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 25px;

    padding: 15px 24px;

    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    color: #fff;
    text-decoration: none;

    transition: .3s ease;
}

.lab-hero-btn:hover {
    background: #fff;
    color: #0f5958;
}


/* =========================================================
   INTRO
========================================================= */

.lab-intro {
    padding: 115px 0;
    background: #f7f1e8;
}

.lab-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;
    align-items: center;
}

.lab-intro .eyebrow,
.lab-section-heading .eyebrow,
.lab-process-heading .eyebrow {
    display: block;

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #0f5958;
}

.lab-intro h2 {
    max-width: 650px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.15;

    color: #123f3e;
}

.lab-intro-grid > div:last-child {
    max-width: 570px;
}

.lab-intro p {
    margin: 0 0 20px;

    font-size: 16px;
    line-height: 1.85;

    color: #6b7776;
}


/* =========================================================
   TESTS
========================================================= */

.lab-tests-section {
    padding: 120px 0;
    background: #fff;
}

.lab-section-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 80px;
    align-items: end;

    margin-bottom: 65px;
}

.lab-section-heading h2 {
    max-width: 700px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;

    color: #123f3e;
}

.lab-section-heading > p {
    max-width: 480px;

    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: #6b7776;
}

.lab-tests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(15,89,88,.16);
    border-left: 1px solid rgba(15,89,88,.16);
}

.lab-test-card {
    min-height: 320px;

    padding: 35px;

    border-right: 1px solid rgba(15,89,88,.16);
    border-bottom: 1px solid rgba(15,89,88,.16);

    transition: .3s ease;
}

.lab-test-card:hover {
    background: #f7f1e8;
}

.lab-number {
    display: block;
    margin-bottom: 35px;

    font-size: 11px;
    font-weight: 700;

    color: #8da09d;
}

.lab-test-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(15,89,88,.25);
    border-radius: 50%;

    color: #0f5958;
}

.lab-test-card h3 {
    margin: 0 0 15px;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 25px;
    font-weight: 400;

    color: #123f3e;
}

.lab-test-card p {
    margin: 0;

    font-size: 14px;
    line-height: 1.75;

    color: #6b7776;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.lab-process {
    padding: 115px 0;

    background: #f7f1e8;
}

.lab-process-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.lab-process-heading h2 {
    margin: 0;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;

    color: #123f3e;
}

.lab-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(15,89,88,.17);
}

.lab-process-item {
    min-height: 240px;

    padding: 30px;

    border-right: 1px solid rgba(15,89,88,.17);
}

.lab-process-item:last-child {
    border-right: none;
}

.lab-process-item > span {
    display: block;

    margin-bottom: 48px;

    font-size: 11px;
    font-weight: 700;

    color: #80928f;
}

.lab-process-item h3 {
    margin: 0 0 15px;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 25px;
    font-weight: 400;

    color: #123f3e;
}

.lab-process-item p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: #6b7776;
}


/* =========================================================
   BENEFITS
========================================================= */

.lab-benefits {
    padding: 115px 0;

    background: #0f6462;
}

.lab-benefits-heading {
    max-width: 730px;

    margin-bottom: 65px;
}

.lab-benefits-heading .eyebrow {
    display: block;
    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: rgba(255,255,255,.65);
}

.lab-benefits-heading h2 {
    margin: 0;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;

    color: #fff;
}

.lab-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255,255,255,.22);
}

.lab-benefit-item {
    min-height: 250px;

    padding: 30px 32px;

    border-right: 1px solid rgba(255,255,255,.22);
}

.lab-benefit-item:last-child {
    border-right: none;
}

.lab-benefit-item > span {
    display: block;

    margin-bottom: 55px;

    font-size: 11px;
    font-weight: 700;

    color: rgba(255,255,255,.55);
}

.lab-benefit-item h3 {
    margin: 0 0 14px;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 27px;
    font-weight: 400;

    color: #fff;
}

.lab-benefit-item p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: rgba(255,255,255,.72);
}


/* =========================================================
   FAQ
========================================================= */

.lab-faq {
    background: #f7f1e8;
}

.lab-faq .faq-intro h2 {
    color: #123f3e;
}

.lab-faq .faq-item {
    border-color: rgba(15,89,88,.18);
}


/* =========================================================
   CTA
========================================================= */

.lab-cta {
    padding: 85px 0;

    background: #123f3e;
}

.lab-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.lab-cta .eyebrow {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: rgba(255,255,255,.60);
}

.lab-cta h2 {
    max-width: 650px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.15;

    color: #fff;
}

.lab-cta-btn {
    min-width: 240px;
    min-height: 54px;

    padding: 0 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px solid rgba(255,255,255,.60);
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    color: #fff;
    text-decoration: none;

    transition: .3s ease;
}

.lab-cta-btn:hover {
    background: #fff;
    color: #123f3e;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .lab-intro-grid {
        gap: 60px;
    }

    .lab-tests-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lab-process-grid,
    .lab-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .lab-hero {
        height: 100svh;
        min-height: 680px;
    }

    .lab-hero-bg {
        background-position: 65% center;
    }

    .lab-hero-copy {
        padding-top: 90px;
    }

    .lab-hero-copy h1 {
        font-size: 48px;
    }

    .lab-hero-copy p {
        font-size: 16px;
    }


    .lab-intro,
    .lab-tests-section,
    .lab-process,
    .lab-benefits {
        padding: 80px 0;
    }


    .lab-intro-grid,
    .lab-section-heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .lab-intro h2,
    .lab-section-heading h2,
    .lab-process-heading h2,
    .lab-benefits-heading h2 {
        font-size: 39px;
    }


    .lab-tests-grid,
    .lab-process-grid,
    .lab-benefits-grid {
        grid-template-columns: 1fr;
    }


    .lab-test-card {
        min-height: auto;

        padding: 30px 25px;
    }


    .lab-process-item,
    .lab-benefit-item {
        min-height: auto;

        padding: 28px 0;

        border-right: none;

        border-bottom:
            1px solid rgba(15,89,88,.17);
    }


    .lab-benefit-item {
        border-bottom:
            1px solid rgba(255,255,255,.22);
    }


    .lab-process-item > span,
    .lab-benefit-item > span {
        margin-bottom: 28px;
    }


    .lab-cta {
        padding: 70px 0;
    }


    .lab-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }


    .lab-cta h2 {
        font-size: 38px;
    }


    .lab-cta-btn {
        width: 100%;
    }

}


/* =========================================================
   DOCTOR ON CALL PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.doctor-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #0f5958;
}


.doctor-hero-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-image:
        url('../images/services/doctor/doctor-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;
}


.doctor-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(5, 43, 42, 0.92) 0%,
            rgba(5, 43, 42, 0.68) 45%,
            rgba(5, 43, 42, 0.18) 100%
        );
}


.doctor-hero-inner {
    position: relative;
    z-index: 5;

    width: 100%;
}


.doctor-hero-copy {
    max-width: 760px;

    padding-top: 100px;
}


.doctor-kicker {
    display: block;

    margin-bottom: 25px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;

    color: rgba(255,255,255,.75);
}


.doctor-hero-copy h1 {
    margin: 0 0 28px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(58px, 5.5vw, 84px);
    font-weight: 400;
    line-height: 1.04;

    letter-spacing: -1px;

    color: #ffffff;
}


.doctor-hero-copy p {
    max-width: 600px;

    margin: 0 0 35px;

    font-size: 18px;
    line-height: 1.8;

    color: rgba(255,255,255,.86);
}


.doctor-hero-btn {
    display: inline-flex;
    align-items: center;

    gap: 25px;

    padding: 15px 24px;

    border: 1px solid rgba(255,255,255,.70);
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    color: #ffffff;
    text-decoration: none;

    transition: .3s ease;
}


.doctor-hero-btn:hover {
    background: #ffffff;

    color: #0f5958;
}


/* =========================================================
   INTRO
========================================================= */

.doctor-intro {
    padding: 115px 0;

    background: #f7f1e8;
}


.doctor-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


.doctor-intro .eyebrow,
.doctor-section-heading .eyebrow,
.doctor-process-heading .eyebrow {
    display: block;

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #0f5958;
}


.doctor-intro h2 {
    max-width: 650px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 50px;
    font-weight: 400;
    line-height: 1.15;

    color: #123f3e;
}


.doctor-intro-grid > div:last-child {
    max-width: 570px;
}


.doctor-intro p {
    margin: 0 0 20px;

    font-size: 16px;
    line-height: 1.85;

    color: #6b7776;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.doctor-services-section {
    padding: 120px 0;

    background: #ffffff;
}


.doctor-section-heading {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}


.doctor-section-heading h2 {
    max-width: 700px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;

    color: #123f3e;
}


.doctor-section-heading > p {
    max-width: 470px;

    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: #6b7776;
}


.doctor-services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top:
        1px solid rgba(15,89,88,.16);

    border-left:
        1px solid rgba(15,89,88,.16);
}


.doctor-service-card {
    min-height: 330px;

    padding: 35px;

    border-right:
        1px solid rgba(15,89,88,.16);

    border-bottom:
        1px solid rgba(15,89,88,.16);

    transition: background .3s ease;
}


.doctor-service-card:hover {
    background: #f7f1e8;
}


.doctor-number {
    display: block;

    margin-bottom: 35px;

    font-size: 11px;
    font-weight: 700;

    color: #8da09d;
}


.doctor-service-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    border:
        1px solid rgba(15,89,88,.25);

    border-radius: 50%;

    color: #0f5958;
}


.doctor-service-card h3 {
    margin: 0 0 15px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;

    color: #123f3e;
}


.doctor-service-card p {
    margin: 0;

    font-size: 14px;
    line-height: 1.75;

    color: #6b7776;
}


/* =========================================================
   PROCESS
========================================================= */

.doctor-process {
    padding: 115px 0;

    background: #f7f1e8;
}


.doctor-process-heading {
    max-width: 700px;

    margin-bottom: 60px;
}


.doctor-process-heading h2 {
    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;

    color: #123f3e;
}


.doctor-process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top:
        1px solid rgba(15,89,88,.17);
}


.doctor-process-item {
    min-height: 245px;

    padding: 30px;

    border-right:
        1px solid rgba(15,89,88,.17);
}


.doctor-process-item:last-child {
    border-right: none;
}


.doctor-process-item > span {
    display: block;

    margin-bottom: 48px;

    font-size: 11px;
    font-weight: 700;

    color: #80928f;
}


.doctor-process-item h3 {
    margin: 0 0 15px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 25px;
    font-weight: 400;

    color: #123f3e;
}


.doctor-process-item p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: #6b7776;
}


/* =========================================================
   BENEFITS
========================================================= */

.doctor-benefits {
    padding: 115px 0;

    background: #0f6462;
}


.doctor-benefits-heading {
    max-width: 750px;

    margin-bottom: 65px;
}


.doctor-benefits-heading .eyebrow {
    display: block;

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: rgba(255,255,255,.65);
}


.doctor-benefits-heading h2 {
    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;

    color: #ffffff;
}


.doctor-benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top:
        1px solid rgba(255,255,255,.22);
}


.doctor-benefit-item {
    min-height: 250px;

    padding: 30px 32px;

    border-right:
        1px solid rgba(255,255,255,.22);
}


.doctor-benefit-item:last-child {
    border-right: none;
}


.doctor-benefit-item > span {
    display: block;

    margin-bottom: 55px;

    font-size: 11px;
    font-weight: 700;

    color: rgba(255,255,255,.55);
}


.doctor-benefit-item h3 {
    margin: 0 0 14px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 27px;
    font-weight: 400;

    color: #ffffff;
}


.doctor-benefit-item p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: rgba(255,255,255,.72);
}


/* =========================================================
   EMERGENCY NOTE
========================================================= */

.doctor-emergency-note {
    padding: 80px 0;

    background: #ffffff;
}


.doctor-emergency-inner {
    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 35px;

    align-items: start;

    max-width: 950px;
}


.doctor-emergency-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(15,89,88,.22);
    border-radius: 50%;

    font-size: 23px;

    color: #0f5958;
}


.doctor-emergency-note .eyebrow {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #0f5958;
}


.doctor-emergency-note h2 {
    margin: 0 0 15px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 34px;
    font-weight: 400;

    color: #123f3e;
}


.doctor-emergency-note p {
    max-width: 720px;

    margin: 0;

    font-size: 14px;
    line-height: 1.8;

    color: #6b7776;
}


/* =========================================================
   FAQ
========================================================= */

.doctor-faq {
    background: #f7f1e8;
}


.doctor-faq .faq-intro h2 {
    color: #123f3e;
}


.doctor-faq .faq-item {
    border-color:
        rgba(15,89,88,.18);
}


/* =========================================================
   CTA
========================================================= */

.doctor-cta {
    padding: 85px 0;

    background: #123f3e;
}


.doctor-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;
}


.doctor-cta .eyebrow {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: rgba(255,255,255,.60);
}


.doctor-cta h2 {
    max-width: 650px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 46px;
    font-weight: 400;
    line-height: 1.15;

    color: #ffffff;
}


.doctor-cta-btn {
    min-width: 240px;
    min-height: 54px;

    padding: 0 26px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border:
        1px solid rgba(255,255,255,.60);

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    color: #ffffff;

    text-decoration: none;

    transition: .3s ease;
}


.doctor-cta-btn i {
    font-size: 18px;
}


.doctor-cta-btn:hover {
    background: #ffffff;

    color: #123f3e;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .doctor-intro-grid {
        gap: 60px;
    }


    .doctor-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .doctor-process-grid,
    .doctor-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .doctor-hero {
        height: 100svh;
        min-height: 680px;
    }


    .doctor-hero-bg {
        background-position: 68% center;
    }


    .doctor-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5,43,42,.92) 0%,
                rgba(5,43,42,.74) 70%,
                rgba(5,43,42,.46) 100%
            );
    }


    .doctor-hero-copy {
        padding-top: 90px;
    }


    .doctor-hero-copy h1 {
        font-size: 48px;
    }


    .doctor-hero-copy p {
        font-size: 16px;
    }


    .doctor-intro,
    .doctor-services-section,
    .doctor-process,
    .doctor-benefits {
        padding: 80px 0;
    }


    .doctor-intro-grid,
    .doctor-section-heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .doctor-intro h2,
    .doctor-section-heading h2,
    .doctor-process-heading h2,
    .doctor-benefits-heading h2 {
        font-size: 39px;
    }


    .doctor-services-grid,
    .doctor-process-grid,
    .doctor-benefits-grid {
        grid-template-columns: 1fr;
    }


    .doctor-service-card {
        min-height: auto;

        padding: 30px 25px;
    }


    .doctor-process-item,
    .doctor-benefit-item {
        min-height: auto;

        padding: 28px 0;

        border-right: none;
    }


    .doctor-process-item {
        border-bottom:
            1px solid rgba(15,89,88,.17);
    }


    .doctor-benefit-item {
        border-bottom:
            1px solid rgba(255,255,255,.22);
    }


    .doctor-process-item > span,
    .doctor-benefit-item > span {
        margin-bottom: 28px;
    }


    .doctor-emergency-note {
        padding: 65px 0;
    }


    .doctor-emergency-inner {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .doctor-emergency-note h2 {
        font-size: 30px;
    }


    .doctor-cta {
        padding: 70px 0;
    }


    .doctor-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }


    .doctor-cta h2 {
        font-size: 38px;
    }


    .doctor-cta-btn {
        width: 100%;
    }

}


/* =========================================================
   PEPTIDE THERAPY PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.peptide-hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 70% 45%,
            #315b5a 0%,
            #153d3c 24%,
            #092c2c 54%,
            #061f1f 100%
        );
}


/* SUBTLE LIGHT */

.peptide-hero-glow {
    position: absolute;

    top: -20%;
    right: 5%;

    width: 55%;
    height: 120%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(166, 215, 207, .18),
            rgba(78, 143, 139, .08) 36%,
            transparent 70%
        );

    filter: blur(10px);

    pointer-events: none;
}


/* LAYOUT */

.peptide-hero-grid {
    position: relative;

    z-index: 4;

    width: 100%;
    min-height: 100vh;

    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 70px;

    padding-top: 120px;
    padding-bottom: 60px;
}


/* LEFT */

.peptide-hero-content {
    max-width: 680px;
}


.peptide-eyebrow {
    display: block;

    margin-bottom: 26px;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.8px;

    color: rgba(255, 255, 255, .55);
}


.peptide-hero-content h1 {
    margin: 0 0 25px;

    max-width: 670px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(52px, 4.6vw, 74px);
    font-weight: 400;

    line-height: 1.04;

    letter-spacing: -1.8px;

    color: #ffffff;
}


.peptide-hero-intro {
    max-width: 580px;

    margin: 0 0 38px;

    font-family: 'Lato', sans-serif;

    font-size: 16px;

    line-height: 1.75;

    color: rgba(255, 255, 255, .72);
}


/* BENEFITS */

.peptide-hero-benefits {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 38px;
}


.peptide-hero-benefit {
    display: flex;

    align-items: center;

    gap: 16px;

    min-height: 54px;

    font-family: 'Lato', sans-serif;

    font-size: 14px;

    line-height: 1.5;

    color: rgba(255, 255, 255, .86);
}


.peptide-benefit-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .09);

    border:
        1px solid rgba(255, 255, 255, .08);

    font-size: 15px;

    color: #ffffff;
}


/* CTA */

.peptide-main-cta {
    width: 280px;
    min-height: 58px;

    padding: 0 25px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-radius: 50px;

    background: #ffffff;

    font-family: 'Lato', sans-serif;

    font-size: 13px;
    font-weight: 700;

    color: #123f3e;

    text-decoration: none;

    transition: .3s ease;
}


.peptide-main-cta:hover {
    transform: translateY(-2px);

    background: #f7f1e8;
}


.peptide-disclaimer {
    margin: 16px 0 0;

    font-size: 10px;

    line-height: 1.5;

    color: rgba(255, 255, 255, .42);
}


/* =========================================================
   HERO PRODUCT SIDE
========================================================= */

.peptide-hero-product {
    position: relative;

    min-height: 680px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* PRODUCT */

.peptide-product-image {
    position: relative;

    z-index: 5;

    width: 65%;
    max-width: 430px;

    transform:
        rotate(14deg)
        translateY(-5px);

    animation:
        peptideFloat 5s ease-in-out infinite;
}


.peptide-product-image img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 600px;

    object-fit: contain;

    filter:
        drop-shadow(
            30px 35px 35px
            rgba(0,0,0,.35)
        );
}


@keyframes peptideFloat {

    0%,
    100% {
        transform:
            rotate(14deg)
            translateY(-5px);
    }

    50% {
        transform:
            rotate(14deg)
            translateY(-22px);
    }

}


/* PLATFORM */

.peptide-product-platform {
    position: absolute;

    z-index: 2;

    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    width: 62%;
    height: 80px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,
            #315453 0%,
            #173737 58%,
            #092525 100%
        );

    box-shadow:
        0 -10px 35px
        rgba(132, 196, 189, .08),

        0 40px 70px
        rgba(0, 0, 0, .35);
}


/* LIGHT BEAM */

.peptide-product-light {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    pointer-events: none;
}


.peptide-light-top {
    top: -160px;

    width: 55%;
    height: 420px;

    background:
        linear-gradient(
            180deg,
            rgba(190, 226, 218, .14),
            transparent
        );

    clip-path:
        polygon(
            30% 0,
            70% 0,
            100% 100%,
            0 100%
        );

    filter: blur(15px);
}


.peptide-light-bottom {
    bottom: -100px;

    width: 55%;
    height: 300px;

    background:
        linear-gradient(
            0deg,
            rgba(118, 188, 182, .13),
            transparent
        );

    filter: blur(30px);
}


/* =========================================================
   INTRO
========================================================= */

.peptide-intro {
    padding: 115px 0;

    background: #f7f1e8;
}


.peptide-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


.peptide-intro .eyebrow {
    display: block;

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #0f5958;
}


.peptide-intro h2 {
    max-width: 650px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 50px;
    font-weight: 400;

    line-height: 1.15;

    color: #123f3e;
}


.peptide-intro-copy {
    max-width: 570px;
}


.peptide-intro-copy p {
    margin: 0 0 20px;

    font-size: 16px;

    line-height: 1.85;

    color: #6b7776;
}


/* =========================================================
   PRODUCTS
========================================================= */

.peptide-products-section {
    padding: 120px 0;

    background: #ffffff;
}


.peptide-products-heading {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 55px;
}


.peptide-products-heading .eyebrow {
    display: block;

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #0f5958;
}


.peptide-products-heading h2 {
    max-width: 700px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 48px;
    font-weight: 400;

    line-height: 1.15;

    color: #123f3e;
}


.peptide-products-heading > p {
    max-width: 470px;

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

    color: #6b7776;
}


/* FILTERS */

.peptide-filter-bar {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 35px;

    flex-wrap: wrap;
}


.peptide-filter-btn {
    min-height: 40px;

    padding: 0 20px;

    border:
        1px solid rgba(15, 89, 88, .20);

    border-radius: 50px;

    background: transparent;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    color: #526d6b;

    cursor: pointer;

    transition: .25s ease;
}


.peptide-filter-btn:hover,
.peptide-filter-btn.active {
    background: #0f5958;

    border-color: #0f5958;

    color: #ffffff;
}


.peptide-mobile-filter {
    display: none;

    margin-bottom: 30px;
}


.peptide-mobile-filter select {
    width: 100%;

    height: 50px;

    padding: 0 15px;

    border:
        1px solid rgba(15,89,88,.20);

    background: #ffffff;

    font-family: 'Lato', sans-serif;

    color: #123f3e;
}


/* PRODUCT GRID */

.peptide-product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.peptide-product-card {
    overflow: hidden;

    background: #f7f1e8;

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.peptide-product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px
        rgba(11, 54, 53, .10);
}


.peptide-card-image {
    height: 340px;

    padding: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f3eee5;
}


.peptide-card-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform .4s ease;
}


.peptide-product-card:hover
.peptide-card-image img {
    transform: scale(1.04);
}


.peptide-card-content {
    padding: 28px 28px 30px;

    background: #ffffff;
}


.peptide-card-category {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    color: #0f5958;
}


.peptide-card-content h3 {
    margin: 0 0 12px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 26px;
    font-weight: 400;

    color: #123f3e;
}


.peptide-card-content p {
    min-height: 48px;

    margin: 0 0 22px;

    font-size: 13px;

    line-height: 1.7;

    color: #71817f;
}


.peptide-card-link {
    width: 100%;

    padding: 15px 0 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border: 0;

    border-top:
        1px solid rgba(15,89,88,.14);

    background: none;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    color: #123f3e;

    cursor: pointer;
}


/* =========================================================
   MODAL
========================================================= */

.peptide-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;
}


.peptide-modal.active {
    opacity: 1;
    visibility: visible;
}


.peptide-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(5, 31, 31, .76);

    backdrop-filter: blur(7px);
}


.peptide-modal-box {
    position: relative;

    z-index: 2;

    width: min(920px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    background: #ffffff;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.25);
}


.peptide-modal-close {
    position: absolute;

    z-index: 5;

    top: 20px;
    right: 22px;

    width: 40px;
    height: 40px;

    border: none;

    background: transparent;

    font-size: 30px;

    color: #123f3e;

    cursor: pointer;
}


.peptide-modal-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;
}


.peptide-modal-image {
    min-height: 540px;

    padding: 60px 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f7f1e8;
}


.peptide-modal-image img {
    max-width: 100%;
    max-height: 400px;

    object-fit: contain;
}


.peptide-modal-content {
    padding: 75px 55px;

    display: flex;

    flex-direction: column;
    justify-content: center;
}


.peptide-modal-category {
    margin-bottom: 15px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #0f5958;
}


.peptide-modal-content h2 {
    margin: 0 0 20px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 42px;
    font-weight: 400;

    color: #123f3e;
}


.peptide-modal-content > p {
    margin: 0 0 30px;

    font-size: 15px;

    line-height: 1.8;

    color: #6b7776;
}


.peptide-modal-note {
    display: flex;

    gap: 13px;

    padding: 18px;

    margin-bottom: 30px;

    background: #f7f1e8;

    font-size: 12px;

    line-height: 1.6;

    color: #607573;
}


.peptide-modal-note i {
    margin-top: 3px;

    color: #0f5958;
}


.peptide-modal-book {
    min-height: 52px;

    padding: 0 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    background: #0f5958;

    font-size: 12px;
    font-weight: 700;

    color: #ffffff;

    text-decoration: none;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.peptide-bottom-cta {
    padding: 85px 0;

    background: #123f3e;
}


.peptide-bottom-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


.peptide-bottom-cta .eyebrow {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: rgba(255,255,255,.58);
}


.peptide-bottom-cta h2 {
    max-width: 650px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 46px;
    font-weight: 400;

    line-height: 1.15;

    color: #ffffff;
}


.peptide-bottom-btn {
    min-width: 235px;
    min-height: 54px;

    padding: 0 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border:
        1px solid rgba(255,255,255,.60);

    border-radius: 50px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}


.peptide-bottom-btn:hover {
    background: #ffffff;

    color: #123f3e;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .peptide-hero-grid {
        gap: 30px;
    }


    .peptide-product-image {
        width: 72%;
    }


    .peptide-product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .peptide-hero {
        min-height: auto;
    }


    .peptide-hero-grid {
        min-height: auto;

        grid-template-columns: 1fr;

        padding-top: 150px;
        padding-bottom: 60px;

        gap: 25px;
    }


    .peptide-hero-content h1 {
        font-size: 46px;
    }


    .peptide-hero-intro {
        font-size: 15px;
    }


    .peptide-main-cta {
        width: 100%;
    }


    .peptide-hero-product {
        min-height: 480px;
    }


    .peptide-product-image {
        width: 58%;
    }


    .peptide-product-platform {
        bottom: 20px;

        width: 70%;
    }


    .peptide-intro {
        padding: 80px 0;
    }


    .peptide-intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .peptide-intro h2 {
        font-size: 39px;
    }


    .peptide-products-section {
        padding: 80px 0;
    }


    .peptide-products-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .peptide-products-heading h2 {
        font-size: 39px;
    }


    .peptide-filter-bar {
         display: flex;
    }


    .peptide-mobile-filter {
        display: none;
    }


    .peptide-product-grid {
        grid-template-columns: 1fr;
    }


    .peptide-card-image {
        height: 300px;
    }


    .peptide-modal {
        padding: 15px;
    }


    .peptide-modal-grid {
        grid-template-columns: 1fr;
    }


    .peptide-modal-image {
        min-height: 280px;

        padding: 40px;
    }


    .peptide-modal-image img {
        max-height: 220px;
    }


    .peptide-modal-content {
        padding: 40px 25px 30px;
    }


    .peptide-modal-content h2 {
        font-size: 34px;
    }


    .peptide-bottom-inner {
        flex-direction: column;

        align-items: flex-start;
    }


    .peptide-bottom-cta h2 {
        font-size: 38px;
    }


    .peptide-bottom-btn {
        width: 100%;
    }

}


/* =========================================================
   PEPTIDE FAQ — SAME STYLE AS IV FAQ
========================================================= */

.peptide-faq-section {
    padding: 110px 0 120px;
    background: #f7f1e8;
}


.peptide-faq-layout {
    display: grid;

    grid-template-columns:
        minmax(0, .78fr)
        minmax(0, 1.22fr);

    gap: 110px;

    align-items: start;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.peptide-faq-intro {
    padding-top: 8px;
}


.peptide-faq-intro .eyebrow {
    display: block;

    margin-bottom: 24px;

    font-family: 'Lato', sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;

    color: #0f5958;
}


.peptide-faq-intro h2 {
    max-width: 470px;

    margin: 0 0 30px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 48px;
    font-weight: 400;

    line-height: 1.15;

    letter-spacing: .2px;

    color: #123f3e;
}


.peptide-faq-intro > p {
    max-width: 430px;

    margin: 0;

    font-family: 'Lato', sans-serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.9;

    color: #75827f;
}


/* CONTACT LINK */

.peptide-faq-contact {
    margin-top: 42px;

    display: flex;
    flex-direction: column;

    gap: 8px;
}


.peptide-faq-contact span {
    font-family: 'Lato', sans-serif;

    font-size: 12px;

    color: #778581;
}


.peptide-faq-contact a {
    width: fit-content;

    font-family: 'Lato', sans-serif;

    font-size: 12px;
    font-weight: 700;

    color: #0f6462;

    text-decoration: none;
}


.peptide-faq-contact a:hover {
    text-decoration: underline;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.peptide-faq-list {
    width: 100%;

    border-top:
        1px solid rgba(15, 89, 88, .18);
}


.peptide-faq-item {
    width: 100%;

    border-bottom:
        1px solid rgba(15, 89, 88, .18);
}


.peptide-faq-item summary {
    min-height: 92px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    list-style: none;

    cursor: pointer;
}


.peptide-faq-item summary::-webkit-details-marker {
    display: none;
}


/* QUESTION FONT */

.peptide-faq-item summary > span:first-child {
    font-family: 'Lato', sans-serif;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.45;

    color: #004b4c;
}


/* =========================================================
   PLUS BUTTON
========================================================= */

.peptide-faq-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(15, 89, 88, .22);

    border-radius: 50%;

    font-family: 'Lato', sans-serif;

    font-size: 20px;
    font-weight: 400;

    line-height: 1;

    color: #0f6462;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}


.peptide-faq-item[open]
.peptide-faq-icon {
    transform: rotate(45deg);

    background: #0f6462;

    color: #ffffff;
}


/* =========================================================
   ANSWER
========================================================= */

.peptide-faq-answer {
    max-width: 620px;

    padding:
        0 60px 30px 0;
}


.peptide-faq-answer p {
    margin: 0;

    font-family: 'Lato', sans-serif;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.85;

    color: #6f7f7c;
}


/* subtle hover */

.peptide-faq-item summary:hover
> span:first-child {
    color: #0f6462;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .peptide-faq-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .peptide-faq-intro h2 {
        max-width: 600px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .peptide-faq-section {
        padding: 80px 0;
    }


    .peptide-faq-layout {
        gap: 45px;
    }


    .peptide-faq-intro h2 {
        font-size: 39px;
    }


    .peptide-faq-intro > p {
        font-size: 13px;
    }


    .peptide-faq-contact {
        margin-top: 30px;
    }


    .peptide-faq-item summary {
        min-height: 82px;

        gap: 20px;
    }


    .peptide-faq-item summary
    > span:first-child {
        font-size: 14px;

        padding-right: 5px;
    }


    .peptide-faq-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 18px;
    }


    .peptide-faq-answer {
        padding:
            0 45px 25px 0;
    }


    .peptide-faq-answer p {
        font-size: 13px;
    }

}

/* =========================================================
   PEPTIDE FILTERS - MOBILE SCROLLABLE PILLS
========================================================= */

@media (max-width: 700px) {

    .peptide-filter-bar {
        display: flex;

        gap: 8px;

        overflow-x: auto;

        flex-wrap: nowrap;

        margin-left: -24px;
        margin-right: -24px;

        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 8px;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }


    .peptide-filter-bar::-webkit-scrollbar {
         display: flex;
    }


    .peptide-filter-btn {
        flex: 0 0 auto;

        min-height: 40px;

        padding: 0 18px;

        white-space: nowrap;

        font-size: 11px;
    }


    /* HIDE MOBILE DROPDOWN */

    .peptide-mobile-filter {
        display: none;
    }

}

/* =========================================================
   INDIVIDUAL IV TREATMENT PAGE
========================================================= */

.iv-detail-page {
    background: #FFFFFF;
    min-height: 100vh;
}


.iv-detail-main {
    padding: 145px 0 100px;
}


.iv-detail-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(380px, .85fr);

    gap: 32px;

    align-items: start;
}


/* =========================================================
   LEFT GALLERY
========================================================= */

.iv-detail-gallery {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


.iv-detail-image,
.iv-detail-info-card {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    border-radius: 6px;
}


.iv-detail-image {
    background: #eee3d4;
}


.iv-detail-image > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* PRODUCT */

.iv-detail-product-image {
    padding: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #eadcc9,
            #f7eee3
        );
}


.iv-detail-product-image > img {
    width: 82%;
    height: 82%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 25px
            rgba(37, 58, 55, .13)
        );
}


/* LIFESTYLE */

.iv-image-copy {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    z-index: 2;

    color: #ffffff;
}


.iv-image-copy::before {
    content: "";

    position: absolute;

    inset: -80px -30px -30px;

    z-index: -1;

    background:
        linear-gradient(
            transparent,
            rgba(5, 30, 30, .72)
        );
}


.iv-image-copy span,
.iv-nurse-copy span,
.iv-info-label {
    display: block;

    margin-bottom: 10px;

    font-family: 'Lato', sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.4px;

    color: rgba(255,255,255,.72);
}


.iv-image-copy h3,
.iv-nurse-copy h3 {
    max-width: 330px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 28px;
    font-weight: 400;

    line-height: 1.1;

    color: #ffffff;
}


/* DARK EDUCATIONAL PANEL */

.iv-detail-info-card.dark {
    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background:
        linear-gradient(
            145deg,
            #123f3e,
            #061f1f
        );

    color: #ffffff;
}


.iv-detail-info-card h3 {
    max-width: 380px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 32px;
    font-weight: 400;

    line-height: 1.15;

    color: #ffffff;
}


.iv-delivery-graphic {
    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    gap: 15px;

    align-items: center;

    padding-top: 40px;

    border-top:
        1px solid rgba(255,255,255,.15);
}


.iv-delivery-graphic > div {
    display: flex;

    flex-direction: column;

    gap: 5px;

    font-family: 'Lato', sans-serif;

    font-size: 10px;

    color: rgba(255,255,255,.55);
}


.iv-delivery-graphic
> div:nth-child(2) {
    color: rgba(255,255,255,.5);
}


.iv-percent {
    font-family: 'Tenor Sans', sans-serif;

    font-size: 25px;

    color: #ffffff;
}


/* NURSE */

.iv-nurse-copy {
    position: absolute;

    left: 28px;
    right: 28px;
    top: 28px;

    z-index: 2;
}


.iv-nurse-copy span {
    color: #0f5958;
}


.iv-nurse-copy h3 {
    color: #123f3e;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.iv-detail-content {
    position: sticky;

    top: 110px;

    padding: 8px 0 0;
}


.iv-detail-back {
    display: inline-block;

    margin-bottom: 25px;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    color: #70817f;

    text-decoration: none;
}


.iv-detail-badge {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 17px;

    padding: 7px 11px;

    border-radius: 50px;

    background: #ede4d7;

    font-family: 'Lato', sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #123f3e;
}


.iv-detail-content h1 {
    margin: 0 0 22px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(42px, 3.6vw, 58px);
    font-weight: 250;

    line-height: 1.05;

    color: #123f3e;
}


.iv-detail-content h1 span {
    display: block;
}


.iv-detail-lead {
    margin: 0 0 25px;

    font-family: 'Lato', sans-serif;

    font-size: 14px;

    line-height: 1.75;

    color: #526b68;
}


/* POINTS */

.iv-detail-points {
    display: flex;

    flex-direction: column;

    gap: 13px;

    margin-bottom: 30px;
}


.iv-detail-points > div {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    font-family: 'Lato', sans-serif;

    font-size: 12px;

    line-height: 1.5;

    color: #526b68;
}


.iv-detail-points i {
    width: 15px;

    margin-top: 2px;

    color: #0f6462;
}


/* =========================================================
   PACKAGE OPTIONS
========================================================= */

/* BOOK */

.iv-detail-book {
    width: 100%;
    min-height: 52px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 50px;

    background: #0f5958;

    font-family: 'Lato', sans-serif;

    font-size: 12px;
    font-weight: 700;

    color: #ffffff;

    text-decoration: none;

    transition: .25s ease;
}


.iv-detail-book:hover {
    background: #123f3e;
}


/* =========================================================
   TRUST
========================================================= */

.iv-detail-trust {
    display: flex;

    flex-direction: column;

    gap: 10px;

    padding: 6px 0 22px;

    border-bottom:
        1px solid rgba(15,89,88,.15);
}


.iv-detail-trust div {
    display: flex;

    gap: 10px;

    align-items: center;

    font-family: 'Lato', sans-serif;

    font-size: 10px;

    color: #60726f;
}


.iv-detail-trust i {
    color: #0f6462;
}


/* =========================================================
   ACCORDION
========================================================= */

.iv-detail-accordion details {
    border-bottom:
        1px solid rgba(15,89,88,.15);
}


.iv-detail-accordion summary {
    min-height: 62px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    list-style: none;

    cursor: pointer;

    font-family: 'Lato', sans-serif;

    font-size: 11px;

    color: #526b68;
}


.iv-detail-accordion
summary::-webkit-details-marker {
    display: none;
}


.iv-detail-accordion
summary span:last-child {
    font-size: 17px;

    color: #0f5958;

    transition: transform .25s ease;
}


.iv-detail-accordion
details[open]
summary span:last-child {
    transform: rotate(45deg);
}


.iv-detail-accordion details div {
    padding: 0 40px 20px 0;
}


.iv-detail-accordion p {
    margin: 0;

    font-family: 'Lato', sans-serif;

    font-size: 11px;

    line-height: 1.75;

    color: #72827f;
}


.iv-detail-disclaimer {
    margin: 25px 0 0;

    font-family: 'Lato', sans-serif;

    font-size: 9px;

    line-height: 1.6;

    color: #8b9896;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .iv-detail-grid {
        grid-template-columns:
            1fr .85fr;
    }


    .iv-detail-gallery {
        grid-template-columns: 1fr;
    }


    .iv-detail-image,
    .iv-detail-info-card {
        min-height: 480px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .iv-detail-main {
        padding:
            120px 0 70px;
    }


    .iv-detail-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .iv-detail-gallery {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }


    .iv-detail-image,
    .iv-detail-info-card {
        min-height: 300px;
    }


    .iv-detail-product-image {
        padding: 25px;
    }


    .iv-image-copy {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }


    .iv-image-copy h3,
    .iv-nurse-copy h3 {
        font-size: 20px;
    }


    .iv-detail-info-card.dark {
        padding: 20px;
    }


    .iv-detail-info-card h3 {
        font-size: 23px;
    }


    .iv-delivery-graphic {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .iv-delivery-graphic
    > div:nth-child(2) {
        display: none;
    }


    .iv-detail-content {
        position: static;
    }


    .iv-detail-content h1 {
        font-size: 42px;
    }

}


/* VERY SMALL MOBILE */

@media (max-width: 500px) {

    .iv-detail-gallery {
        grid-template-columns: 1fr;
    }


    .iv-detail-image,
    .iv-detail-info-card {
        min-height: 390px;
    }

}

/* =========================================================
   IV DRIPS SECTION
========================================================= */

.iv-drips-section {
    padding: 110px 0 120px;
    background: #f8f3eb;
}


.iv-drips-heading {
    max-width: 760px;
    margin-bottom: 42px;
}


.iv-drips-heading .eyebrow {
    display: block;

    margin-bottom: 14px;

    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.7px;

    color: #0f5958;
}


.iv-drips-heading h2 {
    margin: 0 0 16px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(44px, 4vw, 60px);
    font-weight: 400;

    line-height: 1.08;

    color: #123f3e;
}


.iv-drips-heading p {
    max-width: 680px;

    margin: 0;

    font-family: 'Lato', sans-serif;

    font-size: 14px;
    line-height: 1.8;

    color: #70817f;
}



/* =========================================================
   FILTERS
========================================================= */

.iv-filter-scroll {
    width: 100%;

    margin-bottom: 42px;

    overflow-x: auto;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}


.iv-filter-scroll::-webkit-scrollbar {
    display: none;
}


.iv-filters {
    display: flex;

    align-items: center;

    gap: 8px;

    width: max-content;

    min-width: 100%;
}


.iv-filter {
    flex: 0 0 auto;

    min-height: 40px;

    padding: 0 18px;

    border: 1px solid transparent;

    border-radius: 50px;

    background: #ede4d6;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 400;

    white-space: nowrap;

    color: #123f3e;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.iv-filter:hover {
    border-color:
        rgba(15, 89, 88, .25);
}


.iv-filter.active {
    background: #0f6462;

    border-color: #0f6462;

    color: #ffffff;
}



/* =========================================================
   PRODUCT GRID
========================================================= */

.iv-product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}



/* =========================================================
   PRODUCT CARD
========================================================= */

.iv-product-card {
    display: block;

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    color: inherit;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        opacity .2s ease;
}


.iv-product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px
        rgba(23, 62, 60, .09);
}



/* FILTER HIDDEN STATE */

.iv-product-card.iv-hidden {
    display: none;
}



/* =========================================================
   IMAGE
========================================================= */

.iv-product-image {
    position: relative;

    height: 350px;

    padding: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #eee3d4,
            #f5eee4
        );
}


.iv-product-image::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 75%;
    height: 70%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.85),
            rgba(255,255,255,.25) 45%,
            transparent 72%
        );
}


.iv-product-image img {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 20px
            rgba(37, 57, 54, .12)
        );

    transition:
        transform .4s ease;
}


.iv-product-card:hover
.iv-product-image img {
    transform:
        translateY(-5px)
        scale(1.04);
}



/* =========================================================
   BADGE
========================================================= */

.iv-product-badge {
    position: absolute;

    z-index: 5;

    top: 16px;
    left: 16px;

    padding: 6px 10px;

    border-radius: 50px;

    background:
        rgba(255,255,255,.85);

    backdrop-filter: blur(6px);

    font-family: 'Lato', sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #0f5958;
}



/* =========================================================
   INFORMATION
========================================================= */

.iv-product-info {
    padding: 24px 22px 25px;
}


.iv-product-category {
    display: block;

    min-height: 15px;

    margin-bottom: 9px;

    font-family: 'Lato', sans-serif;

    font-size: 9px;
    font-weight: 700;

    line-height: 1.5;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #0f6462;
}


.iv-product-info h3 {
    margin: 0 0 5px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 23px;
    font-weight: 400;

    line-height: 1.2;

    color: #123f3e;
}


.iv-product-info > p {
    margin: 0 0 20px;

    font-family: 'Lato', sans-serif;

    font-size: 11px;

    color: #83928f;
}



/* =========================================================
   VIEW TREATMENT
========================================================= */

.iv-view-btn {
    width: 100%;

    padding-top: 15px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid rgba(15, 89, 88, .14);

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    color: #123f3e;
}


.iv-view-btn span:last-child {
    transition:
        transform .25s ease;
}


.iv-product-card:hover
.iv-view-btn span:last-child {
    transform:
        translateX(5px);
}



/* =========================================================
   NO RESULTS
========================================================= */

.iv-no-results {
    display: none;

    padding: 60px 0;

    text-align: center;

    font-family: 'Lato', sans-serif;

    font-size: 14px;

    color: #71817f;
}


.iv-no-results.show {
    display: block;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .iv-product-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}



@media (max-width: 850px) {

    .iv-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .iv-product-image {
        height: 330px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .iv-drips-section {
        padding: 80px 0;
    }


    .iv-drips-heading {
        margin-bottom: 30px;
    }


    .iv-drips-heading h2 {
        font-size: 40px;
    }


    .iv-filter-scroll {
        margin-left: -24px;

        width: calc(100% + 48px);

        padding-left: 24px;
        padding-right: 24px;

        margin-bottom: 35px;
    }


    .iv-filters {
        gap: 7px;

        padding-right: 24px;
    }


    .iv-filter {
        min-height: 39px;

        padding: 0 16px;

        font-size: 10px;
    }


    .iv-product-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .iv-product-image {
        height: 390px;
    }


    .iv-product-info {
        padding: 23px;
    }


    .iv-product-info h3 {
        font-size: 25px;
    }

}

/* =========================================================
   IV PRODUCT GRID
========================================================= */

.iv-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.iv-product-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    height: 100%;

    background: #ffffff;

    color: inherit;
    text-decoration: none;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.iv-product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px
        rgba(18, 63, 62, .09);
}


.iv-product-card.iv-hidden {
    display: none;
}


/* =========================================================
   PRODUCT IMAGE AREA
========================================================= */

.iv-product-image {
    position: relative;

    width: 100%;
    height: 350px;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #eee3d4 0%,
            #f6efe6 100%
        );
}


/* LIGHT BEHIND PRODUCT */

.iv-product-image::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 75%;
    height: 70%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.9) 0%,
            rgba(255,255,255,.32) 45%,
            transparent 72%
        );

    pointer-events: none;
}


/* IV BAG */

.iv-product-image img {
    position: relative;

    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    max-width: 250px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 18px 20px
            rgba(30, 55, 52, .13)
        );

    transition:
        transform .4s ease;
}


.iv-product-card:hover
.iv-product-image img {
    transform:
        translateY(-5px)
        scale(1.04);
}


/* =========================================================
   POPULAR BADGE
========================================================= */

.iv-product-badge {
    position: absolute;

    z-index: 5;

    top: 17px;
    left: 17px;

    padding: 7px 11px;

    border-radius: 30px;

    background: rgba(255,255,255,.9);

    font-family: 'Lato', sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #0f6462;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.iv-product-info {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 24px 22px 22px;
}


/* CATEGORY */

.iv-product-category {
    display: block;

    margin-bottom: 9px;

    font-family: 'Lato', sans-serif;

    font-size: 9px;
    font-weight: 700;

    line-height: 1.45;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #718f8c;
}


/* TITLE */

.iv-product-info h3 {
    margin: 0 0 5px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 24px;
    font-weight: 400;

    line-height: 1.18;

    color: #123f3e;
}


/* IV DRIP TEXT */

.iv-product-info > p {
    margin: 0 0 24px;

    font-family: 'Lato', sans-serif;

    font-size: 11px;

    color: #84938f;
}


/* =========================================================
   VIEW TREATMENT
========================================================= */

.iv-view-btn {
    margin-top: auto;

    width: 100%;
    min-height: 46px;

    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid rgba(15, 89, 88, .24);

    border-radius: 30px;
    border-radius: 30px;

    background: transparent;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    color: #123f3e;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.iv-view-btn span:last-child {
    font-size: 15px;

    transition:
        transform .25s ease;
}


.iv-product-card:hover
.iv-view-btn {
    background: #0f5958;

    border-color: #0f5958;

    color: #ffffff;
}


.iv-product-card:hover
.iv-view-btn span:last-child {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .iv-product-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 850px) {

    .iv-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .iv-product-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .iv-product-image {
        height: 380px;
    }


    .iv-product-info {
        padding: 22px;
    }


    .iv-product-info h3 {
        font-size: 25px;
    }

}



/* =========================================================
   PRICE
========================================================= */

.iv-option-price {
    margin-top: 25px;

    display: flex;
    flex-direction: column;

    gap: 5px;
}


.iv-option-price strong {
    font-family: 'Tenor Sans', sans-serif;

    font-size: 21px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;

    color: #123f3e;
}


.iv-option-price span {
    font-family: 'Lato', sans-serif;

    font-size: 8px;
    font-weight: 400;

    color: #788986;
}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .iv-detail-options {
        display: flex;

        overflow-x: auto;

        gap: 9px;

        padding:
            6px 0 10px;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }


    .iv-detail-options::-webkit-scrollbar {
        display: none;
    }


    .iv-option-card {
        flex: 0 0 170px;

        min-height: 120px;
    }


    .iv-option-price strong {
        font-size: 19px;
    }

}

/* =========================================================
   INDIVIDUAL IV - STACKED PACKAGE PRICING
========================================================= */

.iv-detail-options {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 9px;

    margin: 28px 0 16px;
}


/* PACKAGE BOX */

.iv-option-card {
    position: relative;

    width: 100%;
    min-height: 72px;

    box-sizing: border-box;

    padding: 14px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border: 1px solid rgba(15, 89, 88, .22);

    border-radius: 6px;

    background: rgba(255, 255, 255, .30);

    cursor: pointer;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


/* HOVER */

.iv-option-card:hover {
    border-color: rgba(15, 89, 88, .50);

    background: rgba(255, 255, 255, .65);
}


/* SELECTED PACKAGE */

.iv-option-card:has(input:checked) {
    border-color: #0f6462;

    background: #ffffff;

    box-shadow:
        inset 0 0 0 1px #0f6462;
}


/* HIDE REAL RADIO */

.iv-option-card input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.iv-option-left {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 7px;
}


.iv-option-title-row {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 8px;
}


.iv-option-left strong {
    font-family: 'Lato', sans-serif;

    font-size: 12px;
    font-weight: 700;

    color: #123f3e;
}


.iv-option-left > span {
    font-family: 'Lato', sans-serif;

    font-size: 9px;

    color: #7c8d8a;
}


/* PACKAGE BADGE */

.iv-package-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 4px 8px;

    border-radius: 50px;

    background: #0f5958;

    font-family: 'Lato', sans-serif;

    font-size: 7px;
    font-weight: 700;

    line-height: 1;

    color: #ffffff;
}


/* =========================================================
   PRICE - RIGHT SIDE
========================================================= */

.iv-option-right {
    flex-shrink: 0;

    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: 5px;

    text-align: right;
}


.iv-option-right strong {
    font-family: 'Tenor Sans', sans-serif;

    font-size: 18px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;

    color: #123f3e;
}


.iv-option-right span {
    font-family: 'Lato', sans-serif;

    font-size: 8px;

    white-space: nowrap;

    color: #7c8d8a;
}


/* =========================================================
   SELECTED INDICATOR
========================================================= */

.iv-option-card::after {
    content: "";

    position: absolute;

    top: 10px;
    right: 10px;

    width: 8px;
    height: 8px;

    border: 1px solid rgba(15, 89, 88, .30);

    border-radius: 50%;

    background: transparent;
}


/* MOVE PRICE SLIGHTLY AWAY FROM RADIO */

.iv-option-right {
    padding-right: 15px;
}


.iv-option-card:has(input:checked)::after {
    border-color: #0f6462;

    background: #0f6462;

    box-shadow:
        inset 0 0 0 2px #ffffff;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .iv-detail-options {
        gap: 8px;
    }


    .iv-option-card {
        min-height: 65px;

        padding: 10px 11px;

        gap: 12px;
    }


    .iv-option-right {
        padding-right: 12px;
    }


    .iv-option-right strong {
        font-size: 16px;
    }


    .iv-option-title-row {
        gap: 5px;
    }


    .iv-package-badge {
        font-size: 6px;

        padding: 4px 6px;
    }

}

/* =========================================================
   IV PACKAGE PRICE BOXES
========================================================= */

.iv-detail-options {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 10px;

    margin: 28px 0 18px;
}


/* BOX */

.iv-option-card {
    position: relative;

    width: 100%;
    min-height: 76px;

    box-sizing: border-box;

    padding: 15px 18px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;

    border:
        1px solid rgba(15, 89, 88, .22);

    border-radius: 8px;

    background: transparent;

    cursor: pointer;

    transition:
        border-color .25s ease,
        background .25s ease;
}


/* HOVER */

.iv-option-card:hover {
    border-color:
        rgba(15, 89, 88, .48);

    background:
        rgba(255,255,255,.35);
}


/* SELECTED */

.iv-option-card:has(input:checked) {
    border-color: #0f5958;

    background:
        rgba(255,255,255,.25);
}


/* HIDE RADIO */

.iv-option-card input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


/* =========================================================
   LEFT
========================================================= */

.iv-option-left {
    min-width: 0;
}


.iv-option-title-row {
    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;
}


.iv-option-left strong {
    font-family: 'Lato', sans-serif;

    font-size: 15px;
    font-weight: 400;

    color: #234e4d;
}


/* SAVE BADGE */

.iv-package-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 5px 9px;

    border-radius: 50px;

    background: #123f3e;

    font-family: 'Lato', sans-serif;

    font-size: 9px;
    font-weight: 700;

    line-height: 1;

    color: #ffffff;

    box-shadow:
        0 4px 10px
        rgba(18, 63, 62, .16);
}


/* =========================================================
   PRICE
========================================================= */

.iv-option-right {
    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 5px;

    text-align: right;
}


.iv-option-right strong {
    font-family: 'Tenor Sans', sans-serif;

    font-size: 19px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;

    color: #123f3e;
}


.iv-option-right span {
    font-family: 'Lato', sans-serif;

    font-size: 9px;

    white-space: nowrap;

    color: #758683;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .iv-option-card {
        min-height: 65px;

        padding: 10px 11px;

        gap: 12px;
    }


    .iv-option-left strong {
        font-size: 13px;
    }


    .iv-option-right strong {
        font-size: 17px;
    }


    .iv-option-right span {
        font-size: 8px;
    }


    .iv-package-badge {
        font-size: 8px;

        padding: 4px 7px;
    }

}


/* =========================================================
   =========================================================
   PEPTIDE THERAPY PAGE
   ARABIAN HOME HEALTH
   =========================================================
   ========================================================= */


/* =========================================================
   LOCAL CONTAINER
========================================================= */

.pt-container {
    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.pt-hero {
    position: relative;

    width: 100%;
    min-height: 820px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #073c3b;
}


/* SOFT BACKGROUND LIGHT */

.pt-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(151, 205, 198, .22),
            transparent 34%
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,.13),
            transparent 35%,
            transparent 65%,
            rgba(0,0,0,.16)
        );

    pointer-events: none;
}


/* GLOW */

.pt-hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}


.pt-glow-one {
    width: 450px;
    height: 450px;

    top: 150px;
    left: 38%;

    background:
        rgba(133, 205, 196, .12);
}


.pt-glow-two {
    width: 400px;
    height: 400px;

    right: -100px;
    bottom: -100px;

    background:
        rgba(98, 170, 164, .12);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.pt-hero-inner {
    position: relative;

    z-index: 2;

    width: min(1500px, calc(100% - 100px));

    flex: 1;

    margin: 0 auto;

    padding: 175px 0 80px;

    display: grid;

    grid-template-columns:
        minmax(300px, .9fr)
        minmax(400px, 1.2fr)
        minmax(300px, .85fr);

    align-items: center;

    gap: 45px;
}


/* =========================================================
   HERO LEFT
========================================================= */

.pt-hero-left {
    align-self: center;
}


.pt-kicker,
.pt-right-kicker {
    display: block;

    margin-bottom: 25px;

    font-family: 'Lato', sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.7px;

    color: rgba(255,255,255,.58);
}


.pt-hero-left h1 {
    margin: 0 0 28px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(66px, 6vw, 105px);
    font-weight: 400;

    line-height: .98;

    letter-spacing: -2px;

    color: #f8f3eb;
}


.pt-hero-left > p {
    max-width: 470px;

    margin: 0;

    font-family: 'Lato', sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255,255,255,.68);
}


/* HERO POINTS */

.pt-hero-points {
    margin-top: 32px;

    display: flex;

    flex-wrap: wrap;

    gap: 18px 25px;
}


.pt-hero-points div {
    display: flex;

    align-items: center;

    gap: 8px;

    font-family: 'Lato', sans-serif;

    font-size: 10px;

    color: rgba(255,255,255,.7);
}


.pt-hero-points i {
    font-size: 10px;

    color: #9cc8c2;
}


/* =========================================================
   HERO PRODUCT
========================================================= */

.pt-hero-product {
    position: relative;

    height: 570px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.pt-product-aura {
    position: absolute;

    width: 330px;
    height: 480px;

    border-radius: 50%;

    background:
        rgba(157, 208, 201, .16);

    filter: blur(50px);
}


.pt-hero-product img {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    max-width: 480px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 35px 35px
            rgba(0,0,0,.3)
        );

    transform: rotate(7deg);
}


/* =========================================================
   HERO RIGHT
========================================================= */

.pt-hero-right {
    max-width: 390px;
}


.pt-hero-right h2 {
    margin: 0 0 24px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;

    line-height: 1.06;

    color: #f8f3eb;
}


.pt-hero-right p {
    margin: 0 0 35px;

    font-family: 'Lato', sans-serif;

    font-size: 13px;

    line-height: 1.8;

    color: rgba(255,255,255,.62);
}


/* HERO CTA */

.pt-hero-button {
    width: 100%;
    max-width: 280px;

    min-height: 52px;

    padding: 0 22px;

    box-sizing: border-box;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border:
        1px solid rgba(255,255,255,.55);

    border-radius: 50px;

    font-family: 'Lato', sans-serif;

    font-size: 12px;
    font-weight: 700;

    color: #ffffff;

    text-decoration: none;

    transition: .3s ease;
}


.pt-hero-button:hover {
    background: #ffffff;

    color: #123f3e;
}


.pt-button-arrow {
    font-size: 17px;

    transition: transform .3s ease;
}


.pt-hero-button:hover
.pt-button-arrow {
    transform: translateX(5px);
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.pt-hero-bottom {
    position: relative;

    z-index: 2;

    min-height: 55px;

    padding: 0 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    border-top:
        1px solid rgba(255,255,255,.1);

    font-family: 'Lato', sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.2px;

    color: rgba(255,255,255,.45);
}


.pt-hero-bottom i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.45);
}


/* =========================================================
   TRUST STRIP
========================================================= */

.pt-trust {
    padding: 37px 0;

    background: #174b4a;
}


.pt-trust-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0,1fr));

    gap: 30px;
}


.pt-trust-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;
}


.pt-trust-item > i {
    margin-top: 2px;

    font-size: 16px;

    color: #91b9b5;
}


.pt-trust-item strong {
    display: block;

    margin-bottom: 7px;

    font-family: 'Lato', sans-serif;

    font-size: 12px;
    font-weight: 700;

    color: #d8e5e2;
}


.pt-trust-item span {
    display: block;

    font-family: 'Lato', sans-serif;

    font-size: 9px;

    color: rgba(255,255,255,.46);
}


/* =========================================================
   PROTOCOL SECTION
========================================================= */

.pt-protocols {
    padding: 110px 0 130px;

    background: #f8f3eb;
}


/* HEADING */

.pt-protocol-heading {
    margin-bottom: 55px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
}


.pt-section-kicker {
    display: block;

    margin-bottom: 14px;

    font-family: 'Lato', sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.7px;

    color: #0f6462;
}


.pt-section-kicker.light {
    color: rgba(255,255,255,.58);
}


.pt-protocol-heading h2 {
    margin: 0 0 15px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(44px, 4vw, 60px);
    font-weight: 400;

    line-height: 1.08;

    color: #123f3e;
}


.pt-protocol-heading p {
    max-width: 590px;

    margin: 0;

    font-family: 'Lato', sans-serif;

    font-size: 13px;

    line-height: 1.75;

    color: #6d7e7b;
}


/* TOP CTA */

.pt-consult-button {
    flex: 0 0 auto;

    min-width: 225px;
    min-height: 50px;

    padding: 0 23px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-radius: 50px;

    background: #123f3e;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    color: #ffffff;

    text-decoration: none;

    transition: .3s ease;
}


.pt-consult-button:hover {
    background: #0f6462;
}


/* =========================================================
   PROTOCOL LAYOUT
========================================================= */

.pt-protocol-layout {
    display: grid;

    grid-template-columns:
        245px
        minmax(0, 1fr);

    gap: 35px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.pt-sidebar {
    position: sticky;

    top: 120px;

    min-width: 0;
}


/* SEARCH */

.pt-search {
    width: 100%;
    height: 45px;

    padding: 0 16px;

    margin-bottom: 16px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 50px;

    background: #eee4d5;
}


.pt-search i {
    font-size: 11px;

    color: #82918f;
}


.pt-search input {
    flex: 1;

    min-width: 0;

    border: 0;

    outline: none;

    background: transparent;

    font-family: 'Lato', sans-serif;

    font-size: 12px;

    color: #123f3e;
}


.pt-search input::placeholder {
    color: #879694;
}


/* =========================================================
   FILTERS
========================================================= */

.pt-filter-list {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 7px;
}


.pt-filter {
    min-height: 39px;

    max-width: 100%;

    padding: 0 14px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    border:
        1px solid rgba(15,89,88,.18);

    border-radius: 50px;

    background: transparent;

    font-family: 'Lato', sans-serif;

    font-size: 11px;

    color: #123f3e;

    white-space: nowrap;

    cursor: pointer;

    transition: .25s ease;
}


.pt-filter i {
    width: 14px;

    font-size: 10px;

    color: #0f6462;
}


.pt-filter:hover,
.pt-filter.active {
    border-color: #123f3e;

    background: #123f3e;

    color: #ffffff;
}


.pt-filter:hover i,
.pt-filter.active i {
    color: #ffffff;
}


/* =========================================================
   PRODUCT GRID
   3 PRODUCTS NEXT TO SIDEBAR
========================================================= */

.pt-products {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.pt-card {
    position: relative;

    min-width: 0;
    min-height: 500px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border-radius: 8px;

    background: #eee4d5;

    text-decoration: none;

    color: inherit;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.pt-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 45px
        rgba(18,63,62,.10);
}


/* CARD HEADER */

.pt-card-header {
    position: relative;

    z-index: 2;

    padding: 25px 24px 0;
}


.pt-card-header h3 {
    min-height: 54px;

    margin: 0 0 11px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 24px;
    font-weight: 400;

    line-height: 1.15;

    color: #123f3e;
}


.pt-card-header > span {
    display: inline-flex;

    padding: 6px 10px;

    border-radius: 50px;

    background:
        rgba(255,255,255,.48);

    font-family: 'Lato', sans-serif;

    font-size: 8px;
    font-weight: 700;

    color: #728682;
}


/* CARD IMAGE */

.pt-card-image {
    flex: 1;

    min-height: 320px;

    padding: 15px 20px 0;

    display: flex;

    align-items: flex-end;
    justify-content: center;

    overflow: hidden;
}


.pt-card-image img {
    width: 100%;
    height: 100%;

    max-height: 325px;

    object-fit: contain;

    object-position: center bottom;

    transition: transform .4s ease;
}


.pt-card:hover
.pt-card-image img {
    transform:
        translateY(-6px)
        scale(1.035);
}


/* CARD FOOTER */

.pt-card-footer {
    margin: 0 22px 20px;

    padding-top: 15px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid rgba(15,89,88,.14);

    font-family: 'Lato', sans-serif;

    font-size: 10px;
    font-weight: 700;

    color: #123f3e;
}


.pt-card-footer span:last-child {
    font-size: 16px;

    transition: transform .25s ease;
}


.pt-card:hover
.pt-card-footer span:last-child {
    transform: translateX(5px);
}


/* FILTER HIDDEN */

.pt-card.pt-hidden {
    display: none;
}


/* =========================================================
   NO RESULTS
========================================================= */

.pt-no-results {
    display: none;

    padding: 80px 20px;

    text-align: center;
}


.pt-no-results.show {
    display: block;
}


.pt-no-results i {
    margin-bottom: 20px;

    font-size: 24px;

    color: #78908c;
}


.pt-no-results h3 {
    margin: 0 0 10px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 28px;
    font-weight: 400;

    color: #123f3e;
}


.pt-no-results p {
    margin: 0;

    font-family: 'Lato', sans-serif;

    font-size: 12px;

    color: #71817f;
}


/* =========================================================
   ASSESSMENT CTA
========================================================= */

.pt-assessment {
    padding: 90px 0;

    background: #104d4d;
}


.pt-assessment-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 80px;
}


.pt-assessment h2 {
    max-width: 650px;

    margin: 0 0 18px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;

    line-height: 1.05;

    color: #ffffff;
}


.pt-assessment p {
    max-width: 570px;

    margin: 0;

    font-family: 'Lato', sans-serif;

    font-size: 13px;

    line-height: 1.75;

    color: rgba(255,255,255,.65);
}


.pt-assessment-button {
    flex: 0 0 auto;

    min-width: 265px;
    min-height: 54px;

    padding: 0 23px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border:
        1px solid rgba(255,255,255,.55);

    border-radius: 50px;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    color: #ffffff;

    text-decoration: none;

    transition: .3s ease;
}


.pt-assessment-button:hover {
    background: #ffffff;

    color: #123f3e;
}


/* =========================================================
   FAQ
========================================================= */

.pt-faq {
    padding: 115px 0 125px;

    background: #f8f3eb;
}


.pt-faq-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, .8fr)
        minmax(500px, 1.25fr);

    gap: 100px;

    align-items: start;
}


/* FAQ LEFT */

.pt-faq-intro {
    position: sticky;

    top: 120px;
}


.pt-faq-intro h2 {
    max-width: 480px;

    margin: 0 0 30px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(45px, 4vw, 61px);
    font-weight: 400;

    line-height: 1.08;

    color: #123f3e;
}


.pt-faq-intro > p {
    max-width: 420px;

    margin: 0 0 45px;

    font-family: 'Lato', sans-serif;

    font-size: 13px;

    line-height: 1.8;

    color: #71817f;
}


.pt-faq-contact {
    display: flex;

    flex-direction: column;

    gap: 8px;

    font-family: 'Lato', sans-serif;

    font-size: 11px;

    color: #71817f;
}


.pt-faq-contact a {
    font-weight: 700;

    color: #0f6462;

    text-decoration: none;
}


/* =========================================================
   FAQ RIGHT
========================================================= */

.pt-faq-list {
    border-top:
        1px solid rgba(15,89,88,.2);
}


.pt-faq-item {
    border-bottom:
        1px solid rgba(15,89,88,.2);
}


.pt-faq-item summary {
    min-height: 91px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    list-style: none;

    cursor: pointer;

    font-family: 'Lato', sans-serif;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.45;

    color: #003f3e;
}


.pt-faq-item summary::-webkit-details-marker {
    display: none;
}


.pt-faq-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(15,89,88,.22);

    border-radius: 50%;

    font-family: 'Lato', sans-serif;

    font-size: 20px;
    font-weight: 400;

    color: #0f6462;
}


.pt-faq-answer {
    padding:
        0
        70px
        27px
        0;
}


.pt-faq-answer p {
    max-width: 650px;

    margin: 0;

    font-family: 'Lato', sans-serif;

    font-size: 12px;

    line-height: 1.8;

    color: #71817f;
}


/* =========================================================
   FINAL CTA
========================================================= */

.pt-final-cta {
    padding: 75px 0;

    background: #123f3e;
}


.pt-final-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;
}


.pt-final-inner h2 {
    max-width: 650px;

    margin: 0;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(42px, 4vw, 58px);
    font-weight: 400;

    line-height: 1.08;

    color: #ffffff;
}


.pt-final-button {
    min-width: 245px;
    min-height: 52px;

    padding: 0 23px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border:
        1px solid rgba(255,255,255,.55);

    border-radius: 50px;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    color: #ffffff;

    text-decoration: none;

    transition: .3s ease;
}


.pt-final-button:hover {
    background: #ffffff;

    color: #123f3e;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .pt-container {
        width:
            min(
                100% - 50px,
                1200px
            );
    }


    .pt-hero-inner {
        width:
            calc(100% - 60px);

        grid-template-columns:
            .9fr
            1fr
            .85fr;

        gap: 25px;
    }


    .pt-hero-product {
        height: 480px;
    }


    .pt-trust-grid {
        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 30px;
    }


    .pt-products {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


/* =========================================================
   TABLET / MOBILE FILTER
========================================================= */

@media (max-width: 950px) {

    .pt-hero {
        min-height: auto;
    }


    .pt-hero-inner {
        padding:
            150px 0
            70px;

        grid-template-columns:
            1fr 1fr;
    }


    .pt-hero-left {
        grid-column:
            1 / -1;
    }


    .pt-hero-left h1 {
        font-size: 70px;
    }


    .pt-hero-product {
        height: 430px;
    }


    .pt-hero-right {
        max-width: none;
    }


    .pt-protocol-layout {
        grid-template-columns: 1fr;
    }


    .pt-sidebar {
        position: static;
    }


    /*
       IMPORTANT:
       MOBILE/TABLET FILTER IS NOT A DROPDOWN.
       IT BECOMES HORIZONTAL SCROLLABLE PILLS.
    */

    .pt-filter-list {
        width: 100%;

        flex-direction: row;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 8px;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }


    .pt-filter-list::-webkit-scrollbar {
        display: none;
    }


    .pt-filter {
        flex: 0 0 auto;
    }


    .pt-search {
        max-width: 430px;
    }


    .pt-faq-layout {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .pt-faq-intro {
        position: static;
    }


    .pt-assessment-inner,
    .pt-final-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .pt-container {
        width: calc(100% - 40px);
    }


    /* HERO */

    .pt-hero-inner {
        width: calc(100% - 40px);

        padding:
            130px 0
            55px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 45px;
    }


    .pt-hero-left h1 {
        font-size: 58px;

        letter-spacing: -1px;
    }


    .pt-hero-left > p {
        font-size: 13px;
    }


    .pt-hero-product {
        width: 100%;
        height: 390px;

        order: 2;
    }


    .pt-hero-right {
        order: 3;
    }


    .pt-hero-right h2 {
        font-size: 43px;
    }


    .pt-hero-button {
        max-width: none;
    }


    .pt-hero-bottom {
        padding: 20px;

        flex-wrap: wrap;

        gap: 10px 14px;

        text-align: center;
    }


    /* TRUST */

    .pt-trust {
        padding: 35px 0;
    }


    .pt-trust-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 28px 18px;
    }


    /* PROTOCOL */

    .pt-protocols {
        padding: 75px 0 85px;
    }


    .pt-protocol-heading {
        margin-bottom: 35px;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .pt-protocol-heading h2 {
        font-size: 39px;
    }


    .pt-consult-button {
        width: 100%;

        box-sizing: border-box;
    }


    .pt-search {
        width: 100%;
        max-width: none;
    }


    /*
       MOBILE FILTER:
       HORIZONTAL SWIPE
       NO DROPDOWN
    */

    .pt-filter-list {
        width: auto;

        margin-left: -20px;
        margin-right: -20px;

        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
    }


    .pt-filter {
        min-height: 38px;

        padding: 0 13px;

        font-size: 10px;
    }


    /* PRODUCT CARDS */

    .pt-products {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .pt-card {
        min-height: 480px;
    }


    .pt-card-header h3 {
        min-height: auto;

        font-size: 25px;
    }


    .pt-card-image {
        min-height: 320px;
    }


    /* ASSESSMENT */

    .pt-assessment {
        padding: 75px 0;
    }


    .pt-assessment h2 {
        font-size: 46px;
    }


    .pt-assessment-button {
        width: 100%;

        box-sizing: border-box;
    }


    /* FAQ */

    .pt-faq {
        padding: 80px 0;
    }


    .pt-faq-layout {
        gap: 45px;
    }


    .pt-faq-intro h2 {
        font-size: 42px;
    }


    .pt-faq-item summary {
        min-height: 82px;

        font-size: 13px;
    }


    .pt-faq-icon {
        width: 33px;
        height: 33px;

        flex-basis: 33px;
    }


    .pt-faq-answer {
        padding:
            0
            10px
            25px
            0;
    }


    /* FINAL CTA */

    .pt-final-cta {
        padding: 65px 0;
    }


    .pt-final-inner h2 {
        font-size: 40px;
    }


    .pt-final-button {
        width: 100%;

        box-sizing: border-box;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .pt-hero-left h1 {
        font-size: 50px;
    }


    .pt-hero-product {
        height: 340px;
    }


    .pt-hero-right h2 {
        font-size: 38px;
    }


    .pt-trust-grid {
        grid-template-columns: 1fr;
    }


    .pt-protocol-heading h2 {
        font-size: 35px;
    }


    .pt-card {
        min-height: 450px;
    }


    .pt-card-image {
        min-height: 285px;
    }

}


/* =========================================================
   =========================================================
   PEPTIDE ASSESSMENT
   =========================================================
   ========================================================= */

.assessment-body {
    margin: 0;
    min-height: 100vh;

    background: #ffffff;

    color: #123f3e;

    overflow-x: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.assessment-header {
    position: fixed;

    z-index: 100;

    top: 0;
    left: 0;
    right: 0;

    height: 92px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    padding: 0 30px;

    box-sizing: border-box;

    background: #ffffff;

    border-bottom:
        1px solid rgba(15,89,88,.10);
}


.assessment-header-logo {
    justify-self: start;
}


.assessment-header-logo img {
    display: block;

    width: auto;
    height: 45px;
}


.assessment-header-title {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;

    text-align: center;
}


.assessment-header-title span {
    font-family: 'Lato', sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #8a9996;
}


.assessment-header-title strong {
    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 400;

    color: #0f5958;
}


/* CLOSE */

.assessment-close {
    justify-self: end;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f6f4ef;

    font-size: 14px;

    color: #123f3e;

    text-decoration: none;

    transition: .25s ease;
}


.assessment-close:hover {
    background: #123f3e;

    color: #ffffff;
}


/* =========================================================
   PROGRESS
========================================================= */

.assessment-progress {
    position: absolute;

    left: 0;
    right: 0;
    bottom: -2px;

    height: 2px;

    background: #eeeae3;
}


.assessment-progress-bar {
    width: 0;
    height: 100%;

    background: #0f5958;

    transition: width .45s ease;
}


/* =========================================================
   MAIN
========================================================= */

.assessment-main {
    min-height: 100vh;

    box-sizing: border-box;

    padding:
        92px 20px
        90px;

    display: flex;

    flex-direction: column;
}


/* =========================================================
   STEPS
========================================================= */

.assessment-step {
    display: none;

    flex: 1;

    width: 100%;

    align-items: flex-start;

    justify-content: center;

    padding-top: 80px;

    box-sizing: border-box;
}


.assessment-step.active {
    display: flex;

    animation:
        assessmentFade
        .38s ease;
}


@keyframes assessmentFade {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   QUESTION
========================================================= */

.assessment-question-wrap {
    width: min(780px, 100%);
}


.assessment-section-label {
    display: block;

    margin-bottom: 28px;

    font-family: 'Lato', sans-serif;

    font-size: 12px;
    font-weight: 400;

    color: #78908d;
}


.assessment-question-wrap h1 {
    max-width: 780px;

    margin: 0 0 55px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: clamp(42px, 4vw, 61px);
    font-weight: 400;

    line-height: 1.12;

    letter-spacing: -.5px;

    color: #123f3e;
}


.assessment-question-wrap h1 sup {
    position: relative;

    top: -10px;

    margin-left: 5px;

    font-family: 'Lato', sans-serif;

    font-size: 16px;

    color: #d49a50;
}


/* =========================================================
   OPTIONS
========================================================= */

.assessment-options {
    width: 100%;

    border-top:
        1px solid rgba(15,89,88,.17);
}


.assessment-option {
    position: relative;

    min-height: 68px;

    display: flex;

    align-items: center;

    border-bottom:
        1px solid rgba(15,89,88,.17);

    cursor: pointer;

    transition:
        padding-left .25s ease,
        background .25s ease;
}


.assessment-option:hover {
    padding-left: 12px;

    background:
        rgba(247,241,232,.36);
}


.assessment-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.assessment-option > span {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 5px;

    font-family: 'Lato', sans-serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.5;

    color: #123f3e;
}


.assessment-option > span strong {
    font-size: 14px;
    font-weight: 700;
}


/* SELECTED */

.assessment-option:has(input:checked) {
    padding-left: 12px;

    background:
        rgba(15,89,88,.045);
}


.assessment-option:has(input:checked)::after {
    content: "✓";

    position: absolute;

    right: 10px;

    font-family: 'Lato', sans-serif;

    font-size: 13px;

    color: #0f6462;
}


/* LONG OPTIONS */

.assessment-options-long
.assessment-option {
    min-height: 76px;

    padding-top: 10px;
    padding-bottom: 10px;
}


/* =========================================================
   NUMBER INPUT QUESTIONS
========================================================= */

.assessment-input-row {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    border-bottom:
        1px solid rgba(15,89,88,.28);
}


.assessment-input-row input {
    width: 100%;
    height: 75px;

    padding: 0 100px 0 0;

    box-sizing: border-box;

    border: 0;
    outline: 0;

    background: transparent;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 30px;

    color: #123f3e;
}


.assessment-input-row input::placeholder {
    color: #a4afad;
}


.assessment-unit {
    position: absolute;

    right: 0;

    font-family: 'Lato', sans-serif;

    font-size: 13px;

    color: #71817f;
}


/* =========================================================
   CONTINUE
========================================================= */

.assessment-continue {
    min-width: 180px;
    min-height: 50px;

    margin-top: 35px;

    padding: 0 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border: 0;

    border-radius: 50px;

    background: #123f3e;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    color: #ffffff;

    cursor: pointer;

    transition: .25s ease;
}


.assessment-continue:hover {
    background: #0f6462;
}


/* ERROR */

.assessment-error {
    margin-top: 12px;

    font-family: 'Lato', sans-serif;

    font-size: 11px;

    color: #a34f44;
}


/* =========================================================
   FINAL CONTACT
========================================================= */

.assessment-final-intro {
    max-width: 600px;

    margin:
        -25px 0
        40px;

    font-family: 'Lato', sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #71817f;
}


.assessment-contact-fields {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;
}


.assessment-field {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.assessment-field label {
    font-family: 'Lato', sans-serif;

    font-size: 10px;
    font-weight: 700;

    color: #123f3e;
}


.assessment-field input {
    width: 100%;
    height: 58px;

    padding: 0;

    border: 0;

    border-bottom:
        1px solid rgba(15,89,88,.28);

    outline: 0;

    background: transparent;

    font-family: 'Lato', sans-serif;

    font-size: 15px;

    color: #123f3e;
}


.assessment-field input:focus {
    border-color: #0f6462;
}


/* SUBMIT */

.assessment-submit {
    width: 100%;

    min-height: 54px;

    margin-top: 45px;

    padding: 0 22px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border: 0;

    border-radius: 50px;

    background: #0f6462;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    color: #ffffff;

    cursor: pointer;
}


.assessment-submit:disabled {
    opacity: .65;

    cursor: wait;
}


.assessment-privacy-note {
    margin: 15px 0 0;

    font-family: 'Lato', sans-serif;

    font-size: 9px;

    line-height: 1.6;

    color: #91a09d;
}


/* =========================================================
   BACK
========================================================= */

.assessment-navigation {
    position: fixed;

    z-index: 90;

    bottom: 25px;

    left: 50%;

    width: min(780px, calc(100% - 40px));

    transform: translateX(-50%);
}


.assessment-back {
    display: flex;

    align-items: center;

    gap: 8px;

    border: 0;

    background: transparent;

    font-family: 'Lato', sans-serif;

    font-size: 12px;

    color: #71817f;

    cursor: pointer;
}


.assessment-back:hover {
    color: #0f6462;
}


/* =========================================================
   SUCCESS SCREEN
========================================================= */

.assessment-success {
    min-height: calc(100vh - 92px);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 50px 20px;

    box-sizing: border-box;

    text-align: center;
}


.assessment-success-inner {
    width: min(650px, 100%);
}


.assessment-success-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0f6462;

    font-size: 22px;

    color: #ffffff;
}


.assessment-success h1 {
    margin: 0 0 22px;

    font-family: 'Tenor Sans', sans-serif;

    font-size: 52px;
    font-weight: 400;

    line-height: 1.1;

    color: #123f3e;
}


.assessment-success p {
    max-width: 540px;

    margin: 0 auto 30px;

    font-family: 'Lato', sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #71817f;
}


.assessment-success a {
    min-width: 200px;
    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50px;

    background: #123f3e;

    font-family: 'Lato', sans-serif;

    font-size: 11px;
    font-weight: 700;

    color: #ffffff;

    text-decoration: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .assessment-header {
        height: 78px;

        padding: 0 18px;
    }


    .assessment-header-logo img {
        height: 34px;
    }


    .assessment-header-title span {
        font-size: 6px;
    }


    .assessment-header-title strong {
        font-size: 9px;
    }


    .assessment-close {
        width: 34px;
        height: 34px;
    }


    .assessment-main {
        padding:
            78px 20px
            85px;
    }


    .assessment-step {
        padding-top: 55px;
    }


    .assessment-section-label {
        margin-bottom: 22px;

        font-size: 10px;
    }


    .assessment-question-wrap h1 {
        margin-bottom: 40px;

        font-size: 39px;
    }


    .assessment-option {
        min-height: 64px;
    }


    .assessment-option > span {
        font-size: 13px;
    }


    .assessment-contact-fields {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .assessment-final-intro {
        margin-top: -15px;
    }


    .assessment-navigation {
        bottom: 20px;
    }

}


/* =========================================================
   SERVICE TESTIMONIALS - COMPACT
========================================================= */

.service-testimonials {
    padding: 70px 0 75px;
    background: #ffffff;
}


/* HEADING */

.service-testimonials-heading {
    max-width: 600px;
    margin-bottom: 32px;
}

.service-testimonials-heading .eyebrow {
    display: block;
    margin-bottom: 10px;

    font-family: 'Lato', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;

    color: #0f6462;
}

.service-testimonials-heading h2 {
    margin: 0 0 12px;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.1;

    color: #123f3e;
}

.service-testimonials-heading p {
    max-width: 520px;
    margin: 0;

    font-family: 'Lato', sans-serif;
    font-size: 13px;
    line-height: 1.7;

    color: #71817f;
}


/* =========================================================
   GRID
========================================================= */

.service-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}


/* =========================================================
   CARD
========================================================= */

.service-testimonial-card {
    min-height: 220px;
    padding: 24px;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    border: 1px solid rgba(15, 89, 88, 0.12);
    background: #f8f3eb;

    transition: 0.3s ease;
}

.service-testimonial-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(18, 63, 62, 0.06);
}


/* =========================================================
   STARS
========================================================= */

.service-testimonial-stars {
    display: flex;
    gap: 3px;

    margin-bottom: 17px;
}

.service-testimonial-stars i {
    font-size: 8px;
    color: #0f6462;
}


/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.service-testimonial-card blockquote {
    flex: 1;

    margin: 0 0 22px;
    padding: 0;

    font-family: 'Tenor Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;

    color: #123f3e;
}


/* =========================================================
   AUTHOR
========================================================= */

.service-testimonial-author {
    padding-top: 14px;

    display: flex;
    align-items: center;
    gap: 9px;

    border-top:
        1px solid rgba(15, 89, 88, 0.12);
}

.service-testimonial-avatar {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #123f3e;

    font-family: 'Lato', sans-serif;
    font-size: 9px;
    font-weight: 700;

    color: #ffffff;
}

.service-testimonial-author strong {
    display: block;
    margin-bottom: 2px;

    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 700;

    color: #123f3e;
}

.service-testimonial-author span {
    display: block;

    font-family: 'Lato', sans-serif;
    font-size: 8px;

    color: #84918f;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .service-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .service-testimonials {
        padding: 55px 0 60px;
    }

    .service-testimonials-heading {
        margin-bottom: 25px;
    }

    .service-testimonials-heading h2 {
        font-size: 32px;
    }

    .service-testimonials-heading p {
        font-size: 12px;
    }

    .service-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-testimonial-card {
        min-height: auto;
        padding: 20px;
    }

    .service-testimonial-card blockquote {
        font-size: 15px;
        margin-bottom: 18px;
    }

}


