@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --m-green: #055d18;
    --l-green: #d1e1c2;
    --d-green: #142602;
    --m-blue: #104378;
    --l-blue: #D5E1E7;
    --l-grey: #c9c9c9;
    --yel: #EAB308;
    --off-white: #FAFAFA;
    --subtle-text: #d3d3d3;
    --subtle-text-wbg: #00000088;
    --border-grey: #D5D5D5;
    --highlight-grey: #e9e9e9;
    --heading: 3rem;
    --h1: 2.4rem;
    --h2: 1.8rem;
    --h3: 1.3rem;
    --h4: 1.1rem;
    --p: 1rem;
    --crim: 'Crimson Pro', serif;
    --mont: 'Montserrat', sans-serif;
    --content-gap: 140px;
    --hero-mt: 80px;
}

* {
    box-sizing: border-box;
    font-family: var(--mont);
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

html {
    padding: 0px;
}

body {
    padding: 0px;
    padding-top: 80px;
}

h1 {
    font-size: var(--h1);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

h2 {
    font-size: var(--h2);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

h3 {
    font-size: var(--h3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

h4 {
    font-size: var(--h4);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

p {
    font-size: var(--p);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4rem;
}

[id] {
    scroll-margin-top: 120px;
}


.heading {
    font-size: var(--heading);
    font-weight: 400;
}

.heading-highlight {
    background: linear-gradient(to right, var(--m-blue), var(--m-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.fs-h4 {
    font-size: 24px;
    line-height: normal;
}

.fs-12 {
    font-size: 12px;
    line-height: normal;
}

.fs-14 {
    font-size: 14px;
    line-height: normal;
}

.fs-16 {
    font-size: 16px;
    line-height: normal;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

a {
    color: var(--m-blue);
    text-decoration: underline;
    transition: font-weight .2s ease;
    font-weight: 600;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

ul,
li {
    font-family: var(--mont);
}

li {
    margin-top: 12px;
}

button {
    font-family: var(--mont);
    cursor: pointer;
    border: none;
}

.a-green {
    text-decoration: none;
    color: var(--m-green);
}

.a-yel {
    text-decoration: none;
    color: var(--yel);
}

.col-white {
    color: white !important;
}

.col-yel {
    color: var(--yel) !important;
}

.col-blue {
    color: var(--m-blue) !important;
}

.col-green {
    color: var(--m-green) !important;
}

.col-subtle-wbg {
    color: var(--subtle-text-wbg);
}

.col-red {
    color: red;
}

.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.pos-fixed {
    position: fixed;
}

.flex-1 {
    flex: 1;
}

.w-100 {
    width: 100%;
}

.w-fit-content {
    width: fit-content;
}

.overflow-none {
    overflow: hidden;
}

.h-100 {
    height: 100%;
}

.w-max {
    width: 100vw;
}

.w-lg {
    max-width: 1600px;
    width: 95vw;
}

.w-article {
    max-width: 800px;
    width: 90vw;
}

.mw-50 {
    max-width: 50%;
}

.mw-500 {
    max-width: 500px;
}

.mw-600 {
    max-width: 600px;
}

.mw-700 {
    max-width: 700px;
}

.mw-900 {
    max-width: 900px;
}

.w-fit {
    width: fit-content;
}

.section-header {
    display: flex;
    flex-direction: column;
}

.section-heading {
    margin: 0px;
}

.section-line {
    width: 50px;
    height: 3px;
    background-color: var(--yel);
    margin: 0px;
    margin-bottom: 2rem;
}

.unset-min-height {
    min-height: unset !important;
}

.content-width {
    width: 85vw;
    min-width: 1100px;
    max-width: 1600px;
}

.flex {
    display: flex;
}

.col {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
}

.row-wrap, .flex-wrap {
    flex-wrap: wrap;
}

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

.vert-center {
    display: flex;
    justify-content: center;
}

.hor-start {
    display: flex;
    justify-content: flex-start;
}

.hor-center {
    display: flex;
    align-items: center;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

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

.br-lg {
    border-radius: 30px;
}

.br-md {
    border-radius: 10px;
}

.br-sm {
    border-radius: 5px;
}

.border-grey {
    border: 1px solid var(--border-grey);
}

.p-lg {
    padding: 1.5rem;
}

.p-xlg {
    padding: 3rem;
}

.p-md {
    padding: 1.2rem;
}

.p-sm {
    padding: 1rem;
}

.gap-xlg {
    gap: 100px;
}

.gap-lg {
    gap: 1.5rem;
}

.gap-md {
    gap: 1.2rem;
}

.gap-sm {
    gap: .7em;
}

.content-gap {
    gap: var(--content-gap)
}

.mt-xlg {
    margin-top: 5em;
}

.mt-lg {
    margin-top: 2.5em !important;
}

.mt-md {
    margin-top: 1.2rem !important;
}

.mt-sm {
    margin-top: .7em !important;
}

.m0 {
    margin: 0;
}

.mt0 {
    margin-top: 0;
}

.mb0 {
    margin-bottom: 0;
}

.mb-md {
    margin-bottom: 1.2rem;
}

.mb-sm {
    margin-bottom: .7em;
}

.mb-lg {
    margin-bottom: 2rem;
}

.info-icon {
    position: absolute;
    right: -40px;
    top: 36px;
    display: inline-block;
    margin-left: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgb(100, 100, 100);
    color: black;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    font-weight: bold;
    font-family: var(--crim);
}

.info-icon:hover {
    cursor: pointer;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    /* hidden by default */
    z-index: 1000;
}

.box-shadow-sm {
    box-shadow: 0px 5px 10px 0px #00000015;
}

.box-shadow-md {
    box-shadow: 0px 5px 10px 0px #00000020;
}

.box-shadow-lg {
    box-shadow: 5px 5px 20px 0px #00000025;
}

.inset-shadow-lg {
    box-shadow: inset 0 -30px 30px -20px rgba(0, 0, 0, 0.2);
}

.blur {
    backdrop-filter: blur(2px);
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--m-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
    margin-top: 48px;
}

.flash-messages {
    position: fixed;
    bottom: 48px;
    right: 48px;
    row-gap: 8px;
}

.flash-message {
    max-width: 100%;
    background-color: #ffe8a4;
    border-left: 5px solid var(--yel);
    padding: 16px 20px;
    text-align: left;
    color: black;
    font-weight: 500;
    font-family: var(--mont);
    transition: transform .2s ease, border .2s ease;
}

.flash-message:hover {
    cursor: pointer;
    transform: scale(1.02)
}

.navbar {
    top: 0px;
    left: 0px;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    z-index: 100;
    padding: 4px 24px;
    align-items: center;
    background-color: white;
}

.navbar__logo {
    padding-top: 4px;
}

.navbar__toggle {
    display: none;
    background-color: transparent;
    border: none;
    transition: opacity 0.5s ease;
}

#navbar-menu-desktop {
    display: flex;
}

#about-toggle {
    margin-right: 8px;
}

#navbar-about-dropdown {
    display: none;
    opacity: 0;
    position: absolute;
    width: fit-content;
    background-color: white;
    margin-top: 12px;
    flex-direction: column;
    row-gap: 8px;
    transition: opacity 1s ease;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

#navbar-about-dropdown.active {
    display: flex;
    opacity: 1;
}

#navbar-menu-mobile {
    display: none;
    padding: 2rem 1rem;
    overflow: scroll;
}

.navbar__menu {
    display: none;
    flex-direction: row;
    column-gap: 48px;
    align-items: center;
}

.navbar__menu li,
.navbar__menu a {
    margin: 0px;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
}

.navbar__link {
    color: var(--m-blue);
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 0px;
    margin: 0px 12px;
    transition: border .2s ease;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
}

.navbar__item {
    position: relative;
    padding: 12px 0px;
    width: fit-content;
}

.navbar__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--yel);
    transition: width 0.25s ease-in-out;
}

.navbar__item:hover::after {
    width: 100%;
}

#navbar-menu-mobile .navbar__item {
    padding: 10px 0px;
}


.navbar .bi-chevron-down {
    font-size: 12px;
    margin-left: 8px;
}

.navbar__menu .btn-a-main, .navbar__menu .btn-a-secondary {
    padding: 12px 24px !important;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.desktop-hidden {
    display: none;
}

.trans {
    transition: all 0.2s ease-in-out;
}

.btn-lg {
    padding: 16px 32px !important;
    font-size: 1.2rem !important;
}

.btn-a-main {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: var(--m-blue);
    padding: 15px 31px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

/* keep text above the swipe */
.btn-a-main span {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    transition: color 0.3s ease-out;
}

.btn-a-main:hover span {
    color: black;
    font-weight: 500 !important;
}

/* swipe layer */
.btn-a-main::before {
    content: "";
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    background: linear-gradient(to right, var(--l-blue), var(--l-green));
    box-shadow: 5px 0px 10px 0px var(--yel);
    transform: translateX(-110%);
    /* start fully to the left */
    transition: transform 0.3s ease-out;
    z-index: 0;
}

/* on hover, slide the green layer across */
.btn-a-main:hover::before,
.btn-a-main:focus-visible::before {
    transform: translateX(0);
}

.btn-a-main.disabled:hover::before,
.btn-a-main:focus-visible::before {
    transform: translateX(-110%);
}

.btn-a-main.disabled {
    opacity: .7;
}

.btn-a-main.disabled:hover span {
    color: white;
    border: none;
}

.btn-a-main.disabled:hover {
    cursor: not-allowed;
    opacity: .7;
    border: 2px solid transparent;
}


.btn-a-main:hover {
    border: 2px solid var(--m-green);
}

.btn-a-secondary {
    position: relative;
    display: inline-block;
    /* or block if you prefer */
    text-decoration: none;
    color: white;
    background-color: var(--m-green);
    padding: 15px 31px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    /* keeps swipe inside rounded corners */
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
    /* prevents inner text from scrunching */
    flex-shrink: 0;
}

/* keep text above the swipe */
.btn-a-secondary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-out;
}

.btn-a-secondary:hover span {
    color: var(--m-green);
    font-weight: 500 !important;
}

/* swipe layer */
.btn-a-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    background: white;
    transform: translateX(-110%);
    /* start fully to the left */
    transition: transform 0.3s ease-out;
    z-index: 0;
}

/* on hover, slide the green layer across */
.btn-a-secondary:hover::before,
.btn-a-secondary:focus-visible::before {
    transform: translateX(0);
}

.btn-a-secondary:hover {
    border: 2px solid var(--m-green);
}

.btn-a-secondary.disabled:hover::before,
.btn-a-secondary:focus-visible::before {
    transform: translateX(-110%);
}

.btn-a-secondary.disabled:hover span {
    color: white;
    border: none;
}

.btn-a-secondary.disabled:hover {
    cursor: not-allowed;
    opacity: .8;
    border: 2px solid transparent;
}

.jump-link {
    margin:0px;
    font-size: 14px;
    padding: 6px 16px;
    color: var(--m-blue);
    background-color: var(--l-blue);
    text-decoration: none;
    border-radius: 100px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    /* prevents inner text from scrunching */
    flex-shrink: 0;
}

.jump-link:hover {
    background-color: var(--m-blue);
    color: white;
}


.action-btn {
    background-color: var(--m-blue);
    color: white;
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
}

.action-btn:hover {
    background-color: var(--m-green);
    box-shadow: 0px 2px 10px 0px var(--l-green);
}

.action-btn.btn-secondary {
    background-color: var(--m-green) !important;
}

.action-btn.btn-secondary:hover {
    background-color: var(--m-blue) !important;
    box-shadow: 0px 2px 10px 0px var(--l-blue) !important;
}

.small-action-btn {
    border: 1px solid var(--border-grey);
    color: black;
    border-radius: 100px;
    background-color: white;
    transition: background-color 0.2s ease;
    padding: 8px 16px;
}

.small-action-btn:hover {
    background-color: var(--highlight-grey);
}

#scheduling-content {
    min-width: 550px;
}


.grid {
    /* Can you please create a responsive grid pattern */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
    justify-content: center;
    gap: 1.5rem;
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: .6rem;
}

.grid-item {
    border: 1px solid var(--border-grey);
    min-height: 225px;
}

.num-circle {
    background-color: var(--l-green);
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: .5em;
}

.item-grid h4 {
    margin: 0px;
}

.divider {
    width: 2px;
    background: #ccc;
    margin: 0 32px;
    align-self: stretch;
}

.item-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 16px;
    justify-content: flex-start;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    border: 1px solid var(--border-grey);
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
}

.item-card img {
    width: 20px;
    height: 20px;
}

.slide-right {
    opacity: 0;
    transform: translateX(-100%);
}

.slide-right.visible {
    animation: slideRight .7s ease forwards;
    opacity: 0;
}

.slide-left {
    opacity: 0;
    transform: translateX(100%);
}

.slide-left.visible {
    animation: slideLeft .7s ease forwards;
    opacity: 0;
}

@keyframes slideRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
    from {
        transform: translateX(100%);
        opacity: 0;
    }
}

.unaccepted-items {
    background-color: #FFF5F5;
    border: 1px solid var(--border-grey);
    container-type: inline-size;
    max-height: 600px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
    margin-bottom: 0px;
}

.unaccepted-items.collapsed {
    max-height: 120px;
}

.expand-btn {
    bottom: 8px;
    padding: 8px 12px;
    color: black;
    right: 8px;
    border: none;
    font-size: 14px;
    background-color: white;
    border: 1px solid var(--border-grey);
    box-shadow: 0px 2px 6px 0px #00000010;
    cursor: pointer;
    border-radius: 100px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.expand-btn:hover {
    background-color: var(--yel);
    border: 1px solid var(--yel);
}

.unaccepted-items h4 {
    margin-bottom: 0;
}

.unaccepted-items .bi-x-circle-fill {
    margin-right: 8px;
}

.unaccepted-items ul {
    column-count: 2;
    column-gap: 2rem;
}

.unaccepted-items li {
    margin: 0;
    padding-top: 12px;
}


@container (max-width: 700px) {
    .unaccepted-items ul {
        column-count: 1;
    }
}

@container (min-width: 700px) {
    .unaccepted-items ul {
        column-count: 2;
    }
}

/* Make sure the parent is a positioning context and clips the float */
#scheduling-frame {
  position: relative;
  overflow: hidden;
}

/* Front/back swapping via opacity (smooth crossfade) + subtle float paths */
#scheduling-img-1 {
    width: 100%;
    height: 100%;
    z-index: 10;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: left center;
}

/* Testimonials section */

.testimonials-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 120px;
}

