/* =========================
   MJ BASE RESET / ASTRA OVERRIDES
========================= */

:root {
    --mj-blue: #00aeef;
    --mj-blue-light: #66cef5;
    --mj-navy: #27579a;
    --mj-text: #1f2937;
    --mj-muted: #49566a;
    --mj-bg: #ffffff;
    --mj-soft: #f3f7fa;
    --mj-max: 1200px;
    --mj-breakpoint: 900px;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    background: var(--mj-bg);
    color: var(--mj-text);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    padding-top: 90px;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--mj-navy);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif;
    color: var(--mj-navy);
    line-height: 1.1;
    margin: 0 0 0.75em;
}

p {
    margin: 0 0 1.25em;
}

/* Kill common Astra spacing/container constraints */
.ast-container,
.site-content .ast-container,
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-archive-description,
.entry-content,
.entry-content>* {
    max-width: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    border: none;
}

.site-content,
#content,
#primary,
.content-area,
.site-main {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.ast-separate-container .site-content,
.ast-separate-container .ast-article-single {
    background: transparent;
}

/* Your own reusable containers */
.mj-container {
    width: min(var(--mj-max), calc(100% - 48px));
    margin-inline: auto;
}

.mj-section {
    padding: 80px 0;
}

/* Buttons */
.mj-btn,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #00aeef 0%, #66cef5 50%, #00aeef 100%);
    background-size: 200% 100%;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-position 0.35s ease, transform 0.2s ease;
}

.mj-btn:hover,
button:hover,
input[type="submit"]:hover {
    background-position: right center;
    transform: translateY(-1px);
}


/* =========================
WP-FORMS - OVERRIDES
==========================*/

/* WPForms label/legend weight overrides */
.mj-contact .wpforms-field-label,
.mj-contact legend.wpforms-field-label,
.mj-contact .wpforms-field-sublabel,
.mj-contact .wpforms-field-label-inline {
    font-weight: 400 !important;
}

/* Optional: make labels feel lighter/cleaner */
.mj-contact .wpforms-field-label,
.mj-contact legend.wpforms-field-label {
    color: #3f4650;
    font-size: 17px;
}

/* Checkbox inline label */
.mj-contact .wpforms-field-label-inline {
    color: #3f4650;
    font-size: 16px;
    line-height: 1.5;
}

/* Hidden labels should stay hidden */
.mj-contact .wpforms-sublabel-hide,
.mj-contact .wpforms-label-hide {
    font-weight: 400 !important;
}




/*=====================
 MJ THEME STARTS HERE
 ======================*/

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #1f2937;
    color: #49566a;
    color: #2F3338;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    color: #0554aa;
    font-weight: 700;
}

h1 {
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    line-height: 1.1;
    margin-bottom: 2rem;
}

p {
    font-size: clamp(15px, 3.0vw, 18px);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.25px;
}

p.lead {
    font-size: clamp(17px, 4.0vw, 20px);
    line-height: 1.8;
}

/* Navigation refinement */
.mj-header__nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}


/*=====================
 WOW classes for animation 
 ======================*/

.wow {
    visibility: hidden;
}

.wow.animate__animated,
.no-js .wow {
    visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
    .wow {
        animation: none !important;
        transition: none !important;
    }
}

/*======================
MAIN PRIMARY
======================*/
#primary {
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 900px) {
    #primary {
        margin-top: 0;
        padding-top: 100px;
    }
}

/*============================
SKIP LINK
============================*/
#primary {
    scroll-margin-top: 100px;
}

.mj-site-main {
    width: 100%;
}

.mj-skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 2000;
    background: #ffffff;
    color: #27579a;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: top 0.2s ease;
}

.mj-skip-link:focus,
.mj-skip-link:focus-visible {
    top: 12px;
    outline: 2px solid #66cef5;
    outline-offset: 2px;
}

/* =========================
   GLOBAL ACCESSIBLE FOCUS STYLES
========================= */

:root {
    --mj-focus-color: #66cef5;
    --mj-focus-color-dark: #00aeef;
    --mj-focus-bg: rgba(102, 206, 245, 0.18);
    --mj-focus-outline: 2px solid var(--mj-focus-color);
    --mj-focus-shadow: 0 0 0 4px var(--mj-focus-bg);
    --mj-focus-radius: 6px;
}

/* Remove inconsistent browser focus only where focus-visible is supported */
:focus {
    outline: none;
}

:focus-visible {
    outline: var(--mj-focus-outline);
    outline-offset: 3px;
    box-shadow: var(--mj-focus-shadow);
    border-radius: var(--mj-focus-radius);
}

/* =========================
   LINKS
========================= */

a:focus-visible {
    text-decoration: none;
}

/* Navigation links */
.mj-header__nav a:focus-visible,
.mj-header__mobile-nav a:focus-visible,
.mj-footer a:focus-visible {
    color: #0f6c7b;
}

/* =========================
   BUTTONS
========================= */

button:focus-visible,
.wp-block-button__link:focus-visible,
input[type="button"]:focus-visible,
input[type="submit"]:focus-visible,
input[type="reset"]:focus-visible {
    outline: var(--mj-focus-outline);
    outline-offset: 3px;
    box-shadow: var(--mj-focus-shadow);
}

/* Prevent weird double focus styles */
button:focus,
.wp-block-button__link:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus {
    outline: none;
}

