/* =========================================================
   STEM WITHOUT BARRIERS
   MAIN WEBSITE STYLES
   ========================================================= */


/* =========================================================
   GLOBAL
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #1f2937;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: "Josefin Sans", sans-serif;
}

a {
    transition: all 0.25s ease;
}

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


/* =========================================================
   NAVIGATION
   ========================================================= */

header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 100;
}

.navbar {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 22px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}


/* LOGO */

.logo {
    font-size: 25px;
    font-weight: 700;
    color: #1f2a44;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-decoration: none;
}


/* NAVIGATION LINKS */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;

    list-style: none;
    margin-left: auto;
}

.nav-links a {
    position: relative;

    text-decoration: none;
    color: #444;

    font-size: 13px;
    font-weight: 500;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    border-radius: 5px;

    background: #8965cf;

    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: #8965cf;
}

.nav-links a:hover::after {
    width: 100%;
}


/* VOLUNTEER BUTTON */

.volunteer-btn {
    background: #8965cf;
    color: white;

    text-decoration: none;

    padding: 12px 23px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 6px 15px rgba(137, 101, 207, 0.18);
}

.volunteer-btn:hover {
    background: #7650b8;

    transform: translateY(-2px);

    box-shadow:
        0 9px 20px rgba(137, 101, 207, 0.25);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    width: 100%;
    min-height: 610px;

    padding: 90px 8%;

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

    gap: 70px;

    background:
        linear-gradient(
            135deg,
            #eee7ff 0%,
            #f5f0ff 55%,
            #eee7ff 100%
        );

    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.35);

    top: -180px;
    right: -100px;
}

.hero::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(137, 101, 207, 0.05);

    bottom: -100px;
    left: -80px;
}


/* HERO TEXT */

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(48px, 5.5vw, 70px);
    line-height: 1.05;

    letter-spacing: -1.5px;

    color: #1f2a44;
}

.hero p {
    margin-top: 27px;

    max-width: 590px;

    font-size: 18px;
    line-height: 1.7;

    color: #4b5563;
}


/* HERO BUTTONS */

.hero-buttons {
    margin-top: 35px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 27px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}

.primary-btn {
    background: #8965cf;
    color: white;

    box-shadow:
        0 7px 18px rgba(137, 101, 207, 0.2);
}

.primary-btn:hover {
    background: #7650b8;

    transform: translateY(-3px);

    box-shadow:
        0 10px 23px rgba(137, 101, 207, 0.28);
}

.secondary-btn {
    border: 2px solid #8965cf;

    color: #8965cf;

    background: rgba(255, 255, 255, 0.35);
}

.secondary-btn:hover {
    background: #8965cf;

    color: white;

    transform: translateY(-3px);
}


/* =========================================================
   HERO LUMI
   ========================================================= */

.hero-image {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: center;
    align-items: center;

    min-width: 350px;
}

.hero-image img {
    width: 350px;
    height: auto;

    animation:
        float 4s ease-in-out infinite;

    filter:
        drop-shadow(
            0 18px 25px rgba(108, 99, 255, 0.18)
        );
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}


/* SPEECH BUBBLE */

.speech-bubble {
    position: absolute;

    top: -25px;
    right: -10px;

    padding: 14px 22px;

    background: white;

    border-radius: 30px;

    font-family: "Josefin Sans", sans-serif;

    font-size: 17px;
    font-weight: 600;

    color: #1f2a44;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.10);

    animation:
        bubbleFloat 4s ease-in-out infinite;
}

@keyframes bubbleFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(0);
    }
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #8965cf;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   WHAT WE DO
   ========================================================= */

.accessible {
    padding: 100px 5%;

    background: white;

    text-align: center;
}

.accessible h2 {
    font-size: 48px;

    color: #1f2a44;
}

.section-intro {
    max-width: 700px;

    margin: 18px auto 55px;

    font-size: 18px;
    line-height: 1.6;

    color: #4b5563;
}

