@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Text:ital@0;1&family=Noto+Serif:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
    --main-color: #002f6c;
    --alt-color: #99e1e0;
    --main-font-color: #99e1e0;
    --alt-font-color: #002f6c;
    --muted-color: #adadad;
    --accent-color: #39cc91;
    --accent-font-color: #39cc91;
    --header-font: "Noto Serif", serif;
    --subheader-font: "DM Serif Text", serif;
    --body-font: "DM Sans", sans-serif;
    --home-heading-size: clamp(1.98rem, 4.14vw, 3.24rem);
    --home-body-size: clamp(1.125rem, 2.07vw, 1.53rem);
}

/* ===== GENERAL ===== */
html, body {
    height: 100%;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    font-family: var(--body-font);
}

.page-body {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
}

h1,
h2 {
    font-family: var(--header-font);
}

h3,
h4,
h5,
h6,
.subheader,
[class*="subheader"],
.services-sub-heading,
.services-cta-sub,
.accordion-button {
    font-family: var(--subheader-font);
}

p,
li,
a,
button,
input,
select,
textarea,
label,
blockquote,
figcaption,
td,
th {
    font-family: var(--body-font);
}

main {
    flex: 1;
}

.about-main,
.faq-main,
.services-main {
    width: 100%;
}

/* ===== SERVICES PAGE ===== */
.services-intro-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #000000;
}

.services-packages-section {
    background-color: #ffffff;
    color: var(--alt-font-color);
}

.services-package-card {
    background-color: #ffffff;
    border: 2px solid rgba(0, 47, 108, 0.12);
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 47, 108, 0.1);
    padding: 2.75rem;
}

.services-package-header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.services-package-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 700;
    color: var(--alt-font-color);
    margin: 0;
}

.services-grade-badge {
    background-color: rgba(153, 225, 224, 0.35);
    border: 1.5px solid var(--alt-color);
    border-radius: 999px;
    color: var(--alt-font-color);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    white-space: nowrap;
}

.services-package-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.services-inner-divider {
    border: 0;
    border-top: 1.5px solid rgba(0, 47, 108, 0.14);
    margin: 1.75rem 0;
}

.services-sub-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--alt-font-color);
    margin-bottom: 1rem;
}

.services-feature-list,
.services-outcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.services-feature-list li,
.services-outcome-list li {
    font-size: 1.02rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.services-feature-list li::before {
    content: "\2713";
    color: var(--accent-color);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.services-outcome-list li::before {
    content: "\25B6";
    color: var(--alt-font-color);
    font-size: 0.65rem;
    position: absolute;
    left: 0;
    top: 0.45rem;
}

.services-cta-section {
    color: #ffffff;
}

.services-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent-font-color);
    margin-bottom: 0.4rem;
}

.services-cta-sub {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--main-font-color);
    margin-bottom: 1.5rem;
}

.services-steps-list {
    padding-left: 1.5rem;
    margin: 0;
    display: grid;
    gap: 1.1rem;
}

.services-steps-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ffffff;
}

.services-cta-link {
    color: var(--accent-font-color);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-cta-link:hover {
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .services-package-card {
        padding: 1.75rem;
    }
}

.faq-intro-copy {
    text-align: left;
}

.faq-intro-copy h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    font-weight: 700;
    color: #000000;
}

.faq-intro-copy p {
    margin: 0;
    font-size: clamp(1.15rem, 2.4vw, 1.7rem);
    font-weight: 600;
    color: var(--alt-font-color);
}

.faq-section {
    background-color: #ffffff;
    color: var(--alt-font-color);
}

.faq-accordion {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 2px solid rgba(0, 47, 108, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 47, 108, 0.08);
}

.faq-item .accordion-button {
    background-color: #ffffff;
    color: var(--alt-font-color);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 1.4rem 1.5rem;
}