.testimonials-left {
    flex: 1;
    max-width: 520px;
}

.testimonials-links {
    display: flex;
    align-items: flex-start;
    margin-top: 2rem;
}

.testimonials-links-block {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.testimonials-right {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote-mark {
    font-family: var(--crim);
    font-size: 8rem;
    color: var(--m-blue);
    margin: 0;
    line-height: .5;
    padding: 0;
}

.testimonial-text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5em;
    gap: 1.5rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    background-color: var(--l-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mont);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--d-green);
}

.testimonial-user-info h4 {
    font-size: 1.1rem;
}

.testimonial-nav {
    display: flex;
    gap: 0.75em;
}

.testimonial-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--border-grey);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000;
    transition: background-color 0.2s ease, transform 0.2s ease,
        box-shadow 0.2s ease, border-color 0.2s ease;
}

.testimonial-nav-btn:hover {
    background-color: var(--highlight-grey);
    border-color: var(--m-blue);
    box-shadow: 0 4px 10px #00000020;
    transform: translateY(-1px);
}

.testimonial-nav-btn:focus-visible {
    outline: 2px solid var(--m-blue);
    outline-offset: 2px;
}



/* FAQ items */
#faqs .faq-item {
    cursor: pointer;
    align-items: flex-start;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

#faqs .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Icon animation */
#faqs .faq-item i.bi {
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

