/* =========================================================
   SERVITE MISSION SISTERS
   DONATION PAGE
========================================================= */

:root {
    --primary: #0b377d;
    --primary-dark: #06275f;
    --primary-light: #1e4d93;

    --accent: #ff8a00;
    --accent-dark: #e77700;
    --accent-soft: #fff3e3;

    --white: #ffffff;
    --background: #ffffff;
    --background-soft: #f5f8fd;

    --heading: #0b377d;
    --text: #536174;
    --text-light: #6d7888;
    --border: #dde5f0;

    --shadow-small: 0 10px 30px rgba(8, 48, 111, 0.08);
    --shadow-medium: 0 18px 45px rgba(8, 48, 111, 0.13);
    --shadow-large: 0 25px 65px rgba(8, 48, 111, 0.18);

    --transition: all 0.3s ease;
}


/* =========================================================
   GENERAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading);
    font-weight: 700;
    line-height: 1.25;
}


/* =========================================================
   HEADER
========================================================= */

.donation-header {
    position: relative;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.header-content {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.donation-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.donation-brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text span {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 800;
}

.brand-text small {
    color: var(--accent);
    font-size: 0.78rem;
    font-style: italic;
    font-weight: 700;
}

.header-home-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    border: 1px solid rgba(11, 55, 125, 0.25);
    border-radius: 50px;
    padding: 11px 21px;
    font-weight: 700;
    transition: var(--transition);
}

.header-home-link:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.donation-hero {
    min-height: 610px;
    position: relative;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(
            90deg,
            rgba(4, 36, 91, 0.96) 0%,
            rgba(7, 52, 119, 0.88) 52%,
            rgba(7, 52, 119, 0.5) 100%
        ),
        url("../images/welfare.help.png");

    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.donation-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    top: -180px;
    right: -80px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.donation-hero::after {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    right: 15%;
    bottom: -120px;
    background: rgba(255, 138, 0, 0.16);
    border-radius: 50%;
}

.donation-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 25% 45%,
            rgba(255, 138, 0, 0.11),
            transparent 42%
        );
}

.donation-hero .container {
    position: relative;
    z-index: 2;
}

.donation-hero-content {
    max-width: 760px;
    padding: 100px 0;
}

.hero-label {
    display: inline-block;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 10px 22px;
    margin-bottom: 25px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.donation-hero-content h1 {
    max-width: 740px;
    color: var(--white);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    margin-bottom: 25px;
}

.donation-hero-content h1 strong,
.donation-hero-content h1 span {
    color: var(--accent);
}

.donation-hero-content p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 35px;
}

.hero-donate-btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--white);
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 800;
    box-shadow: 0 14px 35px rgba(255, 138, 0, 0.3);
    transition: var(--transition);
}

.hero-donate-btn:hover {
    color: var(--white);
    background: transparent;
    border-color: var(--white);
    transform: translateY(-3px);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    margin-bottom: 28px;
}

.section-heading.text-center {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.section-heading h2,
.faq-introduction h2 {
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.15rem);
    margin-bottom: 18px;
}

.section-heading p {
    color: var(--text-light);
}


/* =========================================================
   MAIN DONATION SECTION
========================================================= */

.donation-main-section {
    background: var(--background-soft);
    padding: 110px 0;
}

.donation-story {
    padding-right: 15px;
}

.story-introduction {
    max-width: 720px;
    font-size: 1.04rem;
    margin-bottom: 45px;
}


/* =========================================================
   IMAGE COMPOSITION
========================================================= */

.donation-image-composition {
    position: relative;
    min-height: 510px;
    margin: 15px 30px 65px 0;
}

.main-donation-image {
    position: absolute;
    inset: 0 70px 30px 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-large);
}

.main-donation-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 39, 94, 0.36),
        transparent 55%
    );
}

.main-donation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-image {
    position: absolute;
    z-index: 4;
    width: 130px;
    height: 130px;
    overflow: hidden;
    background: var(--white);
    border: 7px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
}

.support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-image-one {
    top: 35px;
    right: 0;
}

.support-image-two {
    top: 195px;
    right: -20px;
}

.support-image-three {
    right: 20px;
    bottom: 0;
}


/* =========================================================
   MISSION SUPPORT CARDS
========================================================= */

.mission-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mission-support-card {
    display: flex;
    gap: 17px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 23px;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.mission-support-card:hover {
    border-color: rgba(255, 138, 0, 0.45);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mission-support-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 15px;
    font-size: 1.25rem;
}

.mission-support-card h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 7px;
}

.mission-support-card p {
    color: var(--text-light);
    font-size: 0.89rem;
    line-height: 1.65;
    margin: 0;
}


/* =========================================================
   SECURE DONATION CARD
========================================================= */