.feature-cards {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.card {
    padding: 32px 27px;

    border-radius: 24px;

    background: #faf9ff;

    border: 1px solid #f0ebfa;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.055);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.09);
}

.card h3 {
    margin-bottom: 15px;

    color: #8965cf;

    font-size: 18px;
}

.card p {
    color: #4b5563;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   MISSION SECTION
   ========================================================= */

.mission-section {
    max-width: 1200px;

    margin: 30px auto;

    padding: 80px 70px;

    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

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

.mission-content h2 {
    margin-bottom: 20px;

    font-size: 45px;
    line-height: 1.1;

    color: #1f2a44;
}

.mission-content p {
    margin-bottom: 17px;

    font-size: 16px;
    line-height: 1.7;

    color: #4b5563;
}

.mission-content .primary-btn {
    margin-top: 12px;
}

.mission-decoration {
    display: flex;

    justify-content: center;
    align-items: center;
}

.mission-circle {
    width: 230px;
    height: 230px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.7);

    color: #8965cf;

    font-size: 70px;

    box-shadow:
        0 20px 45px rgba(137, 101, 207, 0.12);

    animation:
        float 4s ease-in-out infinite;
}


/* =========================================================
   IMPACT PREVIEW
   ========================================================= */

.impact-preview {
    padding: 100px 6%;

    text-align: center;

    background: white;
}

.impact-heading h2 {
    margin-bottom: 15px;

    font-size: 45px;

    color: #1f2a44;
}

.impact-heading p {
    max-width: 650px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.6;

    color: #4b5563;
}

.impact-stats {
    max-width: 1000px;

    margin: 55px auto 35px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.stat-card {
    padding: 35px 20px;

    border-radius: 22px;

    background: #faf9ff;

    border: 1px solid #eee8f8;
}

.stat-card h3 {
    margin-bottom: 8px;

    font-size: 38px;

    color: #8965cf;
}

.stat-card p {
    font-size: 13px;

    color: #4b5563;
}

.impact-button {
    margin-top: 5px;
}


/* =========================================================
   PROGRAMS PREVIEW
   ========================================================= */

.programs-preview {
    padding: 100px 6%;

    background: #fdfcff;

    text-align: center;
}

.programs-heading h2 {
    margin-bottom: 15px;

    font-size: 45px;

    color: #1f2a44;
}

.programs-heading p {
    max-width: 650px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.6;

    color: #4b5563;
}

.program-cards {
    max-width: 1100px;

    margin: 55px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.program-card {
    padding: 35px 30px;

    text-align: left;

    border-radius: 25px;

    background: white;

    border: 1px solid #eee9f5;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.program-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.09);
}

.program-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: #eee7ff;

    font-size: 26px;
}

.program-card h3 {
    margin-bottom: 12px;

    font-size: 20px;

    color: #1f2a44;
}

.program-card p {
    margin-bottom: 20px;

    font-size: 14px;
    line-height: 1.6;

    color: #4b5563;
}

.program-card a {
    color: #8965cf;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
}

.program-card a:hover {
    color: #6845a6;

    padding-left: 3px;
}


/* =========================================================
   LUMI SECTION
   ========================================================= */

.lumi-section {
    max-width: 1200px;

    margin: 80px auto;

    padding: 70px;

    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            #f4efff,
            #eee7ff
        );

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

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

.lumi-content h2 {
    margin-bottom: 18px;

    font-size: 45px;
    line-height: 1.1;

    color: #1f2a44;
}

.lumi-content p {
    margin-bottom: 25px;

    font-size: 16px;
    line-height: 1.7;

    color: #4b5563;
}

.lumi-small img {
    width: 220px;

    animation:
        float 4s ease-in-out infinite;

    filter:
        drop-shadow(
            0 15px 20px rgba(108, 99, 255, 0.18)
        );
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    padding: 100px 7%;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );
}

.final-cta h2 {
    max-width: 750px;

    margin: 0 auto 18px;

    font-size: 45px;
    line-height: 1.1;

    color: #1f2a44;
}

.final-cta p {
    max-width: 650px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.7;

    color: #4b5563;
}

.final-cta .hero-buttons {
    justify-content: center;

    margin-top: 30px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 65px 6% 25px;

    background: #8965cf;

    color: white;
}

.footer-inner {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 60px;
}

.footer-brand h3 {
    margin-bottom: 15px;

    font-size: 21px;

    color: white;
}

.footer-brand p {
    max-width: 280px;

    font-size: 13px;
    line-height: 1.6;

    color: #cdd2df;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 7px;

    font-size: 15px;

    color: white;
}

.footer-column a {
    color: #cdd2df;

    text-decoration: none;

    font-size: 13px;
}

.footer-column a:hover {
    color: white;

    transform: translateX(3px);
}

.footer-bottom {
    max-width: 1200px;

    margin: 45px auto 0;

    padding-top: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

    text-align: center;
}

.footer-bottom p {
    font-size: 12px;

    color: #b69be8;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero {
    background: #eee7ff;

    padding: 90px 5%;

    text-align: center;
}

.contact-hero h1 {
    font-size: 60px;

    color: #1f2a44;
}

.heart {
    color: #8965cf;

    font-size: 35px;

    margin: 15px;
}

.contact-hero h2 {
    font-size: 28px;

    color: #4b5563;
}

.contact-section {
    padding: 80px 8%;

    display: flex;

    justify-content: center;

    gap: 40px;

    flex-wrap: wrap;
}

.contact-form-card,
.contact-info-card {
    background: white;

    width: 450px;

    padding: 40px;

    border-radius: 30px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2,
.contact-info-card h2 {
    font-family: "Josefin Sans", sans-serif;

    font-size: 32px;

    color: #1f2a44;

    margin-bottom: 25px;
}

form {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

input,
textarea {
    padding: 15px;

    border-radius: 15px;

    border: 1px solid #ddd;

    font-family: "Inter", sans-serif;

    outline: none;
}

input:focus,
textarea:focus {
    border-color: #8965cf;

    box-shadow:
        0 0 0 3px rgba(137, 101, 207, 0.1);
}

textarea {
    height: 140px;

    resize: vertical;
}

button {
    background: #8965cf;

    color: white;

    border: none;

    padding: 15px;

    border-radius: 999px;

    font-weight: bold;

    cursor: pointer;
}

button:hover {
    background: #7650b8;
}

.contact-info-card p {
    margin: 20px 0;

    color: #4b5563;

    line-height: 1.6;
}

.contact-info-card a {
    color: #8965cf;

    text-decoration: none;
}

.form-note {
    margin-top: 20px;

    font-size: 14px;

    color: #666;
}


/* =========================================================
   ABOUT US PAGE
   ========================================================= */


/* ABOUT HERO */

.about-hero {
    min-height: 520px;

    padding: 85px 8%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

    overflow: hidden;

    position: relative;
}

.about-hero-content {
    max-width: 700px;

    position: relative;

    z-index: 2;
}

.about-hero h1 {
    margin-top: 8px;

    font-size:
        clamp(48px, 5vw, 65px);

    line-height: 1.05;

    color: #1f2a44;

    letter-spacing: -1px;
}

.about-hero p {
    max-width: 600px;

    margin-top: 25px;

    font-size: 18px;

    line-height: 1.7;

    color: #4b5563;
}


/* ABOUT LUMI */

.about-hero-decoration {
    position: relative;

    z-index: 2;
}

.about-lumi-circle {
    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.65);

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow:
        0 25px 55px rgba(137, 101, 207, 0.12);
}

.about-lumi-circle img {
    width: 270px;

    animation:
        float 4s ease-in-out infinite;
}


/* ABOUT MISSION */

.about-mission {
    max-width: 1200px;

    margin: 90px auto;

    padding: 0 40px;

    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr;

    align-items: center;

    gap: 70px;
}

.about-mission-content h2 {
    margin-bottom: 22px;

    font-size: 48px;

    line-height: 1.05;

    color: #1f2a44;
}

.about-mission-content p {
    max-width: 650px;

    margin-bottom: 17px;

    font-size: 16px;

    line-height: 1.75;

    color: #4b5563;
}

.about-mission-card {
    padding: 40px 35px;

    border-radius: 28px;

    background: #faf9ff;

    border: 1px solid #eee8f8;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.06);

    text-align: center;
}

.mission-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    border-radius: 22px;

    background: #eee7ff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 34px;
}

.about-mission-card h3 {
    margin-bottom: 12px;

    font-size: 22px;

    color: #1f2a44;
}

.about-mission-card p {
    font-size: 14px;

    line-height: 1.65;

    color: #4b5563;
}


/* OUR STORY */

.about-story {
    max-width: 1200px;

    margin: 100px auto;

    padding: 0 40px;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    align-items: center;

    gap: 80px;
}

.story-image {
    display: flex;

    justify-content: center;

    align-items: center;
}

.story-lumi {
    width: 330px;
    height: 330px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

    display: flex;

    align-items: center;

    justify-content: center;
}

.story-lumi img {
    width: 250px;

    animation:
        float 4s ease-in-out infinite;
}

.story-content h2 {
    margin-bottom: 22px;

    font-size: 45px;

    line-height: 1.08;

    color: #1f2a44;
}

.story-content p {
    margin-bottom: 17px;

    font-size: 15px;

    line-height: 1.75;

    color: #4b5563;
}


/* VALUES */

.values-section {
    padding: 100px 6%;

    background: #fdfcff;

    text-align: center;
}

.values-heading {
    max-width: 700px;

    margin: 0 auto 55px;
}

.values-heading h2 {
    margin-bottom: 15px;

    font-size: 45px;

    color: #1f2a44;
}

.values-heading p {
    font-size: 16px;

    line-height: 1.6;

    color: #4b5563;
}

.values-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.value-card {
    padding: 35px 25px;

    border-radius: 25px;

    background: white;

    border: 1px solid #eee8f5;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.value-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 17px 35px rgba(0, 0, 0, 0.09);
}

.value-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 20px;

    border-radius: 18px;

    background: #eee7ff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 27px;
}

.value-card h3 {
    margin-bottom: 12px;

    font-size: 20px;

    color: #8965cf;
}

.value-card p {
    font-size: 14px;

    line-height: 1.65;

    color: #4b5563;
}


/* ABOUT LUMI SECTION */

.about-lumi-section {
    max-width: 1200px;

    margin: 90px auto;

    padding: 70px;

    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f6f1ff
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}

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

.about-lumi-content h2 {
    margin-bottom: 20px;

    font-size: 45px;

    line-height: 1.1;

    color: #1f2a44;
}

.about-lumi-content > p {
    margin-bottom: 25px;

    font-size: 16px;

    line-height: 1.7;

    color: #4b5563;
}

.lumi-tip {
    padding: 20px 25px;

    border-radius: 20px;

    background: white;

    border: 1px solid #eee8f5;
}

.lumi-tip strong {
    color: #8965cf;

    font-size: 15px;
}

.lumi-tip p {
    margin-top: 7px;

    font-size: 14px;

    color: #4b5563;
}

.about-lumi-image img {
    width: 230px;

    animation:
        float 4s ease-in-out infinite;

    filter:
        drop-shadow(
            0 15px 20px rgba(108, 99, 255, 0.18)
        );
}


/* ABOUT CTA */

.about-cta {
    padding: 100px 7%;

    background: white;

    text-align: center;
}

.about-cta h2 {
    max-width: 800px;

    margin: 0 auto 20px;

    font-size: 45px;

    line-height: 1.1;

    color: #1f2a44;
}

.about-cta > p {
    max-width: 650px;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.7;

    color: #4b5563;
}

.about-cta .hero-buttons {
    justify-content: center;

    margin-top: 30px;
}


/* =========================================================
   OUR IMPACT PAGE
   ========================================================= */


/* IMPACT HERO */

.impact-hero {
    min-height: 520px;

    padding: 85px 8%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

    position: relative;

    overflow: hidden;
}

.impact-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.4);

    top: -190px;

    right: -100px;
}

.impact-hero::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        rgba(137, 101, 207, 0.06);

    bottom: -120px;

    left: -80px;
}

.impact-hero-content {
    max-width: 700px;

    position: relative;

    z-index: 2;
}

.impact-hero h1 {
    margin-top: 8px;

    font-size:
        clamp(48px, 5vw, 68px);

    line-height: 1.05;

    color: #1f2a44;

    letter-spacing: -1px;
}

.impact-hero h1 span {
    color: #8965cf;
}

.impact-hero p {
    max-width: 610px;

    margin-top: 25px;

    font-size: 18px;

    line-height: 1.7;

    color: #4b5563;
}


/* IMPACT LUMI */

.impact-hero-decoration {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;
}

.impact-lumi-circle {
    width: 330px;
    height: 330px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.65);

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 25px 55px rgba(137, 101, 207, 0.12);
}

.impact-lumi-circle img {
    width: 250px;

    animation:
        float 4s ease-in-out infinite;

    filter:
        drop-shadow(
            0 15px 20px rgba(108, 99, 255, 0.18)
        );
}


/* IMPACT STATS */

.impact-stats-section {
    padding: 100px 6%;

    background: white;

    text-align: center;
}

.impact-stats-heading {
    max-width: 700px;

    margin: 0 auto 55px;
}

.impact-stats-heading h2 {
    margin-bottom: 15px;

    font-size: 45px;

    color: #1f2a44;
}

.impact-stats-heading p {
    font-size: 16px;

    line-height: 1.6;

    color: #4b5563;
}

.impact-stat-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.impact-stat-card {
    padding: 35px 20px;

    border-radius: 24px;

    background: #faf9ff;

    border: 1px solid #eee8f8;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.impact-stat-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 17px 35px rgba(0, 0, 0, 0.08);
}

.impact-stat-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 18px;

    border-radius: 17px;

    background: #eee7ff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 25px;
}

.impact-stat-card h3 {
    margin-bottom: 7px;

    font-size: 38px;

    color: #8965cf;
}

.impact-stat-card p {
    font-size: 13px;

    color: #4b5563;
}


/* GLOBAL IMPACT */

.global-impact {
    padding: 100px 6%;

    background: #fdfcff;
}

.global-impact-heading {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}

.global-impact-heading h2 {
    margin-bottom: 15px;

    font-size: 45px;

    color: #1f2a44;
}

.global-impact-heading p {
    font-size: 16px;

    line-height: 1.7;

    color: #4b5563;
}


/* MAP */

.impact-map-wrapper {
    width: 100%;

    max-width: 1200px;

    height: 600px;

    margin: 0 auto;

    border-radius: 32px;

    overflow: hidden;

    position: relative;

    border:
        1px solid #eee8f8;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.07);

    background: #eee7ff;
}

#impact-map {
    width: 100%;

    height: 100%;
}


/* MAP LEGEND */

