/* =========================================================
   LET'S HEAL & THRIVE
   COMPLETE WEBSITE STYLES
   ========================================================= */


/* =========================================================
   1. COLOUR & FONT VARIABLES
========================================================= */

:root {

    --deep-green: #344936;
    --forest-green: #4d654b;
    --olive-green: #71836a;
    --sage-green: #a7b59d;
    --light-sage: #e8eee3;
    --soft-green: #f3f6ef;
    --cream: #faf9f3;
    --white: #ffffff;
    --dark-text: #344136;
    --body-text: #667066;
    --terracotta: #b9795f;
    --soft-terracotta: #f1e2da;
    --border: #d6ded0;

    /* assessment accent colours */
    --blue: #3f6fb0;
    --soft-blue: #e6edf7;
    --amber: #b4772a;
    --soft-amber: #f5ead9;
    --violet: #6f5aa8;
    --soft-violet: #ece7f6;
    --green-accent: #3f7a4e;
    --soft-green-accent: #e2efe3;

    --shadow: 0 18px 45px rgba(52, 73, 54, 0.10);

    --heading-font: "Cormorant Garamond", Georgia, serif;
    --body-font: "Manrope", Arial, sans-serif;
    --brand-font: "Comic Sans MS", "Comic Sans", cursive;

}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--dark-text);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, textarea, select {
    font-family: inherit;
}

:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 3px;
}


/* =========================================================
   3. GENERAL CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 80px));
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding-top: 110px;
    padding-bottom: 110px;
}


/* =========================================================
   4. SECTION HEADINGS
========================================================= */

.section-heading {
    width: 100%;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 65px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--terracotta);
    font-family: var(--brand-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-label-large {
    font-size: 22px;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}

.section-heading h2 {
    margin-bottom: 22px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.08;
}

.section-heading p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--body-text);
    font-size: 16px;
}

.section-heading .section-label-large + p {
    margin-top: 18px;
}


/* =========================================================
   5. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: var(--deep-green);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(52, 73, 54, 0.15);
}

.btn-primary:hover {
    background: var(--forest-green);
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid var(--deep-green);
    background: transparent;
    color: var(--deep-green);
}

.btn-secondary:hover {
    background: var(--deep-green);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary-light {
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary-light:hover {
    background: var(--white);
    color: var(--deep-green);
}


/* =========================================================
   6. HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 249, 243, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.navbar {
    width: min(1180px, calc(100% - 80px));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    color: var(--deep-green);
    font-family: var(--brand-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text span {
    margin-top: 2px;
    color: var(--olive-green);
    font-size: 11px;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-menu > a {
    color: var(--deep-green);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-menu > a:hover {
    color: var(--terracotta);
}

.nav-button {
    padding: 11px 20px;
    border-radius: 30px;
    background: var(--deep-green);
    color: var(--white) !important;
}

.nav-button:hover {
    background: var(--forest-green);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--deep-green);
    font-size: 19px;
    cursor: pointer;
}


/* =========================================================
   7. HERO
========================================================= */

.hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 140px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* push the subject toward the right/lower area of the frame so the
       headline never lands over a face */
    object-position: 82% 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            100deg,
            rgba(35, 48, 36, 0.94) 0%,
            rgba(35, 48, 36, 0.88) 30%,
            rgba(35, 48, 36, 0.62) 52%,
            rgba(35, 48, 36, 0.22) 78%,
            rgba(35, 48, 36, 0.08) 100%
        );
}

.hero h1,
.hero-text,
.hero-note {
    text-shadow: 0 2px 14px rgba(20, 28, 20, 0.35);
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 640px;
}

.hero-label {
    color: var(--sage-green);
}

.hero h1 {
    margin-bottom: 28px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(48px, 6vw, 74px);
    font-weight: 500;
    line-height: 1.03;
}

.hero h1 span {
    display: block;
    color: #e6b79c;
}

.hero-text {
    max-width: 540px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 45px;
}

