:root {
    --zbt-navy: 0 51 102;          /* #003366 */
    --zbt-navy-dark: 0 26 51;      /* #001a33 */
    --zbt-navy-mid: 11 95 158;     /* #0b5f9e */
    --zbt-gold: 196 160 82;        /* #c4a052 */
    --zbt-gold-light: 212 184 114; /* #d4b872 */
    --zbt-white: 255 255 255;      /* #ffffff */
    --zbt-gray: 245 245 245;       /* #f5f5f5 */
    --zbt-dark-gray: 51 51 51;     /* #333333 */
    --zbt-teal: 55 170 255;        /* #37aaff */
    --zbt-hero-accent: #33f2c1; /* keep hero overlay pop */
}


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

body {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    color: rgb(var(--zbt-white));
    overflow-x: hidden;
    position: relative;
    background: rgb(var(--zbt-navy));
}

body::after {
    /* soft noise texture */
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
    z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

section {
    position: relative;
    z-index: 2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(var(--zbt-navy-dark));
}

::-webkit-scrollbar-thumb {
    background: rgb(var(--zbt-gold));
    border-radius: 5px;
}

/* Navigation */
.navbar-custom {
    background: transparent;
    padding: 1rem 0;
    transition: all 0.4s ease;
    position: fixed;
    width: 100%;
    z-index: 1050;
}

.navbar-custom.scrolled {
    background: rgba(0, 26, 51, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: rgb(var(--zbt-gold));
    line-height: 1;
}

.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    color: rgb(var(--zbt-white));
    letter-spacing: 0.2em;
    font-weight: 500;
}

.navbar-custom .nav-link {
    color: rgb(var(--zbt-white)) !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.6rem 1rem !important;
    position: relative;
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(var(--zbt-gold)), rgb(var(--zbt-teal)));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 75%;
}

.navbar-custom .nav-link:hover {
    color: rgb(var(--zbt-gold)) !important;
    opacity: 1;
}

.navbar-toggler-custom {
    border: none;
    background: transparent;
    padding: 0.5rem;
}

.navbar-toggler-custom:focus {
    box-shadow: none;
}

.navbar-toggler-custom .bar {
    display: block;
    width: 25px;
    height: 2px;
    background: rgb(var(--zbt-white));
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background:
        /*linear-gradient(180deg, rgb(var(--zbt-navy) / 0.0) 80%, rgb(var(--zbt-navy) / 0.6) 90%, rgb(var(--zbt-navy) / 1.0) 95%),*/
        linear-gradient(165deg, rgb(var(--zbt-navy-dark) / 0.85) 0%, rgb(var(--zbt-navy-mid) / 0.75) 50%, rgb(var(--zbt-navy) / 0.80) 100%),
        
        url('../images/brotherhood_background.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(196, 160, 82, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 160, 82, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4a052' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 15vw, 10rem);
    color: rgb(var(--zbt-white));
    line-height: 0.9;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.08em;
}

.hero-title span {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-title span:nth-child(2) { animation-delay: 0.4s; }
.hero-title span:nth-child(3) { animation-delay: 0.6s; }

/* Large screens: display title on one line */
@media (min-width: 768px) {
    .hero-title {
        display: flex;
        justify-content: center;
        gap: 0.2em;
    font-size: clamp(5.5rem, 10vw, 9.5rem);
}

    .hero-title span {
        display: inline-block;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-pan {
    from {
        background-position: 50% 50%, center;
    }
    to {
        background-position: 48% 45%, center;
    }
}

@keyframes floaty {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.55; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-6px); }
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: rgb(var(--zbt-gold));
    letter-spacing: 0.35em;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: 2.75rem;
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 1.2s forwards;
    opacity: 0;
}

.hero-scroll-indicator {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    animation: pulse 2.4s ease-in-out infinite;
}

.hero-scroll-indicator i {
    font-size: 1rem;
    color: var(--zbt-hero-accent);
}

.hero-ornament {
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    opacity: 0.55;
    z-index: 1;
}

.hero-blob-left {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    animation: floaty 10s ease-in-out infinite;
}

.hero-blob-right {
    width: 380px;
    height: 380px;
    bottom: 5%;
    right: -8%;
    animation: floaty 12s ease-in-out infinite reverse;
}

/* Custom Buttons */
.btn-gold {
    background: linear-gradient(135deg, rgb(var(--zbt-gold)) 0%, rgb(var(--zbt-gold-light)) 100%);
    color: rgb(var(--zbt-navy-dark));
    border: none;
    padding: 1rem 2.75rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 16px;
    transition: all 0.28s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 14px 40px rgba(255, 210, 0, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-gold:hover {
    background: linear-gradient(135deg, rgb(var(--zbt-gold-light)) 0%, rgb(var(--zbt-gold)) 100%);
    color: rgb(var(--zbt-navy-dark));
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 45px rgba(255, 210, 0, 0.48);
}

.btn-stacked {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
    white-space: nowrap;
}

.btn-stacked .btn-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    opacity: 0.9;
}

.btn-outline-light-custom {
    background: transparent;
    color: rgb(var(--zbt-white));
    border: 2px solid rgb(var(--zbt-white));
    padding: 0.95rem 2.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 16px;
    transition: all 0.28s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline-light-custom:hover {
    background: rgb(var(--zbt-white));
    color: rgb(var(--zbt-navy));
    transform: translateY(-4px) scale(1.01);
}

/* Full Width Image Section */
.image-section {
    background: linear-gradient(rgba(0, 51, 102, 0.55), rgba(0, 26, 51, 0.6)),
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920') center/cover no-repeat;
    padding: 6rem 0;
    color: rgb(var(--zbt-white));
}

.image-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: rgb(var(--zbt-gold));
    margin-bottom: 1.5rem;
}

.image-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styling */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgb(var(--zbt-gold));
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: rgb(var(--zbt-navy));
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Philanthropy Section */
.philanthropy-section {
    background: rgb(var(--zbt-navy-dark));
    padding: 6rem 0;
    color: rgb(var(--zbt-white));
    position: relative;
}

.philanthropy-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: rgb(var(--zbt-gold));
    margin-bottom: 1.5rem;
}

.philanthropy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
}

