:root {
    --bs-primary: #5F3300;
    --bs-secondary: #F8A503;
    --bs-dark: #0A0500;
    --hopsa-yellow: #F8A503;
    --hopsa-brown: #5F3300;
    --hopsa-black: #0A0500;
}

.text-primary {
    color: var(--hopsa-brown) !important;
}

.bg-primary {
    background-color: var(--hopsa-brown) !important;
}

.btn-primary {
    background-color: var(--hopsa-brown) !important;
    border-color: var(--hopsa-brown) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--hopsa-yellow) !important;
    border-color: var(--hopsa-yellow) !important;
    color: var(--hopsa-black) !important;
}

.border-primary {
    border-color: var(--hopsa-brown) !important;
}

.section-title {
    color: var(--hopsa-yellow) !important;
}

.section-about-title,
.section-booking-title,
.subscribe-title {
    color: var(--hopsa-yellow) !important;
}

/* ===== HOPSA Site Header (inner pages) ===== */
.hopsa-page-header {
    position: relative;
}

.hopsa-page-header .hopsa-topbar {
    position: sticky;
    top: 0;
    z-index: 1102;
    background: rgba(10, 5, 0, 0.96);
    border-bottom: 1px solid rgba(248, 165, 3, 0.25);
}

.hopsa-inner-nav {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1101;
    background: linear-gradient(180deg, rgba(10, 5, 0, 0.82) 0%, rgba(10, 5, 0, 0.35) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hopsa-inner-nav .navbar-brand {
    background: transparent !important;
    padding: 0;
}

.hopsa-inner-nav .nav-link {
    color: #fff !important;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 1.75rem 1rem !important;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.hopsa-inner-nav .nav-link:hover,
.hopsa-inner-nav .nav-link.active {
    color: var(--hopsa-yellow) !important;
}

.hopsa-inner-nav .nav-link.active {
    font-weight: 700;
}

.hopsa-inner-nav.hopsa-nav-scrolled {
    top: 0 !important;
    background: rgba(10, 5, 0, 0.98) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(248, 165, 3, 0.35);
}

.hopsa-page-header:has(.hopsa-nav-scrolled) .hopsa-topbar {
    display: none !important;
}

.hopsa-inner-nav.hopsa-nav-scrolled .nav-link {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.hopsa-inner-nav.hopsa-nav-scrolled .hopsa-logo-hero {
    max-height: 58px;
}

.hopsa-page-header .hopsa-page-hero,
.hopsa-page-header .hopsa-page-breadcrumb {
    padding-top: 7.5rem;
}

.hopsa-page-breadcrumb {
    background: linear-gradient(rgba(10, 5, 0, 0.75), rgba(10, 5, 0, 0.75)), url(../img/breadcrumb-bg.jpg) center center no-repeat;
    background-size: cover;
}

.hopsa-page-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.hopsa-page-breadcrumb .breadcrumb-item a:hover {
    color: var(--hopsa-yellow);
}

/* Disable Travela brown block effect on all HOPSA navbars */
.navbar-light .navbar-nav .nav-link::before,
.hopsa-inner-nav .nav-link::before,
.hopsa-hero-nav .nav-link::before {
    display: none !important;
}

/* Active page indicator — gold underline */
.hopsa-inner-nav .nav-link:not(.dropdown-toggle)::after,
.hopsa-hero-nav .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    bottom: 0.85rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--hopsa-yellow);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hopsa-inner-nav .nav-link.active:not(.dropdown-toggle)::after,
.hopsa-hero-nav .nav-link.active:not(.dropdown-toggle)::after {
    width: calc(100% - 2rem);
}

.hopsa-inner-nav .nav-link:not(.dropdown-toggle):hover::after,
.hopsa-hero-nav .nav-link:not(.dropdown-toggle):hover::after {
    width: calc(100% - 2rem);
    opacity: 0.5;
}

.hopsa-inner-nav .nav-link.active:not(.dropdown-toggle):hover::after,
.hopsa-hero-nav .nav-link.active:not(.dropdown-toggle):hover::after {
    opacity: 1;
}

/* Dropdown active states */
.hopsa-dropdown .dropdown-item.active,
.hopsa-inner-nav .dropdown-menu .dropdown-item.active,
.hopsa-hero-nav .dropdown-menu .dropdown-item.active {
    background: var(--hopsa-brown);
    color: #fff;
    font-weight: 600;
}

.hopsa-inner-nav .dropdown-menu,
.hopsa-hero-nav .dropdown-menu {
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hopsa-inner-nav .dropdown-item:hover,
.hopsa-hero-nav .dropdown-item:hover {
    background: var(--hopsa-brown);
    color: #fff;
}

/* Nav link icons */
.hopsa-nav-icon {
    display: inline-block;
    width: 1.15rem;
    margin-right: 0.4rem;
    text-align: center;
    font-size: 0.9em;
    opacity: 0.92;
    vertical-align: -0.05em;
}

.hopsa-inner-nav .nav-link.active .hopsa-nav-icon,
.hopsa-hero-nav .nav-link.active .hopsa-nav-icon,
.hopsa-inner-nav .dropdown-toggle.active .hopsa-nav-icon,
.hopsa-hero-nav .dropdown-toggle.active .hopsa-nav-icon {
    color: var(--hopsa-yellow);
    opacity: 1;
}

.hopsa-inner-nav.hopsa-nav-scrolled .nav-link.active .hopsa-nav-icon {
    color: var(--hopsa-yellow);
}

/* Mobile nav — About Us dropdown expands inline */
@media (max-width: 991.98px) {
    .hopsa-inner-nav .nav-item.dropdown,
    .hopsa-hero-nav .nav-item.dropdown {
        width: 100%;
    }

    .hopsa-inner-nav .dropdown-toggle,
    .hopsa-hero-nav .dropdown-toggle {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .hopsa-inner-nav .dropdown-toggle::after,
    .hopsa-hero-nav .dropdown-toggle::after {
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        border: none;
        display: inline-block;
        position: static;
        width: auto;
        height: auto;
        background: none;
        border-radius: 0;
        margin-left: auto;
        padding-left: 0.75rem;
        font-size: 0.95rem;
        line-height: 1;
        color: var(--hopsa-yellow);
        opacity: 1;
        vertical-align: middle;
        transition: transform 0.25s ease;
    }

    .hopsa-inner-nav .dropdown-toggle.show::after,
    .hopsa-hero-nav .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }

    .hopsa-inner-nav .dropdown-menu,
    .hopsa-hero-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0.15rem 0 0.65rem;
        padding: 0.25rem 0;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(248, 165, 3, 0.22) !important;
        border-radius: 0.5rem !important;
        box-shadow: none !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        inset: auto !important;
    }

    .hopsa-inner-nav .dropdown-menu:not(.show),
    .hopsa-hero-nav .dropdown-menu:not(.show) {
        display: none !important;
    }

    .hopsa-inner-nav .dropdown-menu.show,
    .hopsa-hero-nav .dropdown-menu.show {
        display: block !important;
    }

    .hopsa-inner-nav .dropdown-item,
    .hopsa-hero-nav .dropdown-item {
        color: rgba(255, 255, 255, 0.9) !important;
        background: transparent !important;
        padding: 0.6rem 1rem 0.6rem 2.35rem !important;
        font-size: 0.95rem;
        white-space: normal;
    }

    .hopsa-inner-nav .dropdown-item.active,
    .hopsa-hero-nav .dropdown-item.active {
        background: rgba(248, 165, 3, 0.15) !important;
        color: var(--hopsa-yellow) !important;
        font-weight: 600;
    }

    .hopsa-inner-nav .dropdown-item:hover,
    .hopsa-hero-nav .dropdown-item:hover {
        background: var(--hopsa-brown) !important;
        color: #fff !important;
    }

    /* Travela hover-open — click-only on mobile */
    .hopsa-inner-nav.navbar .nav-item:hover .dropdown-menu:not(.show),
    .hopsa-hero-nav.navbar .nav-item:hover .dropdown-menu:not(.show) {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: none !important;
    }
}

/* Sticky legacy navbar fallback */
.sticky-top.navbar-light .navbar-nav .nav-link:hover,
.sticky-top.navbar-light .navbar-nav .nav-link.active {
    color: var(--hopsa-brown) !important;
}

@media (max-width: 991.98px) {
    .hopsa-inner-nav {
        top: 0;
        background: rgba(10, 5, 0, 0.96);
    }

    .hopsa-inner-nav.hopsa-nav-scrolled {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

    .hopsa-inner-nav .navbar-collapse {
        background: rgba(10, 5, 0, 0.98);
        border-radius: 0.75rem;
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid rgba(248, 165, 3, 0.25);
    }

    .hopsa-inner-nav .nav-link {
        padding: 0.75rem 0 !important;
    }

    .hopsa-inner-nav .nav-link::after {
        bottom: 0.25rem;
    }

    .hopsa-page-header .hopsa-page-hero,
    .hopsa-page-header .hopsa-page-breadcrumb {
        padding-top: 5.5rem;
    }
}

.bg-breadcrumb {
    background: linear-gradient(rgba(10, 5, 0, 0.75), rgba(10, 5, 0, 0.75)), url(../img/breadcrumb-bg.jpg) center center no-repeat;
    background-size: cover;
}

.container-fluid.footer {
    background: var(--hopsa-black) !important;
}

.container-fluid.copyright {
    background: #000 !important;
}

/* ===== HOPSA Footer ===== */
.hopsa-footer {
    background: linear-gradient(180deg, #0A0500 0%, #1a0e00 50%, #0A0500 100%);
    position: relative;
    overflow: hidden;
}

.hopsa-footer-accent {
    height: 5px;
    background: linear-gradient(90deg, var(--hopsa-brown) 0%, var(--hopsa-yellow) 50%, var(--hopsa-black) 100%);
}

.hopsa-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(248, 165, 3, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hopsa-footer .container {
    position: relative;
    z-index: 1;
}

.hopsa-footer-logo {
    max-height: 72px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hopsa-footer-tagline {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0.85rem;
    max-width: 340px;
}

.hopsa-footer-motto {
    color: var(--hopsa-yellow);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.hopsa-footer-slogan {
    color: var(--hopsa-yellow);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.hopsa-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hopsa-footer-social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(248, 165, 3, 0.35);
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hopsa-footer-social-link:hover {
    background: var(--hopsa-yellow);
    border-color: var(--hopsa-yellow);
    color: var(--hopsa-black);
    transform: translateY(-3px);
}

.hopsa-footer-heading {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff !important;
    margin-bottom: 1.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid rgba(248, 165, 3, 0.45);
    display: inline-block;
}

.hopsa-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hopsa-footer-links li {
    margin-bottom: 0.55rem;
}

.hopsa-footer-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hopsa-footer-links a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--hopsa-yellow);
    transition: transform 0.3s ease;
}

.hopsa-footer-links a:hover {
    color: var(--hopsa-yellow);
    padding-left: 4px;
}

.hopsa-footer-links a:hover::before {
    transform: translateX(3px);
}

.hopsa-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.hopsa-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.55;
}

.hopsa-footer-contact li i {
    color: var(--hopsa-yellow);
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.hopsa-footer-contact a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hopsa-footer-contact a:hover {
    color: var(--hopsa-yellow);
}

.hopsa-footer-bottom {
    border-top: 1px solid rgba(248, 165, 3, 0.2);
    background: rgba(0, 0, 0, 0.35);
}

.hopsa-footer-copy {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.hopsa-footer .hopsa-hashtag {
    font-size: 0.88rem;
}

@media (max-width: 767.98px) {
    .hopsa-footer-heading {
        margin-top: 0.5rem;
    }

    .hopsa-footer-tagline {
        max-width: 100%;
    }
}

.container-fluid.subscribe {
    background: linear-gradient(rgba(95, 51, 0, 0.9), rgba(10, 5, 0, 0.95)), url(../img/subscribe-img.jpg) center center no-repeat;
    background-size: cover;
}

.hopsa-logo {
    max-height: 60px;
    width: auto;
}

.hopsa-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--hopsa-yellow);
    color: var(--hopsa-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
}

.hopsa-number-badge {
    font-size: 3rem;
    font-weight: 700;
    color: var(--hopsa-yellow);
    line-height: 1;
}

.packages-content .row.bg-primary {
    background-color: var(--hopsa-brown) !important;
}

.guide-title {
    background: var(--hopsa-brown) !important;
}

.guide-icon .btn-primary {
    background-color: var(--hopsa-yellow) !important;
    border-color: var(--hopsa-yellow) !important;
    color: var(--hopsa-black) !important;
}

.blog-info {
    background: var(--hopsa-brown) !important;
}

.hopsa-hashtag {
    color: var(--hopsa-yellow);
    font-weight: 600;
}

.hopsa-border-accent {
    border-color: transparent var(--hopsa-brown) transparent var(--hopsa-yellow) !important;
}

.hopsa-sidebar-box {
    background: #fff;
    border-left: 4px solid var(--hopsa-yellow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.hopsa-quote-block {
    background: var(--hopsa-black);
    color: #fff;
    border-left: 5px solid var(--hopsa-yellow);
}

.hopsa-timeline-item {
    border-left: 3px solid var(--hopsa-yellow);
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

#signature-pad {
    border: 2px dashed var(--hopsa-brown);
    background: #fff;
    cursor: crosshair;
    touch-action: none;
}

/* ===== HOPSA Hero Section ===== */
.hopsa-hero-section {
    position: relative;
    background: var(--hopsa-black);
}

.hopsa-hero-section .hopsa-topbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1102;
    background: rgba(10, 5, 0, 0.92);
    border-bottom: 1px solid rgba(248, 165, 3, 0.25);
}

.hopsa-topbar-inner {
    min-height: 42px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.hopsa-topbar-inner a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hopsa-topbar-inner a:hover {
    color: var(--hopsa-yellow);
}

.hopsa-topbar-divider {
    width: 1px;
    height: 18px;
    background: rgba(248, 165, 3, 0.45);
}

.hopsa-social-link {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(248, 165, 3, 0.35);
    transition: all 0.3s ease;
}

.hopsa-social-link:hover {
    background: var(--hopsa-yellow);
    color: var(--hopsa-black);
    border-color: var(--hopsa-yellow);
}

.hopsa-hero-nav {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1101;
    background: linear-gradient(180deg, rgba(10, 5, 0, 0.75) 0%, rgba(10, 5, 0, 0.15) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hopsa-hero-nav .navbar-brand {
    background: transparent !important;
    padding: 0;
}

.hopsa-logo-hero {
    max-height: 72px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.hopsa-hero-nav .nav-link {
    color: #fff !important;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 1.75rem 1rem !important;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.hopsa-hero-nav .nav-link {
    position: relative;
}

.hopsa-hero-nav .nav-link:hover,
.hopsa-hero-nav .nav-link.active {
    color: var(--hopsa-yellow) !important;
}

.hopsa-hero-nav .nav-link.active {
    font-weight: 700;
}

.hopsa-nav-toggler {
    border: 1px solid var(--hopsa-yellow) !important;
    color: var(--hopsa-yellow) !important;
    padding: 0.5rem 0.85rem;
}

.hopsa-dropdown {
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hopsa-dropdown .dropdown-item:hover {
    background: var(--hopsa-brown);
    color: #fff;
}

.hopsa-btn-gold {
    background: var(--hopsa-yellow) !important;
    border: 2px solid var(--hopsa-yellow) !important;
    color: var(--hopsa-black) !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.hopsa-btn-gold:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--hopsa-brown) !important;
    transform: translateY(-2px);
}

.hopsa-btn-gold.hopsa-btn-active {
    background: #fff !important;
    border-color: var(--hopsa-yellow) !important;
    color: var(--hopsa-brown) !important;
    box-shadow: 0 0 0 2px var(--hopsa-yellow);
}

.hopsa-btn-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.85) !important;
    color: #fff !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hopsa-btn-outline:hover {
    background: #fff !important;
    color: var(--hopsa-brown) !important;
    border-color: #fff !important;
    transform: translateY(-2px);
}

.hopsa-hero-nav.hopsa-nav-scrolled {
    top: 0 !important;
    background: rgba(10, 5, 0, 0.98) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(248, 165, 3, 0.35);
}

.hopsa-hero-section:has(.hopsa-nav-scrolled) .hopsa-topbar {
    display: none !important;
}

.hopsa-hero-nav.hopsa-nav-scrolled .nav-link {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.hopsa-hero-nav.hopsa-nav-scrolled .hopsa-logo-hero {
    max-height: 58px;
}

.hopsa-carousel .carousel .carousel-indicators li {
    opacity: 1 !important;
}

.hopsa-carousel .carousel-control-prev .carousel-control-prev-icon,
.hopsa-carousel .carousel-control-next .carousel-control-next-icon {
    display: none;
}



.hopsa-carousel.carousel-header {
    position: relative;
}

.hopsa-carousel .carousel-inner .carousel-item {
    position: relative;
    min-height: max(92vh, 620px);
}

.hopsa-carousel .carousel-inner .carousel-item .carousel-caption,
.carousel-header.hopsa-carousel .carousel-inner .carousel-item .carousel-caption {
    background: linear-gradient(
        135deg,
        rgba(10, 5, 0, 0.78) 0%,
        rgba(95, 51, 0, 0.5) 45%,
        rgba(10, 5, 0, 0.72) 100%
    ) !important;
}

.hopsa-carousel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hopsa-carousel-caption {
    position: absolute;
    inset: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: max(92vh, 620px);
    padding: 150px 1.5rem 70px;
}

.hopsa-hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.hopsa-hero-badge {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    background: rgba(248, 165, 3, 0.15);
    border: 1px solid rgba(248, 165, 3, 0.65);
    color: var(--hopsa-yellow);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hopsa-hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.25rem;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hopsa-hero-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hopsa-hero-text.hopsa-hero-slogan {
    color: var(--hopsa-yellow);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
}

.hopsa-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hopsa-carousel-indicators {
    bottom: 28px;
    margin-bottom: 0;
    opacity: 1 !important;
}

.hopsa-carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    opacity: 1;
    transition: all 0.3s ease;
}

.hopsa-carousel-indicators .active {
    background: var(--hopsa-yellow);
    border-color: var(--hopsa-yellow);
    transform: scale(1.15);
}

.hopsa-carousel-control {
    width: auto;
    opacity: 1;
}

.hopsa-carousel-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 1rem;
    border-radius: 50%;
    background: rgba(248, 165, 3, 0.92);
    color: var(--hopsa-black);
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.hopsa-carousel-control:hover .hopsa-carousel-arrow {
    background: #fff;
    color: var(--hopsa-brown);
    transform: scale(1.06);
}

.hopsa-hero-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hopsa-brown) 0%, var(--hopsa-yellow) 50%, var(--hopsa-black) 100%);
    z-index: 2;
}

/* ===== Short viewports: keep hero message clear of the fixed header ===== */
@media (max-height: 850px) and (min-width: 992px) {
    .hopsa-carousel-caption {
        padding-top: 150px;
        padding-bottom: 55px;
    }

    .hopsa-hero-title {
        font-size: clamp(1.7rem, 3.4vw, 2.8rem);
        margin-bottom: 0.9rem;
    }

    .hopsa-hero-text {
        font-size: 0.98rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .hopsa-hero-text.hopsa-hero-tagline,
    .hopsa-hero-text.hopsa-hero-slogan {
        font-size: 0.85rem;
        margin-bottom: 0.55rem;
    }

    .hopsa-hero-actions {
        gap: 0.8rem;
    }

    .hopsa-hero-actions .btn {
        padding-top: 0.8rem !important;
        padding-bottom: 0.8rem !important;
        font-size: 0.95rem;
    }
}

@media (max-height: 700px) and (min-width: 992px) {
    .hopsa-carousel-caption {
        padding-top: 160px;
        padding-bottom: 45px;
    }

    .hopsa-hero-text:not(.hopsa-hero-tagline):not(.hopsa-hero-slogan) {
        display: none;
    }

    .hopsa-hero-title {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        margin-bottom: 0.7rem;
    }

    .hopsa-hero-actions .btn {
        padding-top: 0.65rem !important;
        padding-bottom: 0.65rem !important;
    }
}

@media (max-width: 991.98px) {
    .hopsa-hero-nav {
        top: 0;
        background: rgba(10, 5, 0, 0.98);
    }

    .hopsa-hero-nav.hopsa-nav-scrolled {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

    .hopsa-hero-nav .navbar-collapse {
        background: rgba(10, 5, 0, 0.98);
        border-radius: 0.75rem;
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid rgba(248, 165, 3, 0.25);
    }

    .hopsa-hero-nav .nav-link {
        padding: 0.75rem 0 !important;
    }

    .hopsa-logo-hero {
        max-height: 56px;
    }

    .hopsa-hero-section {
        background: var(--hopsa-black);
    }

    /* Mobile home hero header — beat legacy Travela carousel rules */
    .carousel-header.hopsa-carousel {
        height: auto !important;
    }

    .carousel-header.hopsa-carousel .carousel-inner {
        position: relative;
    }

    .carousel-header.hopsa-carousel .carousel-inner .carousel-item {
        position: relative !important;
        display: none;
        min-height: max(460px, 92vh) !important;
        height: auto !important;
        overflow: hidden;
        padding-top: 0;
    }

    .carousel-header.hopsa-carousel .carousel-inner .carousel-item.active {
        display: block !important;
        opacity: 1 !important;
    }

    .carousel-header.hopsa-carousel .carousel-inner .carousel-item img.hopsa-carousel-image {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: max(460px, 92vh) !important;
        margin-top: 0 !important;
        object-fit: cover !important;
        object-position: center;
    }

    .carousel-header.hopsa-carousel .carousel-inner .carousel-item .carousel-caption.hopsa-carousel-caption {
        position: absolute !important;
        inset: 0 !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: max(460px, 92vh) !important;
        margin-top: 0 !important;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end;
        align-items: stretch;
        padding: 1.25rem 1rem 1.75rem !important;
        text-align: left;
        background: linear-gradient(
            180deg,
            rgba(10, 5, 0, 0.25) 0%,
            rgba(10, 5, 0, 0.55) 50%,
            rgba(10, 5, 0, 0.92) 100%
        ) !important;
    }

    .hopsa-hero-content {
        max-width: none;
        width: 100%;
    }

    .hopsa-hero-title {
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
        margin-bottom: 0.65rem;
        text-align: left;
        line-height: 1.15;
    }

    .hopsa-hero-text {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 0.85rem;
        text-align: left;
    }

    .hopsa-hero-text.hopsa-hero-tagline {
        font-size: 0.82rem;
        margin-bottom: 1rem;
    }

    .hopsa-hero-actions {
        justify-content: stretch;
        gap: 0.65rem;
    }

    .hopsa-hero-actions .btn {
        padding-top: 0.7rem !important;
        padding-bottom: 0.7rem !important;
        font-size: 0.9rem;
    }

    .hopsa-carousel-indicators {
        bottom: 0.5rem;
        margin-bottom: 0;
        z-index: 3;
    }

    .hopsa-carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }

    .hopsa-carousel-arrow {
        width: 40px;
        height: 40px;
        margin: 0 0.35rem;
        font-size: 0.85rem;
    }

    .hopsa-carousel-control {
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        opacity: 1;
        z-index: 3;
    }

    .hopsa-hero-section + .hopsa-about-section {
        padding-top: 0 !important;
    }

    .hopsa-hero-section + .hopsa-about-section > .container {
        padding-top: 1.25rem !important;
    }

    /* Home page sections */
    .hopsa-about-section,
    .hopsa-projects-section,
    .hopsa-events-section,
    .hopsa-gallery-section,
    .hopsa-subscribe-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .hopsa-about-section .container,
    .hopsa-projects-section .container,
    .hopsa-events-section .container,
    .hopsa-gallery-section .container,
    .hopsa-subscribe-section .container {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .hopsa-about-section .row.g-5 {
        --bs-gutter-y: 2rem;
    }

    .hopsa-section-header {
        margin-bottom: 1rem;
    }

    .hopsa-section-title {
        font-size: clamp(1.45rem, 5vw, 2rem);
    }

    .hopsa-lead-text {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .hopsa-intro-image {
        min-height: 220px;
    }

    .hopsa-intro-image-wrap {
        margin-bottom: 1.75rem;
    }

    .hopsa-pillar-card {
        padding: 1.5rem 1.25rem;
    }

    .hopsa-projects-title {
        font-size: clamp(1.45rem, 5vw, 2rem);
    }

    .hopsa-events-image-wrap img {
        min-height: 220px;
    }

    .hopsa-events-image-wrap {
        margin-bottom: 1.5rem;
    }

    .hopsa-gallery-section .gallery-item {
        min-height: 180px;
    }

    .hopsa-gallery-section .gallery-item img {
        object-fit: cover;
        aspect-ratio: 4 / 3;
    }

    .hopsa-subscribe-form .form-control {
        padding-right: 1rem !important;
        margin-bottom: 0.75rem;
    }

    .hopsa-subscribe-form .btn {
        position: static !important;
        width: 100%;
        margin: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .hopsa-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hopsa-hero-actions .btn {
        width: 100%;
    }

    .carousel-header.hopsa-carousel .carousel-inner .carousel-item,
    .carousel-header.hopsa-carousel .carousel-inner .carousel-item img.hopsa-carousel-image,
    .carousel-header.hopsa-carousel .carousel-inner .carousel-item .carousel-caption.hopsa-carousel-caption {
        min-height: max(460px, 92vh) !important;
    }

    .hopsa-carousel-control {
        display: none;
    }

    .hopsa-hero-title {
        font-size: 1.35rem;
    }

    .hopsa-hero-text:not(.hopsa-hero-tagline) {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hopsa-about-section,
    .hopsa-projects-section,
    .hopsa-events-section,
    .hopsa-gallery-section,
    .hopsa-subscribe-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .hopsa-projects-header {
        margin-bottom: 2rem !important;
    }

    .hopsa-project-gold-title {
        font-size: 0.95rem;
    }
}

/* ===== HOPSA Home Page Sections ===== */
.hopsa-section-header {
    max-width: 720px;
    margin-bottom: 1.5rem;
}

.hopsa-section-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(248, 165, 3, 0.12);
    border: 1px solid rgba(248, 165, 3, 0.45);
    color: var(--hopsa-brown);
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hopsa-section-label-light {
    background: rgba(248, 165, 3, 0.18);
    border-color: rgba(248, 165, 3, 0.55);
    color: var(--hopsa-yellow);
}

.hopsa-section-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--hopsa-black);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hopsa-section-subtitle {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.hopsa-lead-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.hopsa-about-section {
    background: #fff;
}

.hopsa-intro-image-wrap {
    position: relative;
}

.hopsa-intro-image {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(10, 5, 0, 0.15);
}

.hopsa-intro-badge {
    position: absolute;
    bottom: -18px;
    left: 24px;
    background: var(--hopsa-yellow);
    color: var(--hopsa-black);
    padding: 1rem 1.35rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    line-height: 1.1;
}

.hopsa-intro-badge-year {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hopsa-intro-badge strong {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.hopsa-pillar-card {
    background: #fff;
    border: 1px solid rgba(95, 51, 0, 0.1);
    border-top: 4px solid var(--hopsa-yellow);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(10, 5, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hopsa-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10, 5, 0, 0.1);
}

.hopsa-pillar-card .hopsa-feature-icon {
    margin: 0 auto 1.25rem;
}

.hopsa-pillar-card h4 {
    font-family: 'Jost', sans-serif;
    color: var(--hopsa-brown);
    font-weight: 600;
}

.hopsa-projects-section {
    background: linear-gradient(180deg, #4a2800 0%, var(--hopsa-brown) 45%, #3d2200 100%);
    overflow: hidden;
}

.hopsa-projects-header {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hopsa-projects-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.15;
}

.hopsa-projects-carousel-wrap {
    position: relative;
    padding: 0 3.5rem 3.5rem;
}

.hopsa-projects-carousel.owl-carousel {
    position: relative;
}

.hopsa-project-gold-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--hopsa-yellow);
    border-radius: 1.35rem;
    padding: 1.35rem 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--hopsa-black);
    min-height: 100%;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hopsa-project-gold-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
    color: var(--hopsa-black);
}

.hopsa-project-gold-img {
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    padding: 0.85rem;
    margin-bottom: 1.15rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hopsa-project-gold-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.65rem;
    transition: transform 0.4s ease;
}

.hopsa-project-gold-card:hover .hopsa-project-gold-img img {
    transform: scale(1.04);
}

.hopsa-project-gold-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.45;
    margin: 0;
    padding: 0 0.35rem;
}

.hopsa-btn-outline-light {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.85) !important;
    color: #fff !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hopsa-btn-outline-light:hover {
    background: var(--hopsa-yellow) !important;
    border-color: var(--hopsa-yellow) !important;
    color: var(--hopsa-black) !important;
}

.hopsa-btn-outline-brown {
    background: transparent !important;
    border: 2px solid var(--hopsa-brown) !important;
    color: var(--hopsa-brown) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hopsa-btn-outline-brown:hover {
    background: var(--hopsa-brown) !important;
    border-color: var(--hopsa-brown) !important;
    color: #fff !important;
}

.hopsa-btn-solid {
    background: var(--hopsa-brown) !important;
    border: 2px solid var(--hopsa-brown) !important;
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hopsa-btn-solid:hover {
    background: var(--hopsa-yellow) !important;
    border-color: var(--hopsa-yellow) !important;
    color: var(--hopsa-black) !important;
    transform: translateY(-2px);
}

.hopsa-btn-nav-login {
    background: #fff !important;
    border: 2px solid #fff !important;
    color: var(--hopsa-brown) !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

.hopsa-btn-nav-login:hover {
    background: var(--hopsa-yellow) !important;
    border-color: var(--hopsa-yellow) !important;
    color: var(--hopsa-black) !important;
    transform: translateY(-2px);
}

.hopsa-inner-nav.hopsa-nav-scrolled .hopsa-btn-nav-login,
.hopsa-hero-nav.hopsa-nav-scrolled .hopsa-btn-nav-login {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hopsa-projects-carousel .owl-nav {
    margin: 0;
}

.hopsa-projects-carousel .owl-nav button.owl-prev,
.hopsa-projects-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.hopsa-projects-carousel .owl-nav button.owl-prev {
    left: -0.25rem;
}

.hopsa-projects-carousel .owl-nav button.owl-next {
    right: -0.25rem;
}

.hopsa-projects-carousel .owl-nav button.owl-prev:hover,
.hopsa-projects-carousel .owl-nav button.owl-next:hover {
    background: var(--hopsa-yellow) !important;
    color: var(--hopsa-black) !important;
}

.hopsa-projects-carousel .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    line-height: 1;
}

.hopsa-projects-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 6px;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}

.hopsa-projects-carousel .owl-dots .owl-dot.active span,
.hopsa-projects-carousel .owl-dots .owl-dot:hover span {
    background: #fff;
    transform: scale(1.15);
}

@media (max-width: 991.98px) {
    .hopsa-projects-carousel-wrap {
        padding: 0 2.75rem 3.25rem;
    }

    .hopsa-projects-carousel .owl-nav button.owl-prev,
    .hopsa-projects-carousel .owl-nav button.owl-next {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .hopsa-projects-carousel-wrap {
        padding: 0 0 3rem;
    }

    .hopsa-projects-carousel .owl-nav button.owl-prev {
        left: 0.25rem;
    }

    .hopsa-projects-carousel .owl-nav button.owl-next {
        right: 0.25rem;
    }
}

.hopsa-events-section {
    background: #fff;
}

.hopsa-events-image-wrap {
    position: relative;
}

.hopsa-events-image-wrap img {
    min-height: 340px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(10, 5, 0, 0.12);
}

.hopsa-events-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--hopsa-brown);
    color: #fff;
    padding: 0.65rem 1.1rem;
    border-radius: 0.75rem;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hopsa-events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hopsa-events-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: #555;
    line-height: 1.6;
}

.hopsa-events-list li i {
    color: var(--hopsa-yellow);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.hopsa-gallery-section {
    background: linear-gradient(180deg, #faf7f3 0%, #f3ede4 100%);
}

.hopsa-gallery-section .gallery-item {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(10, 5, 0, 0.08);
}

.hopsa-subscribe-section {
    background: linear-gradient(135deg, rgba(95, 51, 0, 0.95) 0%, rgba(10, 5, 0, 0.98) 100%), url(../img/gallery6.jpg) center center no-repeat;
    background-size: cover;
}

.hopsa-subscribe-form {
    max-width: 560px;
}

.hopsa-subscribe-form .form-control {
    border: 2px solid rgba(248, 165, 3, 0.35);
    background: rgba(255, 255, 255, 0.95);
    padding-right: 140px !important;
}

.hopsa-subscribe-form .form-control:focus {
    border-color: var(--hopsa-yellow);
    box-shadow: 0 0 0 0.2rem rgba(248, 165, 3, 0.2);
}

@media (max-width: 575.98px) {
    .hopsa-intro-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -14px;
    }

    .hopsa-subscribe-form .form-control {
        padding-right: 1rem !important;
        margin-bottom: 0.75rem;
    }

    .hopsa-subscribe-form .btn {
        position: static !important;
        width: 100%;
        margin: 0 !important;
    }
}

@media (max-width: 767.98px) {
    /* Override legacy Travela 700px carousel — keep HOPSA mobile hero visible */
    .carousel-header.hopsa-carousel {
        height: auto !important;
    }

    .carousel-header.hopsa-carousel .carousel-inner .carousel-item img,
    .carousel-header.hopsa-carousel .carousel-inner .carousel-item .carousel-caption {
        margin-top: 0 !important;
    }
}

/* ===== HOPSA About Page ===== */
.hopsa-page-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 5, 0, 0.82) 0%, rgba(95, 51, 0, 0.72) 100%), url(../img/gallery.jpg) center center no-repeat;
    background-size: cover;
    padding: 3rem 0;
}

.hopsa-page-hero-about {
    margin-top: 0;
}

.hopsa-page-hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.12;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hopsa-breadcrumb {
    background: transparent;
    padding: 0;
}

.hopsa-breadcrumb .breadcrumb-item,
.hopsa-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-decoration: none;
}

.hopsa-breadcrumb .breadcrumb-item a:hover {
    color: var(--hopsa-yellow);
}

.hopsa-breadcrumb .breadcrumb-item.active {
    color: var(--hopsa-yellow);
}

.hopsa-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.hopsa-about-values {
    background: linear-gradient(180deg, #4a2800 0%, var(--hopsa-brown) 100%);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.hopsa-value-card {
    background: var(--hopsa-yellow);
    border-radius: 1.15rem;
    padding: 2rem 1.75rem;
    text-align: center;
    color: var(--hopsa-black);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hopsa-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.hopsa-value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    background: rgba(10, 5, 0, 0.08);
    color: var(--hopsa-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hopsa-value-card h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.hopsa-value-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.hopsa-about-story {
    background: #fff;
}

.hopsa-about-image-wrap {
    position: relative;
}

.hopsa-about-image {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(10, 5, 0, 0.15);
    position: relative;
    z-index: 1;
}

.hopsa-about-image-accent {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 55%;
    height: 55%;
    border: 4px solid var(--hopsa-yellow);
    border-radius: 1rem;
    z-index: 0;
}

.hopsa-about-block {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
    padding: 1.35rem 0;
    border-bottom: 1px solid rgba(95, 51, 0, 0.1);
}

.hopsa-about-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hopsa-about-block-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(248, 165, 3, 0.15);
    border: 1px solid rgba(248, 165, 3, 0.45);
    color: var(--hopsa-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.hopsa-about-block h4 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hopsa-brown);
    margin-bottom: 0.5rem;
}

.hopsa-about-block p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 0;
}

.hopsa-about-quote-section {
    background: linear-gradient(180deg, #faf7f3 0%, #f3ede4 100%);
}

.hopsa-about-quote {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: var(--hopsa-black);
    color: #fff;
    border-radius: 1.25rem;
    padding: 3rem 2.5rem;
    text-align: center;
    border-left: 5px solid var(--hopsa-yellow);
    box-shadow: 0 20px 50px rgba(10, 5, 0, 0.15);
}

.hopsa-quote-icon {
    display: block;
    font-size: 2rem;
    color: var(--hopsa-yellow);
    margin-bottom: 1rem;
    opacity: 0.85;
}

.hopsa-about-quote blockquote {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    line-height: 1.5;
    font-style: italic;
}

.hopsa-quote-motto {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(248, 165, 3, 0.15);
    border: 1px solid rgba(248, 165, 3, 0.5);
    color: var(--hopsa-yellow);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hopsa-about-focus {
    background: #fff;
}

.hopsa-focus-card {
    background: #fff;
    border: 1px solid rgba(95, 51, 0, 0.12);
    border-top: 4px solid var(--hopsa-yellow);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 30px rgba(10, 5, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hopsa-focus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10, 5, 0, 0.1);
}

.hopsa-focus-card h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: var(--hopsa-brown);
    margin: 1rem 0 0.75rem;
}

.hopsa-focus-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.hopsa-about-mission {
    background: linear-gradient(180deg, #4a2800 0%, var(--hopsa-brown) 45%, #3d2200 100%);
}

.hopsa-mission-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(248, 165, 3, 0.25);
    border-radius: 1.15rem;
    padding: 2rem 1.75rem;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hopsa-mission-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.hopsa-mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--hopsa-yellow);
    color: var(--hopsa-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.15rem;
}

.hopsa-mission-card h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--hopsa-yellow);
}

.hopsa-mission-card p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.hopsa-about-cta {
    background: #fff;
}

.hopsa-about-cta-box {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(248, 165, 3, 0.12) 0%, rgba(95, 51, 0, 0.08) 100%);
    border: 1px solid rgba(248, 165, 3, 0.35);
    border-radius: 1.25rem;
    padding: 3rem 2rem;
}

.hopsa-about-cta-box h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-brown);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.hopsa-about-cta-box p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991.98px) {
    .hopsa-about-values {
        margin-top: 0;
    }

    .hopsa-about-image-accent {
        display: none;
    }

    .hopsa-about-image {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .hopsa-about-quote {
        padding: 2rem 1.5rem;
    }

    .hopsa-about-cta-box {
        padding: 2rem 1.25rem;
    }
}

/* ===== HOPSA Projects Page ===== */
.hopsa-page-hero-projects {
    background: linear-gradient(135deg, rgba(10, 5, 0, 0.85) 0%, rgba(95, 51, 0, 0.75) 100%), url(../img/gallery4.jpg) center center no-repeat;
    background-size: cover;
}

.hopsa-projects-impact {
    background: linear-gradient(180deg, #4a2800 0%, var(--hopsa-brown) 100%);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.hopsa-projects-stat {
    background: var(--hopsa-yellow);
    border-radius: 1.15rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    color: var(--hopsa-black);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hopsa-projects-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.hopsa-projects-stat-number {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1;
    color: var(--hopsa-brown);
    margin-bottom: 0.5rem;
}

.hopsa-projects-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}

.hopsa-projects-intro {
    background: #fff;
}

.hopsa-project-filters-wrap {
    position: static;
    background: #fff;
    border-radius: 1rem;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 4px 18px rgba(10, 5, 0, 0.07);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(95, 51, 0, 0.12);
}

.hopsa-project-filters-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hopsa-brown);
    margin-bottom: 0.85rem;
    text-align: center;
}

.hopsa-project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 0;
}

.hopsa-project-filter-btn {
    background: #fff !important;
    border: 2px solid var(--hopsa-brown) !important;
    color: var(--hopsa-brown) !important;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hopsa-project-filter-btn:hover {
    background: rgba(248, 165, 3, 0.2) !important;
    border-color: var(--hopsa-yellow) !important;
    color: var(--hopsa-brown) !important;
}

.hopsa-project-filter-btn.active {
    background: var(--hopsa-yellow) !important;
    border-color: var(--hopsa-yellow) !important;
    color: var(--hopsa-black) !important;
    box-shadow: 0 4px 14px rgba(248, 165, 3, 0.45);
}

.hopsa-project-featured {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: var(--hopsa-black);
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 5, 0, 0.18);
    margin-bottom: 3rem;
    border-left: 5px solid var(--hopsa-yellow);
}

.hopsa-project-featured-img {
    flex: 1 1 320px;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.hopsa-project-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hopsa-project-featured:hover .hopsa-project-featured-img img {
    transform: scale(1.04);
}

.hopsa-project-featured-body {
    flex: 1 1 340px;
    padding: 2.5rem 2rem;
    color: #fff !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--hopsa-black);
}

.hopsa-project-featured-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(248, 165, 3, 0.15);
    border: 1px solid rgba(248, 165, 3, 0.55);
    color: var(--hopsa-yellow);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

.hopsa-project-featured-body h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    margin-bottom: 1rem;
    line-height: 1.25;
    color: #fff !important;
}

.hopsa-project-featured-body p {
    color: rgba(255, 255, 255, 0.92) !important;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.hopsa-projects-grid-section {
    background: linear-gradient(180deg, #faf7f3 0%, #f3ede4 100%);
    position: relative;
    z-index: 1;
    scroll-margin-top: 100px;
}

.hopsa-project-card {
    background: #fff;
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(10, 5, 0, 0.08);
    border: 1px solid rgba(95, 51, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hopsa-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(10, 5, 0, 0.14);
}

.hopsa-project-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.hopsa-project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hopsa-project-card:hover .hopsa-project-card-img img {
    transform: scale(1.06);
}

.hopsa-project-year {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--hopsa-yellow);
    color: var(--hopsa-black);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hopsa-project-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(10, 5, 0, 0.72);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hopsa-project-card-body {
    padding: 1.5rem 1.35rem 1.65rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hopsa-project-card-body h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--hopsa-brown) !important;
    margin-bottom: 0.65rem;
    line-height: 1.4;
}

.hopsa-project-card-body p {
    color: #444 !important;
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0;
    flex: 1;
}

.hopsa-project-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(248, 165, 3, 0.15);
    border: 1px solid rgba(248, 165, 3, 0.4);
    color: var(--hopsa-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.hopsa-projects-cta {
    background: #fff;
}

.hopsa-projects-cta-box {
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(248, 165, 3, 0.12) 0%, rgba(95, 51, 0, 0.08) 100%);
    border: 1px solid rgba(248, 165, 3, 0.35);
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    text-align: center;
}

.hopsa-projects-cta-box h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-brown);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.hopsa-projects-cta-box p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 1.75rem;
}

.hopsa-project-card.hidden,
.hopsa-project-card-wrap.hidden {
    display: none;
}

@media (max-width: 991.98px) {
    .hopsa-projects-impact {
        margin-top: 0;
    }

    .hopsa-project-featured-body {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hopsa-project-filters-wrap {
        padding: 1rem;
    }

    .hopsa-project-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .hopsa-project-filter-btn {
        flex-shrink: 0;
    }

    .hopsa-projects-cta-box {
        padding: 2rem 1.25rem;
    }
}

/* ===== HOPSA Events Page ===== */
.hopsa-page-hero-events {
    background: linear-gradient(135deg, rgba(10, 5, 0, 0.85) 0%, rgba(95, 51, 0, 0.75) 100%), url(../img/election 2025.jpg) center center no-repeat;
    background-size: cover;
}

.hopsa-events-impact {
    background: linear-gradient(180deg, #4a2800 0%, var(--hopsa-brown) 100%);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.hopsa-events-intro {
    background: #fff;
}

.hopsa-events-listing {
    background: linear-gradient(180deg, #faf7f3 0%, #f3ede4 100%);
}

.hopsa-event-featured {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: var(--hopsa-black);
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 5, 0, 0.18);
    margin-bottom: 3rem;
    border-left: 5px solid var(--hopsa-yellow);
}

.hopsa-event-featured-img {
    flex: 1 1 320px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.hopsa-event-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hopsa-event-featured:hover .hopsa-event-featured-img img {
    transform: scale(1.04);
}

.hopsa-event-featured-date {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--hopsa-yellow);
    color: var(--hopsa-black);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hopsa-event-featured-body {
    flex: 1 1 340px;
    padding: 2.5rem 2rem;
    color: #fff !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--hopsa-black);
}

.hopsa-event-featured-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(248, 165, 3, 0.15);
    border: 1px solid rgba(248, 165, 3, 0.55);
    color: var(--hopsa-yellow);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

.hopsa-event-featured-body h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    margin-bottom: 1rem;
    line-height: 1.25;
    color: #fff !important;
}

.hopsa-event-featured-body p {
    color: rgba(255, 255, 255, 0.92) !important;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.hopsa-event-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.hopsa-event-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.55;
}

.hopsa-event-highlights li i {
    color: var(--hopsa-yellow);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.hopsa-event-card {
    background: #fff;
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(10, 5, 0, 0.08);
    border: 1px solid rgba(95, 51, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hopsa-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(10, 5, 0, 0.14);
}

.hopsa-event-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.hopsa-event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hopsa-event-card:hover .hopsa-event-card-img img {
    transform: scale(1.06);
}

.hopsa-event-date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--hopsa-yellow);
    color: var(--hopsa-black);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hopsa-event-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(10, 5, 0, 0.72);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hopsa-event-card-body {
    padding: 1.5rem 1.35rem 1.65rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hopsa-event-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(248, 165, 3, 0.15);
    border: 1px solid rgba(248, 165, 3, 0.4);
    color: var(--hopsa-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.hopsa-event-card-body h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--hopsa-brown) !important;
    margin-bottom: 0.65rem;
    line-height: 1.4;
}

.hopsa-event-card-body p {
    color: #444 !important;
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0;
    flex: 1;
}

.hopsa-event-card-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(95, 51, 0, 0.1);
    color: #777;
    font-size: 0.85rem;
}

.hopsa-event-card-meta i {
    color: var(--hopsa-yellow);
}

.hopsa-event-card-wrap.hidden {
    display: none;
}

.hopsa-events-gallery-section {
    background: #fff;
}

.hopsa-events-cta {
    background: linear-gradient(180deg, #faf7f3 0%, #f3ede4 100%);
}

.hopsa-events-cta-box {
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(248, 165, 3, 0.12) 0%, rgba(95, 51, 0, 0.08) 100%);
    border: 1px solid rgba(248, 165, 3, 0.35);
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    text-align: center;
}

.hopsa-events-cta-box h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-brown) !important;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.hopsa-events-cta-box p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 1.75rem;
}

@media (max-width: 991.98px) {
    .hopsa-events-impact {
        margin-top: 0;
    }

    .hopsa-event-featured-body {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hopsa-events-cta-box {
        padding: 2rem 1.25rem;
    }
}

/* ===== HOPSA Contact Page ===== */
.hopsa-page-hero-contact {
    background: linear-gradient(135deg, rgba(10, 5, 0, 0.85) 0%, rgba(95, 51, 0, 0.75) 100%), url(../img/gallery.jpg) center center no-repeat;
    background-size: cover;
}

.hopsa-contact-quick {
    background: linear-gradient(180deg, #4a2800 0%, var(--hopsa-brown) 100%);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.hopsa-contact-quick-card {
    background: var(--hopsa-yellow);
    border-radius: 1.15rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    color: var(--hopsa-black);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    text-decoration: none;
    display: block;
}

.hopsa-contact-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
    color: var(--hopsa-black);
}

.hopsa-contact-quick-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: rgba(10, 5, 0, 0.08);
    color: var(--hopsa-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hopsa-contact-quick-card h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.hopsa-contact-quick-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.85;
}

.hopsa-contact-main {
    background: #fff;
}

.hopsa-contact-form-box {
    background: linear-gradient(180deg, #faf7f3 0%, #f5efe6 100%);
    border: 1px solid rgba(95, 51, 0, 0.1);
    border-radius: 1.25rem;
    padding: 2.25rem 2rem;
    box-shadow: 0 12px 40px rgba(10, 5, 0, 0.06);
}

.hopsa-contact-form-box h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-brown) !important;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hopsa-contact-form-box .form-control,
.hopsa-contact-form-box .form-select {
    background: #fff;
    border: 2px solid rgba(95, 51, 0, 0.12);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hopsa-contact-form-box .form-control:focus,
.hopsa-contact-form-box .form-select:focus {
    border-color: var(--hopsa-yellow);
    box-shadow: 0 0 0 0.2rem rgba(248, 165, 3, 0.2);
}

.hopsa-contact-form-box label {
    font-weight: 600;
    color: var(--hopsa-brown);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.hopsa-contact-info-card {
    background: #fff;
    border: 1px solid rgba(95, 51, 0, 0.1);
    border-left: 4px solid var(--hopsa-yellow);
    border-radius: 1rem;
    padding: 1.5rem 1.35rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 24px rgba(10, 5, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hopsa-contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 5, 0, 0.08);
}

.hopsa-contact-info-card h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--hopsa-brown) !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.hopsa-contact-info-card p {
    color: #555;
    line-height: 1.65;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.hopsa-contact-info-card a {
    color: var(--hopsa-brown);
    text-decoration: none;
    font-weight: 600;
}

.hopsa-contact-info-card a:hover {
    color: var(--hopsa-yellow);
}

.hopsa-contact-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hopsa-contact-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.hopsa-contact-checklist li i {
    color: var(--hopsa-yellow);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.hopsa-contact-map-section {
    background: linear-gradient(180deg, #faf7f3 0%, #f3ede4 100%);
}

.hopsa-contact-map-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hopsa-contact-map-wrap {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 5, 0, 0.12);
    border: 3px solid #fff;
    background: #fff;
}

.hopsa-contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

.hopsa-contact-map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 5, 0, 0.88);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 0.85rem;
    border-left: 4px solid var(--hopsa-yellow);
    max-width: 320px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hopsa-contact-map-overlay h6 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-yellow) !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.hopsa-contact-map-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.hopsa-contact-social {
    background: #fff;
}

.hopsa-contact-social-box {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.hopsa-contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.hopsa-contact-social-link {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--hopsa-brown);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hopsa-contact-social-link:hover {
    background: var(--hopsa-yellow);
    color: var(--hopsa-black);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .hopsa-contact-quick {
        margin-top: 0;
    }

    .hopsa-contact-map-wrap iframe {
        height: 360px;
    }

    .hopsa-contact-map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: 0;
        border-radius: 0;
        border-left: none;
        border-top: 4px solid var(--hopsa-yellow);
    }
}

@media (max-width: 575.98px) {
    .hopsa-contact-form-box {
        padding: 1.5rem 1.25rem;
    }

    .hopsa-contact-map-wrap iframe {
        height: 300px;
    }
}

/* ===== HOPSA Register / Membership Page ===== */
.hopsa-page-hero-register {
    background: linear-gradient(135deg, rgba(10, 5, 0, 0.85) 0%, rgba(95, 51, 0, 0.75) 100%), url(../img/gallery2.jpg) center center no-repeat;
    background-size: cover;
}

.hopsa-register-benefits {
    background: linear-gradient(180deg, #4a2800 0%, var(--hopsa-brown) 100%);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.hopsa-register-benefit {
    background: var(--hopsa-yellow);
    border-radius: 1.15rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    color: var(--hopsa-black);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: transform 0.35s ease;
}

.hopsa-register-benefit:hover {
    transform: translateY(-5px);
}

.hopsa-register-benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: rgba(10, 5, 0, 0.08);
    color: var(--hopsa-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hopsa-register-benefit h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.hopsa-register-benefit p {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 0;
    opacity: 0.85;
}

.hopsa-register-main {
    background: linear-gradient(180deg, #faf7f3 0%, #f3ede4 100%);
}

.hopsa-register-form-box {
    background: #fff;
    border-radius: 1.35rem;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 16px 48px rgba(10, 5, 0, 0.08);
    border: 1px solid rgba(95, 51, 0, 0.08);
}

.hopsa-register-form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(248, 165, 3, 0.35);
}

.hopsa-register-form-header h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-brown) !important;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.hopsa-register-form-header p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.hopsa-register-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(95, 51, 0, 0.1);
}

.hopsa-register-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hopsa-register-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--hopsa-brown) !important;
    margin-bottom: 1.25rem;
}

.hopsa-register-section-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--hopsa-yellow);
    color: var(--hopsa-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hopsa-register-form-box .form-control,
.hopsa-register-form-box .form-select {
    background: #fff;
    border: 2px solid rgba(95, 51, 0, 0.12);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hopsa-register-form-box .form-control:focus,
.hopsa-register-form-box .form-select:focus {
    border-color: var(--hopsa-yellow);
    box-shadow: 0 0 0 0.2rem rgba(248, 165, 3, 0.2);
}

.hopsa-register-form-box label {
    font-weight: 600;
    color: var(--hopsa-brown);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.hopsa-register-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.35rem;
}

.hopsa-register-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem;
    border: 2px solid rgba(95, 51, 0, 0.15);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

.hopsa-register-radio:has(input:checked) {
    border-color: var(--hopsa-yellow);
    background: rgba(248, 165, 3, 0.12);
    color: var(--hopsa-brown);
}

.hopsa-register-radio input {
    accent-color: var(--hopsa-brown);
}

.hopsa-register-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1rem 1.15rem;
    background: rgba(248, 165, 3, 0.06);
    border: 1px solid rgba(248, 165, 3, 0.25);
    border-radius: 0.85rem;
    margin-bottom: 0.85rem;
}

.hopsa-register-check input {
    margin-top: 0.2rem;
    accent-color: var(--hopsa-brown);
    flex-shrink: 0;
}

.hopsa-register-check label {
    font-weight: 500;
    color: #444;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.hopsa-register-check label small {
    display: block;
    margin-top: 0.35rem;
    color: #777;
    font-size: 0.82rem;
}

.hopsa-register-payment-box {
    background: linear-gradient(135deg, rgba(248, 165, 3, 0.1) 0%, rgba(95, 51, 0, 0.06) 100%);
    border: 1px solid rgba(248, 165, 3, 0.35);
    border-radius: 1rem;
    padding: 1.5rem 1.35rem;
}

.hopsa-register-payment-box h6 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-brown) !important;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hopsa-register-fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px dashed rgba(95, 51, 0, 0.15);
    font-size: 0.95rem;
}

.hopsa-register-fee-row:last-of-type {
    border-bottom: none;
}

.hopsa-register-fee-row strong {
    color: var(--hopsa-brown);
}

.hopsa-register-bank-details {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1rem 1.15rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    line-height: 1.75;
    color: #555;
}

.hopsa-register-bank-details strong {
    color: var(--hopsa-brown);
}

.hopsa-register-signature-wrap {
    background: #fff;
    border: 2px dashed rgba(95, 51, 0, 0.25);
    border-radius: 0.85rem;
    padding: 0.75rem;
}

#signature-pad {
    border: none;
    background: #fff;
    border-radius: 0.5rem;
    display: block;
    width: 100%;
    height: 150px;
    cursor: crosshair;
    touch-action: none;
}

.hopsa-register-sidebar {
    position: sticky;
    top: 100px;
}

.hopsa-register-sidebar-card {
    background: #fff;
    border-radius: 1.15rem;
    padding: 1.75rem 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 30px rgba(10, 5, 0, 0.06);
    border: 1px solid rgba(95, 51, 0, 0.08);
    border-top: 4px solid var(--hopsa-yellow);
}

.hopsa-register-sidebar-card h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-brown) !important;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.hopsa-register-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hopsa-register-steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.hopsa-register-steps li:last-child {
    margin-bottom: 0;
}

.hopsa-register-steps li span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--hopsa-brown);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hopsa-register-perks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hopsa-register-perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.55;
}