.secure-donation-card {
    position: sticky;
    top: 30px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 44px 38px;
    box-shadow: var(--shadow-large);
}

.secure-donation-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--accent),
        var(--primary)
    );
}

.secure-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--accent-soft);
    border-radius: 50%;
    margin-bottom: 22px;
    font-size: 2rem;
}

.secure-label {
    display: block;
    color: var(--accent);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.secure-donation-card h2 {
    color: var(--primary);
    font-size: 2.3rem;
    margin-bottom: 16px;
}

.donation-card-introduction {
    color: var(--text-light);
    margin-bottom: 25px;
}


/* =========================================================
   SCRIPTURE
========================================================= */

.scripture-box {
    position: relative;
    background: var(--accent-soft);
    border-left: 5px solid var(--accent);
    border-radius: 0 16px 16px 0;
    padding: 22px 22px 20px 52px;
    margin-bottom: 26px;
}

.scripture-box i {
    position: absolute;
    top: 23px;
    left: 20px;
    color: var(--accent);
}

.scripture-box blockquote {
    color: var(--primary);
    font-size: 1.08rem;
    font-style: italic;
    margin-bottom: 4px;
}

.scripture-box span {
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 700;
}


/* =========================================================
   DONATION BENEFITS
========================================================= */

.donation-benefits {
    display: grid;
    gap: 13px;
    margin-bottom: 28px;
}

.donation-benefit {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.92rem;
}

.donation-benefit i {
    color: var(--accent);
}


/* =========================================================
   STRIPE BUTTON
========================================================= */

.stripe-donation-btn {
    width: 100%;
    min-height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--white);
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(255, 138, 0, 0.25);
    transition: var(--transition);
}

.stripe-donation-btn:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.stripe-information {
    text-align: center;
    padding: 18px 0 20px;
    border-bottom: 1px solid var(--border);
}

.stripe-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #635bff;
    font-weight: 800;
    margin-bottom: 5px;
}

.stripe-brand i {
    font-size: 2.2rem;
}

.stripe-information p {
    color: var(--text-light);
    font-size: 0.77rem;
    margin: 0;
}

.donation-thank-you {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-top: 20px;
}

.donation-thank-you i {
    color: var(--accent);
    margin-top: 5px;
}

.donation-thank-you p {
    color: var(--text-light);
    font-size: 0.86rem;
    margin: 0;
}


/* =========================================================
   IMPACT SECTION
========================================================= */

.donation-impact-section {
    background: var(--white);
    padding: 110px 0;
}

.impact-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: var(--background-soft);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px 27px;
    transition: var(--transition);
}

.impact-card:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.impact-number {
    position: absolute;
    top: 12px;
    right: 20px;
    color: rgba(11, 55, 125, 0.08);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.impact-card > i {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--accent-soft);
    border-radius: 18px;
    margin-bottom: 24px;
    font-size: 1.6rem;
}

.impact-card h3 {
    position: relative;
    z-index: 2;
    color: var(--primary);
    font-size: 1.08rem;
    margin-bottom: 12px;
}

.impact-card p {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    font-size: 0.91rem;
    margin: 0;
}

.impact-card:hover .impact-number {
    color: rgba(255, 255, 255, 0.08);
}

.impact-card:hover h3,
.impact-card:hover p {
    color: var(--white);
}


/* =========================================================
   FAQ
========================================================= */

.donation-faq-section {
    background: var(--background-soft);
    padding: 110px 0;
}

.faq-introduction p {
    max-width: 440px;
    color: var(--text-light);
}

.faq-help-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: var(--shadow-small);
}

.faq-help-icon {
    flex: 0 0 53px;
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
}

.faq-help-box div:last-child {
    display: flex;
    flex-direction: column;
}

.faq-help-box span {
    color: var(--text-light);
    font-size: 0.77rem;
}

.faq-help-box a {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 800;
}

.donation-accordion {
    display: grid;
    gap: 15px;
}

.donation-accordion .accordion-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-small);
}

.donation-accordion .accordion-button {
    color: var(--primary);
    background: var(--white);
    padding: 22px 24px;
    font-size: 0.97rem;
    font-weight: 800;
    box-shadow: none;
}

.donation-accordion .accordion-button:not(.collapsed) {
    color: var(--white);
    background: var(--primary);
}

.donation-accordion .accordion-button:focus {
    box-shadow: none;
}

.donation-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.donation-accordion .accordion-body {
    color: var(--text-light);
    padding: 22px 24px;
    font-size: 0.92rem;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.donation-final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );
    padding: 75px 0;
}