#faq-img {
    height: 100%;
    aspect-ratio: unset;
    /* make the image fill the entire container */
    object-fit: contain;
}

#faqs .bi {
    padding-top: 4px;
}

/* Rotate icon when open */
#faqs .faq-item.active i.bi {
    transform: rotate(180deg);
}

/* Question is always visible – no special rules needed */
#faqs .faq-item-q {
    font-weight: 600;
}

/* Answer: hidden by default, slide open for active items */
#faqs .faq-item-a {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition:
        max-height 0.3s ease,
        opacity 0.3s ease,
        margin-top 0.3s ease;
}

/* When active, show the answer with a sliding effect */
#faqs .faq-item.active .faq-item-a {
    max-height: 500px;
    /* just needs to be larger than your tallest answer */
    opacity: 1;
    margin-top: 0.5rem;
}

.faq-item.active {
    background-color: rgb(247, 247, 247);
}

.faq-contact-info {
    width: 80%;

}

#faqs .btn-a-main {
    width: fit-content;
}

/* Optional: make the whole content column flex nicely on mobile */
#faqs .faq-content {
    flex: 1;
    min-width: 0;
}

#faqs.dark-mode {
    color: white;
}

#faqs.dark-mode .faq-item.active {
    background-color: rgba(255, 255, 255, 0.115);
}