.impact-map-legend {
    position: absolute;

    z-index: 500;

    left: 22px;

    top: 22px;

    padding: 12px 17px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.94);

    backdrop-filter:
        blur(10px);

    border:
        1px solid rgba(137, 101, 207, 0.12);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1);

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    font-weight: 600;

    color: #1f2a44;
}

.impact-map-legend-dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #8965cf;

    opacity: 0.65;

    box-shadow:
        0 0 0 5px rgba(137, 101, 207, 0.12);
}

.impact-map-note {
    max-width: 700px;

    margin: 20px auto 0;

    text-align: center;

    color: #6b7280;

    font-size: 13px;

    line-height: 1.6;
}


/* LEAFLET */

.leaflet-control-zoom {
    border: none !important;

    box-shadow:
        0 7px 20px rgba(0, 0, 0, 0.1) !important;
}

.leaflet-control-zoom a {
    color: #8965cf !important;

    border: none !important;
}

.leaflet-control-zoom a:hover {
    background: #eee7ff !important;

    color: #7650b8 !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 16px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);
}

.leaflet-popup-content {
    margin: 14px 17px;

    font-family: "Inter", sans-serif;
}

.impact-popup {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.impact-popup strong {
    color: #1f2a44;

    font-family:
        "Josefin Sans",
        sans-serif;

    font-size: 16px;
}

.impact-popup span {
    color: #6b7280;

    font-size: 11px;
}


/* IMPACT MESSAGE */

.impact-message {
    max-width: 1200px;

    margin: 90px auto;

    padding: 70px;

    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}

.impact-message-content {
    max-width: 700px;
}

.impact-message-content h2 {
    margin-bottom: 18px;

    font-size: 45px;

    line-height: 1.1;

    color: #1f2a44;
}

.impact-message-content p {
    margin-bottom: 20px;

    font-size: 16px;

    line-height: 1.7;

    color: #4b5563;
}

.impact-message-lumi img {
    width: 220px;

    animation:
        float 4s ease-in-out infinite;

    filter:
        drop-shadow(
            0 15px 20px rgba(108, 99, 255, 0.18)
        );
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 17px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .feature-cards {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .mission-section,
    .lumi-section {
        margin-left: 5%;
        margin-right: 5%;

        padding: 60px;
    }

}


/* =========================================================
   RESPONSIVE — ABOUT
   ========================================================= */

@media (max-width: 900px) {

    .about-hero {
        flex-direction: column;

        text-align: center;

        padding:
            70px 7%;
    }

    .about-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-lumi-circle {
        width: 290px;
        height: 290px;
    }

    .about-lumi-circle img {
        width: 220px;
    }

    .about-mission {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 0 7%;

        gap: 40px;
    }

    .about-mission-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-story {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 0 7%;

        gap: 50px;
    }

    .story-lumi {
        width: 280px;
        height: 280px;
    }

    .story-lumi img {
        width: 210px;
    }

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

    .about-lumi-section {
        margin-left: 5%;
        margin-right: 5%;

        flex-direction: column;

        text-align: center;

        padding: 55px 35px;
    }

    .about-lumi-content {
        max-width: 700px;
    }

    .impact-hero {
        flex-direction: column;

        text-align: center;

        padding:
            70px 7%;
    }

    .impact-hero-content {
        max-width: 700px;
    }

    .impact-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .impact-lumi-circle {
        width: 290px;
        height: 290px;
    }

    .impact-lumi-circle img {
        width: 220px;
    }

    .impact-stat-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .impact-message {
        margin-left: 5%;
        margin-right: 5%;

        padding: 55px;

        flex-direction: column;

        text-align: center;
    }

    .impact-message-content {
        max-width: 700px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 800px) {

    /* NAV */

    .navbar {
        flex-wrap: wrap;

        padding: 18px 0;
    }

    .nav-links {
        order: 3;

        width: 100%;

        margin-left: 0;

        justify-content: center;

        flex-wrap: wrap;

        gap: 12px 18px;
    }

    .nav-links a {
        font-size: 11px;
    }


    /* HERO */

    .hero {
        padding:
            75px 7%;

        flex-direction: column;

        text-align: center;

        min-height: auto;
    }

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

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

    .hero p {
        margin-left: auto;
        margin-right: auto;

        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        min-width: 0;

        margin-top: 30px;
    }

    .hero-image img {
        width: 270px;
    }

    .speech-bubble {
        right: -20px;
    }


    /* SECTIONS */

    .accessible,
    .impact-preview,
    .programs-preview {
        padding:
            75px 6%;
    }

    .accessible h2,
    .impact-heading h2,
    .programs-heading h2 {
        font-size: 38px;
    }


    /* MISSION */

    .mission-section {
        flex-direction: column;

        text-align: center;

        padding:
            55px 35px;
    }

    .mission-content {
        max-width: 700px;
    }

    .mission-content h2 {
        font-size: 38px;
    }


    /* STATS */

    .impact-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* PROGRAMS */

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


    /* LUMI */

    .lumi-section {
        flex-direction: column;

        text-align: center;

        padding:
            55px 35px;
    }

    .lumi-content {
        max-width: 700px;
    }

    .lumi-content h2 {
        font-size: 38px;
    }


    /* FOOTER */

    .footer-inner {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE — SMALL PHONE
   ========================================================= */

@media (max-width: 600px) {

    .logo {
        font-size: 20px;
    }

    .volunteer-btn {
        padding:
            10px 16px;

        font-size: 11px;
    }

    .hero {
        padding-top: 55px;

        padding-bottom: 60px;
    }

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

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;

        max-width: 260px;
    }

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

    .accessible h2,
    .impact-heading h2,
    .programs-heading h2 {
        font-size: 34px;
    }

    .mission-section {
        margin-left: 4%;
        margin-right: 4%;

        padding:
            45px 25px;
    }

    .mission-content h2 {
        font-size: 34px;
    }

    .mission-circle {
        width: 170px;
        height: 170px;

        font-size: 50px;
    }

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

    .lumi-section {
        margin-left: 4%;
        margin-right: 4%;

        padding:
            45px 25px;
    }

    .lumi-content h2 {
        font-size: 34px;
    }

    .lumi-small img {
        width: 170px;
    }

    .final-cta {
        padding:
            75px 7%;
    }

    .final-cta h2 {
        font-size: 35px;
    }

    .footer-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer {
        padding-left: 8%;
        padding-right: 8%;
    }


    /* ABOUT */

    .about-hero h1 {
        font-size: 42px;
    }

    .about-mission-content h2,
    .story-content h2,
    .values-heading h2,
    .about-lumi-content h2,
    .about-cta h2 {
        font-size: 35px;
    }

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

    .about-lumi-section {
        margin-left: 4%;
        margin-right: 4%;
    }

    .about-lumi-image img {
        width: 180px;
    }


    /* IMPACT */

    .impact-hero h1 {
        font-size: 42px;
    }

    .impact-hero p {
        font-size: 16px;
    }

    .impact-stats-section,
    .global-impact {
        padding:
            75px 6%;
    }

    .impact-stats-heading h2,
    .global-impact-heading h2 {
        font-size: 35px;
    }

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

    .impact-map-wrapper {
        height: 470px;

        border-radius: 22px;
    }

    .impact-map-legend {
        left: 12px;
        top: 12px;
    }

    .impact-message {
        margin-left: 4%;
        margin-right: 4%;

        padding:
            45px 25px;
    }

    .impact-message-content h2 {
        font-size: 34px;
    }

    .impact-message-lumi img {
        width: 180px;
    }

}
/* =========================================================
   OUR PROGRAMS PAGE
========================================================= */

/* PROGRAMS HERO */

.programs-hero {
    padding: 85px 7% 75px;

    background: #ffffff;

    text-align: center;
}

.programs-hero-content {
    max-width: 720px;

    margin: 0 auto;
}

.programs-hero h1 {
    margin-top: 5px;

    font-size: clamp(48px, 5vw, 64px);

    line-height: 1.05;

    color: #1f2a44;

    letter-spacing: -1px;
}

.programs-hero p {
    max-width: 650px;

    margin: 22px auto 0;

    font-size: 17px;

    line-height: 1.7;

    color: #4b5563;
}


/* =========================================================
   PROGRAMS MAIN
========================================================= */

.programs-main {
    padding: 85px 6% 100px;

    background: #fdfcff;

    text-align: center;
}

.programs-main-heading {
    max-width: 700px;

    margin: 0 auto 55px;
}

.programs-main-heading h2 {
    margin-bottom: 15px;

    font-size: 43px;

    line-height: 1.1;

    color: #1f2a44;
}

.programs-main-heading p {
    font-size: 16px;

    line-height: 1.7;

    color: #4b5563;
}


/* =========================================================
   PROGRAM GRID
========================================================= */

.programs-grid {
    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}


/* =========================================================
   PROGRAM CARD
========================================================= */

.full-program-card {
    padding: 34px 32px;

    border-radius: 25px;

    background: #ffffff;

    border: 1px solid #eee8f5;

    display: flex;

    align-items: flex-start;

    gap: 22px;

    text-align: left;

    box-shadow:
        0 7px 22px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.full-program-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 32px rgba(0, 0, 0, 0.08);
}


/* PROGRAM ICON */

.full-program-icon {
    flex-shrink: 0;

    width: 58px;
    height: 58px;

    border-radius: 18px;

    background: #eee7ff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 26px;
}


/* PROGRAM CONTENT */

.full-program-content {
    flex: 1;
}

.full-program-content h3 {
    margin-bottom: 11px;

    font-size: 21px;

    color: #8965cf;
}

.full-program-content p {
    margin-bottom: 18px;

    font-size: 14px;

    line-height: 1.65;

    color: #4b5563;
}

.full-program-content a {
    color: #8965cf;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;
}

.full-program-content a:hover {
    color: #6845a6;

    padding-left: 3px;
}


/* =========================================================
   REQUEST A PROGRAM
========================================================= */

.program-request {
    max-width: 1100px;

    margin: 85px auto;

    padding: 65px 60px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

    border: 1px solid #eee8f8;

    text-align: center;
}

.program-request-content {
    max-width: 700px;

    margin: 0 auto;
}

.program-request h2 {
    margin-bottom: 16px;

    font-size: 42px;

    line-height: 1.1;

    color: #1f2a44;
}

.program-request p {
    max-width: 650px;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.7;

    color: #4b5563;
}

.program-request-button {
    margin-top: 28px;

    display: flex;

    justify-content: center;
}


/* =========================================================
   PROGRAMS LUMI
========================================================= */

.programs-lumi {
    padding: 10px 6% 75px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #ffffff;
}

.programs-lumi-image img {
    width: 150px;

    animation:
        float 4s ease-in-out infinite;

    filter:
        drop-shadow(
            0 15px 20px rgba(108, 99, 255, 0.16)
        );
}


/* =========================================================
   PROGRAMS RESPONSIVE
========================================================= */

@media (max-width: 800px) {

    .programs-hero {
        padding:
            70px 7%;
    }

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

    .programs-main {
        padding:
            70px 6% 80px;
    }

    .programs-main-heading h2 {
        font-size: 37px;
    }

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

    .program-request {
        margin-left: 5%;
        margin-right: 5%;

        padding:
            55px 35px;
    }

    .program-request h2 {
        font-size: 37px;
    }
}


@media (max-width: 600px) {

    .programs-hero {
        padding:
            55px 7%;
    }

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

    .programs-hero p {
        font-size: 15px;
    }

    .programs-main {
        padding:
            65px 6% 75px;
    }

    .programs-main-heading h2 {
        font-size: 34px;
    }

    .full-program-card {
        padding: 28px 23px;

        gap: 16px;
    }

    .full-program-icon {
        width: 50px;
        height: 50px;

        border-radius: 15px;

        font-size: 22px;
    }

    .full-program-content h3 {
        font-size: 19px;
    }

    .program-request {
        margin-left: 4%;
        margin-right: 4%;

        padding:
            45px 25px;
    }

    .program-request h2 {
        font-size: 34px;
    }

    .program-request p {
        font-size: 15px;
    }

    .programs-lumi-image img {
        width: 125px;
    }
}
/* =========================================================
   GET INVOLVED PAGE
========================================================= */

/* HERO */

.get-involved-hero {
    padding: 85px 7% 75px;

    background: #ffffff;

    text-align: center;
}

.get-involved-hero-content {
    max-width: 720px;

    margin: 0 auto;
}

.get-involved-hero h1 {
    margin-top: 5px;

    font-size: clamp(48px, 5vw, 64px);

    line-height: 1.05;

    color: #1f2a44;

    letter-spacing: -1px;
}

.get-involved-hero p {
    max-width: 650px;

    margin: 22px auto 0;

    font-size: 17px;

    line-height: 1.7;

    color: #4b5563;
}


/* =========================================================
   INVOLVEMENT SECTION
========================================================= */

.involvement-section {
    padding: 85px 6% 100px;

    background: #fdfcff;

    text-align: center;
}

.involvement-heading {
    max-width: 700px;

    margin: 0 auto 55px;
}

.involvement-heading h2 {
    margin-bottom: 15px;

    font-size: 43px;

    line-height: 1.1;

    color: #1f2a44;
}

.involvement-heading p {
    font-size: 16px;

    line-height: 1.7;

    color: #4b5563;
}


/* =========================================================
   INVOLVEMENT CARDS
========================================================= */

.involvement-grid {
    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.involvement-card {
    padding: 38px 30px;

    border-radius: 25px;

    background: #ffffff;

    border: 1px solid #eee8f5;

    box-shadow:
        0 7px 22px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.involvement-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.08);
}


/* ICON */

.involvement-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 22px;

    border-radius: 19px;

    background: #eee7ff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 27px;
}


/* CARD TEXT */

.involvement-card h3 {
    margin-bottom: 13px;

    font-size: 21px;

    color: #8965cf;
}

.involvement-card p {
    margin-bottom: 22px;

    font-size: 14px;

    line-height: 1.7;

    color: #4b5563;
}

.involvement-link {
    color: #8965cf;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;
}

.involvement-link:hover {
    color: #6845a6;

    padding-left: 3px;
}


/* =========================================================
   COMMUNITY MESSAGE
========================================================= */

.involvement-message {
    max-width: 1100px;

    margin: 85px auto;

    padding: 65px 60px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

    border: 1px solid #eee8f8;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}

.involvement-message-content {
    max-width: 680px;
}

.involvement-message-content h2 {
    margin-bottom: 18px;

    font-size: 42px;

    line-height: 1.1;

    color: #1f2a44;
}

.involvement-message-content p {
    margin-bottom: 15px;

    font-size: 16px;

    line-height: 1.7;

    color: #4b5563;
}

.involvement-message-button {
    margin-top: 25px;
}


/* LUMI */

.involvement-message-lumi {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;
}

.involvement-message-lumi img {
    width: 210px;

    animation:
        float 4s ease-in-out infinite;

    filter:
        drop-shadow(
            0 15px 20px rgba(108, 99, 255, 0.18)
        );
}


/* =========================================================
   FINAL CTA
========================================================= */

.involvement-cta {
    padding: 100px 7%;

    background: #ffffff;

    text-align: center;
}

.involvement-cta h2 {
    max-width: 800px;

    margin: 0 auto 18px;

    font-size: 45px;

    line-height: 1.1;

    color: #1f2a44;
}

.involvement-cta > p {
    max-width: 650px;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.7;

    color: #4b5563;
}

.involvement-cta .hero-buttons {
    justify-content: center;

    margin-top: 30px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .involvement-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .involvement-message {
        margin-left: 5%;
        margin-right: 5%;

        flex-direction: column;

        text-align: center;

        padding: 55px 35px;
    }

    .involvement-message-content {
        max-width: 700px;
    }

    .involvement-message-button {
        display: flex;

        justify-content: center;
    }
}


@media (max-width: 600px) {

    .get-involved-hero {
        padding:
            55px 7%;
    }

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

    .get-involved-hero p {
        font-size: 15px;
    }

    .involvement-section {
        padding:
            65px 6% 75px;
    }

    .involvement-heading h2 {
        font-size: 34px;
    }

    .involvement-card {
        padding:
            30px 24px;
    }

    .involvement-message {
        margin-left: 4%;
        margin-right: 4%;

        padding:
            45px 25px;
    }

    .involvement-message-content h2 {
        font-size: 34px;
    }

    .involvement-message-content p {
        font-size: 15px;
    }

    .involvement-message-lumi img {
        width: 165px;
    }

    .involvement-cta {
        padding:
            75px 7%;
    }

    .involvement-cta h2 {
        font-size: 35px;
    }
}
/* =========================================================
   RESOURCES PAGE
   ========================================================= */

.resources-hero {
    padding: 85px 7% 65px;
    text-align: center;
    background: linear-gradient(135deg, #eee7ff, #f7f3ff);
}

.resources-hero h1 {
    margin-top: 8px;
    font-size: clamp(45px, 5vw, 62px);
    line-height: 1.05;
    color: #1f2a44;
}

.resources-hero p {
    max-width: 680px;
    margin: 20px auto 0;
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}


/* =========================================================
   LIBRARY
   ========================================================= */

.resources-library {
    padding: 75px 6% 100px;
    background: #ffffff;
}


/* =========================================================
   SEARCH
   ========================================================= */

.resource-search {
    position: relative;
    max-width: 800px;
    margin: 0 auto 25px;
}

.resource-search input {
    width: 100%;
    padding: 17px 25px 17px 50px;

    border: 1px solid #e9e3f2;
    border-radius: 999px;

    background: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 14px;

    color: #1f2937;

    outline: none;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.035);
}

.resource-search input:focus {
    border-color: #8965cf;

    box-shadow:
        0 0 0 4px rgba(137, 101, 207, 0.08);
}

.resource-search-icon {
    position: absolute;

    left: 20px;
    top: 50%;

    transform: translateY(-50%);

    color: #8965cf;

    font-size: 18px;

    pointer-events: none;
}


/* =========================================================
   FILTERS
   ========================================================= */

.resource-filters {
    max-width: 1100px;

    margin: 0 auto 55px;

    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 9px;
}

.resource-filter-btn {
    padding: 9px 16px;

    border: 1px solid #e9e3f2;
    border-radius: 999px;

    background: white;

    color: #6b7280;

    font-family: "Inter", sans-serif;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
        all 0.2s ease;
}

.resource-filter-btn:hover {
    border-color: #cbb8eb;
    color: #8965cf;
}

.resource-filter-btn.active {
    background: #8965cf;
    border-color: #8965cf;
    color: white;
}


/* =========================================================
   RESOURCE GRID
   ========================================================= */

.resource-grid {
    max-width: 1150px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================================
   RESOURCE CARD
   ========================================================= */

.resource-card {
    overflow: hidden;

    border: 1px solid #eee8f5;

    border-radius: 24px;

    background: white;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.resource-card:hover {
    transform: translateY(-6px);

    border-color: #e1d5f2;

    box-shadow:
        0 15px 35px rgba(137, 101, 207, 0.09);
}


/* =========================================================
   COVER
   ========================================================= */

.resource-cover {
    width: 100%;
    height: 220px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );
}

.resource-cover img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.3s ease;
}

.resource-card:hover .resource-cover img {
    transform: scale(1.025);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.resource-card-content {
    padding: 25px 27px 27px;
}

.resource-category {
    display: inline-block;

    margin-bottom: 12px;

    padding: 6px 10px;

    border-radius: 999px;

    background: #f0eafb;

    color: #8965cf;

    font-size: 10px;
    font-weight: 700;
}

.resource-card h3 {
    margin-bottom: 10px;

    font-size: 20px;

    line-height: 1.2;

    color: #1f2a44;
}

.resource-card p {
    margin-bottom: 18px;

    font-size: 13px;

    line-height: 1.65;

    color: #6b7280;
}


/* =========================================================
   CARD INFORMATION
   ========================================================= */

.resource-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 7px 14px;

    margin-bottom: 20px;

    padding-top: 15px;

    border-top: 1px solid #f1edf6;
}

.resource-meta span {
    font-size: 11px;
    color: #6b7280;
}

.resource-meta strong {
    color: #1f2a44;
}


/* =========================================================
   VIEW BUTTON
   ========================================================= */

.view-resource-btn {
    width: 100%;

    padding: 12px 18px;

    border: none;

    border-radius: 999px;

    background: #8965cf;

    color: white;

    font-family: "Inter", sans-serif;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.view-resource-btn:hover {
    background: #7650b8;

    transform: translateY(-2px);
}


/* =========================================================
   MODAL
   ========================================================= */

.resource-modal {
    position: fixed;

    inset: 0;

    z-index: 1000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(31, 42, 68, 0.35);

    backdrop-filter: blur(7px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.resource-modal.active {
    opacity: 1;
    visibility: visible;
}

body.modal-open {
    overflow: hidden;
}


/* =========================================================
   MODAL CONTENT
   ========================================================= */

.resource-modal-content {
    position: relative;

    width: 100%;
    max-width: 1050px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 38px;

    border-radius: 30px;

    background: white;

    box-shadow:
        0 25px 70px rgba(31, 42, 68, 0.18);
}


/* CLOSE */

.close-resource-modal {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #eee8f5;

    border-radius: 50%;

    background: #faf9ff;

    color: #8965cf;

    font-size: 20px;

    cursor: pointer;
}

.close-resource-modal:hover {
    background: #8965cf;
    color: white;
}


/* =========================================================
   MODAL TOP
   ========================================================= */

.resource-modal-top {
    display: grid;

    grid-template-columns: 300px 1fr;

    gap: 40px;

    align-items: start;
}

.modal-cover-wrapper {
    overflow: hidden;

    border: 1px solid #eee8f5;

    border-radius: 20px;

    background: #f7f3ff;
}

.modal-cover-wrapper img {
    width: 100%;
    display: block;
}


/* DETAILS */

.modal-details h2 {
    margin-bottom: 15px;

    padding-right: 40px;

    font-size: 34px;

    line-height: 1.1;

    color: #1f2a44;
}

.modal-description {
    margin-bottom: 25px;

    font-size: 15px;

    line-height: 1.75;

    color: #4b5563;
}


/* =========================================================
   MODAL META
   ========================================================= */

.modal-meta {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-bottom: 25px;
}

.modal-meta-item {
    padding: 14px;

    border: 1px solid #eee8f5;

    border-radius: 17px;

    background: #faf9ff;
}

.modal-meta-item strong {
    display: block;

    margin-bottom: 5px;

    color: #8965cf;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}

.modal-meta-item span {
    font-size: 12px;

    color: #4b5563;
}


/* =========================================================
   DOWNLOAD
   ========================================================= */

.download-resource-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 22px;

    border-radius: 999px;

    background: #8965cf;

    color: white;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.download-resource-btn:hover {
    background: #7650b8;

    transform: translateY(-2px);
}


/* =========================================================
   PDF VIEWER
   ========================================================= */

.resource-pdf-section {
    margin-top: 40px;

    padding-top: 32px;

    border-top: 1px solid #eee8f5;
}

.resource-pdf-section h3 {
    margin-bottom: 17px;

    font-size: 22px;

    color: #1f2a44;
}

.resource-pdf-viewer {
    width: 100%;
    height: 580px;

    border: none;

    border-radius: 18px;

    background: #f7f3ff;
}


/* =========================================================
   LUMI TIP
   ========================================================= */

.resources-lumi-section {
    padding: 0 6% 90px;

    background: white;
}

.resources-lumi-tip {
    max-width: 1050px;

    margin: 0 auto;

    padding: 35px 40px;

    display: flex;

    align-items: center;

    gap: 25px;

    border: 1px solid #eee8f5;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #f7f3ff,
            #eee7ff
        );
}

.resources-lumi-tip-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    font-size: 29px;

    box-shadow:
        0 8px 20px rgba(137, 101, 207, 0.08);
}

.resources-lumi-tip h3 {
    margin-bottom: 7px;

    font-size: 20px;

    color: #8965cf;
}

.resources-lumi-tip p {
    font-size: 14px;

    line-height: 1.65;

    color: #4b5563;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

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

    .resource-modal-top {
        grid-template-columns: 240px 1fr;
        gap: 30px;
    }
}


@media (max-width: 800px) {

    .resources-hero {
        padding: 70px 7% 55px;
    }

    .resources-library {
        padding: 65px 6% 80px;
    }

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

    .resource-modal {
        padding: 15px;
    }

    .resource-modal-content {
        max-height: 94vh;
        padding: 30px 22px;
    }

    .resource-modal-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .modal-cover-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

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

    .modal-details h2 {
        padding-right: 0;
        font-size: 29px;
    }

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

    .download-resource-btn {
        width: 100%;
    }

    .resource-pdf-viewer {
        height: 500px;
    }

    .resources-lumi-section {
        padding-bottom: 70px;
    }

    .resources-lumi-tip {
        margin-left: 0;
        margin-right: 0;

        padding: 28px 25px;

        flex-direction: column;

        text-align: center;
    }
}


@media (max-width: 500px) {

    .resources-hero h1 {
        font-size: 38px;
    }

    .resource-search input {
        font-size: 13px;

        padding:
            15px 18px 15px 45px;
    }

    .resource-filters {
        gap: 7px;
    }

    .resource-filter-btn {
        font-size: 11px;

        padding: 8px 13px;
    }

    .resources-library {
        padding:
            60px 5% 75px;
    }

    .resource-cover {
        height: 210px;
    }

    .resource-card-content {
        padding: 23px;
    }

    .resource-modal-content {
        padding: 25px 18px;
        border-radius: 23px;
    }

    .resource-pdf-viewer {
        height: 400px;
    }
}
/* =========================================================
   RESOURCES PAGE
   ========================================================= */


/* =========================================================
   RESOURCE HERO
   ========================================================= */

.resources-hero {

    min-height: 390px;

    padding: 80px 7%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

}


.resources-hero-content {

    max-width: 800px;

}


.resources-hero h1 {

    margin-top: 8px;

    font-size:
        clamp(48px, 5vw, 65px);

    line-height: 1.05;

    color: #1f2a44;

}


.resources-hero p {

    max-width: 700px;

    margin: 25px auto 0;

    font-size: 17px;

    line-height: 1.7;

    color: #4b5563;

}



/* =========================================================
   RESOURCE LIBRARY
   ========================================================= */

.resource-library {

    padding: 85px 6%;

    background: white;

}


.resource-search-wrapper {

    max-width: 850px;

    margin: 0 auto 30px;

}


.resource-search {

    width: 100%;

    padding: 17px 22px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: white;

    border: 1px solid #e6e0f2;

    border-radius: 999px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);

}


.search-icon {

    font-size: 18px;

}


.resource-search input {

    width: 100%;

    padding: 0;

    border: none;

    outline: none;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    color: #1f2937;

}


.resource-search input::placeholder {

    color: #9ca3af;

}



/* =========================================================
   FILTERS
   ========================================================= */

.resource-filters {

    max-width: 1100px;

    margin: 0 auto;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

}


.resource-filter-button {

    padding: 10px 17px;

    border-radius: 999px;

    border: 1px solid #e7e0f2;

    background: white;

    color: #5b5565;

    font-family: "Inter", sans-serif;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition:
        all 0.2s ease;

}


.resource-filter-button:hover {

    border-color: #8965cf;

    color: #8965cf;

    transform: translateY(-1px);

}


.resource-filter-button.active {

    background: #8965cf;

    border-color: #8965cf;

    color: white;

    box-shadow:
        0 6px 15px
        rgba(137, 101, 207, 0.18);

}



/* =========================================================
   RESOURCE COUNT
   ========================================================= */

.resource-results-info {

    max-width: 1100px;

    margin: 35px auto 20px;

}


.resource-results-info p {

    margin: 0;

    color: #7b7280;

    font-size: 13px;

}



/* =========================================================
   RESOURCE GRID
   ========================================================= */

.resource-grid {

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}



/* =========================================================
   RESOURCE CARD
   ========================================================= */

.resource-card {

    overflow: hidden;

    border-radius: 25px;

    background: white;

    border: 1px solid #eee8f5;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.resource-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 17px 35px
        rgba(0, 0, 0, 0.09);

}



/* =========================================================
   RESOURCE COVER
   ========================================================= */

.resource-card-image {

    height: 220px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

}


.resource-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.35s ease;

}


.resource-card:hover
.resource-card-image img {

    transform:
        scale(1.04);

}


.resource-category-badge {

    position: absolute;

    left: 15px;

    top: 15px;

    padding: 7px 11px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.93);

    color: #8965cf;

    font-size: 10px;

    font-weight: 700;

    box-shadow:
        0 5px 15px
        rgba(0, 0, 0, 0.08);

}


.resource-opportunity-badge {

    position: absolute;

    right: 15px;

    top: 15px;

    padding: 7px 11px;

    border-radius: 999px;

    background: #8965cf;

    color: white;

    font-size: 10px;

    font-weight: 700;

}



/* =========================================================
   RESOURCE CARD CONTENT
   ========================================================= */

.resource-card-content {

    padding: 25px;

}


.resource-card-content h3 {

    margin-bottom: 11px;

    font-family:
        "Josefin Sans",
        sans-serif;

    font-size: 21px;

    line-height: 1.2;

    color: #1f2a44;

}


.resource-card-content > p {

    min-height: 70px;

    margin-bottom: 18px;

    font-size: 13px;

    line-height: 1.65;

    color: #6b7280;

}



/* =========================================================
   RESOURCE META
   ========================================================= */

.resource-card-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 12px;

}


.resource-card-meta span {

    padding: 6px 9px;

    border-radius: 10px;

    background: #f7f3ff;

    color: #655d70;

    font-size: 10px;

    font-weight: 600;

}


.resource-deadline {

    margin-bottom: 15px;

    padding: 9px 11px;

    border-radius: 11px;

    background: #faf9ff;

    color: #8965cf;

    font-size: 11px;

    font-weight: 600;

}


.resource-deadline span {

    margin-right: 4px;

}



/* =========================================================
   VIEW BUTTON
   ========================================================= */

.resource-view-button {

    width: 100%;

    margin-top: 5px;

    padding: 12px 18px;

    border: none;

    border-radius: 999px;

    background: #8965cf;

    color: white;

    font-family:
        "Inter",
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        all 0.2s ease;

}


.resource-view-button:hover {

    background: #7650b8;

    transform:
        translateY(-2px);

}



/* =========================================================
   EMPTY STATE
   ========================================================= */

.resource-empty {

    max-width: 600px;

    margin: 50px auto;

    padding: 50px 30px;

    text-align: center;

    border-radius: 25px;

    background: #faf9ff;

    border: 1px solid #eee8f5;

}


.resource-empty-icon {

    margin-bottom: 15px;

    font-size: 35px;

}


.resource-empty h2 {

    margin-bottom: 10px;

    font-size: 28px;

    color: #1f2a44;

}


.resource-empty p {

    color: #6b7280;

    font-size: 14px;

}



/* =========================================================
   LUMI SECTION
   ========================================================= */

.resource-lumi-section {

    max-width: 1200px;

    margin: 20px auto 90px;

    padding: 65px 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

}


.resource-lumi-content {

    max-width: 700px;

}


.resource-lumi-content h2 {

    margin-bottom: 18px;

    font-size: 42px;

    line-height: 1.1;

    color: #1f2a44;

}


.resource-lumi-content p {

    font-size: 16px;

    line-height: 1.7;

    color: #4b5563;

}


.resource-lumi-image img {

    width: 200px;

    animation:
        float 4s ease-in-out infinite;

    filter:
        drop-shadow(
            0 15px 20px
            rgba(108, 99, 255, 0.18)
        );

}



/* =========================================================
   MODAL
   ========================================================= */

body.modal-open {

    overflow: hidden;

}


.resource-modal {

    position: fixed;

    inset: 0;

    z-index: 1000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 30px;

}


.resource-modal.active {

    display: flex;

}


.resource-modal-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(31, 42, 68, 0.55);

    backdrop-filter:
        blur(6px);

}


.resource-modal-content {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1200px;

    max-height: 92vh;

    overflow-y: auto;

    padding: 35px;

    border-radius: 30px;

    background: white;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.2);

}