.hopsa-register-perks li i {
    color: var(--hopsa-yellow);
    margin-top: 0.15rem;
}

.hopsa-register-footer-note {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(248, 165, 3, 0.25);
}

.hopsa-register-footer-note p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.35rem;
}

.hopsa-register-footer-note strong {
    color: var(--hopsa-brown);
}

@media (max-width: 991.98px) {
    .hopsa-register-benefits {
        margin-top: 0;
    }

    .hopsa-register-sidebar {
        position: static;
    }

    .hopsa-register-form-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hopsa-register-form-box {
        padding: 1.5rem 1.15rem;
    }

    .hopsa-register-radio-group {
        flex-direction: column;
    }
}

/* ===== HOPSA Association Page ===== */
.hopsa-page-hero-association {
    background: linear-gradient(135deg, rgba(10, 5, 0, 0.86) 0%, rgba(95, 51, 0, 0.74) 100%), url(../img/gallery2.jpg) center center no-repeat;
    background-size: cover;
}

.hopsa-association-stats {
    background: linear-gradient(180deg, #4a2800 0%, var(--hopsa-brown) 100%);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.hopsa-association-stat {
    background: var(--hopsa-yellow);
    border-radius: 1.15rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    color: var(--hopsa-black);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.hopsa-association-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.hopsa-association-stat-number {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1;
    color: var(--hopsa-brown);
    margin-bottom: 0.5rem;
}

.hopsa-association-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}

.hopsa-association-origin {
    background: #fff;
}

.hopsa-association-origin-card {
    background: linear-gradient(135deg, rgba(248, 165, 3, 0.1) 0%, rgba(95, 51, 0, 0.06) 100%);
    border: 1px solid rgba(248, 165, 3, 0.35);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    height: 100%;
}

.hopsa-association-origin-card h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-brown);
    margin-bottom: 1rem;
}