#faqs.dark-mode .col-subtle-wbg {
    color: #ffffffaa;
}

.impact-orgs {
    height: 100%;
}

.impact-orgs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    height: 100%;
}

.impact-org-logo {
    background-color: white;
    border-radius: 12px;
    padding: 0.9em;
    width: 100%;
    height: 100%;
    max-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-grey);
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1);
    /* Prevent logo from growing with image */
    overflow: hidden;
}

.impact-org-logo img {
    max-width: 80%;
    max-height: 80%;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

.ek-footer {
    background-color: #ffffff;
    border-top: 1px solid var(--border-grey);
    padding: 5em 0 5em;
    margin-top: 220px;
}

.ek-footer-inner {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4em;
}

.ek-footer-left {
    flex: 1.1;
}

.ek-footer-logo {
    max-width: 140px;
    height: auto;
    display: block;
    margin-bottom: .5em;
}

.ek-footer-title {
    font-weight: 400;
    color: #000;
}

.ek-footer-subtitle {
    color: var(--subtle-text-wbg);
    font-weight: 400;
    max-width: 360px;
}

.ek-footer-socials {
    display: flex;
    gap: 1.25em;
}

.ek-footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease,
        box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    font-size: 1.2rem;
}

.ek-footer-social:hover {
    background-color: var(--l-blue);
    border-color: var(--m-blue);
    color: var(--m-blue);
    box-shadow: 0 4px 10px #00000020;
    transform: translateY(-1px);
}