.hero-note {
    display: inline-flex;
    align-items: center;
    max-width: 460px;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    background: rgba(250, 249, 243, 0.12);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 14px;
}

.hero-note span {
    margin-right: 10px;
    color: #e6b79c;
    font-size: 20px;
}


/* =========================================================
   8. MEET NIDHI
========================================================= */

.about-section {
    background: var(--soft-green);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 90px;
}

.about-image-area {
    display: flex;
    justify-content: center;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 430px;
    padding: 12px;
    border: 1px solid var(--sage-green);
    border-radius: 210px 210px 28px 28px;
}

.about-image-frame::before {
    content: "";
    position: absolute;
    top: 10px;
    right: -10px;
    bottom: -10px;
    left: 10px;
    z-index: 0;
    border: 1px solid var(--terracotta);
    border-radius: 210px 210px 28px 28px;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    border-radius: 200px 200px 20px 20px;
}

.about-content {
    max-width: 650px;
}

.about-content .section-label {
    margin-bottom: 15px;
}

.about-content h2 {
    margin-bottom: 5px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: clamp(48px, 5vw, 65px);
    font-weight: 500;
    line-height: 1;
}

.about-role {
    margin-bottom: 30px;
    color: var(--terracotta);
    font-family: var(--brand-font);
    font-size: 18px;
    font-weight: 600;
}

.about-quote {
    margin-bottom: 28px;
    color: var(--forest-green);
    font-family: var(--heading-font);
    font-size: 24px;
    font-style: italic;
    line-height: 1.4;
}

.about-content > p:not(.about-quote) {
    margin-bottom: 18px;
    color: var(--body-text);
    font-size: 16px;
}

.about-divider {
    width: 70px;
    height: 2px;
    margin-top: 30px;
    margin-bottom: 25px;
    background: var(--terracotta);
}

.qualifications-title {
    margin-bottom: 12px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 500;
}

.qualification-list p {
    margin-bottom: 6px;
    color: var(--body-text);
    font-size: 15px;
}


/* =========================================================
   9. HOW I CAN SUPPORT YOU
========================================================= */

.support-section {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-image {
    width: 100%;
    height: 215px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.04);
}

.service-card-content {
    padding: 32px 30px 35px;
}

.service-card h3 {
    margin-bottom: 14px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
}

.service-card h4 {
    margin-bottom: 15px;
    color: var(--forest-green);
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
}

.service-card p {
    margin-bottom: 22px;
    color: var(--body-text);
    font-size: 14px;
    line-height: 1.7;
}

.service-link {
    color: var(--terracotta);
    font-size: 14px;
    font-weight: 700;
}

.service-link:hover {
    color: var(--deep-green);
}


/* =========================================================
   9b. CREDIBILITY STATS BANNER
========================================================= */

.stats-banner {
    padding: 55px 0;
    background: var(--deep-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #e6b79c;
    font-size: 21px;
}

.stat-number {
    margin-bottom: 6px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 27px;
    font-weight: 600;
}

.stat-label {
    max-width: 220px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12.5px;
    line-height: 1.5;
    letter-spacing: 0.3px;
}


/* =========================================================
   10. SELF-ASSESSMENT
========================================================= */

.assessment-section {
    background: var(--soft-green);
}

.assessment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.assessment-card {
    display: grid;
    grid-template-columns: 64px 1fr auto auto;
    align-items: center;
    gap: 26px;
    padding: 26px 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.assessment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.assessment-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    flex-shrink: 0;
}

.assessment-icon-blue { background: var(--soft-blue); color: var(--blue); }
.assessment-icon-amber { background: var(--soft-amber); color: var(--amber); }
.assessment-icon-violet { background: var(--soft-violet); color: var(--violet); }
.assessment-icon-terracotta { background: var(--soft-terracotta); color: var(--terracotta); }
.assessment-icon-green { background: var(--soft-green-accent); color: var(--green-accent); }

.assessment-info h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 600;
}