/* =========================
   FORM FIELDS
========================= */

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: var(--mj-focus-outline);
    outline-offset: 2px;
    box-shadow: var(--mj-focus-shadow);
    border-color: var(--mj-focus-color-dark);
}

/* Optional cleaner field transition */
input,
textarea,
select,
button,
a,
.wp-block-button__link {
    transition:
        outline-offset 0.15s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease,
        background-color 0.15s ease;
}

/* =========================
   CUSTOM HEADER TOGGLE
========================= */

.mj-header__toggle:focus-visible {
    background: transparent !important;
    outline: var(--mj-focus-outline);
    outline-offset: 3px;
    box-shadow: var(--mj-focus-shadow);
    border-radius: 8px;
}

/* =========================
   CARD LINKS / IMAGE LINKS
========================= */

.mj-service-card a:focus-visible,
.mj-post-card a:focus-visible,
.mj-testimonial-card a:focus-visible {
    outline: var(--mj-focus-outline);
    outline-offset: 4px;
    box-shadow: var(--mj-focus-shadow);
    border-radius: 12px;
}

/* If the whole card is clickable */
.mj-service-card:focus-within,
.mj-post-card:focus-within,
.mj-testimonial-card:focus-within {
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.08),
        var(--mj-focus-shadow);
}

/* =========================
   SKIP LINK
========================= */

.mj-skip-link:focus-visible {
    top: 12px;
    outline: var(--mj-focus-outline);
    outline-offset: 2px;
    box-shadow: var(--mj-focus-shadow);
}

/* =========================
   WORDPRESS / GUTENBERG COMMON ELEMENTS
========================= */

.wp-block-search__button:focus-visible,
.wp-block-navigation a:focus-visible,
.wp-block-post-title a:focus-visible,
.wp-block-page-list a:focus-visible,
.wp-block-categories a:focus-visible {
    outline: var(--mj-focus-outline);
    outline-offset: 3px;
    box-shadow: var(--mj-focus-shadow);
    border-radius: 6px;
}

/* =========================
   ACCESSIBILITY: REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/*======================
Primary Button
======================*/
.mj-btn--primary,
.mj-btn {
    display: inline-block;
    padding: 14px 22px;
    background: linear-gradient(90deg, #00aeef, #66cef5, #00aeef) !important;
    background-size: 200% 100%;
    background-position: left center;
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-position 0.4s ease;
}

.mj-btn--primary:hover,
.mj-btn:hover {
    background-position: right center;
}


/*============================
HEADER NAVIGATION
============================*/
/* Slide Down Animation - Do not use WOW on header animation. Use this CSS instead.
*/
.mj-header {
    animation: mjSlideDown 0.9s ease forwards;
}

@keyframes mjSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mj-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e5e7eb;
}

.mj-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 90px;
    padding: 10px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 100px;
    /* space between logo and menus */
    position: relative;
}

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

.mj-header__logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mj-header .custom-logo {
    display: block;
    height: auto;
    width: 276px;
    max-width: 100%;
    display: block;
}

.mj-header__nav {
    display: flex;
    align-items: center;
}

.mj-header__nav--left {
    justify-self: end;
}

.mj-header__nav--right {
    justify-self: start;
}

.mj-header__nav ul,
.mj-header__mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mj-header__nav ul {
    display: flex;
    align-items: center;
    gap: 0;
}

.mj-header__nav li {
    display: flex;
    align-items: center;
}

.mj-header__nav li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 50%;
    background: #b8bec7;
    flex: 0 0 auto;
}