/* Right side columns */

.ek-footer-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 2rem;
}

.ek-footer-heading {
    font-family: var(--mont);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 0rem;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    color: #555;
}

.ek-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ek-footer-links li {
    margin-top: 1.2rem;
}

.ek-footer-links a {
    text-decoration: none;
    color: var(--m-blue);
    font-size: 1rem;
    font-weight: 500;
}

.ek-footer-links a:hover {
    text-decoration: underline;
}

.notice {
    background-color: var(--yel);
    color: black;
}

/* Breakpoints / responsiveness */

@media (max-width: 992px) {
    .ek-footer-inner {
        flex-direction: column-reverse;
        gap: 3rem;
        width: calc(95% - 2rem);
    }

    .ek-footer-left {
        max-width: 520px;
    }

    .ek-footer-right {
        width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 700px) {
    .ek-footer-inner {
        gap: 2.5em;
    }


    .ek-footer-right {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }

    .ek-footer-socials {
        margin-top: 2rem;
    }
}



@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1150px) {
    .desktop-visible {
        display: none !important;
    }
    .desktop-hidden {
        display: block !important;
    }
}

@media (max-width: 1100px) {
    .content-width {
        width: 90%;
        min-width: unset;
    }

    .hero-content-test {
        max-width: 50% !important;
    }
    #scheduling-img-1 {
        max-width: unset;
        object-fit: cover;
        object-position: left center;
        /* Moves the image to the left side of the div */
    }

    #scheduling-img-2 {
        height: 45%;
        width: 100%;
        top: 0px;
        max-width: unset;
    }

}