.assessment-tag {
    padding: 3px 10px;
    border-radius: 20px;
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.assessment-tag-blue { background: var(--soft-blue); color: var(--blue); }
.assessment-tag-amber { background: var(--soft-amber); color: var(--amber); }
.assessment-tag-violet { background: var(--soft-violet); color: var(--violet); }
.assessment-tag-terracotta { background: var(--soft-terracotta); color: var(--terracotta); }
.assessment-tag-green { background: var(--soft-green-accent); color: var(--green-accent); }

.assessment-info p {
    max-width: 480px;
    color: var(--body-text);
    font-size: 14px;
}

.assessment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-pill {
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--soft-green);
    color: var(--olive-green);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.meta-pill-blue { background: var(--soft-blue); color: var(--blue); }
.meta-pill-amber { background: var(--soft-amber); color: var(--amber); }
.meta-pill-violet { background: var(--soft-violet); color: var(--violet); }
.meta-pill-terracotta { background: var(--soft-terracotta); color: var(--terracotta); }
.meta-pill-green { background: var(--soft-green-accent); color: var(--green-accent); }

.assessment-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 30px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.assessment-btn:hover {
    transform: translateY(-3px);
}

.assessment-btn-blue { background: var(--blue); }
.assessment-btn-amber { background: var(--amber); }
.assessment-btn-violet { background: var(--violet); }
.assessment-btn-terracotta { background: var(--terracotta); }
.assessment-btn-green { background: var(--green-accent); }

.checkin-card {
    max-width: 620px;
    margin: 0 auto;
    padding: 55px 50px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.checkin-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--soft-green-accent);
    color: var(--green-accent);
    font-size: 30px;
}

.checkin-card h3 {
    margin-bottom: 14px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 500;
}

.checkin-card > p {
    max-width: 440px;
    margin: 0 auto 24px;
    color: var(--body-text);
    font-size: 15.5px;
}

.checkin-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.checkin-btn {
    padding-left: 34px;
    padding-right: 34px;
}

.assessment-disclaimer {
    max-width: 720px;
    margin: 45px auto 0;
    color: var(--body-text);
    font-size: 13px;
    text-align: center;
}

.assessment-disclaimer a {
    color: var(--terracotta);
    font-weight: 700;
}


/* =========================================================
   11. MY APPROACH
========================================================= */

.approach-section {
    background: var(--cream);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.approach-card {
    position: relative;
    padding: 45px 35px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--sage-green);
    border-radius: 22px;
    background: var(--white);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card-terracotta { border-top-color: var(--terracotta); }
.approach-card-blue { border-top-color: var(--blue); }
.approach-card-green { border-top-color: var(--green-accent); }

.approach-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.card-number {
    position: absolute;
    top: 22px;
    right: 25px;
    color: var(--sage-green);
    font-family: var(--heading-font);
    font-size: 22px;
}

.approach-card i {
    width: 70px;
    height: 70px;
    margin: 15px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-sage);
    color: var(--forest-green);
    font-size: 25px;
}

.approach-icon-terracotta {
    background: var(--soft-terracotta) !important;
    color: var(--terracotta) !important;
}

.approach-icon-blue {
    background: var(--soft-blue) !important;
    color: var(--blue) !important;
}

.approach-icon-green {
    background: var(--soft-green-accent) !important;
    color: var(--green-accent) !important;
}

.approach-card h3 {
    margin-bottom: 12px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 500;
}

.approach-card p {
    color: var(--body-text);
    font-size: 15px;
}


/* =========================================================
   12. CONTACT / CONNECT WITH US
========================================================= */

.contact-section {
    background: var(--soft-green);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 80px;
}

.contact-content {
    max-width: 600px;
}

.contact-content h2 {
    margin-bottom: 25px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: clamp(45px, 5vw, 65px);
    font-weight: 500;
    line-height: 1.1;
}