.mj-header__nav a,
.mj-header__mobile-nav a {
    text-decoration: none;
    color: #27579a;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.mj-header__nav a:hover,
.mj-header__nav a:focus-visible,
.mj-header__mobile-nav a:hover,
.mj-header__mobile-nav a:focus-visible {
    color: #0f6c7b;
}

.mj-header__nav a::after,
.mj-header__mobile-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    background: #e6e7e8;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.mj-header__nav a:hover::after,
.mj-header__nav a:focus-visible::after,
.mj-header__mobile-nav a:hover::after,
.mj-header__mobile-nav a:focus-visible::after {
    transform: scaleX(1);
}

/* TOGGLE
*/
.mj-header__toggle {
    display: none;
    appearance: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;

    width: 44px;
    height: 44px;
    padding: 0;

    background: transparent;
    border: none;
    cursor: pointer;
}

#mjHeaderNav,
.mj-header__mobile-nav {
    display: none !important;
}

/* Keep ALL states identical (prevents jump) */
.mj-header__toggle:hover,
.mj-header__toggle:active,
.mj-header__toggle:focus {
    background: transparent;
    transform: translateY(-50%);
}

/* Hamburger container */
.mj-header__toggle-lines {
    position: relative;
    width: 26px;
    height: 18px;
}

/* Lines */
.mj-header__toggle-line {
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #27579a;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Fixed positions (no shifting) */
.mj-header__toggle-line:nth-child(1) {
    top: 0;
}

.mj-header__toggle-line:nth-child(2) {
    top: 8px;
}

.mj-header__toggle-line:nth-child(3) {
    top: 16px;
}

/* Open (X) state */
.mj-header.is-open .mj-header__toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mj-header.is-open .mj-header__toggle-line:nth-child(2) {
    opacity: 0;
}

.mj-header.is-open .mj-header__toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


@media (max-width: 900px) {
    .mj-header__inner {
        grid-template-columns: 1fr;
        min-height: 78px;
        padding: 10px 20px;
        gap: 0;
    }

    .mj-header__nav {
        display: none;
    }

    .mj-header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .mj-header.is-open #mjHeaderNav,
    .mj-header.is-open .mj-header__mobile-nav {
        display: block !important;
    }

    /* Hover */
    .mj-header__toggle:hover {
        background: transparent !important;
    }

    /* Active / click */
    .mj-header__toggle:active {
        background: transparent !important;
    }

    /* Focus (keyboard) */
    .mj-header__toggle:focus {
        background: transparent !important;
        outline: none;
    }

    /* Accessible focus (recommended) */
    .mj-header__toggle:focus-visible {
        background: transparent !important;
        outline: 2px solid #66cef5;
        outline-offset: 3px;
    }

    /* When menu is open */
    .mj-header.is-open .mj-header__toggle {
        background: transparent !important;
    }

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

    .mj-header .custom-logo {
        width: auto;
        max-width: 160px;
        height: auto;
        max-height: 55px;
    }

    .mj-header__mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        padding: 16px 20px 20px;
        z-index: 1000;
    }

    .mj-header__mobile-nav ul {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .mj-header__mobile-nav li {
        display: block;
    }

    .mj-header__mobile-nav li::after {
        display: none;
    }

    .mj-header.is-open .mj-header__mobile-nav {
        display: block;
    }
}


/*======================
FOOTER
======================*/
.mj-footer {
    position: relative;
    overflow: hidden;
    background: #e6e8eb;
    color: #e6e7e8;
    text-align: center;
    padding: 200px 24px 70px;
    z-index: 10;
    transition: all 0.3s ease;
}

.mj-footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 136px;
    top: 0;
    left: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 136' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,0v11c173.7,75.4,467.2,125,800,125s626.3-49.6,800-125V0H0Z' fill='white'/%3E%3C/svg%3E");
}

.mj-footer__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.mj-footer__title {
    margin: 0 0 16px;
    color: #0057a8;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.15;
}

.mj-footer__phone {
    margin: 0 0 44px;
}

.mj-footer__phone a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #0057a8;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.mj-footer__phone span {
    color: #48c7ee;
    font-size: 0.7em;
}

.mj-footer__nav ul,
.mj-footer__social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mj-footer__nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.mj-footer__nav li {
    display: flex;
    align-items: center;
}

.mj-footer__nav li:not(:last-child)::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 18px;
    border-radius: 50%;
    background: #b7bcc3;
}

.mj-footer__nav a {
    color: #0057a8;
    text-decoration: none;
    font-size: 17px;
    font-size: clamp(15px, 2.5vw, 17px);
}

.mj-footer__social ul {
    display: flex;
    justify-content: center;
    gap: 38px;
    margin-bottom: 42px;
}

.mj-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #35bff0;
    text-decoration: none;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    min-width: 48px;
    min-height: 48px;
}

.mj-footer__social a svg {
    width: 56px;
    height: 56px;
    display: block;
    fill: #06bff9;
}

.mj-footer__social a:hover svg,
.mj-header__social:active,
.mj-header__social:focus {
    fill: #0057a8;
}

.mj-footer__copyright {
    margin: 0 0 24px;
    font-size: clamp(12px, 2.5vw, 15px);
    color: #0057a8;
}

.mj-footer__copyright a {
    text-decoration: underline;
    font-weight: 500;
}

.mj-footer__copyright span {
    opacity: 1;
}

.mj-footer__disclaimer {
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.45;
    color: #0057a8;
}

.mj-footer a:hover {
    color: #00aeef;
}

.mj-footer a:focus-visible {
    outline: 3px solid #66cef5;
    outline-offset: 5px;
    border-radius: 8px;
}

@media (max-width: 1200px) {
    .mj-footer::before {
        height: 60px;
    }
}

@media (max-width: 900px) {

    .mj-footer {
        padding: 100px 20px 56px;
    }

    .mj-footer::before {
        height: 30px;
    }

    .mj-footer__nav ul {
        gap: 12px;
        margin-bottom: 36px;
    }

    .mj-footer__nav li:not(:last-child)::after {
        margin-left: 12px;
        width: 5px;
        height: 5px;
    }

    .mj-footer__social ul {
        gap: 28px;
    }

    .mj-footer__social a {
        font-size: 42px;
    }
}


/*======================
SECTION: HERO
======================*/
.mj-hero {
    display: flex;
    position: relative;
    overflow: hidden;
    min-height: 820px;
    align-items: center;
    transition: all 0.3s ease;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    background-color: #f2f2f2;
    z-index: 1;
}

.mj-hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 136px;
    bottom: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 145' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,0v145h1600.1V0c-173.7,75.4-467.2,125-800.1,125S173.7,75.4,0,0Z' fill='white'/%3E%3C/svg%3E");
}

.mj-hero.light-grey-arch::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 145' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,0v145h1600.1V0c-173.7,75.4-467.2,125-800.1,125S173.7,75.4,0,0Z' fill='%23f4f5f6'/%3E%3C/svg%3E");
}

.mj-hero__media {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.mj-hero__image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
}

.mj-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.7) 25%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.1) 75%,
            rgba(255, 255, 255, 0) 100%);
}

.mj-hero__content {
    position: relative;
    z-index: 2;
    width: 40%;
    max-width: 600px;
    margin-left: 10%;
    margin-top: 5%;
    padding: 150px 0;
    text-align: center;
}

.mj-hero__title {
    font-size: clamp(30px, 7vw, 42px);
}