@media (max-width: 1024px) {
    .testimonials-container {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .testimonials-right {
        padding: 2.5em 2rem;
    }
    .testimonials-left {
        width: 100% !important;
        align-items: center;
        text-align:center;
    }
}

@media (max-width: 980px) {
    .heading {
        font-size: 2.5em !important;
    }

    .content-width {
        width: calc(95% - 2rem);
    }

    .row-break {
        flex-direction: column !important;
    }

    .divider {
        width: 100%;
        height: 1px;
        margin: 16px 0;
        align-self: auto;
        /* not needed, but makes intent clearer */
    }

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

    .hero-content-test {
        align-items: center;
        text-align: center;
    }

    .hero-img-test {
        position: relative !important;
        background-position: center !important;
        background-image: url("/static/images/refresh/clothes-person-hor.jpg");
        background-size: cover !important;
        border-radius: 20px;
        display: flex;
        align-items: center;
    }

    .hero-img-test .hidden {
        display: flex !important;
        width: 100% !important;
    }

    .hide-on-minimize {
        display: none !important;
    }


    .grid-item {
        border: 1px solid var(--border-grey);
        min-height: 200px;
    }

    .grid-2 {
        padding: 0px 50px;
    }
    .grid-item-2 {
        min-width: 275px;
    }

    #scheduling {
        flex-direction: column-reverse !important;
        gap: 3rem;
    }

    #scheduling-content {
        min-width: unset !important;
        width: 100% !important;
    }

    #img-container {
        min-height: 400px;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    #scheduling-img-1 {
        width: 100%;
        height: 50%;
        aspect-ratio: unset;
    }

    .faqs-contact-wrapper {
        display: none;
    }
    #faqs .section-header {
        align-items: center;;
    }

    #faqs .section-header h2 {
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    .content-width {
        width: calc(95% - 2rem);
    }

    .navbar {
        padding: 24px;
    }

    .navbar__toggle {
        display: block;
        font-size: 24px;
    }
    #navbar-menu-mobile.active {
        display: flex;
    }

    .navbar__menu {
        display: none;
        z-index: 3;
        flex-direction: column;
        position: absolute;
        top: 62px;
        right: 0;
        background-color: white;
        width: 100%;
        max-height: 0;
        text-align: left;
        overflow: hidden;
        row-gap: 1em;
        box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.3);
        transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        box-sizing: border-box;
    }

    .navbar__item {
        width: fit-content;
        box-sizing: border-box;
        margin: 1rem 0;
        padding: 0px 0px;
        text-align: left;
    }

    .navbar__item a {
        font-size: 18px;
    }

    .navbar__menu.active {
        display: flex;
        padding: 36px 0px;
        padding-left: 24px;
        max-height: 100vh;
        height: calc(100vh - 62px);
        /* Arbitrary max height for the dropdown */
    }

    .flash-messages {
        position: fixed;
        left: 50%;
        transform: translate(-50%);
        row-gap: 8px;
        bottom: 16px;
        width: 100%;
        padding: 0px 24px;
        box-sizing: border-box;
        align-items: center;
        justify-content: center;
    }

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

    .grid-item {
        min-height: 200px;
    }
    .ek-footer {
        margin-top: 160px;
    }
    .section-header {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .testimonials-container {
        gap: 3rem;
    }

    .testimonials-right {
        padding: 2rem 1.5rem;
    }

    .testimonial-quote-mark{
        text-align: center;
    }

    .testimonial-text {
        font-size: 1.3rem;
        text-align: center;
    }

    .testimonial-footer {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .testimonial-nav {
        align-self: center;
    }
    .testimonial-avatar {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        font-size: 1rem !important;
    }
    .grid-item {
        min-height: 220px;
    }
}

@media (max-width: 420px) {
    .testimonials-container{
        padding: 1rem !important;
    }
    .testimonials-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .testimonials-right {
        padding: 0px !important;
        margin-top: 3rem !important;
    }
    .hide-mobile {
        display: none !important;
    }
}

.hidden {
    display: none !important;
}

.hero-test {
    position: relative;
    min-height: 700px;
    height: 80vh;
    border-radius: 30px;
    /* smooth corners all around */
    overflow: hidden;
    /* everything inside gets clipped to this shape */
    background: #fff;
    /* or whatever your card bg is */
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

/* full-bleed image, clipped so only the right side is visible */
.hero-img-test {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 20% center;
    background-image: url("/static/images/refresh/clothes-person-hor-long.jpg");
}

/* your text block on the left */
.hero-content-test {
    position: relative;
    background-color: white;
    border-radius: 0 0 30px 0;
    z-index: 1;
    max-width: 40%;
    padding: 2.5rem;
}

#br-img-1 {
    top: 0px;
    right: -30px;
    width: 30px;
    height: 30px;
}


#br-img-2 {
    bottom: -30px;
    left: 0px;
    width: 30px;
    height: 30px;
}