.contact-content p {
    margin-bottom: 15px;
    color: var(--body-text);
    font-size: 17px;
}

.connect-links {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.connect-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--deep-green);
    font-size: 18px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.connect-link:hover {
    background: var(--deep-green);
    color: var(--white);
    transform: translateY(-4px);
}

.contact-card {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 25px;
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-card img {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid var(--light-sage);
    border-radius: 50%;
}

.contact-card h3 {
    margin-bottom: 3px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 500;
}

.contact-role {
    margin-bottom: 25px;
    color: var(--terracotta);
    font-family: var(--brand-font);
    font-size: 14px;
}

.contact-details {
    margin-bottom: 28px;
}

.contact-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--body-text);
    font-size: 14px;
}

.contact-details a:hover {
    color: var(--terracotta);
}

.contact-details i {
    width: 18px;
    color: var(--forest-green);
}


/* =========================================================
   13. FOOTER
========================================================= */

.footer {
    background: var(--deep-green);
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 75px 0 55px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col a i {
    width: 16px;
    color: var(--sage-green);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo h3 {
    font-family: var(--brand-font);
    font-size: 21px;
    line-height: 1.2;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
}

.footer-tagline {
    max-width: 340px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social 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);
    border-radius: 50%;
    color: var(--white);
    font-size: 15px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: translateY(-3px);
}

.footer-disclaimer {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.1);
}

.footer-disclaimer p {
    max-width: 980px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12.5px;
    line-height: 1.7;
}

.footer-disclaimer strong {
    color: rgba(255, 255, 255, 0.85);
}

.footer-disclaimer a {
    color: var(--sage-green);
    font-weight: 700;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12.5px;
}


/* =========================================================
   14. FLOATING WHATSAPP BUTTON
========================================================= */

.floating-chat {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 26px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease, background 0.3s ease;
}

.floating-chat:hover {
    background: #1ebc59;
    transform: translateY(-4px);
}


/* =========================================================
   15. TABLET
========================================================= */

@media (max-width: 1050px) {

    .container, .navbar {
        width: calc(100% - 50px);
    }

    .nav-menu {
        gap: 14px;
    }

    .nav-menu > a {
        font-size: 12px;
    }

    .about-grid {
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 40px;
    }

    .assessment-card {
        grid-template-columns: 56px 1fr;
        grid-template-areas:
            "icon info"
            "meta meta"
            "btn btn";
        row-gap: 16px;
    }

    .assessment-icon { grid-area: icon; }
    .assessment-info { grid-area: info; }
    .assessment-meta { grid-area: meta; }
    .assessment-btn { grid-area: btn; justify-self: start; }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
    }

}


/* =========================================================
   16. MOBILE NAVIGATION
========================================================= */

@media (max-width: 850px) {

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 25px 30px;
        background: var(--cream);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 15px 30px rgba(52, 73, 54, 0.08);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > a {
        padding: 12px 0;
        font-size: 14px;
    }

    .nav-button {
        margin-top: 10px;
        text-align: center;
    }

}


/* =========================================================
   17. MOBILE
========================================================= */

