:root {
    --primary: rgba(127, 0, 0, 1);
    --primary-light: rgba(150, 30, 30, 1);
    --bg-light: #f8f9fc;
    --bg-soft: #f2f5f9;
    --border-light: #e9edf2;
    --text-dark: #2a2e36;
    --text-soft: #5a5f6b;
    --bg-dark: #0e0e0e; /* Deep Black */

    --primary-soft: rgba(127, 0, 0, 0.08);
}
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    background-color: black;
    color: #1e1e1e;
    line-height: 1.5;
} */

/* ============================= */
/* SCROLLBAR        */
/* ============================= */
html {
    scroll-behavior: smooth;
}
/* Modern Professional Scrollbar */
/* Thin scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Thumb */
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 50px;
}

/* Remove arrows */
::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

/* =====  NAV  ===== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 9999;
    background: transparent;
}

.site-header.scrolled {
    top: 0;
    background: white;
    box-shadow: 0 8px 25px -15px rgba(0, 0, 0, 0.25);
}

/* Change text color after scroll */
.site-header.scrolled .nav-menu a {
    color: #222;
}

/* Logo color after scroll */
.site-header.scrolled .logo img {
    filter: none; /* keeps original color */
}

/* ================================= */
/* DESKTOP DEFAULT NAV STATE        */
/* ================================= */

/* Hide mobile elements on desktop */
.mobile-menu-btn,
.mobile-menu-overlay,
.mobile-backdrop {
    display: none;
}

/* Desktop navbar layout */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Prevent wrapping */
.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
    white-space: nowrap; /* 🔥 stops next line */
}

/* Align sides */
.left-menu {
    justify-self: start;
}
.right-menu {
    justify-self: end;
}

/* NAV LINKS SMALLER */
.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.78rem; /* 🔥 smaller text */
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: 0.3s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* ACTIVE LINK */
.nav-menu a.active::after {
    width: 100%;
}

.logo-mask {
    width: 60px; /* same size as your old logo */
    height: 60px; /* keep square for sunburst */
    background-color: var(--primary);

    -webkit-mask: url("https://cdn.prod.website-files.com/607021876225e217c551a86d/6080766749c3ef0f509d9e4b_JIB-Sunburst-Orange.svg")
        no-repeat center;
    -webkit-mask-size: contain;

    mask: url("https://cdn.prod.website-files.com/607021876225e217c551a86d/6080766749c3ef0f509d9e4b_JIB-Sunburst-Orange.svg")
        no-repeat center;
    mask-size: contain;

    transition: 0.3s ease;
}

.logo-mask:hover {
    background-color: var(--primary-light);
}

/* ===== DROPDOWN ===== */

.dropdown-new {
    position: relative;
}

.dropdown-menu-new {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 0.6rem 0;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.25s ease;
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.25);
}
.dropdown-new:hover .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-new a {
    color: #333;
    padding: 0.6rem 1.4rem;
    display: block;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
}

/* === HERO  === */
.hero {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65); /* slightly darker for readability */
}

.hero-overlay {
    position: absolute;
    bottom: 5rem;
    left: 4rem;
    max-width: 650px;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-overlay h1 {
    font-size: 3.5rem; /* slightly reduced */
    font-weight: 600;
    line-height: 1.15;
    border-left: 6px solid var(--primary);
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}

.hero-overlay p {
    font-size: 1.1rem; /* smaller for paragraph */
    line-height: 1.7;
    opacity: 0.95;
    max-width: 600px;
}

/* ============================= */
/* WHO SECTION    */
/* ============================= */

.who-section.editorial {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Layout */
.who-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Title */
.who-title {
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}

/* Underline */
.who-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -12px;
}

/* Text */
.who-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.6rem;
    color: var(--text-soft);
}

/* Button */
.who-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.95rem 2.8rem;
    background: var(--primary);
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
}

/* Icon */
.who-btn i {
    font-size: 0.9rem;
    color: white;
}

/* Image */
.who-image {
    display: flex;
    justify-content: center;
}