.grid-item-2 {
    background-color: rgba(255, 255, 255, 0.75);
    /* please add a background blur */
    backdrop-filter: blur(5px);
    align-items: flex-start;
    min-width: 255px;
    min-height: 230px;
}

.grid-item-2, .grid-item {
    margin: 0px;
    overflow: hidden;
}

.grid-item-2 .num-circle, .grid-item .num-circle {
    width: 36px;
    height: 36px;
    background-color: var(--m-blue);
    font-size: 14px;
    font-weight: 400;
    color: white;
    transition: background-color .3s ease-in-out, color .3s ease-in-out, height .3s ease-in-out, width .3s ease-in-out;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr) !important;
    overflow-x: scroll;
}

.grid-item-2:hover .num-circle, .grid-item:hover .num-circle {
    background-color: transparent;
    color: transparent;
    height: 0px;
    width: 0px;
}

.grid-item-2-cta {
    opacity: 0;
    bottom: -24px;
    transition: opacity .3s ease-in-out, bottom .4s ease-in-out, font-weight .2s ease;
}

.grid-item-2:hover .grid-item-2-cta, .grid-item:hover .grid-item-2-cta {
    opacity: 1;
    bottom: 20px;
}

.bi-arrow-right {
    transition: margin-left .2s ease;
}

.grid-item-2-cta:hover .bi-arrow-right, .grid-item-2-cta:hover .bi-arrow-right {
    margin-left: 6px;
}

.grid-item-2 h3 {
    transition: margin-top .3s ease-in-out;
}

.grid-item-2:hover h3 {
    margin-top: 0px;
}

/* ===========================
   CTA banner
   =========================== */

.about-cta {
    position: relative;
    background-image: url("/static/images/refresh/clothes-hanger-hor.jpeg");
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 700px;
}

.about-cta-overlay {
    background: rgba(0, 0, 0, 0.624);
    height: 100%;
    width: 100%;
}

.about-cta-inner {
    color: white;
    max-width: 600px;
    text-align: center;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.fade-in-section {
    opacity: 0;
    /* start transparent */
    transform: translateY(30px);
    /* slide up effect */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    /* fully visible */
    transform: translateY(0);
    /* no translation */
}

.mobile-static {
    position: fixed;
    bottom: -24px;
    right: 24px;
    z-index: 2;
    transition: bottom .5s ease-in-out, opacity .5s ease-in-out, transform .5s ease-in-out;
}

.mobile-static-btn {
    background-color: var(--m-green);
    color: white;
    border-radius: 100px;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    box-shadow: 0px 2px 10px 0px #0000001a;
    transition: box-shadow .2s ease, transform .2s ease;    
}
.mobile-static-btn:hover {
    transform: translateY(-2px);
}

.mobile-static.hidden {
    display: block !important;
    bottom: -36px;
    opacity: 0;
    transform: scale(0.8);
}

.mobile-static.active {
    bottom: 36px;
    opacity: 1;
    transform: scale(1);
}

.info-text {
    visibility: hidden;
    position: absolute;
    background-color: #f9f9f9;
    color: #333;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    top: 0px;
    right: -140px;
    white-space: wrap;
    z-index: 10;
    font-size: 16px;
    width: 200px;
    cursor: pointer;
    /* Fade effect */
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    font-family: var(--mont);
    /* Prevents interaction when hidden */
    pointer-events: none;
}

.info-icon:hover+.info-text,
.info-text:hover {
    visibility: visible;
    /* Use visibility instead of display */
    opacity: 1;
    pointer-events: auto;
    /* Enables interaction when visible */
}

#recaptcha-form {
    max-width: 90vw;
    overflow: hidden;
}

.readonly-input {
    cursor: not-allowed;
    background-color: var(--border-grey) !important;
}