/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.resource-modal-close {

    position: absolute;

    top: 18px;

    right: 20px;

    z-index: 5;

    width: 40px;

    height: 40px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f4efff;

    color: #8965cf;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

}


.resource-modal-close:hover {

    background: #8965cf;

    color: white;

}



/* =========================================================
   MODAL INFORMATION
   ========================================================= */

.resource-modal-info {

    display: grid;

    grid-template-columns:
        280px 1fr;

    gap: 40px;

    align-items: center;

    padding: 10px 20px 40px;

}


.resource-modal-cover {

    width: 280px;

    height: 350px;

    overflow: hidden;

    border-radius: 22px;

    background: #f7f3ff;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.08);

}


.resource-modal-cover img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.resource-modal-category {

    display: inline-block;

    margin-bottom: 12px;

    color: #8965cf;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.resource-modal-details h2 {

    margin-bottom: 17px;

    padding-right: 40px;

    font-size: 38px;

    line-height: 1.1;

    color: #1f2a44;

}


.resource-modal-description {

    max-width: 700px;

    margin-bottom: 25px;

    font-size: 15px;

    line-height: 1.7;

    color: #4b5563;

}



/* =========================================================
   META
   ========================================================= */

.resource-meta {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-bottom: 25px;

}


.resource-meta-item {

    min-height: 62px;

    padding: 12px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 15px;

    background: #faf9ff;

    border: 1px solid #eee8f5;

}