.mj-hero__text {
    font-size: clamp(15px, 3.0vw, 18px);
}

/* Button - stronger animation
*/
.mj-hero .mj-btn.wow {
    animation-name: mjFadeInUpStrong;
}

@keyframes mjFadeInUpStrong {

    from {
        opacity: 0;
        transform: translate3d(0, 42px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 1200px) {

    .mj-hero {
        min-height: 620px;
    }

    .mj-hero::after {
        height: 60px;
    }
}

@media (max-width: 900px) {

    .mj-hero {
        flex-direction: column;
        min-height: 300px;
    }

    .mj-hero::before {
        display: none;
    }

    .mj-hero::after {
        height: 30px;
    }

    .mj-hero__media {
        position: relative;
        width: 100%;
    }

    .mj-hero__content {
        margin: 30px 20px 50px;
        max-width: 90%;
        width: 90%;
        padding: 0;
    }

    .mj-hero__title {
        margin-bottom: 1rem;
    }
}



/*======================
SECTION: SERVICES
======================*/
.mj-services {
    position: relative;
    z-index: 10;
    width: 100%;
    background: #ffffff;
    padding: 100px 0 0;
    text-align: center;
}

.mj-services__inner {
    max-width: 90%;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 3;
}

.mj-services__title {
    font-size: clamp(28px, 7vw, 42px);
}

.mj-services__intro {
    max-width: 760px;
    margin: 0 auto 36px;
    font-size: clamp(15px, 3.0vw, 18px);
}

.mj-services__grid {
    list-style: none;
    margin: 50px 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
}

.mj-services-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.mj-services-card--small {
    width: 300px;
    height: 300px;
}

.mj-services-card--large {
    width: 400px;
    height: 400px;
}

.mj-services-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/*
.mj-services-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to top,
            rgba(20, 34, 52, 0.75) 0%,
            rgba(20, 34, 52, 0.45) 35%,
            rgba(20, 34, 52, 0.15) 65%,
            rgba(20, 34, 52, 0) 100%

        );
    opacity: 1;
    transition: opacity 0.3s ease;
}
*/

.mj-services-card:hover::after,
.mj-services-card:focus-visible::after {
    background: linear-gradient(to top,
            rgba(20, 34, 52, 0.85) 0%,
            rgba(20, 34, 52, 0.6) 40%,
            rgba(20, 34, 52, 0.2) 70%,
            rgba(20, 34, 52, 0) 100%);
}

.mj-services-card__name {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 2;
    width: calc(100% - 40px);
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1.8rem;
    text-align: center;
    transition: opacity 0.3s ease;
    font-weight: 700;
}

.mj-services-card:hover .mj-services-card__image,
.mj-services-card:focus-visible .mj-services-card__image {
    transform: scale(1.05);
}

.mj-services-card:focus-visible {
    outline: 3px solid #66cef5;
    outline-offset: 5px;
}

@media (max-width: 1400px) {

    .mj-services {
        padding: 50px 0;
    }

    .mj-services__grid {
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .mj-services-card--small,
    .mj-services-card--large {
        width: 240px;
        height: 240px;
    }

    .mj-services-card__name {
        opacity: 1;
        font-size: 1.7rem;
        font-weight: 600;
        line-height: 1.8rem;
    }

}

@media (max-width: 640px) {

    .mj-services-card--small,
    .mj-services-card--large {
        width: 180px;
        height: 180px;
    }
}



/* =========================
    FEATURE
========================= */
.mj-feature {
    display: flex;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    min-height: 820px;
    z-index: 10;
    background-color: #f2f2f2;
    transition: all 0.3s ease;
}

.mj-feature.feature-align-left {
    justify-content: flex-start;
}

.mj-feature::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 136px;
    top: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 136' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,0v11c173.7,75.4,467.2,125,800,125s626.3-49.6,800-125V0H0Z' fill='white'/%3E%3C/svg%3E");
}

.mj-feature::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 136px;
    bottom: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 145' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,0v145h1600.1V0c-173.7,75.4-467.2,125-800.1,125S173.7,75.4,0,0Z' fill='white'/%3E%3C/svg%3E");
}

.mj-feature__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mj-feature__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 25%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0) 100%);
}

.mj-feature.feature-align-left .mj-feature__media::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 25%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0) 100%);
}

.mj-feature__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 420px;
}

.mj-feature__content {
    position: relative;
    z-index: 2;
    width: 40%;
    max-width: 600px;
    margin-right: 10%;
    padding: 100px 0;
    text-align: center;
}

.mj-feature.feature-align-left .mj-feature__content {
    margin-right: 0%;
    margin-left: 10%;
}

.mj-feature__title {
    font-size: clamp(28px, 6vw, 42px);
}

.mj-feature__text {
    font-size: clamp(15px, 3.0vw, 18px);
}

/* Button - stronger animation
*/
.mj-feature .mj-btn.wow {
    animation-name: mjFadeInUpStrong;
}

@media (max-width: 1200px) {
    .mj-feature {
        min-height: 620px;
    }

    .mj-feature::before,
    .mj-feature::after {
        height: 60px;
    }
}

@media (max-width: 900px) {
    .mj-feature {
        flex-direction: column;
        min-height: 620px;
    }

    .mj-feature::before,
    .mj-feature::after {
        height: 30px;
    }

    .mj-feature__media {
        position: relative;
        width: 100%;
    }

    .mj-feature__media::before {
        display: none;
    }

    .mj-feature__content,
    .mj-feature.feature-align-left .mj-feature__content {
        margin: 30px 20px 30px;
        max-width: 90%;
        width: 90%;
        padding: 0;
    }
}