@media (max-width: 768px) {

    .container, .navbar {
        width: calc(100% - 40px);
    }

    .section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    /* HERO */

    .hero {
        min-height: auto;
        padding-top: 65px;
        padding-bottom: 80px;
    }

    .hero-bg img {
        /* on narrow screens the text spans full width, so darken evenly
           over the whole subject rather than relying on a side gradient */
        object-position: 88% 15%;
    }

    .hero-overlay {
        background: rgba(35, 48, 36, 0.82);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-text {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-image-frame {
        max-width: 380px;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-divider {
        margin-left: auto;
        margin-right: auto;
    }

    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* ASSESSMENT */

    .assessment-card {
        padding: 22px;
    }

    .checkin-card {
        padding: 40px 26px;
    }

    .checkin-card h3 {
        font-size: 28px;
    }

    .assessment-info h3 {
        font-size: 21px;
    }

    /* APPROACH */

    .approach-grid {
        grid-template-columns: 1fr;
    }

    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-content {
        text-align: center;
        margin: 0 auto;
    }

    .connect-links {
        justify-content: center;
    }

    /* FOOTER */

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 45px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col a {
        justify-content: center;
    }

    .footer-disclaimer p {
        text-align: center;
        margin: 0 auto;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

}


/* =========================================================
   18. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .logo img {
        width: 50px;
        height: 50px;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .logo-text span {
        font-size: 10px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-note {
        font-size: 13px;
        padding: 14px 18px;
    }

    .about-image {
        height: 420px;
    }

    .service-card-content {
        padding: 27px 24px 30px;
    }

    .assessment-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .contact-card {
        padding: 30px 22px;
    }

    .floating-chat {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

}


/* =========================================================
   19. BUTTON RESET FOR CONVERTED <button> TRIGGERS
========================================================= */

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.footer-col button.js-open-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    text-align: left;
    transition: color 0.3s ease;
}

.footer-col button.js-open-legal:hover {
    color: var(--white);
}

.link-style {
    padding: 0;
    color: var(--terracotta);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.link-style:hover {
    color: var(--deep-green);
}


/* =========================================================
   20. ANNOUNCEMENT BAR
========================================================= */

.announce-bar {
    background: linear-gradient(100deg, var(--deep-green), var(--forest-green));
    color: var(--white);
}

.announce-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
    text-align: center;
}

.announce-bar-inner p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13.5px;
}

.announce-bar-inner i.fa-sparkles {
    color: #e6b79c;
}

.announce-btn {
    min-height: 36px;
    padding: 9px 20px;
    font-size: 12.5px;
    background: var(--white);
    color: var(--deep-green);
    box-shadow: none;
    flex-shrink: 0;
}

.announce-btn:hover {
    background: var(--sage-green);
    color: var(--deep-green);
}

.announce-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    transition: background 0.3s ease;
}

.announce-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.announce-bar.is-hidden {
    display: none;
}


/* =========================================================
   21. PRICING BADGES
========================================================= */

.price-strike {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92em;
    text-decoration: line-through;
}

.price-now {
    color: #e6b79c;
    font-weight: 800;
}

.fee-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    background: rgba(230, 183, 156, 0.18);
    color: #e6b79c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.contact-fee {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px !important;
}

.contact-fee .price-strike,
.contact-fee .price-now {
    color: inherit;
}

.contact-fee .price-strike {
    color: var(--body-text);
    opacity: 0.65;
}

.contact-fee .price-now {
    color: var(--terracotta);
}

.contact-fee .fee-badge {
    background: var(--soft-terracotta);
    color: var(--terracotta);
}

.modal-price-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: -6px;
    margin-bottom: 22px;
    padding: 10px 16px;
    border-radius: 12px;
    background: var(--soft-terracotta);
    color: var(--deep-green);
    font-size: 13.5px;
    font-weight: 700;
}

.modal-price-note .price-strike {
    color: var(--olive-green);
    opacity: 0.7;
}

.modal-price-note .price-now {
    color: var(--terracotta);
}

.modal-price-note .fee-badge {
    background: var(--deep-green);
    color: var(--white);
}


/* =========================================================
   22. PROMO BANNER (self-assessment CTA)
========================================================= */

.promo-banner {
    padding: 55px 0;
    background: var(--deep-green);
    color: var(--white);
}

.promo-banner-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.promo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #e6b79c;
    font-size: 26px;
    flex-shrink: 0;
}

.promo-text h3 {
    margin-bottom: 6px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 600;
}

.promo-text p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
}

.promo-btn {
    flex-shrink: 0;
    white-space: nowrap;
}


/* =========================================================
   23. MODAL SYSTEM
========================================================= */

body.modal-open {
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(35, 48, 36, 0.6);
    backdrop-filter: blur(3px);
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: 88vh;
    overflow-y: auto;
    padding: 46px 42px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    animation: modalPop 0.25s ease;
}