.meta-icon {

    font-size: 19px;

}


.resource-meta-item small {

    display: block;

    margin-bottom: 3px;

    color: #9ca3af;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.resource-meta-item strong {

    display: block;

    color: #1f2a44;

    font-size: 12px;

}



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

.resource-modal-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.resource-modal-buttons
.primary-btn,
.resource-modal-buttons
.secondary-btn {

    padding:
        13px 20px;

    font-size: 12px;

}



/* =========================================================
   PDF VIEWER
   ========================================================= */

.resource-pdf-section {

    padding:
        35px 20px 10px;

    border-top:
        1px solid #eee8f5;

}


.resource-pdf-heading {

    margin-bottom: 20px;

}


.resource-pdf-heading h3 {

    margin-top: 5px;

    font-size: 25px;

    color: #1f2a44;

}


.resource-pdf-viewer {

    width: 100%;

    height: 650px;

    overflow: hidden;

    border-radius: 20px;

    border:
        1px solid #e8e1f2;

    background: #f7f3ff;

}


.resource-pdf-viewer iframe {

    width: 100%;

    height: 100%;

    border: none;

}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .resource-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .resource-modal-info {

        grid-template-columns:
            220px 1fr;

    }


    .resource-modal-cover {

        width: 220px;

        height: 290px;

    }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .resources-hero {

        padding:
            70px 7%;

    }


    .resources-hero h1 {

        font-size: 45px;

    }


    .resources-hero p {

        font-size: 15px;

    }


    .resource-library {

        padding:
            65px 6%;

    }


    .resource-grid {

        grid-template-columns: 1fr;

    }


    .resource-filter-button {

        font-size: 11px;

        padding:
            9px 13px;

    }


    .resource-lumi-section {

        margin:
            10px 5% 70px;

        padding:
            50px 30px;

        flex-direction: column;

        text-align: center;

    }


    .resource-lumi-content h2 {

        font-size: 35px;

    }


    .resource-lumi-image img {

        width: 170px;

    }


    .resource-modal {

        padding: 12px;

    }


    .resource-modal-content {

        padding: 25px 18px;

        max-height: 95vh;

        border-radius: 23px;

    }


    .resource-modal-info {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 25px;

        padding:
            15px 5px 30px;

    }


    .resource-modal-cover {

        width: 210px;

        height: 270px;

        margin: 0 auto;

    }


    .resource-modal-details h2 {

        padding-right: 0;

        font-size: 31px;

    }


    .resource-modal-description {

        margin-left: auto;

        margin-right: auto;

    }


    .resource-meta {

        grid-template-columns: 1fr;

        text-align: left;

    }


    .resource-modal-buttons {

        flex-direction: column;

        align-items: center;

    }


    .resource-modal-buttons
    .primary-btn,
    .resource-modal-buttons
    .secondary-btn {

        width: 100%;

        max-width: 300px;

    }


    .resource-pdf-section {

        padding:
            30px 5px 5px;

    }


    .resource-pdf-viewer {

        height: 500px;

    }

}