.who-sunburst-img {
    width: 80%;
    max-width: 450px;
    aspect-ratio: 1 / 1;
    background-color: var(--primary);

    -webkit-mask: url("https://cdn.prod.website-files.com/607021876225e217c551a86d/6080766749c3ef0f509d9e4b_JIB-Sunburst-Orange.svg")
        no-repeat center;
    -webkit-mask-size: contain;

    mask: url("https://cdn.prod.website-files.com/607021876225e217c551a86d/6080766749c3ef0f509d9e4b_JIB-Sunburst-Orange.svg")
        no-repeat center;
    mask-size: contain;

    opacity: 0.95;
}

/* ============================= */
/* NEWS SECTION  */
/* ============================= */

.news-section {
    padding: 8rem 0;
    background: var(--primary);
    color: white;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-title {
    font-size: 3rem;
    font-weight: 500;
    color: white;
    position: relative;
}

.news-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: white;
    position: absolute;
    left: 0;
    bottom: -12px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

/* Card */
.news-card {
    transition: 0.35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* Image Placeholder */
.news-image {
    height: 220px;
    background: #d8d8d8;

    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Subtle overlay */
.news-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.4)
    );
}

/* Hover image zoom */
.news-card:hover .news-image {
    transform: scale(1.03);
}

.news-date {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    opacity: 0.85;
}

.news-card h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: white;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
    margin-bottom: 1rem;
}

.news-link i {
    transition: 0.3s ease;
}

.news-card:hover .news-link i {
    transform: translateX(6px);
}

/* View All */
.view-all-news {
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
}

.view-all-news:hover {
    border-bottom-color: white;
}

.view-all-news:hover i {
    transform: translateX(6px);
}

/* ============================= */
/* IMPACT SECTION     */
/* ============================= */

.impact-section {
    padding: 8rem 0;
    background: #f4f0ec; /* soft heritage tone */
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.impact-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 5rem;
    color: #111;
    position: relative;
}

.impact-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -12px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
}

.impact-item {
    text-align: center;
    padding: 2rem 1rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.impact-item:last-child {
    border-right: none;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.impact-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

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

/* NEWSLETTER – RED VERSION     */
/* ============================= */

.newsletter-section {
    padding: 8rem 0;
    background: var(--primary);
    color: white;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Title */
.newsletter-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 5rem;
    color: white; /* 🔥 changed */
    position: relative;
}

.newsletter-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: white; /* 🔥 changed */
    position: absolute;
    left: 0;
    bottom: -12px;
}

/* Grid */
.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

/* Card */
.newsletter-card {
    text-decoration: none;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* 🔥 changed */
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Subtle hover */
.newsletter-card:hover {
    transform: translateY(-6px);
}

/* Date */
.newsletter-date {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8); /* 🔥 changed */
}

/* Title */
.newsletter-card h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: white; /* 🔥 changed */
    transition: 0.3s ease;
}

/* Hover title */
.newsletter-card:hover h3 {
    color: rgba(255, 255, 255, 0.85);
}

/* Link */
.newsletter-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: white; /* 🔥 changed */
    margin-top: 1rem;
}

.newsletter-link i {
    transition: 0.3s ease;
}

.newsletter-card:hover .newsletter-link i {
    transform: translateX(6px);
}

/* ============================= */
/* PROFILE SECTION       */
/* ============================= */

.leader-section {
    padding: 8rem 0;
    background: #f4f0ec; /* soft heritage tone */
}

.leader-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.leader-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

/* Image */
.leader-image {
    width: 100%;
    height: 420px;
    /* background: #ddd; */
    border-radius: 18px;
    overflow: hidden; /* important to clip rounded corners */
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* or cover if you prefer */
    display: block;
}
/* Title */
.leader-title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #111;
    position: relative;
}

.leader-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -10px;
}

/* Role */
.leader-role {
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.8rem;
}

/* Description */
.leader-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* Button */
.leader-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary);
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
}

.leader-btn i {
    transition: 0.3s ease;
}

.leader-btn:hover {
    border-bottom-color: var(--primary);
}

.leader-btn:hover i {
    transform: translateX(6px);
}

/* ============================= */
/* APOSTOLIC REFLECTIONS        */
/* ============================= */

.reflections-section {
    padding: 8rem 0;
    background: #0e0e0e;
    color: white;
}

.reflections-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Title */
.reflections-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 5rem;
    color: white; /* 🔥 changed */
    position: relative;
}