.philanthropy-icon {
    font-size: 8rem;
    color: rgb(var(--zbt-gold));
    opacity: 0.3;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: rgb(var(--zbt-navy-dark));
    color: rgb(var(--zbt-white));
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    justify-content: center;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgb(var(--zbt-navy)) 0%, rgb(var(--zbt-navy-dark)) 100%);
    break-inside: avoid;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 1 / 1;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
    transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(1.05) brightness(1.05);
}

.gallery-meta {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    color: rgb(var(--zbt-white));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    letter-spacing: 0.08em;
}

.gallery-card:hover .gallery-meta {
    opacity: 1;
}

.gallery-meta .label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgb(var(--zbt-teal));
    margin-bottom: 0.35rem;
}

.gallery-meta .title {
    font-size: 1.05rem;
    font-weight: 600;
}

.gallery-placeholder {
    background: linear-gradient(135deg, rgba(55, 170, 255, 0.12), rgba(255, 210, 0, 0.16));
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    min-height: 230px;
    display: grid;
    place-items: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Stats Section - Transitional gradient from dark to light */
.stats-section {
    background: rgb(var(--zbt-navy));
    padding: 4.5rem 0 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.06'%3E%3Cpath d='M60 10l40 20v40L60 90 20 70V30z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

.stat-item {
    text-align: center;
    padding: 2.25rem 1.25rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(55, 170, 255, 0.2), transparent 30%),
                radial-gradient(circle at 80% 80%, rgba(255, 210, 0, 0.2), transparent 35%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-icon {
    font-size: 1.6rem;
    color: rgb(var(--zbt-teal));
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: rgb(var(--zbt-white));
    line-height: 1;
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.highlight-marquee {
    margin: 0 0 2.5rem;
    background: linear-gradient(90deg, rgba(55, 170, 255, 0.12), rgba(255, 210, 0, 0.2));
    padding: 0.9rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-section {
    padding: 0 0 3.5rem;
}

.stats-section .stats-content {
    padding-top: 3rem;
}

.highlight-marquee::before,
.highlight-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
}

.highlight-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #0c1f39, transparent);
}

.highlight-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #0c1f39, transparent);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 22s linear infinite;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.marquee-track span::after {
    content: '•';
    opacity: 0.5;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: rgb(var(--zbt-white));
    color: rgb(var(--zbt-white));
    position: relative;
}

.about-section .section-title {
    color: rgb(var(--zbt-navy));
}

.about-section .section-description {
    color: rgb(var(--zbt-navy) / 0.75);
}

.value-card {
    background: rgb(var(--zbt-white));
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom-color: rgb(var(--zbt-gold));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.value-card h3 {
    font-size: 1.5rem;
    color: rgb(var(--zbt-navy));
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}








/* Executive Board Section */
.board-section {
    padding: 6rem 0;
    background: linear-gradient(180deg,
        rgba(0, 26, 51, 0.96) 0%,
        rgba(10, 40, 70, 0.94) 50%,
        rgba(13, 35, 66, 0.96) 100%
    );
    color: rgb(var(--zbt-white));
    position: relative;
}

.board-section .section-title {
    color: rgb(var(--zbt-white));
}

.board-hero-banner {
    background: linear-gradient(135deg, rgba(55, 170, 255, 0.16), rgba(255, 210, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    text-transform: uppercase;
    color: rgb(var(--zbt-white));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.board-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.board-member {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.board-member.featured {
    grid-column: span 2;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(55, 170, 255, 0.08), rgba(255, 210, 0, 0.14));
}

.member-photo {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgb(var(--zbt-navy)) 0%, rgb(var(--zbt-navy-dark)) 100%);
    border-radius: 22px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    border: 4px solid rgb(var(--zbt-gold));
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.board-member:hover .member-photo {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.member-position {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgb(var(--zbt-teal));
    margin-bottom: 0.65rem;
    min-height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: rgb(var(--zbt-white));
    margin-bottom: 0.35rem;
}

.role-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.board-member .blurb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.65rem;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .board-member.featured {
        grid-column: span 1;
    }
}

/* Events Section */
.events-section {
    padding: 6rem 0;
    background: rgb(var(--zbt-navy-dark));
    position: relative;
}

.events-section .section-title {
    color: rgb(var(--zbt-white));
}

.event-card {
    background: rgb(var(--zbt-white));
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border-left: 4px solid rgb(var(--zbt-gold));
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, rgba(0, 82, 136, 0.25), rgba(0, 82, 136, 0.08));
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--zbt-navy));
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgb(var(--zbt-navy));
    color: rgb(var(--zbt-white));
    padding: 0.5rem 0.75rem;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.event-date-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    line-height: 1;
}

.event-date-month {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgb(var(--zbt-gold));
}

.event-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-content h3 {
    font-size: 1.3rem;
    color: rgb(var(--zbt-navy));
    margin-bottom: 0.75rem;
}

.event-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-meta {
    font-size: 0.8rem;
    color: #999;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: rgb(var(--zbt-navy-dark));
    color: rgb(var(--zbt-white));
    position: relative;
}

.contact-section .section-title {
    color: rgb(var(--zbt-white));
}

.contact-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: rgb(var(--zbt-white));
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgb(var(--zbt-gold));
    box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.2);
    color: rgb(var(--zbt-white));
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: rgb(var(--zbt-navy-dark));
    color: rgb(var(--zbt-white));
    padding: 4rem 0 2rem;
}

.footer h3 {
    font-size: 1.2rem;
    color: rgb(var(--zbt-gold));
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: rgb(var(--zbt-gold));
}

.footer-motto {
    color: rgb(var(--zbt-gold)) !important;
    font-style: italic;
    margin-top: 1rem !important;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.75rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgb(var(--zbt-gold));
    color: rgb(var(--zbt-navy-dark));
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 26, 51, 0.98);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
    }

    .navbar-custom .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