.donation-final-cta::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -200px;
    left: -100px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.donation-final-cta::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    bottom: -180px;
    background: rgba(255, 138, 0, 0.13);
    border-radius: 50%;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.final-cta-content > div {
    max-width: 750px;
}

.final-cta-content span {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.final-cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.final-cta-content p {
    color: rgba(255, 255, 255, 0.84);
    margin: 0;
}

.final-cta-btn {
    flex-shrink: 0;
    min-width: 190px;
    min-height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 800;
    transition: var(--transition);
}

.final-cta-btn:hover {
    color: var(--white);
    background: transparent;
    border-color: var(--white);
    transform: translateY(-3px);
}


/* =========================================================
   UNIFORM WEBSITE FOOTER
========================================================= */

.site-footer {
    position: relative;
    color: var(--white);
    background: #07377f;
    padding: 90px 0 25px;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.65fr 1.1fr 1.45fr;
    gap: 55px;
    padding-bottom: 60px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.65rem;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: var(--accent);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 25px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
}

.footer-prayer-box {
    background: rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 26px;
    margin-top: 25px;
}

.footer-prayer-box h5 {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.footer-prayer-box h5 i {
    color: var(--accent);
}

.footer-prayer-box p {
    line-height: 1.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.footer-contact-item > i {
    flex: 0 0 20px;
    color: var(--accent);
    margin-top: 5px;
}

.footer-contact-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 3px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.88);
    overflow-wrap: anywhere;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-newsletter-description {
    line-height: 1.8;
    margin-bottom: 22px !important;
}

.footer-newsletter-form input {
    width: 100%;
    min-height: 56px;
    color: #333;
    background: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0 22px;
    margin-bottom: 12px;
    outline: none;
}

.footer-newsletter-form button {
    width: 100%;
    min-height: 55px;
    color: var(--white);
    background: var(--accent);
    border: none;
    border-radius: 50px;
    font-weight: 800;
    transition: var(--transition);
}

.footer-newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
}

.footer-socials a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--white);
    background: var(--accent);
    transform: translateY(-4px);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 35px;
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    margin: 0;
}


/* =========================================================
   FLOATING HOME BUTTON
========================================================= */

.floating-home-btn {
    position: fixed;
    z-index: 90;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--accent);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.floating-home-btn:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .donation-hero {
        min-height: 550px;
        background-position: 62% center;
    }

    .donation-main-section,
    .donation-impact-section,
    .donation-faq-section {
        padding: 85px 0;
    }

    .secure-donation-card {
        position: relative;
        top: auto;
        max-width: 680px;
        margin: 20px auto 0;
    }

    .final-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .header-content {
        min-height: 82px;
    }

    .donation-brand img {
        width: 58px;
        height: 58px;
    }

    .brand-text span {
        font-size: 1.05rem;
    }

    .brand-text small {
        display: none;
    }

    .header-home-link {
        width: 45px;
        height: 45px;
        justify-content: center;
        padding: 0;
    }

    .header-home-link span {
        display: none;
    }

    .donation-hero {
        min-height: 570px;
        background-position: 67% center;
    }

    .donation-hero-content {
        padding: 75px 0;
    }

    .donation-image-composition {
        min-height: 440px;
        margin-right: 0;
    }

    .main-donation-image {
        right: 45px;
    }

    .support-image {
        width: 105px;
        height: 105px;
    }

    .mission-support-grid {
        grid-template-columns: 1fr;
    }

    .secure-donation-card {
        padding: 37px 27px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .donation-header .container,
    .donation-hero .container,
    .donation-main-section .container,
    .donation-impact-section .container,
    .donation-faq-section .container,
    .donation-final-cta .container,
    .site-footer .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .donation-hero {
        min-height: 600px;
    }

    .hero-donate-btn,
    .final-cta-btn {
        width: 100%;
    }

    .donation-main-section,
    .donation-impact-section,
    .donation-faq-section {
        padding: 70px 0;
    }

    .donation-image-composition {
        min-height: 380px;
        margin-bottom: 45px;
    }

    .main-donation-image {
        right: 25px;
        bottom: 20px;
        border-radius: 22px;
    }

    .support-image {
        width: 82px;
        height: 82px;
        border-width: 4px;
    }

    .support-image-one {
        top: 25px;
        right: -3px;
    }

    .support-image-two {
        top: 150px;
        right: -6px;
    }

    .support-image-three {
        right: 0;
    }

    .secure-donation-card {
        border-radius: 23px;
        padding: 35px 22px;
    }

    .secure-donation-card h2 {
        font-size: 1.9rem;
    }

    .site-footer {
        padding-top: 70px;
    }

    .footer-column h3 {
        font-size: 1.4rem;
    }

    .floating-home-btn {
        right: 18px;
        bottom: 18px;
        width: 48px;
        height: 48px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}