.reflections-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -12px;
}

/* Grid */
.reflections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Card */
.reflection-card {
    cursor: pointer;
    transition: 0.35s ease;
}

.reflection-card h3 {
    margin-top: 1.2rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: white; /* 🔥 changed */
    transition: 0.3s ease;
}

/* Video area */
.reflection-media {
    height: 240px;

    /* Darker cinematic placeholder */
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
        #2a2a2a;

    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

/* Play button */
.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

/* Hover effects */
.reflection-card:hover .reflection-media {
    transform: scale(1.03);
}

.reflection-card:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 15px 35px -10px rgba(127, 0, 0, 0.6);
}

.reflection-card:hover h3 {
    color: var(--primary);
}
/* ============================= */
/* APOSTOLIC PLANNING  */
/* ============================= */

.planning-section {
    padding: 8rem 0;
    background: #f4f0ec;
}

.planning-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.planning-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 5rem;
    color: #111;
    position: relative;
}

.planning-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -12px;
}

/* Clean Grid */
.planning-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

/* Structured cell */
.planning-item {
    padding: 3rem 2rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

/* Subtle hover */
.planning-item:hover {
    background: rgba(127, 0, 0, 0.03);
}

/* Tag */
.planning-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 1.2rem;
}

/* Heading */
.planning-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #111;
}

/* Paragraph */
.planning-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Download Button */
.planning-download {
    text-align: center;
    margin-top: 4rem;
}

.planning-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

/* ============================= */
/* UNIVERSAL APOSTOLIC PREFS    */
/* ============================= */

.uap-section {
    padding: 8rem 0;
    background: #ffffff;
}

.uap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.uap-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 5rem;
    color: #111;
    position: relative;
}

.uap-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -12px;
}

/* Grid */
.uap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

/* Item */
.uap-item {
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
    transition: 0.3s ease;
}

/* Number */
.uap-number {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

/* Heading */
.uap-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #111;
}

/* Description */
.uap-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Subtle hover */
.uap-item:hover {
    transform: translateY(-6px);
}