/* =========================
   TESTIMONIALS
========================= */

.mj-testimonials {
    position: relative;
    padding: 100px 0 100px;
    background: #ffffff;
    z-index: 2;
}

.mj-testimonials__inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.mj-testimonials__title {
    font-size: clamp(24px, 4.5vw, 36px);
    margin-bottom: 16px;
}

.mj-testimonials__grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mj-testimonial {
    position: relative;
    background: #f2f2f2;
    padding: 32px 28px 28px;
    border-radius: 20px;
    text-align: center;
    /*box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);*/
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mj-testimonial:hover {
    transform: translateY(-6px);
    /*box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);*/
}

.mj-testimonial__text {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #49566a;
}

.mj-testimonial__author {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #27579a;
}

.mj-testimonial__rating {
    margin-bottom: 12px;
    color: #fbb040;
    font-size: 14px;
}

.mj-testimonial:focus-within {
    outline: 2px solid blue;
    outline-offset: 4px;
}

@media (max-width: 900px) {

    .mj-testimonials {
        padding: 80px 0;
    }

    .mj-testimonials__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mj-testimonial {
        padding: 24px 20px;
    }

    .mj-testimonial__text {
        font-size: 15px;
    }

}


/* =========================
   PAYMENT OPTIONS
========================= */
.mj-payment-options {
    position: relative;
    padding: 0 24px 0;
    text-align: center;
    background: #FFFFFF;
    z-index: 10;
}

.mj-payment-options__inner {
    width: min(900px, calc(100% - 48px));
    margin: 0 auto;
}

.mj-payment-options__title {
    margin-bottom: 16px;
}

.mj-payment-options__text {
    margin: 0 auto 32px;
    max-width: 640px;
    font-size: clamp(15px, 3.0vw, 18px);
    line-height: 1.7;
    color: #49566a;
}

.mj-payment-options__card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.mj-payment-options__card:hover,
.mj-payment-options__card:focus-visible {
    transform: translateY(-6px);
}

.mj-payment-options__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mj-payment-options__card:focus-visible {
    outline: 3px solid #66cef5;
    outline-offset: 4px;
}

.mj-payment-options__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #32d04e;
}

.mj-payment-options__icon svg {
    width: 56px;
    height: 56px;
    display: block;
    fill: #32d04e;
}

.mj-payment-options__icon path {
    fill: #32d04e;
}

@media (min-width: 901px) {

    .mj-payment-options__item {
        position: relative;
    }
}

@media (max-width: 640px) {

    .mj-payment-options__card {
        gap: 28px;
    }

    .mj-payment-options__icon svg {
        width: 36px;
        height: 36px;
    }
}


/* =========================
   SERVICES LIST 
========================= */
.mj-services-list {
    position: relative;
    padding: 90px 24px;
    background: #ffffff;
    z-index: 10;
}

.mj-services-list__inner {
    max-width: 980px;
    margin: 0 auto;
}

.mj-services-list__items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mj-service-list-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    align-items: start;
}

.mj-service-list-item+.mj-service-list-item {
    margin-top: 42px;
}

.mj-service-list-item img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.mj-service-list-item h3 {
    margin: 6px 0 8px;
    color: #0057a8;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.05;
}

.mj-service-list-item p {
    margin: 0;
    color: #4b5563;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.65;
    max-width: 720px;
}