.hopsa-association-origin-card p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 0;
}

.hopsa-association-origin-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: var(--hopsa-black);
    color: var(--hopsa-yellow);
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hopsa-association-founders {
    background: linear-gradient(180deg, #faf7f3 0%, #f3ede4 100%);
}

.hopsa-association-founder-card {
    background: #fff;
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(10, 5, 0, 0.08);
    border: 1px solid rgba(95, 51, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.hopsa-association-founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(10, 5, 0, 0.14);
}

.hopsa-association-founder-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.hopsa-association-founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.hopsa-association-founder-card:hover .hopsa-association-founder-img img {
    transform: scale(1.05);
}

.hopsa-association-founder-img::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 5, 0, 0.55) 100%);
}

.hopsa-association-founder-body {
    padding: 1.35rem 1.25rem 1.5rem;
    text-align: center;
}

.hopsa-association-founder-role {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(248, 165, 3, 0.15);
    border: 1px solid rgba(248, 165, 3, 0.45);
    color: var(--hopsa-brown);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hopsa-association-founder-body h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--hopsa-black);
    margin-bottom: 0;
    line-height: 1.35;
}

.hopsa-association-attendees {
    background: #fff;
}

.hopsa-association-attendees-box {
    background: var(--hopsa-black);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    border-left: 5px solid var(--hopsa-yellow);
    box-shadow: 0 16px 44px rgba(10, 5, 0, 0.12);
}