@keyframes modalPop {
    from { opacity: 0; transform: translateY(14px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--soft-green);
    color: var(--deep-green);
    font-size: 15px;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.modal-close:hover {
    background: var(--light-sage);
    transform: rotate(90deg);
}

.modal-title {
    margin-bottom: 14px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.15;
}

.modal-subtitle {
    margin-bottom: 22px;
    color: var(--body-text);
    font-size: 15px;
}

.modal-lead {
    margin-bottom: 20px;
    color: var(--body-text);
    font-size: 15.5px;
    line-height: 1.7;
}

.modal-subhead {
    margin-bottom: 12px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 600;
}

.modal-list {
    margin-bottom: 22px;
    list-style: none;
}

.modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--body-text);
    font-size: 14.5px;
    line-height: 1.6;
}

.modal-list li i {
    margin-top: 3px;
    color: var(--forest-green);
    font-size: 12px;
    flex-shrink: 0;
}

.modal-cta {
    width: 100%;
    margin-top: 10px;
}

.modal-legal-text h5 {
    margin-top: 18px;
    margin-bottom: 6px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 600;
}

.modal-legal-text p {
    margin-bottom: 8px;
    color: var(--body-text);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   24. BOOKING FORM
========================================================= */

.modal-box-form {
    max-width: 600px;
}

.form-row {
    margin-bottom: 18px;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row label {
    display: block;
    margin-bottom: 7px;
    color: var(--deep-green);
    font-size: 13.5px;
    font-weight: 700;
}

.form-row label span {
    color: var(--terracotta);
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--soft-green);
    color: var(--dark-text);
    font-size: 14.5px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    outline: none;
}

.form-row textarea {
    resize: vertical;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: -8px;
    margin-bottom: 18px;
    color: var(--olive-green);
    font-size: 12.5px;
}

.consent-block {
    margin-bottom: 18px;
    padding: 20px 22px;
    border: 1px solid var(--soft-terracotta);
    border-radius: 16px;
    background: #fbf3ef;
}

.consent-block-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.consent-block-header i {
    color: var(--terracotta);
    font-size: 16px;
}

.consent-block-header h4 {
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
}

.consent-block p {
    margin-bottom: 14px;
    color: var(--body-text);
    font-size: 13.5px;
    line-height: 1.6;
}

.consent-download {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 11px 18px;
    border-radius: 30px;
    background: var(--deep-green);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.consent-download:hover {
    background: var(--forest-green);
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark-text);
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.consent-checkbox input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--terracotta);
}

.form-error {
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #fce9e5;
    color: #a3372a;
    font-size: 13.5px;
    font-weight: 600;
}

.form-submit {
    width: 100%;
}

.form-privacy-note {
    margin-top: 14px;
    color: var(--body-text);
    font-size: 12.5px;
    text-align: center;
}

/* BOOKING SUCCESS */

.booking-success {
    padding: 10px 0 4px;
    text-align: center;
}

.booking-success-icon {
    margin: 0 auto 18px;
    color: var(--forest-green);
    font-size: 56px;
}

.booking-success h3 {
    margin-bottom: 14px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 500;
}

.booking-success p {
    max-width: 440px;
    margin: 0 auto 12px;
    color: var(--body-text);
    font-size: 15px;
    line-height: 1.7;
}

.booking-success-consent a {
    color: var(--terracotta);
    font-weight: 700;
    text-decoration: underline;
}

.booking-success-payment {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--soft-terracotta);
    color: var(--deep-green);
    font-size: 13.5px;
    line-height: 1.6;
    text-align: left;
}

.booking-success-payment i {
    margin-top: 2px;
    color: var(--terracotta);
    flex-shrink: 0;
}

.booking-success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}


/* =========================================================
   25. SELF-ASSESSMENT QUIZ MODAL
========================================================= */

.modal-box-quiz {
    max-width: 600px;
}