.navbar-custom .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-custom .nav-link::after {
        display: none;
    }
}

.floating-rush {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.2rem;
    background: linear-gradient(135deg, rgb(var(--zbt-teal)), rgb(var(--zbt-gold)));
    color: rgb(var(--zbt-navy-dark));
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-rush.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    /* Hero and titles */
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-description {
        font-size: 1rem;
    }

    /* Stats section */
    .stat-item {
        border-bottom: 1px solid rgba(0, 51, 102, 0.2);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .stat-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .stat-number {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    /* Event cards */
    .event-card {
        margin-bottom: 1.5rem;
    }

    .event-image {
        height: 180px;
    }

    .event-content {
        padding: 1.25rem;
    }

    .event-content h3 {
        font-size: 1.2rem;
    }

    /* Compact value cards on mobile */
    .value-card {
        padding: 1.25rem 1rem;
    }

    .value-icon {
        height: 60px;
        margin-bottom: 0.75rem;
    }

    .value-icon img {
        max-width: 55px;
        max-height: 55px;
    }

    .value-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .value-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Board section */
    .board-grid {
        grid-template-columns: 1fr;
    }

    .member-photo {
        width: 120px;
        height: 120px;
    }

    .member-position {
        font-size: 0.7rem;
        min-height: 2.4rem;
    }

    .member-name {
        font-size: 1.4rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-card {
        margin-bottom: 1rem;
    }

    /* Always show gallery overlays on mobile */
    .gallery-meta {
        opacity: 1;
    }

    /* Philanthropy section */
    .philanthropy-section {
        padding: 4rem 0;
    }

    .philanthropy-section h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .philanthropy-section p {
        font-size: 1rem;
    }

    /* Contact form */
    .contact-form {
        padding: 0;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer p,
    .footer a {
        font-size: 0.85rem;
    }

    .footer .col-lg-4 {
        margin-bottom: 2rem;
    }

    .footer .col-lg-4:last-child {
        margin-bottom: 0;
    }

    /* Accordion buttons */
    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .accordion-body {
        font-size: 0.9rem;
        padding: 1rem;
    }

    /* Floating rush button */
    .floating-rush {
        right: 1rem;
        bottom: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
}

/* Tablet Responsive Adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Board grid - 2 columns on tablets */
    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Slightly smaller stats */
    .stat-number {
        font-size: clamp(3rem, 5vw, 4rem);
    }
}

/* Gallery Hero Section */
.hero-section.gallery-hero {
    min-height: 60vh;
    background-position: center bottom 25%;
}

/* Responsive Gallery Hero - shrinks on smaller screens */
@media (max-width: 991.98px) {
    .hero-section.gallery-hero {
        min-height: 50vh;
    }
}

@media (max-width: 767.98px) {
    .hero-section.gallery-hero {
        min-height: 40vh;
    }
}

@media (max-width: 575.98px) {
    .hero-section.gallery-hero {
        min-height: 35vh;
    }
}

/* Animation for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