.hopsa-association-attendees-box h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-yellow);
    margin-bottom: 0.75rem;
}

.hopsa-association-attendees-box p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.hopsa-association-attendee-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hopsa-association-attendee-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(248, 165, 3, 0.12);
    border: 1px solid rgba(248, 165, 3, 0.35);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.hopsa-association-attendee-chip i {
    color: var(--hopsa-yellow);
    font-size: 0.75rem;
}

.hopsa-association-timeline-section {
    background: linear-gradient(180deg, #4a2800 0%, var(--hopsa-brown) 45%, #3d2200 100%);
}

.hopsa-association-timeline-section .hopsa-section-title {
    color: #fff;
}

.hopsa-association-timeline-section .hopsa-section-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

.hopsa-association-timeline {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.hopsa-association-timeline::before {
    content: "";
    position: absolute;
    left: 0.45rem;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 3px;
    background: linear-gradient(180deg, var(--hopsa-yellow) 0%, rgba(248, 165, 3, 0.35) 100%);
    border-radius: 999px;
}

.hopsa-association-timeline-item {
    position: relative;
    margin-bottom: 1.15rem;
    padding: 1.15rem 1.35rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(248, 165, 3, 0.22);
    border-radius: 0.85rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hopsa-association-timeline-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.hopsa-association-timeline-item::before {
    content: "";
    position: absolute;
    left: -1.72rem;
    top: 1.45rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--hopsa-yellow);
    border: 2px solid var(--hopsa-brown);
    box-shadow: 0 0 0 3px rgba(248, 165, 3, 0.25);
}

.hopsa-association-timeline-item:last-child {
    margin-bottom: 0;
}

.hopsa-association-timeline-years {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hopsa-yellow);
}

.hopsa-association-timeline-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.5;
}