/* =========================================================
   SMALL PHONE
   ========================================================= */

@media (max-width: 600px) {

    .resources-hero h1 {

        font-size: 39px;

    }


    .resource-search {

        padding:
            14px 18px;

    }


    .resource-card-image {

        height: 200px;

    }


    .resource-card-content > p {

        min-height: auto;

    }


    .resource-modal-close {

        width: 35px;

        height: 35px;

        top: 12px;

        right: 12px;

    }


    .resource-modal-cover {

        width: 180px;

        height: 235px;

    }


    .resource-modal-details h2 {

        font-size: 27px;

    }


    .resource-pdf-viewer {

        height: 450px;

    }

}
/* =========================================================
   CREATOR CREDITS
   ========================================================= */

.resource-author-card {
    margin: -8px 0 16px;

    font-size: 11px !important;
    line-height: 1.4 !important;

    color: #8965cf !important;
    font-weight: 600;
}

.resource-author {
    margin-top: -12px;
    margin-bottom: 25px;

    font-size: 12px;

    color: #8965cf;

    font-weight: 600;
}
/* =========================================================
   BLOG PAGE
========================================================= */

/* =========================================================
   BLOG HERO
========================================================= */

.blog-hero {
    min-height: 470px;

    padding: 85px 8%;

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

    gap: 70px;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
}