/* ============================= */
/* FOOTER MAIN LAYOUT           */
/* ============================= */
.main-footer {
    background: #0e0e0e;
    color: #ddd;
    padding: 6rem 0 0 0;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
    display: grid;
    grid-template-columns: 1fr 3fr; /* LEFT + RIGHT */
    gap: 4rem;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo-mask {
    width: 90px;
    height: 90px; /* square for sunburst */
    margin-bottom: 1.5rem;
    background-color: var(--primary);

    -webkit-mask: url("https://cdn.prod.website-files.com/607021876225e217c551a86d/6080766749c3ef0f509d9e4b_JIB-Sunburst-Orange.svg")
        no-repeat center;
    -webkit-mask-size: contain;

    mask: url("https://cdn.prod.website-files.com/607021876225e217c551a86d/6080766749c3ef0f509d9e4b_JIB-Sunburst-Orange.svg")
        no-repeat center;
    mask-size: contain;

    transition: 0.3s ease;
}
.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-right {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
}

.footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -6px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #aaa;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    text-decoration: none;
    color: #bbb;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* ============================= */
/* BOTTOM BAR                   */
/* ============================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ============================= */
/* MOBILE WHO SECTION FIX       */
/* ============================= */

@media (max-width: 768px) {
    .who-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    /* 🔥 Remove right image completely */
    .who-image {
        display: none;
    }

    .who-title {
        font-size: 2rem;
    }

    .who-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .who-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ============================= */
/* MOBILE NAVBAR                */
/* ============================= */

@media (max-width: 1024px) {
    /* Hide desktop menus */
    .left-menu,
    .right-menu {
        display: none !important;
    }

    /* Show hamburger */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10001;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--primary);
        transition: 0.3s ease;
    }

    /* Slide panel */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        padding: 5rem 2rem;
        transition: 0.4s ease;
        z-index: 10000;
    }

    .mobile-menu-overlay.active {
        right: 0;
    }

    /* Backdrop */
    .mobile-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 9999;
    }

    .mobile-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* ============================= */
    /* CLEAN MINIMAL NAV            */
    /* ============================= */

    .mobile-nav {
        list-style: none; /* remove bullets */
        padding: 0; /* remove indent */
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.8rem;
    }

    .mobile-nav li {
        list-style: none; /* ensure no bullets */
        border: none; /* remove grey lines */
    }

    .mobile-nav a,
    .mobile-nav button {
        background: none;
        border: none;
        outline: none;
        box-shadow: none;
        font-family: "Inter", sans-serif;
        font-weight: 500;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #222;
        text-align: left;
        padding: 0;
        cursor: pointer;
        position: relative;
        transition: 0.3s ease;
    }

    /* Remove any accidental underline */
    .mobile-nav a {
        text-decoration: none;
    }

    /* Underline animation like desktop */
    .mobile-nav a::after,
    .mobile-nav button::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0%;
        height: 2px;
        background: var(--primary);
        transition: 0.3s ease;
    }

    .mobile-nav a:hover::after,
    .mobile-nav button:hover::after {
        width: 100%;
    }

    .mobile-dropdown {
        position: relative;
    }

    .mobile-dropdown > button::before {
        content: "▾";
        font-size: 0.65rem;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.3s ease;
    }

    .mobile-dropdown.active > button::before {
        transform: translateY(-50%) rotate(180deg);
    }

    /* Submenu */
    .mobile-submenu {
        display: none;
        list-style: none;
        padding: 0;
        margin-top: 1rem;
        margin-left: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-dropdown.active .mobile-submenu {
        display: flex;
    }

    .mobile-submenu a {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
        opacity: 0.7;
    }

    .mobile-submenu a:hover {
        opacity: 1;
        color: var(--primary);
    }
}
@media (max-width: 768px) {
    .hero {
        height: 85vh;
    }

    .hero-overlay {
        position: absolute;
        left: 1.5rem;
        right: 1.5rem;
        bottom: 3rem;
        max-width: 100%;
    }

    .hero-overlay h1 {
        font-size: 2rem;
        border-left: 4px solid var(--primary);
        padding-left: 0.8rem;
    }

    .hero-overlay p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
@media (max-width: 768px) {
    .who-section {
        padding: 5rem 0;
        min-height: auto;
    }

    .who-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .who-title {
        font-size: 2rem;
    }

    .who-text {
        font-size: 1rem;
    }

    .who-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
    }
}
@media (max-width: 768px) {
    .news-section {
        padding: 5rem 0;
    }

    .news-container {
        padding: 0 1.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .news-title {
        font-size: 2rem;
    }

    .news-card h3 {
        font-size: 1.4rem;
    }

    .news-image {
        height: 200px;
    }
}
@media (max-width: 768px) {
    .impact-section {
        padding: 5rem 0;
    }

    .impact-container {
        padding: 0 1.5rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .impact-item {
        border: none;
        padding: 1.5rem 0;
    }

    .impact-number {
        font-size: 2.2rem;
    }

    .impact-item p {
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .newsletter-section {
        padding: 5rem 0;
    }

    .newsletter-container {
        padding: 0 1.5rem;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-grid {
        gap: 3rem;
    }

    .newsletter-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .leader-section {
        padding: 5rem 0;
    }

    .leader-container {
        padding: 0 1.5rem;
    }

    .leader-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .leader-placeholder {
        height: 300px;
    }

    .leader-title {
        font-size: 2rem;
    }

    .leader-desc {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .reflections-section {
        padding: 5rem 0;
    }

    .reflections-container {
        padding: 0 1.5rem;
    }

    .reflections-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .reflections-title {
        font-size: 2rem;
    }

    .reflection-media {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .planning-section {
        padding: 5rem 0;
    }

    .planning-container {
        padding: 0 1.5rem;
    }

    .planning-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .planning-item {
        border: none;
        padding: 2rem 0;
    }

    .planning-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .uap-section {
        padding: 5rem 0;
    }

    .uap-container {
        padding: 0 1.5rem;
    }

    .uap-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .uap-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem 3rem;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .who-section.editorial {
        min-height: auto; /* 🔥 remove full screen height */
        padding: 4rem 0; /* controlled spacing */
        align-items: flex-start; /* 🔥 remove vertical centering */
    }
}


.main-home{
    margin: 5rem 0px;
}