.hopsa-association-timeline-roles span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hopsa-association-timeline-roles strong {
    color: var(--hopsa-yellow);
    font-weight: 600;
}

.hopsa-association-timeline-note {
    max-width: 820px;
    margin: 1.5rem auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-style: italic;
}

.hopsa-association-schools {
    background: #fff;
}

.hopsa-association-school-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(95, 51, 0, 0.12);
    border-top: 4px solid var(--hopsa-yellow);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    box-shadow: 0 8px 30px rgba(10, 5, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.hopsa-association-school-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10, 5, 0, 0.1);
    color: inherit;
}

.hopsa-association-school-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(248, 165, 3, 0.15);
    border: 1px solid rgba(248, 165, 3, 0.45);
    color: var(--hopsa-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.15rem;
}

.hopsa-association-school-card h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-brown);
    margin-bottom: 0.65rem;
}

.hopsa-association-school-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.hopsa-association-school-link {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--hopsa-brown);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.3s ease, gap 0.3s ease;
}

.hopsa-association-school-card:hover .hopsa-association-school-link {
    color: var(--hopsa-yellow);
    gap: 0.65rem;
}

.hopsa-association-cta {
    background: linear-gradient(180deg, #faf7f3 0%, #fff 100%);
}

@media (max-width: 991.98px) {
    .hopsa-association-stats {
        margin-top: 0;
    }

    .hopsa-association-timeline {
        padding-left: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .hopsa-association-attendees-box {
        padding: 1.75rem 1.35rem;
    }

    .hopsa-association-timeline-roles {
        flex-direction: column;
        gap: 0.35rem;
    }
}

/* ===== HOPSA Leadership Page ===== */
.hopsa-page-hero-leadership {
    background: linear-gradient(135deg, rgba(10, 5, 0, 0.87) 0%, rgba(95, 51, 0, 0.75) 100%), url(../img/gallery4.jpg) center center no-repeat;
    background-size: cover;
}

.hopsa-leadership-pillars {
    background: linear-gradient(180deg, #4a2800 0%, var(--hopsa-brown) 100%);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.hopsa-leadership-pillar {
    background: var(--hopsa-yellow);
    border-radius: 1.15rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    color: var(--hopsa-black);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.hopsa-leadership-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.hopsa-leadership-pillar-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(10, 5, 0, 0.08);
    color: var(--hopsa-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.hopsa-leadership-pillar h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.hopsa-leadership-pillar p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.hopsa-leadership-president {
    background: #fff;
}

.hopsa-leadership-president-card {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(248, 165, 3, 0.08) 0%, rgba(95, 51, 0, 0.05) 100%);
    border: 1px solid rgba(248, 165, 3, 0.35);
    border-radius: 1.35rem;
    padding: 2.5rem;
    box-shadow: 0 16px 44px rgba(10, 5, 0, 0.08);
}

.hopsa-leadership-president-photo {
    position: relative;
    border-radius: 1.15rem;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 16px 40px rgba(10, 5, 0, 0.18);
}

.hopsa-leadership-president-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hopsa-leadership-president-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: var(--hopsa-black);
    color: var(--hopsa-yellow);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hopsa-leadership-president-content h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--hopsa-brown);
    margin-bottom: 0.35rem;
}

.hopsa-leadership-president-role {
    display: inline-block;
    margin-bottom: 1.25rem;
    color: var(--hopsa-black);
    font-weight: 600;
    font-size: 1rem;
}

.hopsa-leadership-president-quote {
    position: relative;
    background: var(--hopsa-black);
    color: #fff;
    border-radius: 1rem;
    padding: 1.75rem 1.75rem 1.75rem 2rem;
    border-left: 5px solid var(--hopsa-yellow);
    margin-bottom: 0;
}

.hopsa-leadership-president-quote i {
    color: var(--hopsa-yellow);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.85;
}

.hopsa-leadership-president-quote p {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
}

.hopsa-leadership-team {
    background: #faf8f5;
}

.hopsa-exec-profiles {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.hopsa-exec-profile {
    background: #fff;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 6px 24px rgba(10, 5, 0, 0.08);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hopsa-exec-profile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 5, 0, 0.12);
}

.hopsa-exec-profile-photo {
    background: #fff;
    padding: 1.75rem 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hopsa-exec-profile-photo img {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top center;
    border: 2px solid var(--hopsa-brown);
    background: #fff;
}

.hopsa-exec-profile-photo img[src*="Year Group"] {
    object-fit: contain;
    padding: 0.5rem;
}

.hopsa-exec-profile-info {
    background: #ececec;
    border-radius: 0 0 14px 14px;
    padding: 1.35rem 1rem 1.5rem;
    text-align: center;
}

.hopsa-exec-profile-info h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--hopsa-brown);
    margin-bottom: 0.35rem;
    line-height: 1.35;
}

.hopsa-exec-profile-role,
.hopsa-exec-profile-group {
    color: #333;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 0.15rem;
}

.hopsa-exec-profile-group {
    margin-bottom: 0;
    color: #444;
}

.hopsa-leadership-governance {
    background: #fff;
}

.hopsa-leadership-gov-card {
    background: #fff;
    border: 1px solid rgba(95, 51, 0, 0.12);
    border-top: 4px solid var(--hopsa-yellow);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: 0 8px 30px rgba(10, 5, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hopsa-leadership-gov-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10, 5, 0, 0.1);
}

.hopsa-leadership-gov-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(248, 165, 3, 0.15);
    border: 1px solid rgba(248, 165, 3, 0.45);
    color: var(--hopsa-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.hopsa-leadership-gov-card h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-brown);
    margin-bottom: 0.65rem;
}

.hopsa-leadership-gov-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.hopsa-leadership-meeting {
    background: linear-gradient(180deg, #4a2800 0%, var(--hopsa-brown) 45%, #3d2200 100%);
}

.hopsa-leadership-meeting-box {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(248, 165, 3, 0.25);
    border-radius: 1.25rem;
    padding: 3rem 2.5rem;
}

.hopsa-leadership-meeting-box .hopsa-section-label-light {
    margin-bottom: 1rem;
}

.hopsa-leadership-meeting-box h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    color: #fff;
    margin-bottom: 1rem;
}

.hopsa-leadership-meeting-box p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hopsa-leadership-meeting-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1.75rem;
}