.hero-label {
    margin-bottom: 15px;

    color: #8965cf;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.blog-hero h1 {
    margin: 0;

    max-width: 700px;

    font-size: clamp(48px, 5vw, 68px);
    line-height: 1.05;

    letter-spacing: -1px;

    color: #1f2a44;
}

.blog-hero h1 span {
    color: #8965cf;
}

.blog-hero p {
    max-width: 610px;

    margin-top: 25px;

    font-size: 18px;
    line-height: 1.7;

    color: #4b5563;
}


/* =========================================================
   BLOG HERO DECORATION
========================================================= */

.hero-decoration {
    position: relative;

    width: 330px;
    height: 330px;

    flex-shrink: 0;

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

.orbit {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(137, 101, 207, 0.18);
}

.orbit-one {
    width: 270px;
    height: 270px;

    transform: rotate(25deg);
}

.orbit-two {
    width: 190px;
    height: 190px;

    border-style: dashed;

    transform: rotate(-30deg);
}

.hero-decoration::before {
    content: "✦";

    width: 125px;
    height: 125px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.75);

    color: #8965cf;

    font-size: 48px;

    box-shadow:
        0 20px 45px rgba(137, 101, 207, 0.12);

    animation:
        float 4s ease-in-out infinite;
}

.sparkle {
    position: absolute;

    color: #8965cf;

    font-size: 25px;

    animation:
        bubbleFloat 4s ease-in-out infinite;
}

.sparkle-one {
    top: 35px;
    right: 40px;
}

.sparkle-two {
    bottom: 45px;
    left: 35px;

    font-size: 20px;
}


/* =========================================================
   BLOG FEATURED SECTION
========================================================= */

.featured-section {
    padding: 95px 6% 85px;

    background: white;
}

.section-heading {
    max-width: 1100px;

    margin: 0 auto 40px;
}

.section-heading span {
    display: block;

    margin-bottom: 10px;

    color: #8965cf;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0;

    font-size: 43px;
    line-height: 1.1;

    color: #1f2a44;
}

.featured-card {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    overflow: hidden;

    border-radius: 30px;

    background: #faf9ff;

    border: 1px solid #eee8f5;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.055);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.featured-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.featured-image {
    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );
}

.image-placeholder {
    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.72);

    color: #8965cf;

    font-size: 55px;

    box-shadow:
        0 20px 40px rgba(137, 101, 207, 0.12);

    animation:
        float 4s ease-in-out infinite;
}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.featured-content {
    padding: 55px 50px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.post-category {
    margin-bottom: 13px;

    color: #8965cf;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.featured-content h3 {
    margin-bottom: 18px;

    font-size: 34px;
    line-height: 1.12;

    color: #1f2a44;
}

.featured-content p {
    margin-bottom: 22px;

    font-size: 15px;
    line-height: 1.7;

    color: #4b5563;
}

.post-info {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 25px;

    color: #7b7280;

    font-size: 11px;
}


/* =========================================================
   READ BUTTON
========================================================= */

.read-button {
    width: fit-content;

    padding: 12px 20px;

    border-radius: 999px;

    background: #8965cf;

    color: white;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 6px 15px rgba(137, 101, 207, 0.16);

    transition:
        all 0.2s ease;
}

.read-button:hover {
    background: #7650b8;

    transform: translateY(-2px);

    box-shadow:
        0 9px 20px rgba(137, 101, 207, 0.23);
}

.read-button span {
    margin-left: 6px;
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {
    padding: 85px 6% 70px;

    background: #fdfcff;

    text-align: center;
}

.section-heading.centered {
    text-align: center;
}

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

.category-buttons {
    max-width: 900px;

    margin: 35px auto 0;

    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;
}

.category {
    padding: 10px 17px;

    border: 1px solid #e7e0f2;

    border-radius: 999px;

    background: white;

    color: #5b5565;

    font-family: "Inter", sans-serif;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
        all 0.2s ease;
}

.category:hover {
    border-color: #8965cf;

    color: #8965cf;

    transform: translateY(-1px);
}

.category.active {
    background: #8965cf;

    border-color: #8965cf;

    color: white;

    box-shadow:
        0 6px 15px rgba(137, 101, 207, 0.18);
}


/* =========================================================
   BLOG POSTS
========================================================= */

.posts-section {
    padding: 30px 6% 100px;

    background: #fdfcff;
}

.posts-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.post-card {
    overflow: hidden;

    border-radius: 25px;

    background: white;

    border: 1px solid #eee8f5;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.post-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 17px 35px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   POST IMAGE
========================================================= */

.post-image {
    height: 190px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

    color: #8965cf;

    font-size: 48px;
}

.post-image span {
    width: 90px;
    height: 90px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.72);

    box-shadow:
        0 12px 25px rgba(137, 101, 207, 0.1);
}


/* =========================================================
   POST BODY
========================================================= */

.post-body {
    padding: 25px;
}

.post-body h3 {
    min-height: 52px;

    margin-bottom: 12px;

    font-size: 20px;
    line-height: 1.2;

    color: #1f2a44;
}

.post-body p {
    min-height: 70px;

    margin-bottom: 20px;

    font-size: 13px;
    line-height: 1.65;

    color: #6b7280;
}


/* =========================================================
   POST FOOTER
========================================================= */

.post-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 15px;

    border-top:
        1px solid #f1edf6;
}

.post-footer span {
    color: #9ca3af;

    font-size: 10px;
}

.post-footer a {
    color: #8965cf;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    transition:
        all 0.2s ease;
}

.post-footer a:hover {
    color: #6845a6;

    transform: translateX(3px);
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    padding: 80px 6% 95px;

    background: white;
}

.newsletter-card {
    max-width: 1100px;

    margin: 0 auto;

    padding: 55px 60px;

    display: flex;

    align-items: center;

    gap: 30px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            #eee7ff,
            #f7f3ff
        );

    border: 1px solid #eee8f8;
}

.newsletter-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    color: #8965cf;

    font-size: 28px;

    box-shadow:
        0 8px 20px rgba(137, 101, 207, 0.08);
}

.newsletter-label {
    display: block;

    margin-bottom: 7px;

    color: #8965cf;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.newsletter-card h2 {
    margin-bottom: 8px;

    font-size: 30px;

    color: #1f2a44;
}

.newsletter-card p {
    max-width: 600px;

    font-size: 14px;

    line-height: 1.6;

    color: #4b5563;
}

.newsletter-button {
    margin-left: auto;

    flex-shrink: 0;

    padding: 13px 21px;

    border-radius: 999px;

    background: #8965cf;

    color: white;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        all 0.2s ease;
}

.newsletter-button:hover {
    background: #7650b8;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(137, 101, 207, 0.2);
}


/* =========================================================
   BLOG RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .blog-hero {
        padding:
            75px 7%;
    }

    .hero-decoration {
        width: 270px;
        height: 270px;
    }

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

    .featured-image {
        min-height: 300px;
    }

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

    .newsletter-card {
        padding:
            45px;
    }
}


/* =========================================================
   BLOG RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

    .blog-hero {
        min-height: auto;

        padding:
            70px 7% 65px;

        flex-direction: column;

        text-align: center;
    }

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

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

    .blog-hero p {
        margin-left: auto;
        margin-right: auto;

        font-size: 16px;
    }

    .hero-decoration {
        width: 250px;
        height: 250px;

        margin-top: 15px;
    }

    .orbit-one {
        width: 210px;
        height: 210px;
    }

    .orbit-two {
        width: 145px;
        height: 145px;
    }

    .hero-decoration::before {
        width: 105px;
        height: 105px;

        font-size: 40px;
    }

    .featured-section {
        padding:
            70px 6%;
    }

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

    .featured-content {
        padding:
            40px 30px;
    }

    .featured-content h3 {
        font-size: 29px;
    }

    .categories-section {
        padding:
            70px 6% 55px;
    }

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

    .posts-section {
        padding:
            25px 6% 75px;
    }

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

    .post-body h3,
    .post-body p {
        min-height: auto;
    }

    .newsletter-section {
        padding:
            65px 6% 75px;
    }

    .newsletter-card {
        padding:
            40px 30px;

        flex-direction: column;

        text-align: center;
    }

    .newsletter-card p {
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-button {
        margin-left: 0;

        margin-top: 5px;
    }
}


/* =========================================================
   BLOG RESPONSIVE — SMALL PHONE
========================================================= */