/* Screen reader helper */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 700px) {
    .mj-services-list {
        padding: 64px 20px;
    }

    .mj-service-list-item {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .mj-service-list-item+.mj-service-list-item {
        margin-top: 48px;
    }

    .mj-service-list-item img {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .mj-service-list-item p {
        margin-left: auto;
        margin-right: auto;
    }
}



/* =========================
   MISSION
========================= */
.mj-mission {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to top, #f4f5f6 0%, #f4f5f6 40%, #ffffff 100%);
    padding: 120px 24px 120px;
    text-align: center;
    z-index: 10;
}

.mj-mission::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 136px;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 145' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,0v145h1600.1V0c-173.7,75.4-467.2,125-800.1,125S173.7,75.4,0,0Z' fill='white'/%3E%3C/svg%3E");
}

.mj-mission__inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.mj-mission__title {
    margin: 0 0 26px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.08;
}

.mj-mission__text {
    margin: 0 auto;
    font-size: clamp(15px, 3vw, 18px);
    line-height: 1.65;
}

@media (max-width: 1200px) {

    .mj-mission::after {
        height: 60px;
    }
}

@media (max-width: 900px) {
    .mj-mission {
        padding: 30px 24px 50px;
    }

    .mj-mission::after {
        height: 30px;
    }

    .mj-mission__title {
        margin-bottom: 18px;
    }
}


/* =========================
   TEAM 
========================= */
.mj-team {
    position: relative;
    padding: 100px 24px;
    background: #ffffff;
    z-index: 10;
}

.mj-team__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.mj-team__collage {
    position: relative;
    min-height: 520px;
}

.mj-team__image {
    position: absolute;
    display: block;
    object-fit: cover;
    border-radius: 18px;
}

.mj-team__image--one {
    width: 180px;
    height: auto;
    left: 0;
    top: 110px;
}

.mj-team__image--two {
    width: 220px;
    height: auto;
    left: 220px;
    top: 20px;
}

.mj-team__image--three {
    width: 360px;
    height: auto;
    left: 220px;
    top: 280px;
}

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

.mj-team__title {
    font-size: clamp(28px, 7vw, 42px);
    margin: 0 0 34px;
}

.mj-team__text {
    font-size: clamp(15px, 3vw, 18px);
    max-width: 650px;
    margin: 0 auto 34px;
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .mj-team__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mj-team__collage {
        width: min(580px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 700px) {

    .mj-team__collage {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        min-height: auto;
    }

    .mj-team__image {
        display: flex;
        position: relative;
        left: unset;
        top: unset;
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .mj-team__image--one {
        aspect-ratio: 4 / 5;
    }

    .mj-team__image--three {
        aspect-ratio: 16 / 9;
        width: 420px;
        max-width: 100%;
    }

}

@media (max-width: 480px) {

    .mj-team {
        padding: 50px 24px 0;
    }

    .mj-team__image--one {
        aspect-ratio: 4 / 5;
    }

    .mj-team__image--one {
        max-width: 120px;
    }

    .mj-team__image--two {
        max-width: 180px;
    }

    .mj-team__image--three {
        max-width: 100%;
    }

}


/* =========================
   FAQs
========================= */
.mj-faqs {
    position: relative;
    padding: 90px 24px;
    background: #ffffff;
    z-index: 10;
}

.mj-faqs__inner {
    max-width: 940px;
    margin: 0 auto;
}

.mj-faqs__title {
    margin: 0 0 46px;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.1;
}

.mj-faqs__list {
    border-top: 2px dotted #cfd3d8;
}

.mj-faq {
    border-bottom: 2px dotted #cfd3d8;
    padding: 22px 0 24px;
}

.mj-faq summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding-left: 48px;
    color: #2f3338;
    font-weight: 700;
    line-height: 1.35;
}

.mj-faq summary::-webkit-details-marker {
    display: none;
}

.mj-faq summary::before {
    content: "+";
    position: absolute;
    left: 20px;
    top: 0;
    color: #00aeef;
    font-weight: 700;
}

.mj-faq[open] summary::before {
    content: "−";
}

.mj-faq p {
    margin: 16px 0 0;
    padding-left: 48px;
    line-height: 1.55;
}

.mj-faq summary:focus-visible {
    outline: 3px solid #66cef5;
    outline-offset: 6px;
    border-radius: 6px;
}

.mj-faq__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.mj-faq__content {
    overflow: hidden;
    height: 0;
    transition: height 0.35s ease;
}

.mj-faq[open] .mj-faq__content {
    height: auto;
}

@media (max-width: 700px) {
    .mj-faqs {
        padding: 70px 20px;
    }

    .mj-faqs__title {
        margin-bottom: 32px;
    }

    .mj-faq {
        padding: 20px 0;
    }

    .mj-faq summary,
    .mj-faq p {
        padding-left: 34px;
    }

    .mj-faq summary::before {
        left: 6px;
    }
}


/* =========================
   BLOG (HOME) / ARCHIVE / CATEGORY
========================= */
.mj-blog,
.mj-loop {
    padding: 150px 24px 0;
    background: #ffffff;
}

.mj-blog__inner,
.mj-loop__inner {
    max-width: 1170px;
    margin: 0 auto;
}

.mj-blog__inner {
    padding-top: 100px;
}

.mj-loop__inner {
    padding-top: 60px;
    padding-bottom: 50px;
}

.mj-blog__heading,
.mj-loop__heading {
    font-size: clamp(28px, 7vw, 42px);
    margin: 0 0 100px;
    text-align: center;
}

.mj-blog__list,
.mj-loop__list {
    display: grid;
    gap: 150px;
}

.mj-blog__list {
    margin-top: 150px;
}

.mj-blog-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 100px 0;
}

.mj-blog-card__media {
    border-radius: 16px;
    overflow: hidden;
    display: block;
}

.mj-blog-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform 0.35s ease;
}

/* Default (image left) */
.mj-blog-card__media {
    order: 1;
}

.mj-blog-card__content {
    order: 2;
}

/* Alternate (image right) */
.mj-blog-card:nth-child(even) .mj-blog-card__media {
    order: 2;
}

.mj-blog-card:nth-child(even) .mj-blog-card__content {
    order: 1;
    text-align: right;
}

.mj-blog-card__title {
    margin: 0 0 18px;
    font-size: clamp(28px, 3.5vw, 36px);
    line-height: 1.08;
}

.mj-blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.mj-blog-card__excerpt {
    color: #3f4650;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.55;
}

.mj-blog-card__excerpt p {
    margin: 0;
}

.mj-blog-card__read-more {
    display: inline-block;
    margin-top: 14px;
    color: #0057a8;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
}

.mj-blog-card__read-more:hover,
.mj-blog-card__read-more:focus-visible {
    color: #00aeef;
}

.mj-blog-card__image-link {
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.mj-blog-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}


.mj-blog-card__link {
    color: inherit;
    text-decoration: none;
}

.mj-blog-card__link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.mj-blog-card__media,
.mj-blog-card__content {
    position: relative;
    z-index: 1;
}

.mj-blog-card:focus-within {
    outline: 3px solid #66cef5;
    outline-offset: 6px;
    border-radius: 16px;
}

.mj-blog-card:hover .mj-blog-card__image,
.mj-blog-card:focus-within .mj-blog-card__image {
    transform: scale(1.04);
}

.mj-blog-card:nth-child(even) .mj-blog-card__image-link {
    order: 2;
}

.mj-blog-card:nth-child(even) .mj-blog-card__content {
    order: 1;
    text-align: right;
}

.mj-blog__cta {
    display: table;
    margin: 110px auto 0;
}

.mj-pagination {
    margin-top: 0;
    text-align: center;
}

@media (max-width: 900px) {

    .mj-blog,
    .mj-loop {
        padding: 70px 20px 90px;
    }

    .mj-blog__inner {
        padding-top: 50px;
    }

    .mj-loop__inner {
        padding-top: 50px;
        padding-bottom: 0;
    }

    .mj-blog__heading,
    .mj-loop__heading {
        margin: 0 0 50px;

    }

    .mj-blog__list,
    .mj-loop__list {
        gap: 50px;
        margin-top: 50px;
    }

    .mj-blog-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .mj-blog-card__media {
        order: 1;
    }

    .mj-blog-card__content {
        order: 2;
    }

    .mj-blog-card:nth-child(even) .mj-blog-card__image-link,
    .mj-blog-card:nth-child(even) .mj-blog-card__content {
        text-align: center;
        order: 2;
    }

    .mj-blog__cta {
        margin-top: 80px;
    }
}

@media (max-width: 640px) {

    .mj-blog-card__image {
        aspect-ratio: 4 / 3;
    }
}


/* =========================
   SINGLE
========================= */
.mj-single {
    background: #ffffff;
}

.mj-single__hero {
    position: relative;
    overflow: hidden;
    background: #f4f5f6;
    padding: 200px 24px 100px;
    text-align: center;
}

.mj-single__hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 135px;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 145' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,0v145h1600.1V0c-173.7,75.4-467.2,125-800.1,125S173.7,75.4,0,0Z' fill='white'/%3E%3C/svg%3E");
}