.hopsa-leadership-meeting-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
}

.hopsa-leadership-meeting-meta i {
    color: var(--hopsa-yellow);
}

.hopsa-leadership-meeting-box .hopsa-btn-outline-brown {
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: #fff !important;
}

.hopsa-leadership-meeting-box .hopsa-btn-outline-brown:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--hopsa-brown) !important;
}

.hopsa-leadership-history {
    background: linear-gradient(180deg, #faf7f3 0%, #fff 100%);
}

.hopsa-leadership-history-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(248, 165, 3, 0.12) 0%, rgba(95, 51, 0, 0.08) 100%);
    border: 1px solid rgba(248, 165, 3, 0.35);
    border-radius: 1.25rem;
    padding: 2rem 2.25rem;
}

.hopsa-leadership-history-box h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--hopsa-brown);
    margin-bottom: 0.5rem;
}

.hopsa-leadership-history-box p {
    color: #555;
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 560px;
}

.hopsa-leadership-cta {
    background: #fff;
}

@media (max-width: 991.98px) {
    .hopsa-leadership-pillars {
        margin-top: 0;
    }

    .hopsa-leadership-president-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .hopsa-leadership-president-photo {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .hopsa-leadership-meeting-box {
        padding: 2rem 1.35rem;
    }

    .hopsa-leadership-history-box {
        padding: 1.75rem 1.35rem;
        text-align: center;
        justify-content: center;
    }

    .hopsa-leadership-history-box p {
        max-width: 100%;
    }

    .hopsa-exec-profile-photo {
        padding: 1.25rem 1rem 1rem;
    }

    .hopsa-exec-profile-photo img {
        max-width: 140px;
    }

    .hopsa-exec-profile-info {
        padding: 1.1rem 0.75rem 1.25rem;
    }

    .hopsa-exec-profile-info h4 {
        font-size: 0.95rem;
    }

    .hopsa-exec-profile-role,
    .hopsa-exec-profile-group {
        font-size: 0.85rem;
    }
}

/* Executive Committee accordion & avatar placeholders */
.hopsa-exec-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    border: 2px solid var(--hopsa-brown);
    border-radius: 0;
    background: linear-gradient(145deg, #f5f0ea 0%, #e8e0d6 100%);
    color: var(--hopsa-brown);
    font-size: 3.5rem;
    opacity: 0.55;
}

.hopsa-leadership-president-photo .hopsa-exec-avatar-placeholder {
    max-width: 100%;
    width: 100%;
    height: 100%;
    min-height: 280px;
    font-size: 5rem;
}

.hopsa-exec-profile-photo img,
.hopsa-leadership-president-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border: 2px solid var(--hopsa-brown);
}