@media (max-width: 600px) {

    .blog-hero {
        padding:
            55px 7% 55px;
    }

    .blog-hero h1 {
        font-size: 39px;
    }

    .blog-hero p {
        font-size: 15px;
    }

    .hero-decoration {
        width: 210px;
        height: 210px;
    }

    .orbit-one {
        width: 180px;
        height: 180px;
    }

    .orbit-two {
        width: 125px;
        height: 125px;
    }

    .hero-decoration::before {
        width: 90px;
        height: 90px;

        font-size: 34px;
    }

    .featured-image {
        min-height: 230px;
    }

    .image-placeholder {
        width: 110px;
        height: 110px;

        font-size: 40px;
    }

    .featured-content {
        padding:
            35px 24px;
    }

    .featured-content h3 {
        font-size: 26px;
    }

    .featured-content p {
        font-size: 14px;
    }

    .read-button {
        width: 100%;

        text-align: center;
    }

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

    .category {
        font-size: 11px;

        padding:
            8px 13px;
    }

    .post-image {
        height: 175px;
    }

    .newsletter-card {
        padding:
            35px 24px;
    }

    .newsletter-card h2 {
        font-size: 27px;
    }

    .newsletter-button {
        width: 100%;

        text-align: center;
    }
}

/* =========================================================
   RESOURCE COVER FALLBACK
   Shows a soft purple cover when no image is available
========================================================= */

.resource-card-image {
    position: relative;

    background: linear-gradient(
        135deg,
        #eee6ff 0%,
        #f7f3ff 55%,
        #faf8ff 100%
    );

    overflow: hidden;

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


/* Actual resource image */

.resource-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* Decorative symbol behind missing images */

.resource-card-image::after {
    content: "✦";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    font-size: 55px;

    color: rgba(137, 96, 216, 0.18);

    pointer-events: none;
}
/* =========================================================
   CONTACT PAGE
   STEM WITHOUT BARRIERS
========================================================= */


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {

    min-height: 350px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #eee6ff 0%,
            #f5f1ff 55%,
            #faf8ff 100%
        );

}


.contact-hero-content {

    width: min(760px, 90%);

    padding: 70px 0;

}


.contact-hero h1 {

    margin: 0;

    color: #1d2948;

    font-size: clamp(
        45px,
        6vw,
        64px
    );

    line-height: 1.08;

    font-weight: 800;

}


.contact-heart {

    color: #8658d8;

    margin-left: 5px;

}


.contact-hero p {

    margin: 20px 0 0;

    color: #596174;

    font-size: 17px;

    line-height: 1.6;

}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main {

    max-width: 1050px;

    margin: 0 auto;

    padding: 75px 24px 85px;

}


.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 25px;

}


/* =========================================================
   CONTACT CARDS
========================================================= */

.contact-card {

    background: #ffffff;

    border: 1px solid #ebe5f4;

    border-radius: 24px;

    padding: 30px;

    box-shadow:
        0 8px 25px
        rgba(
            53,
            41,
            82,
            0.06
        );

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.contact-card:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(
            53,
            41,
            82,
            0.09
        );

}


/* =========================================================
   CARD HEADER
========================================================= */

.contact-card-header {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 27px;

}


.contact-section-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #eee5ff;

    color: #8658d8;

    font-size: 21px;

}


.contact-card h2 {

    margin: 0 0 7px;

    color: #202c49;

    font-family:
        "Josefin Sans",
        sans-serif;

    font-size: 23px;

    line-height: 1.2;

}


.contact-card-header p {

    margin: 0;

    color: #777e8e;

    font-size: 13px;

    line-height: 1.55;

}


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

.contact-form {

    width: 100%;

}


.form-group {

    margin-bottom: 17px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: #42495a;

    font-size: 12px;

    font-weight: 700;

}


.form-group input,
.form-group textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #e4ddef;

    border-radius: 13px;

    background: #ffffff;

    color: #30384d;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.form-group input {

    height: 50px;

    padding: 0 15px;

}


.form-group textarea {

    min-height: 135px;

    padding: 14px 15px;

    resize: vertical;

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #a3a8b4;

}


.form-group input:focus,
.form-group textarea:focus {

    border-color: #a17bdf;

    box-shadow:
        0 0 0 4px
        rgba(
            134,
            88,
            216,
            0.08
        );

}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {

    width: 100%;

    height: 50px;

    border: none;

    border-radius: 13px;

    background: #8658d8;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    box-shadow:
        0 8px 18px
        rgba(
            134,
            88,
            216,
            0.2
        );

    transition:
        transform 0.2s ease,
        background 0.2s ease;

}


.contact-submit:hover {

    background: #7748ca;

    transform: translateY(-2px);

}


.send-icon {

    font-size: 14px;

}


/* =========================================================
   FORM NOTE
========================================================= */

.contact-form-note {

    margin: 12px 0 0;

    text-align: center;

    color: #9499a5;

    font-size: 10px;

    line-height: 1.5;

}


.contact-form-note strong {

    color: #7e8190;

}


/* =========================================================
   CONTACT METHODS
========================================================= */

.contact-methods {

    display: flex;

    flex-direction: column;

    gap: 13px;

}


.contact-method {

    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 61px;

    padding: 9px 12px;

    border-radius: 16px;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.contact-method:hover {

    background: #faf8ff;

    transform: translateX(3px);

}


.contact-method-icon {

    width: 43px;

    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eee5ff;

    color: #8658d8;

}


.contact-method-icon svg {

    width: 20px;

    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;

}


.contact-method-icon .icon-fill {

    fill: currentColor;

    stroke: none;

}


.contact-method-text {

    display: flex;

    flex-direction: column;

    gap: 3px;

    min-width: 0;

}


.contact-method-text small {

    color: #9297a5;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.8px;

}


.contact-method-text strong {

    color: #30384d;

    font-size: 13px;

    font-weight: 600;

    overflow-wrap: anywhere;

}


/* =========================================================
   CONTACT HELP BOX
========================================================= */

.contact-help-box {

    display: flex;

    gap: 13px;

    align-items: flex-start;

    margin-top: 22px;

    padding: 17px;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            #f5efff,
            #faf8ff
        );

    border: 1px solid #ece3f9;

}


.contact-help-icon {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #e9ddff;

    color: #8658d8;

    font-size: 16px;

}


.contact-help-box strong {

    display: block;

    margin-bottom: 5px;

    color: #4c376f;

    font-size: 12px;

}


.contact-help-box p {

    margin: 0;

    color: #73798a;

    font-size: 11px;

    line-height: 1.55;

}


/* =========================================================
   LUMI SECTION
========================================================= */

.contact-lumi-section {

    max-width: 1050px;

    margin: 0 auto 85px;

    padding: 45px 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #f2eaff,
            #faf8ff
        );

    border: 1px solid #ece4f8;

    overflow: hidden;

}


.contact-lumi-content {

    max-width: 650px;

}


.contact-lumi-content .section-label {

    color: #8658d8;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.contact-lumi-content h2 {

    margin: 10px 0 13px;

    color: #202c49;

    font-size: 29px;

    line-height: 1.25;

}


.contact-lumi-content p {

    margin: 0;

    color: #666e7e;

    font-size: 14px;

    line-height: 1.7;

}


.contact-lumi-image {

    width: 150px;

    height: 150px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

}


.contact-lumi-image img {

    max-width: 145px;

    max-height: 145px;

    object-fit: contain;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .contact-grid {

        grid-template-columns: 1fr;

    }


    .contact-lumi-section {

        margin-left: 24px;

        margin-right: 24px;

    }

}


@media (max-width: 700px) {

    .contact-hero {

        min-height: 300px;

    }


    .contact-hero h1 {

        font-size: 43px;

    }


    .contact-hero p {

        font-size: 15px;

    }


    .contact-main {

        padding:
            50px
            20px
            65px;

    }


    .contact-card {

        padding: 23px;

        border-radius: 20px;

    }


    .contact-card h2 {

        font-size: 21px;

    }


    .contact-lumi-section {

        flex-direction: column;

        text-align: center;

        padding: 35px 25px;

    }


    .contact-lumi-content {

        max-width: 100%;

    }


    .contact-lumi-content h2 {

        font-size: 25px;

    }

}


@media (max-width: 500px) {

    .contact-hero h1 {

        font-size: 38px;

    }


    .contact-section-icon {

        width: 40px;

        height: 40px;

    }


    .contact-method-text strong {

        font-size: 12px;

    }


    .contact-help-box {

        padding: 14px;

    }

}
/* =========================================================
   CONTACT PAGE FOOTER
   Matches the rest of the SWB website
========================================================= */


.site-footer {
    background: #7952c7;

    color: #ffffff;
}

.footer-container {
    max-width: 1100px;

    margin: auto;

    padding: 55px 25px 45px;

    display: flex;

    justify-content: space-between;

    gap: 60px;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand h2 {
    margin: 0 0 12px;

    font-size: 21px;
}

.footer-brand p {
    margin: 0;

    color: rgba(255,255,255,0.82);

    font-size: 13px;

    line-height: 1.6;
}

.footer-links {
    display: flex;

    gap: 80px;
}

.footer-links div {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.footer-links h3 {
    margin: 0 0 8px;

    font-size: 13px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);

    text-decoration: none;

    font-size: 12px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.18);

    text-align: center;

    padding: 18px 20px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.72);

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 14px;
    }

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

}


@media (max-width: 850px) {

    .nav-container {
        flex-direction: column;

        padding: 20px;
    }

    .main-nav {
        flex-wrap: wrap;

        justify-content: center;
    }

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

}


@media (max-width: 600px) {

    .contact-us-hero {
        min-height: 320px;
    }

    .contact-us-hero h1 {
        font-size: 45px;
    }

    .hero-description {
        font-size: 15px;
    }

    .contact-us-main {
        padding-top: 50px;
    }

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

    .footer-container {
        flex-direction: column;
    }

    .footer-links {
        gap: 45px;
    }

}