.faq-item .accordion-button:not(.collapsed) {
    background-color: rgba(153, 225, 224, 0.2);
    color: var(--alt-font-color);
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(57, 204, 145, 0.2);
}

.faq-item .accordion-button::after {
    background-size: 1.1rem;
}

.faq-item .accordion-body {
    color: var(--alt-font-color);
    font-size: 1.02rem;
    line-height: 1.8;
    padding: 0 1.5rem 1.5rem;
}

.contact-main {
    width: 100%;
}

.contact-intro {
    background-image: linear-gradient(rgba(173, 173, 173, 0.78), rgba(173, 173, 173, 0.78)), url("../Img/stairs_group.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-intro-copy {
    text-align: left;
    background-color: rgba(0, 47, 108, 0.74);
    border-radius: 24px;
    color: #ffffff;
    padding: 2rem;
    backdrop-filter: blur(2px);
}

.contact-intro-copy p {
    color: #ffffff;
}

.contact-intro-copy h1 {
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--accent-font-color);
}

.contact-subheader {
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 44rem;
    color: #ffffff;
}

.contact-invitation {
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 0;
    max-width: 52rem;
}

.contact-form-section {
    background-color: #ffffff;
    color: var(--alt-font-color);
}

.contact-form-card {
    background-color: rgba(255, 255, 255, 0.96);
    border: 2px solid rgba(0, 47, 108, 0.12);
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 47, 108, 0.12);
    padding: 2.5rem;
}

.contact-inquiry-form .form-label {
    color: var(--alt-font-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.contact-inquiry-form .form-control,
.contact-inquiry-form .form-select {
    border: 2px solid rgba(0, 47, 108, 0.16);
    border-radius: 14px;
    color: var(--alt-font-color);
    font-size: 1rem;
    padding: 0.9rem 1rem;
}

.contact-inquiry-form .form-control:focus,
.contact-inquiry-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(57, 204, 145, 0.2);
}

.contact-inquiry-form textarea.form-control {
    min-height: 9rem;
    resize: vertical;
}

.contact-submit-btn {
    background-color: var(--main-color);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.95rem 1.8rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
    background-color: var(--accent-color);
    color: var(--alt-font-color);
    transform: translateY(-1px);
}

.contact-form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-form-or {
    color: #000000;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
}

.contact-book-btn {
    background-color: var(--accent-color);
    color: var(--alt-font-color);
}

.contact-book-btn:hover,
.contact-book-btn:focus {
    background-color: var(--main-color);
    color: #ffffff;
}

.section-muted-founder {
    background-color: var(--muted-color);
    color: var(--alt-font-color);
}

.section-muted-founder h1,
.section-muted-founder h2,
.section-muted-founder h3,
.section-muted-founder h4,
.section-muted-founder h5,
.section-muted-founder h6,
.section-muted-founder .subheader,
.section-muted-founder [class*="subheader"] {
    color: var(--alt-font-color);
}

.about-founder-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--alt-font-color);
    text-align: left;
}

.about-founder-section {
    background-color: #ffffff;
    color: var(--alt-font-color);
}

.about-mission-section {
    background-color: #ffffff;
    color: var(--alt-font-color);
    padding-top: 1.5rem !important;
}

.founder-profile-card {
    color: var(--alt-font-color);
}

.founder-profile-card > .row + .row {
    margin-top: 1.25rem;
}

.founder-profile-image {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.founder-profile-copy p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.founder-profile-copy p:last-child {
    margin-bottom: 0;
}

.about-divider {
    margin: 2.5rem 0 0;
    border: 0;
    border-top: 2px solid var(--main-color);
}

.about-mission-copy p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 1.25rem;
}

.about-mission-copy p:last-child {
    margin-bottom: 0;
}

/* ===== HOME PAGE ===== */
.home-main {
    width: 100%;
}

.home-section {
    padding: 4rem 0;
}