.hopsa-leadership-president-photo img {
    min-height: 280px;
}

.hopsa-exec-accordion {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hopsa-exec-accordion .accordion-item {
    border: 1px solid rgba(95, 51, 0, 0.12);
    border-radius: 0.75rem !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10, 5, 0, 0.05);
}

.hopsa-exec-accordion .accordion-button {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: var(--hopsa-brown);
    background: #fff;
    padding: 1.15rem 1.35rem;
}

.hopsa-exec-accordion .accordion-button:not(.collapsed) {
    background: #faf8f5;
    color: var(--hopsa-brown);
    box-shadow: none;
}

.hopsa-exec-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(95, 51, 0, 0.2);
}

.hopsa-exec-accordion .accordion-body {
    background: #fff;
    padding: 0 1.35rem 1.25rem;
}

.hopsa-exec-accordion .accordion-body p {
    color: #555;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.hopsa-exec-accordion .accordion-body ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.hopsa-exec-accordion .accordion-body li {
    color: #444;
    line-height: 1.65;
    margin-bottom: 0.35rem;
}

.hopsa-exec-accordion-role {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: #777;
    margin-top: 0.15rem;
}

.hopsa-exec-accordion-vacant {
    font-style: italic;
    color: #888;
}

/* Short mobile (landscape phones): keep hero content below the fixed nav */
@media (max-width: 991.98px) and (max-height: 520px) {
    .carousel-header.hopsa-carousel .carousel-inner .carousel-item .carousel-caption.hopsa-carousel-caption {
        min-height: 460px !important;
        padding: 1rem 1rem 1.5rem !important;
    }

    .hopsa-hero-text.hopsa-hero-tagline,
    .hopsa-hero-text.hopsa-hero-slogan {
        display: none !important;
    }

    .hopsa-hero-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .hopsa-hero-actions .btn {
        padding-top: 0.55rem !important;
        padding-bottom: 0.55rem !important;
        font-size: 0.85rem;
    }
}