.mj-single__hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.mj-single__image-wrap {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 40px;
}

.mj-single__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.mj-single__title {
    margin: 0 auto;
}

.mj-single__content {
    margin: 50px auto 0;
    padding: 0 24px;
    text-align: center;
    max-width: 820px;
}

.mj-single__content p {
    margin: 0 0 28px;
}

.mj-single__content h2 {
    margin: 38px 0 20px;
}

.mj-single__content h3 {
    margin: 34px 0 18px;
}

.mj-single__content a {
    color: #0057a8;
    font-weight: 700;
}

.mj-single__post-nav {
    max-width: 900px;
    margin: 100px auto 0;
    padding: 0 24px;
}

.mj-single__post-nav-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    border-top: 2px dotted #cfd3d8;
    border-bottom: 2px dotted #cfd3d8;
    padding: 22px 0;
}

.mj-single__post-nav-item a {
    display: block;
    color: #1f2937;
    text-decoration: none;
}

.mj-single__post-nav-item--next {
    text-align: right;
}

.mj-single__post-nav-label {
    display: block;
    color: #6b7280;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.mj-single__post-nav-title {
    display: block;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.mj-single__post-nav-item a:hover .mj-single__post-nav-title,
.mj-single__post-nav-item a:focus-visible .mj-single__post-nav-title {
    color: #0057a8;
}

.mj-single__post-nav-item a:focus-visible {
    outline: 3px solid #66cef5;
    outline-offset: 6px;
    border-radius: 8px;
}

.mj-single__cta {
    text-align: center;
    margin: 70px 0 0;
    padding-bottom: 0;
}

@media (max-width: 1200px) {

    .mj-single__hero::after {
        height: 60px;
    }
}

@media (max-width: 900px) {

    .mj-single__hero {
        padding: 120px 20px 50px;
    }

    .mj-single__hero::after {
        height: 30px;
    }

    .mj-single__content {
        margin-top: 30px;
        text-align: center;
    }

    .mj-single__content h2,
    .mj-single__content h3 {
        text-align: center;
    }

    .mj-single__cta {
        padding-bottom: 30px;
    }

    .mj-single__post-nav {
        margin: 50px auto 0;
    }

    .mj-single__post-nav-inner {
        grid-template-columns: 1fr;
    }

    .mj-single__post-nav-item--next {
        text-align: left;
    }
}



/* =========================
   CONTACT
========================= */
.mj-contact {
    position: relative;
    padding: 200px 24px 120px;
    background: linear-gradient(to bottom,
            #f4f5f6 0%,
            #f4f5f6 40%,
            #ffffff 100%);
}

.mj-contact__inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 64px;
    align-items: start;
}

.mj-contact__title {
    margin: 0 0 36px;
}

.mj-contact__map-link {
    display: block;
    border-radius: 22px;
    overflow: hidden;
}

.mj-contact__map {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid #CCCCCC;
}

.mj-contact__address {
    margin-top: 38px;
    font-style: normal;
}

.mj-contact__address svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: #06bff9;
}

.mj-contact__address p {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 16px;
}

.mj-contact__address span {
    color: #00aeef;
    font-size: 1.35em;
}

.mj-contact__address a {
    color: inherit;
    text-decoration: none;
}

.mj-contact__address a:hover,
.mj-contact__address a:focus-visible {
    color: #0057a8;
}