.home-section h2 {
    font-size: var(--home-heading-size);
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-section h3 {
    font-size: clamp(1.5rem, 3.1vw, 2.4rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-section p {
    margin-bottom: 1rem;
    line-height: 1.65;
    font-size: var(--home-body-size);
}

.home-hero {
    position: relative;
    min-height: 20vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background-image: linear-gradient(rgba(0, 47, 108, 0.65), rgba(0, 47, 108, 0.65)), url("../Img/group_hat_throw.jpg");
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 3rem 0;
}

.home-hero h1 {
    font-size: var(--home-heading-size);
    margin-bottom: 0.85rem;
    font-weight: 700;
    color: var(--accent-font-color);
}

.home-hero p {
    margin: 0;
    font-size: var(--home-body-size);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-white-mainfont {
    background-color: #ffffff;
    color: var(--main-font-color);
    min-height: 42vh;
    padding: 6rem 0;
}

.section-white-mainfont h2 {
    color: var(--alt-font-color);
}

.section-white-mainfont p {
    line-height: 1.4;
    color: var(--alt-font-color);
}

.section-muted-mainfont {
    background-color: var(--muted-color);
    background-image: linear-gradient(rgba(173, 173, 173, 0.78), rgba(173, 173, 173, 0.78)), url("../Img/table_study.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--alt-font-color);
}

.section-muted-mainfont h1,
.section-muted-mainfont h2,
.section-muted-mainfont h3,
.section-muted-mainfont h4,
.section-muted-mainfont h5,
.section-muted-mainfont h6,
.section-muted-mainfont .subheader,
.section-muted-mainfont [class*="subheader"] {
    color: var(--alt-font-color);
}

.contact-intro.section-muted-mainfont {
    background-image: linear-gradient(rgba(173, 173, 173, 0.78), rgba(173, 173, 173, 0.78)), url("../Img/stairs_group.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.contact-intro.section-muted-mainfont .contact-intro-copy h1 {
    color: var(--accent-font-color);
}

.contact-intro.section-muted-mainfont .contact-subheader {
    color: #ffffff;
}

.section-main-white {
    background-color: var(--main-color);
    color: #ffffff;
}

.section-main-white h2,
.section-main-white h3 {
    color: var(--main-font-color);
}

.section-main-white p {
    color: #ffffff;
}

.home-main .section-main-white:first-of-type p {
    line-height: 2;
}

.fourth-feature-image {
    width: 85%;
    max-height: 420px;
    object-fit: cover;
    object-position: top center;
    display: block;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.pass-callout-box {
    background-color: rgba(0, 47, 108, 0.74);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(2px);
}

.pass-callout-box h2,
.pass-callout-box h3 {
    color: var(--accent-font-color);
}

.pass-callout-box h1,
.pass-callout-box h4,
.pass-callout-box h5,
.pass-callout-box h6,
.pass-callout-box .subheader,
.pass-callout-box [class*="subheader"] {
    color: var(--accent-font-color);
}

.pass-callout-box p {
    color: #ffffff;
}

.pass-callout-title {
    color: var(--accent-font-color);
    margin-bottom: 0;
    text-align: left;
}

.pass-callout-label {
    color: var(--accent-font-color);
}

.third-section-box {
    min-height: 42vh;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.third-section-box h2 {
    margin-bottom: 1.25rem;
}

.third-section-box p {
    margin-bottom: 0;
}

.services-testimonials-section {
    background-color: var(--alt-color);
    color: var(--alt-font-color);
}

.testimonials-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-testimonials-title {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 700;
    color: var(--alt-font-color);
    margin-bottom: 2rem;
    font-family: var(--header-font);
    text-align: center;
}

.why-work-left,
.why-work-right {
    display: flex;
    flex-direction: column;
}

.home-cert-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
    align-items: center;
}

.home-cert-logo {
    width: auto;
    height: 54px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0.4rem 1.1rem;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@media (max-width: 991.98px) {
    .about-founder-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .contact-form-card {
        padding: 1.75rem;
    }

    .contact-intro-copy {
        padding: 1.75rem;
    }

    .faq-item .accordion-button,
    .faq-item .accordion-body {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .third-section-box h2 {
        white-space: normal;
    }

    .home-cert-logo {
        height: 44px;
        padding: 0.3rem 0.7rem;
    }

    .contact-form-actions {
        justify-content: stretch;
        align-items: stretch;
    }
}

@media (max-width: 767.98px) {
    .testimonials-container {
        max-width: 100%;
        padding: 0 0.75rem;
    }

    .services-testimonials-title {
        margin-bottom: 1.2rem;
    }

    .services-testimonials-section .senja-embed {
        padding: 0 !important;
    }

    .contact-form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .contact-submit-btn {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.1rem;
    }

    .contact-form-or {
        align-self: center;
    }
}

/* ===== NAVBAR ===== */
.site-navbar {
    flex-shrink: 0;
    z-index: 1030;
    min-height: 12.75vh;
    background-color: var(--alt-color) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.site-navbar .navbar-logo img {
    height: 12.75vh;
    max-height: 115px;
    width: auto;
    object-fit: contain;
}

.site-navbar .navbar-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 2px solid var(--alt-color);
    border-radius: 48%;
    padding: 0.55rem 2.2rem;
    margin: 1rem 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-navbar .navbar-logo:hover {
    background-color: var(--alt-color);
    border-color: var(--alt-color);
}

.site-navbar .navbar-nav {
    gap: 2rem;
}

.site-navbar .nav-link {
    color: var(--alt-font-color) !important;
    font-weight: 600;
    font-size: 1.5rem;
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.site-navbar .nav-link:not(.contact-btn):hover {
    background-color: var(--accent-color);
    color: #ffffff !important;
}

.site-navbar .nav-link.active {
    background-color: transparent !important;
    color: var(--alt-font-color) !important;
    border-color: transparent;
    border-bottom: 4px solid var(--accent-color);
}

/* Optional class for a Home nav link to keep button-style active state */
.site-navbar .nav-link.home-btn.active {
    background-color: var(--main-color) !important;
    color: #ffffff !important;
    border-color: var(--main-color);
    border-bottom: 2px solid transparent;
}

/* Contact button */
.site-navbar .nav-link.contact-btn {
    background-color: var(--main-color);
    color: #ffffff !important;
    border-radius: 8px;
    border-color: var(--main-color);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.site-navbar .nav-link.contact-btn:hover {
    background-color: var(--accent-color);
    color: #ffffff !important;
    border-color: var(--accent-color);
}

.site-navbar .nav-link.contact-btn.active {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color);
    color: var(--alt-font-color) !important;
    border-bottom: 2px solid transparent;
}

.navbar-toggler {
    border-color: var(--alt-font-color);
}

.navbar-toggler-icon {
    filter: none;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--alt-color);
    color: var(--alt-font-color);
    font-size: 1.5rem;
    margin-top: 4rem;
    padding: 1.5rem 2rem;
}

.site-footer a {
    color: var(--alt-font-color);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: var(--accent-color);
}

.footer-section {
    margin-bottom: 0.75rem;
}

.footer-section h5 {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--alt-font-color);
}

.footer-contact {
    font-size: 1.5rem;
    line-height: 1.3;
}

.footer-contact-item {
    margin-bottom: 0.2rem;
}

.social-links {
    display: flex;
    column-gap: 1rem;
    row-gap: 0.4rem;
    flex-wrap: wrap;
}

.social-links a {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border: 2px solid var(--alt-font-color);
    border-radius: 4px;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links .linkedin-icon {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
}

.footer-quote {
    text-align: center;
    border-top: 2px solid var(--alt-font-color);
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    font-style: italic;
    font-size: 1.65rem;
    color: var(--alt-font-color);
}