.quiz-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 24px;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--soft-green);
    color: var(--olive-green);
    font-size: 12.5px;
    line-height: 1.6;
}

.quiz-note i {
    margin-top: 2px;
    flex-shrink: 0;
}

.quiz-begin-btn {
    width: 100%;
}

.quiz-progress-track {
    width: 100%;
    height: 6px;
    margin-bottom: 18px;
    border-radius: 10px;
    background: var(--soft-green);
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--terracotta);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.quiz-step-count {
    margin-bottom: 10px;
    color: var(--olive-green);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.quiz-question {
    margin-bottom: 22px;
    color: var(--deep-green);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}

.quiz-question-hint {
    margin-top: -14px;
    margin-bottom: 22px;
    color: var(--olive-green);
    font-size: 13.5px;
    line-height: 1.6;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.quiz-option:hover {
    border-color: var(--sage-green);
}

.quiz-option.is-selected {
    border-color: var(--terracotta);
    background: var(--soft-terracotta);
}

.quiz-option input {
    width: 17px;
    height: 17px;
    accent-color: var(--terracotta);
}

.quiz-option span {
    color: var(--dark-text);
    font-size: 14.5px;
}

.quiz-nav {
    display: flex;
    gap: 14px;
}

.quiz-nav .btn {
    flex: 1;
}

.quiz-nav .btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
}

/* RESULTS */

.quiz-result-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.quiz-result-good { background: var(--soft-green-accent); color: var(--green-accent); }
.quiz-result-mild { background: var(--soft-amber); color: var(--amber); }
.quiz-result-moderate { background: var(--soft-terracotta); color: var(--terracotta); }
.quiz-result-high { background: #fce3e3; color: #b6362a; }

.quiz-crisis-note {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    padding: 18px 20px;
    border: 1px solid #f0c9c2;
    border-radius: 16px;
    background: #fdf3f1;
}

.quiz-crisis-note i {
    margin-top: 2px;
    color: #b6362a;
    font-size: 20px;
    flex-shrink: 0;
}

.quiz-crisis-note strong {
    display: block;
    margin-bottom: 6px;
    color: #8a2b21;
    font-size: 14.5px;
}

.quiz-crisis-note p {
    color: #6b3229;
    font-size: 13.5px;
    line-height: 1.6;
}

.quiz-result-actions {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.quiz-result-actions .btn {
    flex: 1;
}

/* PERSONALITY RESULTS */

.trait-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.trait-row-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--deep-green);
    font-size: 14.5px;
    font-weight: 700;
}

.trait-bar-track {
    width: 100%;
    height: 10px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: var(--soft-green);
    overflow: hidden;
}

.trait-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--sage-green), var(--forest-green));
    transition: width 0.4s ease;
}

.trait-blurb {
    color: var(--body-text);
    font-size: 13.5px;
    line-height: 1.6;
}


/* =========================================================
   26. RESPONSIVE — NEW COMPONENTS
========================================================= */

@media (max-width: 850px) {

    .announce-bar-inner {
        justify-content: flex-start;
        gap: 12px;
    }

    .announce-bar-inner p {
        justify-content: flex-start;
        text-align: left;
        font-size: 12.5px;
    }

    .promo-banner-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-icon {
        margin: 0 auto;
    }

    .promo-text p {
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 768px) {

    .announce-btn {
        display: none;
    }

    .modal-box {
        padding: 34px 24px;
        border-radius: 20px;
    }

    .modal-title {
        font-size: 27px;
    }

    .form-row-split {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quiz-question {
        font-size: 20px;
    }

    .quiz-nav,
    .quiz-result-actions,
    .booking-success-actions {
        flex-direction: column;
    }

}

@media (max-width: 480px) {

    .modal-box {
        padding: 28px 18px;
        max-height: 92vh;
    }

    .modal-title {
        font-size: 24px;
    }

    .announce-bar-inner p {
        font-size: 11.5px;
    }

}