@media (max-width: 900px) {
    .mj-contact {
        padding: 100px 20px 90px;
    }

    .mj-contact__inner {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .mj-contact__title {
        text-align: center;
        margin-bottom: 28px;
    }

    .mj-contact__info {
        order: -1;
    }

    .mj-contact__address {
        margin-top: 24px;
    }

    .mj-contact .wpforms-field-row {
        display: block;
    }

    .mj-contact .wpforms-field-row .wpforms-field-row-block {
        width: 100%;
        padding-right: 0;
        margin-bottom: 22px;
    }
}


/* =========================
   ERROR-404
========================= */
.mj-404 {
    background: linear-gradient(to bottom,
            #f4f5f6 0%,
            #ffffff 100%);
    text-align: center;
    padding: 200px 24px 0;
}

.mj-404__inner {
    max-width: 720px;
    margin: 0 auto;
}

/* Big 404 number */
.mj-404__code {
    margin: 0 0 10px;
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 700;
    color: #e6e8eb;
    line-height: 1;
}

/* Title */
.mj-404__title {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 5vw, 48px);
    color: #0057a8;
    line-height: 1.1;
}

/* Text */
.mj-404__text {
    margin: 0 0 36px;
    font-size: 18px;
    color: #3f4650;
    line-height: 1.6;
}

/* Buttons */
.mj-404__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

/* Links */
.mj-404__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.mj-404__links li {
    display: flex;
    align-items: center;
}

.mj-404__links li:not(:last-child)::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 16px;
    border-radius: 50%;
    background: #cfd3d8;
}

.mj-404__links a {
    text-decoration: none;
    color: #0057a8;
    font-weight: 500;
}

.mj-404__links a:hover,
.mj-404__links a:focus-visible {
    color: #00aeef;
}

/* Accessibility */
.mj-404 a:focus-visible {
    outline: 3px solid #66cef5;
    outline-offset: 4px;
    border-radius: 6px;
}

/* Mobile */
@media (max-width: 700px) {

    .mj-404 {
        padding: 90px 20px 110px;
    }

    .mj-404__text {
        font-size: 16px;
    }

    .mj-404__actions {
        flex-direction: column;
        align-items: center;
    }

}



/* =========================
   SEARCH BOX
========================= */
.mj-404__search {
    margin: 32px auto 42px;
    max-width: 520px;
}

.mj-search-form {
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    background: #ffffff;
}

.mj-search-form__input {
    flex: 1;
    border: none;
    padding: 16px 18px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    outline: none;
    color: #1f2937;
    height: auto;
    border-radius: 8px 0 0 8px !important;
}

.mj-search-form__input::placeholder {
    color: #9aa1a9;
}

/* Button */
.mj-search-form__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: none;
    padding: 0 24px;
    background: linear-gradient(90deg, #00aeef, #66cef5);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
    border-radius: 0 8px 8px 0 !important;
}

.mj-search-form__button:hover {
    opacity: 0.9;
}

.mj-search-form__input,
.mj-search-form__button {
    height: 56px !important;

}

/* Focus styles */
.mj-search-form:focus-within {
    outline: 3px solid #66cef5;
    outline-offset: 3px;
}

/* Mobile */
@media (max-width: 600px) {

    .mj-search-form__button {
        width: fit-content;
        padding: 14px;
    }

}


/* =========================
   SEARCH PAGE
========================= */
.mj-search-results {
    padding: 200px 24px 0;
    background: #ffffff;
}

.mj-search-results__inner {
    max-width: 860px;
    margin: 0 auto;
}

.mj-search-results__title {
    color: #0057a8;
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
}

.mj-search-results__summary {
    margin: 32px 0;
    color: #4b5563;
    text-align: center;
}

.mj-search-results__list {
    display: grid;
    gap: 34px;
}

.mj-search-result {
    padding-bottom: 30px;
    border-bottom: 2px dotted #cfd3d8 !important;
}

.mj-search-result__type {
    margin: 0 0 6px;
    color: #00aeef;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.mj-search-result__title {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 36px);
}

.mj-search-result__title a {
    color: #0057a8;
    text-decoration: none;
}

.mj-search-result__excerpt {
    color: #3f4650;
    line-height: 1.65;
}

@media (max-width: 700px) {
    .mj-search-results {
        padding: 100px 20px 90px;
    }
}



/* =========================
   LEGAL - Privacy and Terms
========================= */
.mj-legal-page {
    background: linear-gradient(to bottom,
            #f4f5f6 0%,
            #ffffff 100%);
    padding: 200px 24px 0;
}

.mj-legal-page__inner {
    max-width: 820px;
    margin: 0 auto;
}

.mj-legal-page__title {
    margin: 0 0 42px;
    text-align: center;
    color: #0057a8;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.08;
}

.mj-legal-page__content {
    color: #3f4650;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.75;
}

.mj-legal-page__content h2 {
    margin: 44px 0 14px;
    color: #0057a8;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
}

.mj-legal-page__content h3 {
    margin: 32px 0 12px;
    color: #0057a8;
    font-size: 20px;
    line-height: 1.25;
}

.mj-legal-page__content p {
    margin: 0 0 20px;
}

.mj-legal-page__content ul,
.mj-legal-page__content ol {
    margin: 0 0 24px 24px;
    padding: 0;
}

.mj-legal-page__content li {
    margin-bottom: 10px;
}

.mj-legal-page__content a {
    color: #0057a8;
    font-weight: 600;
}

.mj-legal-page__content a:hover,
.mj-legal-page__content a:focus-visible {
    color: #00aeef;
}

@media (max-width: 700px) {
    .mj-legal-page {
        padding: 100px 20px 0;
    }

    .mj-legal-page__title {
        margin-bottom: 32px;
    }
}