:root {
    --primary-navy: #152238;
    --primary-navy-rgb: 21, 34, 56;
    --deep-navy: #152238;
    --dark-navy: #152238;
    --bright-blue: #0072bc;
    --sky-blue: #008fd3;
    --link-blue: #007ed6;
    --accent-lime: #ffed4a;
    --accent-lime-bright: #ffed4a;
    --light-gray: #f4f6f9;
    --medium-gray: #7d8793;
    --dark-text: #12172a;
    --soft-text: #526170;
    --white: #ffffff;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.05);
    --container-width: 1280px;
    --heading-font: 'Playfair Display', Georgia, "Times New Roman", serif;
    --body-font: 'Montserrat', Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--dark-text);
    background: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

h1, h2, h3, h4, h5 {
    color: var(--primary-navy);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-container {
    max-width: var(--container-width);
}

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

.site-hero {
    position: relative;
    min-height: 820px;
    color: #ffffff;
    background: url("../img/bg.png");
    background-size: cover;
    background-position: center top;
}

.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 0 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.site-navbar.navbar-scrolled {
    padding: 12px 0;
    background: rgba(var(--primary-navy-rgb), 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    align-items: center;
}

.chamber-logo {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.logo-seal-img {
    height: 74px;
    width: auto;
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--heading-font);
    font-size: 26px;
    color: #ffffff;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.logo-sub {
    margin-top: 2px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.nav-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.utility-nav {
    margin-bottom: 10px;
    gap: 16px;
}

.utility-nav .nav-link {
    padding: 0;
    color: #ffffff;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.utility-nav .nav-link:hover {
    color: var(--accent-lime);
}

.utility-nav .nav-link.active {
    color: #ffd200 !important;
}

.main-nav-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav .nav-link {
    padding: 0;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.main-nav .nav-link:hover {
    color: var(--accent-lime);
}

.main-nav .nav-link.active {
    color: #ffd200 !important;
}

/* Dropdown Menus Styling */
.navbar-nav .nav-link {
    display: inline-flex;
    align-items: center;
}

.navbar-nav .dropdown-toggle {
    gap: 4px;
}

/* Custom chevron arrow using Bootstrap Icons code */
.navbar-nav .dropdown-toggle::after {
    border: none;
    content: "\F282"; /* chevron-down in bootstrap icons */
    font-family: "bootstrap-icons" !important;
    font-size: 8px;
    line-height: 1;
    margin-left: 4px;
    transition: transform 0.25s ease;
}

.navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Desktop Dropdown Hover Trigger & Styling */
@media (min-width: 992px) {
    .navbar-nav .dropdown {
        position: relative;
    }
    
    .navbar-nav .dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(16, 32, 61, 0.94);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        padding: 12px 0;
        margin-top: 15px; /* Offset to allow space between header and dropdown */
        min-width: 210px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        z-index: 1000;
    }
    
    /* Transparent gap bridge so hovering doesn't trigger mouseleave */
    .navbar-nav .dropdown::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 20px;
        display: block;
    }

    .navbar-nav .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.85);
        font-size: 11px;
        font-weight: 600;
        padding: 10px 20px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
        background: transparent;
    }

    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--accent-lime);
        border-left-color: var(--accent-lime);
        padding-left: 23px; /* subtle push animation */
    }
}

.nav-search {
    color: #ffffff;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.nav-search:hover {
    color: var(--accent-lime);
}

.join-chamber-btn {
    padding: 8px 18px;
    border-radius: 4px;
    border: 1px solid #ffd200;
    background: #ffd200;
    color: #152238;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.join-chamber-btn:hover {
    background: #e6bd00;
    border-color: #e6bd00;
    color: #152238;
}

.custom-toggler {
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 7px 8px;
    box-shadow: none !important;
}

.custom-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    margin: 4px 0;
}

.hero-content-container,
.hero-feature-container {
    position: relative;
    z-index: 5;
}

.hero-content-container {
    padding-top: 190px;
}

.hero-copy {
    max-width: 650px;
}

.hero-copy h1 {
    margin: 0 0 20px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 56px;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-copy p {
    max-width: 600px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.primary-small-btn {
    padding: 10px 24px;
    border-radius: 4px;
    border: 0;
    background: var(--primary-navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.primary-small-btn:hover {
    background: #313580;
    color: #ffffff;
    transform: translateY(-1px);
}

.hero-feature-container {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    padding: 0 22px;
    z-index: 10;
}

.hero-feature-card {
    width: 100%;
    max-width: 820px;
    margin-left: auto;
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 24px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.hero-feature-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 24px;
    min-height: 120px;
    background: rgba(16, 32, 61, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(16, 32, 61, 0.75);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-feature-large {
    gap: 20px;
}

.hero-feature-small {
    gap: 20px;
    padding-right: 50px;
}

.feature-img {
    flex: 0 0 auto;
    width: 88px;
    height: 88px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.speaker-img {
    background-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=500&q=80");
}

.recap-img {
    background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=500&q=80");
}

.spotlight-feature-img {
    background-image: url("../img/stock/rumble.jpg");
}

.feature-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #00a3e4;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.feature-text h2 {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    font-family: var(--body-font);
}

.hero-feature-small .feature-text h2 {
    font-size: 14px;
}

.feature-text p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.4;
}

.feature-arrow {
    color: #ffffff;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.hero-feature-item:hover .feature-arrow {
    transform: translateY(-50%) translateX(3px);
    color: var(--accent-lime-bright);
}

/* =========================
   SHARED SECTION STYLES
========================= */

.section-kicker {
    color: var(--bright-blue);
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.with-line::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    margin-top: 9px;
    background: var(--accent-lime);
}

.display-heading {
    font-family: var(--heading-font);
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    margin: 9px 0 32px;
}

.blue-heading {
    color: var(--primary-navy);
}

/* =========================
   EVENTS
========================= */

.events-section {
    background: #ffffff;
    padding: 60px 0 80px;
}

.events-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.featured-event-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.featured-event-card:hover {
    transform: translateY(-4px);
    border-color: var(--bright-blue);
}

.event-main-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

/* Event Image Classes */
.street-fair-img {
    background-image: url("../img/stock/event-1.png");
}

.ballpark-img {
    background-image: url("../img/stock/event-2.png");
}

.spring-networking-img {
    background-image: url("../img/stock/event-3.png");
}

/* Event Metadata Details Grid */
.event-details-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.event-details-row {
    display: flex;
    font-size: 13px;
    line-height: 1.45;
}

.event-details-label {
    width: 90px;
    flex-shrink: 0;
    color: var(--soft-text);
    font-weight: 600;
}

.event-details-value {
    color: var(--dark-text);
    font-weight: 500;
}

/* Green Register Button */
.btn-event-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    background-color: #2ebd7f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    border: none;
    transition: all 0.2s ease;
    margin-top: auto;
    text-align: center;
    cursor: pointer;
}

.btn-event-register:hover {
    background-color: #24a16b;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 189, 127, 0.2);
}

.btn-event-register:active {
    transform: translateY(0);
}


.featured-event-body {
    display: flex;
    flex: 1;
    padding: 30px;
    gap: 24px;
}

.event-date-block {
    flex: 0 0 auto;
    width: 72px;
    height: 86px;
    background: linear-gradient(135deg, var(--bright-blue), var(--deep-navy));
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.event-date-block .date-month {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
}

.event-date-block .date-day {
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    margin: 2px 0;
}

.event-date-block .date-weekday {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.8);
}

.event-info {
    flex: 1;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--bright-blue);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-time i {
    font-size: 14px;
}

.event-info h3 {
    margin: 0 0 10px;
    color: var(--dark-navy);
    font-family: var(--heading-font);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    transition: color 0.3s ease;
}

.event-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-event-card:hover .event-info h3 {
    color: var(--bright-blue);
}

.event-info p {
    margin: 0;
    color: var(--soft-text);
    font-size: 13px;
    line-height: 1.55;
}

.text-arrow-link {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: var(--bright-blue);
    font-size: 13px;
    font-weight: 700;
}

.arrow-circle-fill {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bright-blue);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-left: 8px;
    transition: all 0.2s ease;
}

.text-arrow-link:hover .arrow-circle-fill {
    background: var(--dark-navy);
    transform: translateX(3px);
}

.side-events {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.small-event-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 158px;
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.small-event-card:hover {
    transform: translateY(-4px);
    border-color: var(--bright-blue);
}

.small-event-img {
    background-size: cover;
    background-position: center;
}

.small-event-content {
    padding: 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-event-meta {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.small-event-meta i {
    font-size: 13px;
    margin-right: 6px;
}

.small-event-meta.lime {
    color: #907200;
}

.small-event-meta.blue {
    color: #0072bc;
}

.meta-separator::before {
    content: "|";
    color: rgba(0, 0, 0, 0.15);
    margin: 0 8px;
    font-weight: 300;
}

.small-event-meta .meta-time {
    color: var(--soft-text);
    font-weight: 500;
}

.small-event-content h3 {
    margin: 0 0 12px;
    color: var(--dark-navy);
    font-family: var(--heading-font);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    transition: color 0.3s ease;
}

.small-event-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.small-event-card:hover .small-event-content h3 {
    color: var(--bright-blue);
}

.small-link-with-arrow {
    color: var(--bright-blue);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.arrow-circle-outline {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--bright-blue);
    color: var(--bright-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-left: 6px;
    transition: all 0.2s ease;
}

.small-link-with-arrow:hover .arrow-circle-outline {
    background: var(--bright-blue);
    color: #ffffff;
    transform: translateX(3px);
}

.ghost-pill-btn {
    min-width: 190px;
    padding: 10px 24px;
    border: 1px solid var(--primary-navy);
    border-radius: 30px;
    color: var(--primary-navy);
    background: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    transition: all 0.3s ease;
}

.ghost-pill-btn:hover {
    background: var(--primary-navy);
    color: #ffffff;
}

/* =========================
   BUSINESS SPOTLIGHT
========================= */

.spotlight-section {
    background: #f6f8fb;
    padding: 70px 0 80px;
}

.spotlight-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.spotlight-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sky-blue);
    margin-bottom: 10px;
}

.spotlight-kicker i {
    font-size: 15px;
    color: var(--sky-blue);
}

.spotlight-title {
    margin: 0 0 8px;
    color: var(--dark-navy);
    font-family: var(--heading-font);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.spotlight-header p {
    margin: 0;
    color: var(--soft-text);
    font-size: 14px;
    max-width: 500px;
    line-height: 1.5;
}

.view-all-spotlights {
    color: var(--bright-blue);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
    transition: color 0.2s ease;
}

.view-all-spotlights i {
    transition: transform 0.2s ease;
}

.view-all-spotlights:hover {
    color: var(--dark-navy);
}

.view-all-spotlights:hover i {
    transform: translateX(4px);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: stretch;
}

/* Featured Spotlight Card */
.featured-spotlight-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.featured-spotlight-card:hover {
    transform: translateY(-4px);
    border-color: var(--bright-blue);
}

.spotlight-video-wrapper {
    position: relative;
    width: 46%;
    flex-shrink: 0;
    background: #000000;
    overflow: hidden;
}

.spotlight-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s ease;
}

.featured-spotlight-card:hover .spotlight-video-img,
.small-spotlight-card:hover .spotlight-video-img {
    transform: scale(1.05);
}

.video-overlay,
.video-overlay-sm {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.featured-spotlight-card:hover .video-overlay,
.small-spotlight-card:hover .video-overlay-sm {
    background: rgba(0, 0, 0, 0.35);
}

.video-play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.featured-spotlight-card:hover .video-play-btn {
    background: var(--bright-blue);
    border-color: var(--bright-blue);
    transform: scale(1.12);
    box-shadow: 0 0 20px rgba(0, 114, 188, 0.4);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.featured-spotlight-body {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.spotlight-brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.spotlight-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--sky-blue);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.spotlight-name {
    margin: 0;
    color: var(--dark-navy);
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.spotlight-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--soft-text);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.spotlight-location i {
    color: var(--bright-blue);
}

.spotlight-desc {
    margin: 0 0 20px;
    color: var(--soft-text);
    font-size: 13px;
    line-height: 1.55;
}

.spotlight-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
    font-size: 11px;
    font-weight: 600;
    color: #a0aec0;
}

.spotlight-meta-row i {
    margin-right: 4px;
}

.spotlight-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.spotlight-watch-btn {
    padding: 8px 20px;
    background: var(--primary-navy);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 0;
}

.spotlight-watch-btn:hover {
    background: #313580;
    color: #ffffff;
}

.spotlight-profile-link {
    color: var(--bright-blue);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.spotlight-profile-link i {
    transition: transform 0.2s ease;
}

.spotlight-profile-link:hover {
    color: var(--dark-navy);
}

.spotlight-profile-link:hover i {
    transform: translateX(3px);
}

/* Side Stack (Right Column) */
.side-spotlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-spotlight-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.small-spotlight-card:hover {
    transform: translateY(-4px);
    border-color: var(--bright-blue);
}

.spotlight-video-wrapper-sm {
    position: relative;
    width: 150px;
    flex-shrink: 0;
    background: #000000;
    overflow: hidden;
}

.video-play-btn-sm {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.small-spotlight-card:hover .video-play-btn-sm {
    background: var(--bright-blue);
    border-color: var(--bright-blue);
    transform: scale(1.12);
}

.video-duration-sm {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
}

.small-spotlight-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-spotlight-body h3 {
    margin: 2px 0 6px;
    color: var(--dark-navy);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.small-spotlight-card:hover .small-spotlight-body h3 {
    color: var(--bright-blue);
}

.spotlight-location-sm {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--soft-text);
    font-size: 11px;
    margin-bottom: 10px;
}

.spotlight-location-sm i {
    color: var(--bright-blue);
}

.spotlight-profile-link-sm {
    color: var(--bright-blue);
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.spotlight-profile-link-sm i {
    transition: transform 0.2s ease;
}

.spotlight-profile-link-sm:hover {
    color: var(--dark-navy);
}

.spotlight-profile-link-sm:hover i {
    transform: translateX(3px);
}

.spotlight-footer-btn {
    margin-top: 40px;
}

/* =========================
   SPONSORS
========================= */

.sponsors-section {
    background: #ffffff;
    padding: 80px 0 80px;
}

.sponsor-heading {
    margin: 10px 0 45px;
    font-family: var(--heading-font);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary-navy);
}

.sponsor-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.sponsor-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sponsor-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.sponsor-logo img {
    max-height: 56px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

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

.news-section {
    background: #f6f8fb;
    padding: 70px 0 80px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.pin-kicker {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pin-kicker i {
    color: var(--accent-lime);
    font-size: 15px;
}

.news-title {
    margin: 10px 0 4px;
    color: var(--dark-navy);
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.news-header p {
    width: 420px;
    max-width: 100%;
    margin: 0;
    color: var(--soft-text);
    font-size: 13px;
    line-height: 1.5;
}

.view-all-news {
    color: var(--bright-blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-all-news i {
    transition: transform 0.2s ease;
}

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

.news-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.featured-news-card {
    min-height: 480px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-image: url("https://images.unsplash.com/photo-1566577739112-5180d4bf9390?auto=format&fit=crop&w=1000&q=85");
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.featured-news-card:hover {
    transform: translateY(-4px);
}

.featured-news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 35, 75, 0.02) 0%,
        rgba(0, 35, 75, 0.3) 45%,
        rgba(0, 20, 50, 0.95) 100%
    );
}

.featured-badge {
    position: absolute;
    left: 24px;
    top: 24px;
    padding: 6px 14px;
    background: var(--accent-lime-bright);
    color: #14365f;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.featured-news-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: #ffffff;
}

.news-category {
    display: block;
    color: var(--bright-blue);
    font-size: 9px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.lime-text {
    color: var(--accent-lime-bright);
}

.featured-news-content h3 {
    margin: 10px 0 12px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.featured-news-card:hover .featured-news-content h3 {
    color: var(--accent-lime-bright);
}

.featured-news-content p {
    width: 480px;
    max-width: 100%;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.5;
}

.news-meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.news-meta-row i {
    margin-right: 6px;
}

.side-news-card .news-meta-row {
    color: var(--soft-text);
    margin-top: 12px;
}

.read-story-link {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #00a3e4;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-story-link i {
    transition: transform 0.2s ease;
}

.read-story-link:hover i {
    transform: translateX(4px);
}

.side-news {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.side-news-card {
    min-height: 190px;
    display: grid;
    grid-template-columns: 1fr 150px;
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.side-news-card:hover {
    transform: translateY(-4px);
    border-color: var(--bright-blue);
}

.side-news-img {
    background-size: cover;
    background-position: center;
}

.survey-img {
    background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=600&q=85");
}

.policy-img {
    background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=600&q=85");
}

.side-news-content {
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.side-news-content h3 {
    margin: 8px 0 8px;
    color: var(--dark-navy);
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    transition: color 0.3s ease;
}

.side-news-card:hover .side-news-content h3 {
    color: var(--bright-blue);
}

.side-news-content p {
    margin: 0;
    color: var(--soft-text);
    font-size: 12px;
    line-height: 1.45;
}

.side-news-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--bright-blue);
    font-size: 12px;
    font-weight: 700;
}

.side-news-content a i {
    transition: transform 0.2s ease;
}

.side-news-content a:hover i {
    transform: translateX(4px);
}

.blue-action-btn {
    min-width: 160px;
    padding: 10px 24px;
    border-radius: 4px;
    background: var(--primary-navy);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    transition: all 0.3s ease;
    border: 0;
}

.blue-action-btn:hover {
    background: #313580;
    color: #ffffff;
}

/* =========================
   MEMBERSHIP
========================= */

.membership-section {
    background: #ffffff;
    padding: 80px 0;
}

.membership-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 60px;
    align-items: center;
}

.membership-copy h2 {
    margin: 20px 0 20px;
    color: var(--dark-navy);
    font-family: var(--heading-font);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.short-lime-line {
    width: 36px;
    height: 2px;
    background: var(--accent-lime);
    margin-bottom: 24px;
}

.membership-copy p {
    margin: 0 0 28px;
    color: var(--soft-text);
    font-size: 14px;
    line-height: 1.6;
}

.wider-btn {
    padding: 10px 24px;
    width: auto;
    height: auto;
    border-radius: 4px;
    border: 0;
    background: var(--primary-navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    gap: 8px;
    transition: all 0.3s ease;
}

.wider-btn:hover {
    background: #313580;
    color: #ffffff;
}

.benefit-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    min-height: 240px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 20px 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--bright-blue);
}

.benefit-icon {
    color: #d4af37;
    font-size: 38px;
    line-height: 1;
    margin-bottom: 24px;
}

.benefit-line {
    width: 24px;
    height: 2px;
    background: var(--accent-lime);
    margin-bottom: 18px;
}

.benefit-card h3 {
    margin: 0 0 12px;
    color: var(--dark-navy);
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.benefit-card p {
    margin: 0;
    color: var(--soft-text);
    font-size: 12px;
    line-height: 1.5;
}

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

.site-footer {
    background: var(--primary-navy);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-family: var(--body-font);
}

.footer-logo:hover {
    color: #ffffff;
}

.footer-mark {
    width: 32px;
    height: 32px;
    position: relative;
    display: inline-block;
    margin-right: 8px;
}

.footer-mark span:first-child {
    position: absolute;
    left: 8px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--accent-lime);
    transform: rotate(45deg);
    border-radius: 2px;
}

.footer-mark span:last-child {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    background: var(--sky-blue);
    transform: rotate(45deg);
    border-radius: 2px;
}

.footer-lime-line,
.footer-line {
    width: 30px;
    height: 2px;
    background: var(--accent-lime);
}

.footer-lime-line {
    margin: 20px 0 16px;
}

.footer-brand p {
    max-width: 200px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.5;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-row a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-row a:hover {
    background: var(--sky-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-links h4,
.newsletter-box h4 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--body-font);
}

.footer-links .footer-line {
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    line-height: 2.2;
    transition: color 0.2s ease;
}

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

.footer-links a.highlight-link {
    color: var(--accent-lime);
    font-weight: 700;
}

.footer-links a.highlight-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.newsletter-box {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 32px;
}

.newsletter-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--accent-lime);
}

.newsletter-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.5;
}

.newsletter-btn {
    padding: 8px 18px;
    width: auto;
    height: auto;
    border: 1px solid var(--primary-navy);
    border-radius: 4px;
    color: #ffffff;
    background: transparent;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--primary-navy);
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    margin-top: 45px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    transition: color 0.2s ease;
}

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

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

/* =========================
   SUBPAGE STYLING
========================= */

.subpage-hero {
    position: relative;
    min-height: 260px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(21, 34, 56, 0.95), rgba(0, 114, 188, 0.9)), url("../img/bg.png");
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    padding-top: 120px; /* Offset for fixed navbar */
    padding-bottom: 40px;
}

.subpage-hero h1 {
    font-family: var(--heading-font);
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* =========================
   EVENTS PAGE SPECIFIC
========================= */

.events-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input-wrapper input:focus {
    border-color: var(--bright-blue);
}

.filter-selects {
    display: flex;
    gap: 12px;
}

.filter-selects select {
    padding: 12px 24px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--dark-text);
    outline: none;
    cursor: pointer;
}

.events-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.events-list-grid .small-event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: auto;
}

.events-list-grid .small-event-img {
    height: 200px;
    width: 100%;
    flex-shrink: 0;
}

.events-list-grid .small-event-content {
    padding: 28px;
    flex-grow: 1;
}

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

@media (max-width: 1279px) {
    :root {
        --container-width: 1140px;
    }
    
    .main-nav {
        gap: 14px;
    }
    
    .main-nav .nav-link {
        letter-spacing: 0.8px;
    }
    
    .main-nav-row {
        gap: 14px;
    }
    
    .hero-feature-card {
        width: 100%;
        max-width: 820px;
    }
}

@media (max-width: 1199px) {
    :root {
        --container-width: 960px;
    }

    .main-nav {
        gap: 10px;
    }

    .main-nav .nav-link {
        font-size: 11px;
        letter-spacing: 0.6px;
    }

    .main-nav-row {
        gap: 10px;
    }

    .join-chamber-btn {
        padding: 6px 12px;
        font-size: 10px;
    }

    .logo-seal-img {
        height: 60px;
    }

    .hero-feature-card {
        width: 100%;
        max-width: 100%;
    }

    .hero-copy h1 {
        font-size: 44px;
    }

    .display-heading {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    :root {
        --container-width: 720px;
    }

    .site-hero {
        min-height: auto;
        padding-bottom: 55px;
    }

    .site-navbar {
        padding-top: 14px;
    }

    .nav-container {
        align-items: center;
    }

    .chamber-logo {
        padding-top: 0;
    }

    .navbar-collapse {
        margin-top: 18px;
        padding: 18px;
        background: rgba(0, 35, 80, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .nav-stack {
        align-items: flex-start;
    }

    .utility-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .main-nav-row {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .main-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .navbar-nav .nav-link {
        font-size: 12px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-nav .dropdown-menu {
        background: rgba(0, 20, 50, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        padding: 8px 0;
        margin-top: 8px;
        margin-bottom: 8px;
        width: 100%;
        float: none;
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 12px;
        padding: 8px 20px;
        text-transform: none;
        transition: color 0.2s ease;
        background: transparent !important;
    }

    .navbar-nav .dropdown-menu .dropdown-item:hover,
    .navbar-nav .dropdown-menu .dropdown-item:focus {
        color: var(--accent-lime) !important;
    }

    .navbar-nav .dropdown-toggle::after {
        margin-left: auto;
        font-size: 10px;
    }

    .navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .hero-content-container {
        padding-top: 72px;
    }

    .hero-copy {
        max-width: 560px;
    }

    .hero-feature-container {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 60px;
        margin-bottom: -40px;
    }

    .hero-feature-card {
        width: 100%;
        margin: 0;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .events-grid,
    .news-grid,
    .membership-grid,
    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .side-events,
    .side-spotlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .featured-spotlight-card {
        flex-direction: column;
    }

    .spotlight-video-wrapper {
        width: 100%;
        height: 260px;
        min-height: auto;
    }

    .sponsor-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .membership-grid {
        gap: 35px;
    }

    .membership-copy {
        max-width: 560px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
        row-gap: 40px;
    }

    .newsletter-box {
        border-left: 0;
        padding-left: 0;
    }

    .footer-bottom {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    :root {
        --container-width: 540px;
    }

    .events-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 16px;
    }

    .search-input-wrapper {
        max-width: none;
    }

    .filter-selects {
        flex-direction: column;
        gap: 10px;
    }

    .filter-selects select {
        width: 100%;
    }

    .subpage-hero {
        min-height: 200px;
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .subpage-hero h1 {
        font-size: 32px;
    }

    .site-hero {
        background-position: center;
    }

    .logo-main {
        font-size: 23px;
    }

    .logo-sub {
        font-size: 7px;
    }

    .logo-seal-img {
        height: 50px;
    }

    .hero-content-container {
        padding-top: 55px;
    }

    .hero-copy h1 {
        font-size: 38px;
        line-height: 1;
    }

    .hero-copy p {
        font-size: 13px;
        max-width: 100%;
    }

    .hero-feature-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .events-section {
        padding-top: 46px;
    }

    .display-heading {
        font-size: 40px;
    }

    .events-grid {
        gap: 24px;
    }

    .side-events,
    .side-spotlights {
        grid-template-columns: 1fr;
    }

    .small-event-card {
        min-height: 150px;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .view-all-news {
        margin-bottom: 0;
    }

    .news-title {
        font-size: 42px;
    }

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

    .side-news-img {
        min-height: 175px;
    }


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

    .benefit-card {
        min-height: auto;
    }

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

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .site-container {
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .site-hero {
        padding-bottom: 45px;
    }

    .chamber-logo {
        min-width: 0;
    }

    .logo-main {
        font-size: 21px;
    }

    .hero-copy h1 {
        font-size: 33px;
    }

    .hero-copy p {
        font-size: 12px;
        line-height: 1.55;
    }

    .hero-feature-container {
        margin-top: 55px;
    }

    .hero-feature-item {
        padding: 16px;
        align-items: flex-start;
    }

    .feature-img {
        width: 70px;
        height: 70px;
    }

    .feature-text h2,
    .hero-feature-small .feature-text h2 {
        font-size: 13px;
    }

    .display-heading {
        font-size: 35px;
    }

    .featured-event-body {
        flex-direction: column;
    }

    .event-date-block {
        width: 100%;
        min-height: 78px;
        flex-direction: row;
        gap: 12px;
    }

    .event-date-block strong {
        font-size: 36px;
    }

    .event-info h3 {
        font-size: 20px;
    }

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

    .small-event-img {
        min-height: 150px;
    }

    .sponsors-section {
        padding: 50px 0 55px;
    }

    .sponsor-row {
        gap: 25px;
    }

    .news-section {
        padding: 45px 0;
    }

    .news-title {
        font-size: 38px;
    }

    .featured-news-card {
        min-height: 410px;
    }

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

    .news-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        margin-bottom: 24px;
    }

    .read-story-link {
        position: static;
        display: inline-block;
        margin-top: 10px;
    }

    .membership-section {
        padding: 50px 0;
    }

    .membership-copy h2 {
        font-size: 29px;
    }

    .small-spotlight-card {
        flex-direction: column;
    }

    .spotlight-video-wrapper-sm {
        width: 100%;
        height: 160px;
    }

    .spotlight-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .view-all-spotlights {
        margin-bottom: 0;
    }

    .spotlight-title {
        font-size: 30px;
    }

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

    .footer-brand p,
    .newsletter-box p {
        width: 100%;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ==========================================================================
   EVENTS INDEX SECTION - HIGH-FIDELITY UX/UI REFACTOR
   ========================================================================== */

/* Solid Navigation Bar for Subpage */
.events-page-body .site-navbar {
    padding: 12px 0 !important;
    background: #152238 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Page Layout Container & Background */
.events-page-wrapper {
    background-color: #f8fafc;
    padding-top: 130px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.events-main-content {
    font-family: var(--body-font);
}

/* Custom Breadcrumbs */
.events-breadcrumbs {
    margin-bottom: 24px;
}

.events-breadcrumbs .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
}

.events-breadcrumbs .breadcrumb-item a {
    color: #0072bc;
    transition: color 0.2s;
}

.events-breadcrumbs .breadcrumb-item a:hover {
    color: #005a96;
}

.events-breadcrumbs .breadcrumb-item.active {
    color: #64748b;
}

.events-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
    color: #94a3b8;
}

/* Page Titles */
.events-header-intro {
    margin-bottom: 30px;
}

.events-page-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.events-page-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Main Cards */
.events-main-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

/* Filters */
.events-filter-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .events-filter-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.search-input-container,
.dropdown-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 14px;
    pointer-events: none;
}

.filter-search-input {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px 10px 38px;
    font-size: 14px;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.2s ease;
}

.filter-search-input:focus {
    outline: none;
    border-color: #0072bc;
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

.dropdown-left-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #475569;
    font-size: 14px;
    pointer-events: none;
}

.dropdown-arrow-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #475569;
    font-size: 11px;
    pointer-events: none;
}

.filter-select-custom {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 32px 10px 38px;
    font-size: 14px;
    color: #1e293b;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-select-custom:focus {
    outline: none;
    border-color: #0072bc;
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

/* Inside Card Headers */
.upcoming-events-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 20px 0;
}

/* Event List Items */
.events-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-row-card {
    display: flex;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 24px;
    background: #ffffff;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-row-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
    .event-row-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
    }
}

.event-date-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 75px;
    flex-shrink: 0;
    padding-left: 14px;
    margin-right: 24px;
}

.event-date-side.border-blue {
    border-left: 4px solid #0072bc;
}

.event-date-side.border-green {
    border-left: 4px solid #10b981;
}

.event-date-side.border-purple {
    border-left: 4px solid #8b5cf6;
}

.event-date-side.border-orange {
    border-left: 4px solid #f59e0b;
}

@media (max-width: 768px) {
    .event-date-side {
        width: auto;
        margin-right: 0;
        padding-left: 10px;
    }
}

.event-month {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.5px;
}

.event-day {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin: 2px 0;
}

.event-weekday {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
}

.event-details-side {
    flex: 1;
}

.event-card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.event-card-title a {
    color: #1e293b;
    transition: color 0.2s;
}

.event-card-title a:hover {
    color: #0072bc;
}

.event-meta-info-row {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta-item i {
    font-size: 14px;
    color: #94a3b8;
}

/* Badges */
.badge-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.tag-blue {
    background-color: #eff6ff;
    color: #1d4ed8;
}

.tag-green {
    background-color: #ecfdf5;
    color: #047857;
}

.tag-orange {
    background-color: #fff7ed;
    color: #c2410c;
}

.event-actions-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-left: 24px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .event-actions-side {
        width: 100%;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        margin-left: 0;
        border-top: 1px solid #f1f5f9;
        padding-top: 16px;
    }
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #152238;
    color: #152238;
    background: transparent;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    width: auto;
    transition: all 0.2s ease;
}

.btn-view-details:hover {
    background: #152238;
    color: #ffffff !important;
}

.btn-save-event {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    padding: 4px 6px;
    transition: color 0.2s;
}

.btn-save-event:hover {
    color: #1e293b;
}

/* Card Footer */
.events-card-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.view-all-events-link {
    font-size: 14px;
    font-weight: 700;
    color: #0072bc;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.view-all-events-link:hover {
    color: #152238;
}

.view-all-events-link i {
    transition: transform 0.2s;
}

.view-all-events-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   SIDEBAR WIDGETS
   ========================================================================== */

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.sidebar-widget .widget-title {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 16px 0;
}

/* Sync Calendar Widget */
.calendar-sync-widget {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sync-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #0072bc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.sync-text-container {
    flex: 1;
}

.sync-text-container .widget-sub-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.sync-text-container .widget-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #152238;
    color: #152238;
    background: transparent;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-subscribe:hover {
    background: #152238;
    color: #ffffff !important;
}

/* Event Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    color: #475569;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.category-item:hover {
    background-color: #f8fafc;
    color: #1e293b;
}

.category-item.active {
    background-color: #eff6ff;
    color: #0072bc;
}

.category-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-left i {
    font-size: 14px;
}

.category-count {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
}

.category-item.active .category-count {
    color: #0072bc;
}

/* Featured Event Widget */
.featured-card-wrapper {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

.featured-card-header {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.featured-card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.featured-team-logo-container {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    padding: 4px;
}

.featured-team-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.featured-card-overlay-text {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.featured-card-event-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.35;
}

.featured-card-meta-row {
    display: flex;
    gap: 12px;
    font-size: 11px;
    opacity: 0.9;
    flex-wrap: wrap;
}

.featured-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.featured-card-body {
    padding: 16px;
}

.featured-card-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.featured-card-footer-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.btn-register-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #152238;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-register-now:hover {
    background-color: #1e2052;
    color: #ffffff;
}

.btn-view-details-link {
    font-size: 13px;
    font-weight: 700;
    color: #0072bc;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-view-details-link:hover {
    color: #152238;
}

.btn-view-details-link i {
    transition: transform 0.2s;
}

.btn-view-details-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   EVENT DETAIL PAGE - HIGH-FIDELITY UX/UI REFACTOR
   ========================================================================== */

/* Header & Intro */
.event-detail-header-text {
    margin-bottom: 24px;
}

.event-detail-kicker {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #ca8a04;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.event-detail-title {
    font-size: 38px;
    font-weight: 800;
    color: #152238;
    margin: 0 0 4px 0;
    letter-spacing: -0.8px;
    line-height: 1.15;
}

.event-detail-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.event-detail-intro {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    max-width: 660px;
}

/* Horizontal Info Grid */
.event-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    margin-bottom: 24px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .event-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .event-info-grid {
        grid-template-columns: 1fr;
    }
}

.info-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
    border-right: 1.5px solid #e2e8f0;
    transition: background-color 0.2s;
}

.info-cell:hover {
    background-color: #f8fafc;
}

.info-cell:last-child {
    border-right: none;
}

@media (max-width: 991px) {
    .info-cell:nth-child(2) {
        border-right: none;
    }
    .info-cell:nth-child(1),
    .info-cell:nth-child(2) {
        border-bottom: 1.5px solid #e2e8f0;
    }
}

@media (max-width: 576px) {
    .info-cell {
        border-right: none !important;
        border-bottom: 1.5px solid #e2e8f0 !important;
    }
    .info-cell:last-child {
        border-bottom: none !important;
    }
}

.info-cell-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #152238;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.info-cell-text {
    display: flex;
    flex-direction: column;
}

.info-cell-label {
    font-size: 9px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.8px;
    margin-bottom: 1px;
}

.info-cell-value {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

/* Actions */
.event-detail-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
}

@media (max-width: 576px) {
    .event-detail-actions {
        flex-direction: column;
    }
}

.btn-register-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f1b229;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    transition: all 0.2s ease;
}

.btn-register-gold:hover {
    background-color: #d99a18;
    box-shadow: 0 4px 14px rgba(241, 178, 41, 0.3);
}

.btn-add-calendar-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #152238;
    color: #152238 !important;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-add-calendar-outline:hover {
    background-color: #152238;
    color: #ffffff !important;
}

/* Sections */
.event-section-heading {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 12px;
}

.event-section-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* What to Expect */
.expect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .expect-grid {
        grid-template-columns: 1fr;
    }
}

.expect-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.expect-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #0072bc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.expect-content h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px 0;
}

.expect-content p {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

/* Location Card */
.location-map-card {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
}

@media (max-width: 576px) {
    .location-map-card {
        flex-direction: column;
    }
}

.location-map-img {
    width: 50%;
    background-size: cover;
    background-position: center;
    min-height: 160px;
}

@media (max-width: 576px) {
    .location-map-img {
        width: 100%;
        height: 160px;
    }
}

.location-address-info {
    width: 50%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 576px) {
    .location-address-info {
        width: 100%;
    }
}

.location-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.location-address {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    font-style: normal;
    margin-bottom: 14px;
}

.btn-get-directions {
    border: 1.5px solid #152238;
    color: #152238 !important;
    background-color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.btn-get-directions:hover {
    background-color: #152238;
    color: #ffffff !important;
}

/* Related Events */
.related-event-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-event-item:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.02);
}

.related-img {
    height: 100px;
    background-size: cover;
    background-position: center;
}

.related-card-body {
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.related-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 0;
    background-color: #f8fafc;
}

.related-month {
    font-size: 8px;
    font-weight: 700;
    color: #ca8a04;
    letter-spacing: 0.5px;
}

.related-day {
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
}

.related-info-block {
    flex: 1;
}

.related-info-block h5 {
    font-size: 12.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.related-time {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-bottom: 6px;
}

.related-view-link {
    font-size: 11px;
    font-weight: 700;
    color: #0072bc;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.related-view-link:hover {
    color: #152238;
}

.related-view-link i {
    transition: transform 0.2s ease;
}

.related-view-link:hover i {
    transform: translateX(2px);
}

/* ==========================================================================
   SIDEBAR TICKET BANNER CARD
   ========================================================================== */

.ticket-ad-card {
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #faf8f5;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.ticket-top {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.ticket-flyer-img {
    width: 100%;
    height: auto;
    display: block;
}

.ticket-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 34, 56, 0.95), rgba(0, 114, 188, 0.8));
    z-index: 1;
}

.ticket-logo-wrapper {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ticket-team-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ticket-header-text {
    position: relative;
    z-index: 2;
}

.ticket-eyebrow {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.75);
    display: block;
    margin-bottom: 8px;
}

.ticket-main-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    line-height: 0.95;
}

.ticket-small-joiner {
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
    opacity: 0.85;
    text-transform: lowercase;
    letter-spacing: 0;
}

.ticket-stars-strip {
    font-size: 9px;
    font-weight: 800;
    color: var(--accent-lime);
    letter-spacing: 1px;
    margin: 10px 0;
    text-transform: uppercase;
}

.ticket-summary-paragraph {
    font-size: 11px;
    opacity: 0.9;
    line-height: 1.45;
    margin: 0;
    max-width: 250px;
}

/* Ticket Tear Separator */
.ticket-tear-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: #faf8f5;
    height: 16px;
    overflow: visible;
}

.ticket-notch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #f8fafc; /* Matches wrapper background */
    border: 1.5px solid #cbd5e1;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.notch-left {
    margin-left: -9px;
    border-left: none;
}

.notch-right {
    margin-right: -9px;
    border-right: none;
}

.ticket-dotted-border {
    flex: 1;
    border-top: 2.5px dashed #cbd5e1;
    margin: 0 4px;
    height: 0;
}

.ticket-stub-bottom {
    padding: 20px 24px;
    background-color: #faf8f5;
}

.stub-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border-bottom: 1.5px dashed #cbd5e1;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.stub-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stub-feature-item i {
    font-size: 16px;
    color: #ca8a04;
    margin-bottom: 4px;
}

.stub-feature-item strong {
    font-size: 9px;
    font-weight: 800;
    color: #1e293b;
    display: block;
    margin-bottom: 2px;
}

.stub-feature-item span {
    font-size: 8px;
    color: #64748b;
    line-height: 1.25;
}

.stub-info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stub-info-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.stub-info-row i {
    font-size: 14px;
    color: #64748b;
    flex-shrink: 0;
    margin-top: 1px;
}

.stub-info-row strong {
    font-size: 11.5px;
    font-weight: 800;
    color: #1e293b;
    display: block;
}

.stub-info-row span {
    font-size: 10.5px;
    color: #64748b;
}

/* Register Widget Prices */
.price-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 14px;
}

.price-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.price-cost {
    color: #1e293b;
}

.checkout-assurance {
    font-size: 11px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 600;
}

.checkout-assurance i {
    color: #10b981;
    font-size: 12px;
}

/* Event Details Sidebar Widget */
.details-rows-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.details-item-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.details-item-row i {
    font-size: 14.5px;
    color: #0072bc;
    flex-shrink: 0;
    margin-top: 1px;
}

.detail-row-label {
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1px;
}

.detail-row-value {
    font-size: 12.5px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

/* Hosted by card */
.hosted-by-widget-card {
    background-color: #1e2052;
    border-radius: 12px;
    padding: 20px;
    color: #ffffff;
    display: flex;
    gap: 14px;
    align-items: center;
}

.hosted-avatar-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
}

.hosted-avatar-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hosted-body-content {
    flex: 1;
}

.hosted-cost-label {
    font-size: 9.5px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1px;
}

.hosted-org-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
}

.hosted-tagline {
    font-size: 11px;
    color: #60a5fa;
    margin: 0;
}

/* ==========================================================================
   MEMBER DIRECTORY SECTION - HIGH-FIDELITY UX/UI REFACTOR (REVISED)
   ========================================================================== */

/* Solid Navigation Bar for Subpage */
.directory-page-body .site-navbar {
    padding: 12px 0 !important;
    background: #152238 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Directory Layout Container & Background */
.directory-page-wrapper {
    background-color: #f8fafc;
    padding-top: 130px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.directory-main-content {
    font-family: var(--body-font);
}

/* Custom Breadcrumbs */
.directory-breadcrumbs {
    margin-bottom: 24px;
}

.directory-breadcrumbs .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
}

.directory-breadcrumbs .breadcrumb-item a {
    color: #0072bc;
    transition: color 0.2s;
}

.directory-breadcrumbs .breadcrumb-item a:hover {
    color: #005a96;
}

.directory-breadcrumbs .breadcrumb-item.active {
    color: #64748b;
}

/* Left Sidebar Styles */
.directory-sidebar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
    overflow: hidden;
}

/* Discover Header block with wave background decoration */
.sidebar-discover-header {
    background-color: #152238;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.discover-header-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
                radial-gradient(circle at 0% 100%, rgba(0, 114, 188, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.discover-title {
    font-size: 28px;
    margin: 0 0 10px 0;
    line-height: 1.15;
    display: flex;
    flex-direction: column;
}

.discover-serif {
    font-family: var(--heading-font);
    font-weight: 700;
    color: #ffffff;
}

.discover-gold {
    font-family: var(--heading-font);
    font-weight: 700;
    color: #ffd200;
}

.discover-subtitle {
    font-size: 13px;
    color: #94a3b8;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.sidebar-discover-header .search-input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 100px;
    padding: 2px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 2;
}

.sidebar-discover-header .search-icon {
    color: #64748b;
    font-size: 16px;
    margin-right: 8px;
}

.sidebar-discover-header .filter-search-input {
    border: none;
    outline: none;
    font-size: 14px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #1e293b;
    width: 100%;
    height: 38px;
    background: transparent;
}

.sidebar-discover-header .filter-search-input::placeholder {
    color: #94a3b8;
}

/* Category list items */
.category-list-wrapper {
    display: flex;
    flex-direction: column;
}

.category-row-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.category-row-item:last-child {
    border-bottom: none;
}

.category-row-item:hover,
.category-row-item.active {
    background-color: #f8fafc;
}

.category-icon-circle {
    width: 38px;
    height: 38px;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.category-icon-circle i {
    font-size: 14px;
    color: #152238;
}

.category-row-item:hover .category-icon-circle,
.category-row-item.active .category-icon-circle {
    background-color: #152238;
}

.category-row-item:hover .category-icon-circle i,
.category-row-item.active .category-icon-circle i {
    color: #ffffff;
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #152238;
    margin: 0 0 3px 0;
    transition: color 0.2s ease;
}

.category-description {
    font-size: 10.5px;
    color: #0072bc;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.category-row-item:hover .category-title {
    color: #0072bc;
}

.category-row-item:hover .category-description {
    color: #526170;
}

.category-chevron {
    color: #94a3b8;
    font-size: 14px;
    margin-left: 12px;
    transition: all 0.25s ease;
}

.category-row-item:hover .category-chevron {
    transform: translateX(4px);
    color: #0072bc;
}

/* Yellow Promo Banner */
.directory-promo-banner {
    background-color: #ffd200;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(255, 210, 0, 0.15);
}

.promo-left-side {
    display: flex;
    align-items: center;
    gap: 16px;
}

.promo-icon-circle {
    width: 44px;
    height: 44px;
    background-color: #152238;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-icon-circle i {
    font-size: 18px;
    color: #ffffff;
}

.promo-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.promo-text {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.promo-subtext {
    font-size: 11px;
    color: #152238;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.promo-right-side {
    flex-shrink: 0;
}

.directory-promo-banner .btn-learn-more {
    background-color: #152238;
    color: #ffffff;
    border-radius: 100px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(21, 34, 56, 0.2);
}

.directory-promo-banner .btn-learn-more:hover {
    background-color: #1b1e4c;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(21, 34, 56, 0.3);
    color: #ffffff;
}

/* Main Directory Card & Tab Headers */
.directory-main-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
    padding: 32px;
}

.directory-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.directory-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.directory-header-left .header-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.directory-header-left .header-icon-circle i {
    font-size: 16px;
    color: #152238;
}

.header-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.directory-title {
    font-size: 20px;
    font-weight: 800;
    color: #152238;
    margin: 0;
}

.directory-subtitle-text {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.directory-filter-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 100px;
    gap: 4px;
}

.directory-filter-tabs .btn-tab {
    background: transparent;
    border: none;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    transition: all 0.25s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.directory-filter-tabs .btn-tab:hover {
    color: #152238;
}

.directory-filter-tabs .btn-tab.active {
    background-color: #0072bc;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 114, 188, 0.25);
}

/* Dynamic 4-Column Grid Layout */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

/* 1. FEATURED 2x2 MEMBER CARD (Spans 2 columns and 2 rows) */
.featured-member-card {
    grid-column: span 2;
    grid-row: span 2;
    background-color: #152238;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    position: relative;
    overflow: hidden;
    border: 1px solid #1d2f4d;
    box-shadow: 0 10px 25px rgba(21, 34, 56, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    min-height: 280px;
}

.featured-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(21, 34, 56, 0.25);
}

.featured-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.featured-badge {
    background-color: #ffd200;
    color: #152238;
    font-size: 8.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    align-self: flex-start;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.featured-logo-wrap {
    height: 48px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.featured-logo-wrap .logo-svg {
    height: 100%;
    width: auto;
}

.featured-member-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.featured-member-desc {
    font-size: 11px;
    color: #cbd5e1;
    line-height: 1.45;
    margin: 0 0 12px 0;
}

.featured-member-loc {
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.featured-member-loc i {
    color: #ffd200;
}

.featured-profile-link {
    font-size: 11.5px;
    font-weight: 700;
    color: #ffd200;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s;
    text-decoration: none !important;
}

.featured-member-card:hover .featured-profile-link {
    gap: 10px;
}

.featured-pizza-cutout {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.featured-pizza-cutout img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 2. HORIZONTAL HIGHLIGHT MEMBER CARDS (Spans 1 column) */
.horizontal-member-card {
    grid-column: span 1;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    padding: 10px 12px;
    gap: 10px;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.horizontal-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(21, 34, 56, 0.06);
    border-color: #0072bc;
}

.horizontal-logo-side {
    width: 52px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-right: 1px solid #f1f5f9;
    padding-right: 8px;
}

.horizontal-logo-side .logo-svg {
    width: 100%;
    height: 100%;
}

.horizontal-info-side {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horizontal-member-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #152238;
    margin: 0 0 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.horizontal-member-desc {
    font-size: 10.5px;
    color: #64748b;
    margin: 0 0 6px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.horizontal-member-loc {
    font-size: 10px;
    color: #7d8793;
    display: flex;
    align-items: center;
    gap: 4px;
}

.horizontal-member-loc i {
    color: #0072bc;
}

/* 3. STANDARD MEMBER CARDS (Spans 1 column) */
.member-card {
    grid-column: span 1;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    aspect-ratio: 1 / 1.1;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
}

.member-logo-container {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    max-height: 70px;
}

.member-logo-container .logo-svg {
    width: 100%;
    height: 100%;
    max-height: 60px;
    object-fit: contain;
}

.member-name {
    font-size: 10.5px;
    font-weight: 700;
    color: #152238;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: auto;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(21, 34, 56, 0.06);
    border-color: #0072bc;
}

/* Avatar headshot container override (Karen Harris Realtor Card) */
.member-logo-container.avatar-logo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    margin-bottom: 12px;
    max-height: 54px;
}

.realtor-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 4. BOTTOM CATERING BANNER (Spans all 4 columns) */
.directory-catering-banner {
    grid-column: span 4;
    background-color: #152238;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 24px 32px;
    border: 1px solid #1d2f4d;
    box-shadow: 0 10px 25px rgba(21, 34, 56, 0.1);
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.directory-catering-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(21, 34, 56, 0.2);
}

.catering-banner-content {
    max-width: 60%;
    z-index: 2;
    position: relative;
}

.catering-kicker {
    background-color: #ffd200;
    color: #152238;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.catering-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.catering-desc {
    font-size: 11.5px;
    color: #cbd5e1;
    margin: 0 0 14px 0;
    line-height: 1.4;
}

.btn-view-catering {
    background-color: #ffd200;
    color: #152238;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s;
}

.btn-view-catering:hover {
    background-color: #e6bd00;
    color: #152238;
}

.catering-food-cutout {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 130px;
    border-radius: 65px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.catering-food-cutout img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Helper for grid centering */
.grid-span-all {
    grid-column: span 4;
}

/* ==========================================================================
   RESPONSIVE LAYOUT FOR 4-COLUMN GRID
   ========================================================================== */
@media (max-width: 1199px) {
    .directory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .featured-member-card {
        grid-column: span 2;
    }
    .directory-catering-banner {
        grid-column: span 3;
    }
    .grid-span-all {
        grid-column: span 3;
    }
}

@media (max-width: 991px) {
    .directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .featured-member-card {
        grid-column: span 2;
    }
    .horizontal-member-card {
        grid-column: span 1;
        padding: 12px 14px;
        gap: 12px;
    }
    .horizontal-logo-side {
        width: 64px;
        height: 48px;
        padding-right: 12px;
    }
    .member-card {
        grid-column: span 1;
    }
    .directory-catering-banner {
        grid-column: span 2;
    }
    .grid-span-all {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .directory-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .featured-member-card {
        grid-column: span 1;
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .featured-pizza-cutout {
        position: relative;
        transform: none;
        top: 0;
        right: 0;
        margin: 20px auto 0 auto;
        width: 130px;
        height: 130px;
        border-radius: 50%;
    }
    .horizontal-member-card {
        grid-column: span 1;
    }
    .member-card {
        grid-column: span 1;
    }
    .directory-catering-banner {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }
    .catering-food-cutout {
        position: relative;
        transform: none;
        top: 0;
        right: 0;
        width: 100%;
        height: 120px;
        border-radius: 12px;
    }
    .catering-banner-content {
        max-width: 100%;
    }
    .grid-span-all {
        grid-column: span 1;
    }
}

/* ==========================================================================
   DIRECTORY CATEGORY DETAIL PAGE
   ========================================================================== */
.category-header-banner {
    display: flex;
    position: relative;
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    min-height: 200px;
}

.category-banner-info {
    flex: 1.2;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    z-index: 3;
    background: #f8fafc;
}

.category-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #152238;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.category-banner-text {
    display: flex;
    flex-direction: column;
}

.category-kicker {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0072bc;
    margin-bottom: 4px;
}

.category-title-main {
    font-family: var(--body-font);
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.category-description-main {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    max-width: 500px;
}

/* Slanted Image Panel */
.category-banner-image-panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
    margin-left: -50px;
    z-index: 2;
}

.category-image-slant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.4) 0%, rgba(248, 250, 252, 0) 100%);
}

/* Slanted Count Panel */
.category-banner-count-panel {
    width: 220px;
    background: #152238;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -40px;
    z-index: 3;
    padding: 32px 24px;
}

.count-panel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.count-icon {
    font-size: 20px;
    color: #ffd200;
    margin-bottom: 6px;
}

.count-number {
    font-family: var(--body-font);
    font-size: 26px;
    font-weight: 800;
    color: #ffd200;
    line-height: 1.1;
}

.count-label {
    font-size: 11px;
    font-weight: 700;
    color: #cbd5e1;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* Sidebar Search & Category Styles */
.sidebar-search-card {
    background-color: #152238;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #1d2f4d;
    color: #ffffff;
}

.search-card-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 12px;
}

.sidebar-search-card .search-input-container {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 4px 8px 4px 12px;
    gap: 8px;
    width: 100%;
}

.sidebar-search-card .search-icon {
    color: #94a3b8;
    font-size: 14px;
}

.sidebar-search-card .filter-search-input {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 13px;
    width: 100%;
    outline: none;
}

.sidebar-search-card .filter-search-input::placeholder {
    color: #94a3b8;
}

.btn-filter-settings {
    background: none;
    border: none;
    color: #ffd200;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s;
}

.btn-filter-settings:hover {
    transform: rotate(30deg);
}

/* Category Sidebar Overrides for Detail Page */
.category-sidebar-style {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.category-sidebar-style .category-list-wrapper {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    padding: 20px 0 0 0;
}

.sidebar-section-title {
    font-size: 14px;
    font-weight: 800;
    color: #152238;
    margin-bottom: 0;
    border-bottom: 1px solid #f1f5f9;
    padding: 0 20px 14px 20px;
}

.category-rows-container {
    display: flex;
    flex-direction: column;
}

.category-sidebar-style .category-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-radius: 0;
    color: #64748b;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 0;
    border-bottom: 1px solid #f1f5f9;
}

.category-sidebar-style .category-row-item:last-child {
    border-bottom: none;
}

.category-sidebar-style .category-row-item:hover {
    background-color: #f8fafc;
    color: #0072bc;
}

.category-sidebar-style .category-row-item.active {
    background-color: #ebf5ff;
    color: #0072bc;
}

.cat-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.cat-left .cat-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cat-icon {
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.2s;
    flex-shrink: 0;
}

.category-row-item.active .cat-icon,
.category-row-item:hover .cat-icon {
    color: #0072bc;
}

.cat-badge {
    font-size: 10px;
    font-weight: 700;
    background: #f1f5f9;
    color: #64748b;
    padding: 3px 8px;
    border-radius: 100px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.category-row-item.active .cat-badge {
    background: #0072bc;
    color: #ffffff;
}

.category-row-item:hover .cat-badge {
    background: #0072bc;
    color: #ffffff;
}

/* Sidebar CTA Card */
.sidebar-join-cta-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.cta-storefront-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ebf5ff;
    color: #0072bc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px auto;
}

.cta-card-title {
    font-size: 14px;
    font-weight: 800;
    color: #152238;
    margin: 0 0 6px 0;
}

.cta-card-desc {
    font-size: 11px;
    color: #64748b;
    line-height: 1.45;
    margin: 0 0 16px 0;
}

.btn-join-chamber-sidebar {
    background-color: #0072bc;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    transition: background-color 0.2s;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    display: inline-block;
}

.btn-join-chamber-sidebar:hover {
    background-color: #005a96;
    color: #ffffff;
}

/* Listings Grid & Cards */
.listings-utility-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
}

.results-count-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.sort-by-label {
    font-size: 12px;
    font-weight: 700;
    color: #152238;
}

.sort-by-select {
    font-size: 12.5px !important;
    font-weight: 600;
    color: #475569;
    border-color: #cbd5e1;
    border-radius: 8px;
    padding: 6px 36px 6px 12px !important;
    max-width: 180px;
    cursor: pointer;
}

.category-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.category-member-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.category-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(21, 34, 56, 0.05);
    border-color: #0072bc;
}

.category-member-card.card-is-featured {
    border-color: #ffd200;
    box-shadow: 0 4px 12px rgba(255, 210, 0, 0.05);
}

.category-member-card.card-is-featured:hover {
    border-color: #ffd200;
    box-shadow: 0 10px 25px rgba(255, 210, 0, 0.15);
}

.btn-favorite-heart {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 4;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.btn-favorite-heart:hover {
    border-color: #ef4444;
    color: #ef4444;
    transform: scale(1.1);
}

.btn-favorite-heart.favorited {
    border-color: #fca5a5;
    background: #fff5f5;
}

.category-card-logo-container {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-card-logo-container .logo-svg,
.category-card-logo-container img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
}

.category-card-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.category-card-member-name {
    font-size: 14.5px;
    font-weight: 800;
    color: #152238;
    margin: 0 0 12px 0;
    line-height: 1.35;
}

.category-card-info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.4;
}

.category-card-info-item i {
    color: #0072bc;
    font-size: 12.5px;
    margin-top: 1px;
    flex-shrink: 0;
}

.category-card-info-item a {
    color: #64748b;
    text-decoration: none !important;
    transition: color 0.2s;
}

.category-card-info-item a:hover {
    color: #0072bc;
}

.category-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.category-tag-badge {
    font-size: 9.5px;
    font-weight: 700;
    background-color: #f1f5f9;
    color: #0072bc;
    padding: 3px 8px;
    border-radius: 100px;
}

/* Category Pagination */
.category-pagination-wrapper .page-link {
    font-size: 12.5px;
    font-weight: 700;
    color: #64748b;
    border-color: #eef2f6;
    padding: 8px 14px;
    transition: all 0.2s;
}

.category-pagination-wrapper .page-link:hover {
    background-color: #f8fafc;
    color: #0072bc;
    border-color: #cbd5e1;
}

.category-pagination-wrapper .page-item.active .page-link {
    background-color: #0072bc;
    border-color: #0072bc;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 114, 188, 0.15);
}

.category-pagination-wrapper .page-item.disabled .page-link {
    background-color: #ffffff;
    color: #cbd5e1;
    border-color: #eef2f6;
}

.pagination-next {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Grid and Panels */
@media (max-width: 1199px) {
    .category-listings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .category-header-banner {
        flex-direction: column;
        min-height: auto;
    }
    .category-banner-image-panel {
        display: none;
    }
    .category-banner-count-panel {
        width: 100%;
        clip-path: none;
        margin-left: 0;
        padding: 16px 24px;
        flex-direction: row;
        justify-content: center;
    }
    .count-panel-content {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    .count-icon {
        margin-bottom: 0;
    }
    .count-label {
        margin-top: 0;
    }
    .category-banner-info {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .category-listings-grid {
        grid-template-columns: 1fr;
    }
    .category-title-main {
        font-size: 22px;
    }
    .category-banner-info {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .category-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* ==========================================================================
   BUSINESS LISTING DETAIL PAGE
   ========================================================================== */
.member-detail-utility-bar {
    border-bottom: none;
    padding-bottom: 0;
}

.member-detail-action-buttons .btn {
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-action-share {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
}

.btn-action-share:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #1e293b;
}

.btn-action-save {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
}

.btn-action-save:hover {
    background: #f8fafc;
    border-color: #ef4444;
    color: #ef4444;
}

.btn-action-save.favorited {
    border-color: #fca5a5;
    background: #fff5f5;
    color: #ef4444;
}

.btn-action-join {
    background: #ffd200;
    border: 1px solid #ffd200;
    color: #152238;
    text-decoration: none !important;
}

.btn-action-join:hover {
    background: #e6bd00;
    border-color: #e6bd00;
    color: #152238;
}

.member-detail-hero-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 32px;
    align-items: center;
}

.member-detail-logo-wrapper {
    flex-shrink: 0;
}

.member-detail-logo-wrapper .logo-box {
    width: 140px;
    height: 140px;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #ffffff;
}

.member-detail-hero-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.member-since-badge {
    font-size: 11px;
    font-weight: 800;
    color: #22c55e;
    background: #f0fdf4;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
}

.member-detail-name {
    font-family: var(--body-font);
    font-size: 32px;
    font-weight: 800;
    color: #152238;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.member-detail-tagline {
    font-size: 15px;
    color: #475569;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.member-detail-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-hero-tag {
    font-size: 10.5px;
    font-weight: 700;
    background-color: #ebf5ff;
    color: #0072bc;
    padding: 4px 12px;
    border-radius: 100px;
}

.member-detail-contact-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    overflow: hidden;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #152238;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
}

.contact-label-title {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 12.5px;
    color: #334155;
    line-height: 1.45;
    font-weight: 600;
}

.contact-value-link {
    font-size: 12.5px;
    color: #0072bc;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.2s;
}

.contact-value-link:hover {
    color: #005a96;
}

.member-detail-map-wrapper {
    min-height: 250px;
}

.map-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.btn-open-google-maps {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0072bc;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.2s;
    z-index: 5;
}

.btn-open-google-maps:hover {
    background: #f8fafc;
    border-color: #0072bc;
    color: #005a96;
    transform: translateY(-1px);
}

.member-detail-about-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}

.about-card-title {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 800;
    color: #152238;
}

.about-card-text {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
}

.about-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-bullets-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #334155;
    font-weight: 600;
}

.bullet-check-icon {
    color: #22c55e;
    font-size: 15px;
    margin-top: 1px;
    flex-shrink: 0;
}

.about-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef2f6;
}

.about-business-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Upcoming Events Card */
.sidebar-events-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
}

.events-card-header {
    background: #152238;
    color: #ffffff;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.sidebar-event-item {
    text-align: left;
}

.event-date-badge {
    width: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.event-date-badge .date-month {
    background: #ebf5ff;
    color: #0072bc;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 0;
    letter-spacing: 0.5px;
}

.event-date-badge .date-day {
    background: #ffffff;
    color: #1e293b;
    font-size: 16px;
    font-weight: 800;
    padding: 6px 0;
    line-height: 1.1;
}

.event-title-side {
    font-size: 12.5px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 4px 0;
    line-height: 1.35;
}

.event-time-side {
    font-size: 11px;
    color: #64748b;
    margin: 0 0 8px 0;
}

.btn-event-details-side {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0072bc;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s;
    display: inline-block;
}

.btn-event-details-side:hover {
    background: #f8fafc;
    border-color: #0072bc;
    color: #005a96;
}

.btn-event-register-side {
    background: #10b981;
    border: 1px solid #10b981;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s;
    display: inline-block;
}

.btn-event-register-side:hover {
    background: #059669;
    border-color: #059669;
    color: #ffffff;
}

.view-all-events-link {
    font-size: 11.5px;
    font-weight: 700;
    color: #0072bc;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    transition: gap 0.2s;
}

.view-all-events-link:hover {
    color: #005a96;
}

.view-all-events-link i {
    transition: transform 0.2s;
}

.view-all-events-link:hover i {
    transform: translateX(3px);
}

/* Promotions Sidebar Card */
.sidebar-promotions-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    text-align: left;
}

.promo-card-title {
    font-size: 14px;
    font-weight: 800;
    color: #152238;
    margin: 0;
}

.promotions-split-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    display: flex;
}

.promo-banner-overlay-dark {
    width: 50%;
    background: #152238;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    text-align: left;
}

.promo-banner-heading {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.promo-banner-desc {
    font-size: 9.5px;
    color: #cbd5e1;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.btn-promo-learn-more {
    background: #ffd200;
    border: 1px solid #ffd200;
    color: #152238;
    font-size: 9.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none !important;
    transition: background-color 0.2s;
    align-self: flex-start;
    margin-top: auto;
}

.btn-promo-learn-more:hover {
    background: #e6bd00;
    border-color: #e6bd00;
    color: #152238;
}

.promo-banner-image {
    width: 50%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .member-detail-hero-card {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 24px;
    }
    .member-detail-logo-wrapper {
        align-self: center;
    }
    .member-detail-name {
        font-size: 26px;
    }
    .member-detail-map-wrapper {
        border-top: 1px solid #eef2f6;
    }
    .map-container {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .member-detail-action-buttons {
        width: 100%;
    }
    .member-detail-action-buttons .btn {
        flex: 1;
        justify-content: center;
        padding: 8px 10px;
        font-size: 11.5px;
    }
    .member-detail-logo-wrapper .logo-box {
        width: 110px;
        height: 110px;
        padding: 8px;
    }
    .member-detail-about-card {
        padding: 20px;
    }
    .about-card-text {
        font-size: 12.5px;
    }
    .promotions-split-banner {
        flex-direction: column;
        height: auto;
    }
    .promo-banner-overlay-dark,
    .promo-banner-image {
        width: 100%;
    }
    .promo-banner-image {
        height: 120px;
    }
}

/* ==========================================================================
   BUSINESS SPOTLIGHT PAGE - HIGH-FIDELITY UX/UI
   ========================================================================== */

/* Solid Navigation Bar for Subpage */
.spotlight-page-body .site-navbar {
    padding: 12px 0 !important;
    background: #152238 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.spotlight-page-wrapper {
    background-color: #f8fafc;
    padding-top: 130px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.spotlight-breadcrumbs {
    margin-bottom: 24px;
}

.spotlight-breadcrumbs .breadcrumb-item {
    font-size: 13px;
    font-weight: 500;
}

.spotlight-breadcrumbs .breadcrumb-item a {
    color: var(--bright-blue);
}

.spotlight-breadcrumbs .breadcrumb-item.active {
    color: var(--soft-text);
}

/* Hero Section */
.spotlight-hero-card {
    background: linear-gradient(135deg, #f0f6fc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.spotlight-hero-eyebrow {
    display: inline-block;
    color: var(--sky-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.spotlight-hero-title {
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.spotlight-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--soft-text);
    margin-bottom: 35px;
    max-width: 600px;
}

.spotlight-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 114, 188, 0.08);
    color: var(--bright-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 2px;
    color: var(--dark-text);
}

.benefit-content p {
    font-size: 13px;
    color: var(--soft-text);
    margin: 0;
}

/* Smartphone Mockup Container & SVG Background */
.phone-mockup-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueprint-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    pointer-events: none;
    z-index: 1;
}

/* High Fidelity Smartphone Frame */
.smartphone-frame {
    position: relative;
    width: 215px;
    height: 410px;
    background: #000000;
    border-radius: 36px;
    border: 8px solid #1a1a1a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    z-index: 2;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smartphone-frame:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 35px 60px -10px rgba(0, 114, 188, 0.25);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    flex-direction: column;
}

.phone-status-bar {
    height: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 9px;
    font-weight: 600;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}

.phone-status-icons {
    display: flex;
    gap: 4px;
}

.phone-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.phone-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.phone-header-info {
    display: flex;
    flex-direction: column;
}

.phone-title-name {
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.phone-title-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 7px;
    font-weight: 500;
}

.phone-video-content {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-top: -40px; /* pull under headers */
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-video-overlay-tint {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 3;
}

.phone-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 4;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.phone-play-btn:hover {
    transform: scale(1.1);
    background: var(--bright-blue);
    border-color: var(--bright-blue);
}

.phone-video-details {
    position: absolute;
    bottom: 20px;
    left: 12px;
    right: 45px;
    z-index: 4;
    color: #ffffff;
}

.phone-video-details h4 {
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 2px;
}

.phone-video-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 8px;
    margin: 0;
}

.phone-social-actions {
    position: absolute;
    bottom: 20px;
    right: 10px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.phone-social-actions .action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.phone-social-actions .action-item i {
    font-size: 14px;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.phone-social-actions .action-item i.active {
    color: #ff3b30;
}

.phone-social-actions .action-item span {
    font-size: 7px;
    font-weight: 600;
    margin-top: 1px;
}

.phone-home-indicator {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    z-index: 10;
}

/* Featured Card Styling */
.featured-spotlight-box {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.featured-spotlight-box:hover {
    transform: translateY(-4px);
    border-color: var(--bright-blue);
}

.featured-video-container {
    height: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-overlay-dark {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease;
}

.featured-spotlight-box:hover .video-overlay-dark {
    background: rgba(0, 0, 0, 0.35);
}

.featured-play-btn-large {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2.5px solid #ffffff;
    color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 4;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
}

.featured-spotlight-box:hover .featured-play-btn-large {
    transform: scale(1.12);
    background-color: var(--bright-blue);
    border-color: var(--bright-blue);
    box-shadow: 0 0 20px rgba(0, 114, 188, 0.4);
}

.featured-duration-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 4;
}

.featured-spotlight-content-wrapper {
    padding: 35px;
}

.featured-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.featured-brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.featured-brand-info {
    display: flex;
    flex-direction: column;
}

.featured-brand-name {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: var(--dark-text);
}

.featured-brand-loc {
    font-size: 11px;
    font-weight: 600;
    color: var(--soft-text);
}

.featured-brand-loc i {
    color: var(--bright-blue);
}

.featured-brand-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--soft-text);
    margin-bottom: 20px;
}

.featured-meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 600;
    color: var(--medium-gray);
}

.featured-meta-info i {
    color: var(--bright-blue);
    margin-right: 4px;
}

.featured-actions-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-watch-now {
    background-color: var(--bright-blue);
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-watch-now:hover {
    background-color: #005a96;
    color: #ffffff;
    transform: translateY(-1px);
}

.view-profile-link {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--bright-blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-profile-link i {
    transition: transform 0.2s;
}

.view-profile-link:hover {
    color: var(--primary-navy);
}

.view-profile-link:hover i {
    transform: translateX(4px);
}

/* Grid Video Cards */
.spotlight-video-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.spotlight-video-card:hover {
    transform: translateY(-5px);
    border-color: var(--bright-blue);
}

.card-video-thumb {
    height: 190px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 4;
    transition: transform 0.2s, background-color 0.2s;
}

.spotlight-video-card:hover .card-play-btn {
    transform: scale(1.1);
    background-color: var(--bright-blue);
    border-color: var(--bright-blue);
}

.card-duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 4;
}

.card-spotlight-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-brand-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.card-brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.card-brand-details {
    display: flex;
    flex-direction: column;
}

.card-video-category {
    font-size: 9px;
    font-weight: 800;
    color: var(--sky-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.card-video-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 3px;
    color: var(--dark-text);
}

.card-video-loc {
    font-size: 10.5px;
    color: var(--soft-text);
    font-weight: 500;
}

.card-video-loc i {
    color: var(--bright-blue);
}

.card-video-action {
    border-top: 1px solid #edf2f7;
    padding-top: 12px;
    margin-top: auto;
}

.card-video-action .view-profile-link {
    font-size: 11px;
}

/* Sidebar Styling */
.spotlight-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.sidebar-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0;
}

.sidebar-card-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 16px 0;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
}

.category-link-item:hover {
    background-color: rgba(0, 114, 188, 0.05);
    color: var(--bright-blue);
}

.category-link-item.active {
    background-color: rgba(0, 114, 188, 0.08);
    color: var(--bright-blue);
}

.category-count {
    font-size: 10.5px;
    font-weight: 700;
    background-color: #edf2f7;
    color: var(--soft-text);
    padding: 2px 8px;
    border-radius: 20px;
    transition: all 0.2s;
}

.category-link-item.active .category-count,
.category-link-item:hover .category-count {
    background-color: var(--bright-blue);
    color: #ffffff;
}

.view-all-categories-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--bright-blue);
}

/* Nomination Card specific */
.nomination-card {
    background: linear-gradient(135deg, rgba(0, 114, 188, 0.03) 0%, rgba(0, 114, 188, 0.08) 100%);
    border: 1px solid rgba(0, 114, 188, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nomination-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(0, 114, 188, 0.12);
    color: var(--bright-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.nomination-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.35;
    margin-bottom: 10px;
}

.nomination-text {
    font-size: 12.5px;
    color: var(--soft-text);
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-nominate-action {
    border: 1.5px solid var(--bright-blue);
    background-color: transparent;
    color: var(--bright-blue);
    font-size: 11.5px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-nominate-action:hover {
    background-color: var(--bright-blue);
    color: #ffffff;
}

/* Stay Updated specific */
.stay-updated-text {
    font-size: 12.5px;
    color: var(--soft-text);
    line-height: 1.5;
    margin-bottom: 16px;
}

.subscribe-input {
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 6px;
    border-color: #cbd5e1;
}

.subscribe-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.15);
    border-color: var(--bright-blue);
}

.btn-subscribe-action {
    background-color: var(--bright-blue);
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-subscribe-action:hover {
    background-color: #005a96;
}

.subscribe-success-message {
    padding: 10px 0;
}

.success-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(46, 189, 127, 0.12);
    color: #2ebd7f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Load More styling */
.btn-load-more {
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: var(--soft-text);
    font-size: 12.5px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-load-more:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
    color: var(--dark-text);
}

/* Sort Dropdown styling */
.sort-dropdown-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--soft-text);
}

.sort-dropdown-btn {
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: var(--dark-text);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
}

.sort-dropdown-btn:hover {
    background-color: #f8fafc;
}

/* Video Modal customization */
.video-player-modal .modal-content {
    background-color: #1a202c;
    border-radius: 16px;
    overflow: hidden;
}

.video-player-modal .btn-close-white {
    filter: invert(1) grayscale(1) brightness(2);
}

.modal-desc-text {
    font-size: 13.5px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .spotlight-hero-card {
        padding: 40px;
    }
    
    .spotlight-hero-title {
        font-size: 32px;
    }
    
    .phone-mockup-wrapper {
        margin-top: 40px;
        height: auto;
    }
    
    .blueprint-bg {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 767px) {
    .featured-spotlight-box .row {
        flex-direction: column;
    }
    
    .featured-video-container {
        min-height: 200px;
    }
}

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

/* Solid Navigation Bar for Subpage */
.news-page-body .site-navbar {
    padding: 12px 0 !important;
    background: #152238 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Page layout wrappers */
.news-page-wrapper {
    padding: 130px 0 80px 0;
    background-color: #fafbfc;
}

.news-main-content {
    position: relative;
}

/* Breadcrumbs */
.news-breadcrumbs {
    margin-bottom: 24px;
}

.news-breadcrumbs .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
}

.news-breadcrumbs .breadcrumb-item a {
    color: var(--bright-blue);
    font-weight: 600;
}

.news-breadcrumbs .breadcrumb-item.active {
    color: var(--soft-text);
}

/* Page Intro Heading and Illustration */
.news-header-intro-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.news-header-intro-text {
    flex: 1;
}

.news-kicker {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--bright-blue);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.news-page-title {
    font-family: var(--body-font);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 12px 0;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.news-page-subtitle {
    font-size: 16px;
    color: var(--soft-text);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.news-header-illustration {
    flex-shrink: 0;
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .news-header-intro-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .news-header-illustration {
        align-self: center;
        max-width: 240px;
    }
    .news-page-title {
        font-size: 32px;
    }
}

/* Search & Filter Bar */
.news-filter-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.news-filter-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr auto;
    gap: 16px;
    align-items: center;
}

.news-filter-row .search-input-container,
.news-filter-row .dropdown-wrapper {
    position: relative;
    width: 100%;
}

.news-filter-row .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--soft-text);
    font-size: 14px;
    pointer-events: none;
}

.news-filter-row .filter-search-input {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px 10px 38px;
    font-size: 14px;
    color: var(--dark-text);
    background: #ffffff;
    transition: all 0.2s ease;
}

.news-filter-row .filter-search-input:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

.news-filter-row .dropdown-left-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--soft-text);
    font-size: 14px;
    pointer-events: none;
}

.news-filter-row .dropdown-arrow-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--soft-text);
    font-size: 11px;
    pointer-events: none;
}

.news-filter-row .filter-select-custom {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 32px 10px 38px;
    font-size: 14px;
    color: var(--dark-text);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.news-filter-row .filter-select-custom:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

.btn-apply-filters {
    background-color: var(--bright-blue);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 8px;
    border: none;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.btn-apply-filters:hover {
    background-color: #005a96;
}

@media (max-width: 991px) {
    .news-filter-row {
        grid-template-columns: 1fr 1fr;
    }
    .filter-col-button {
        grid-column: span 2;
    }
    .btn-apply-filters {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .news-filter-row {
        grid-template-columns: 1fr;
    }
    .filter-col-button {
        grid-column: span 1;
    }
}

/* Featured News Card (Horizontal) */
.featured-news-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 350px;
}

.featured-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.featured-card-row {
    display: flex;
    height: 100%;
}

.featured-img-col {
    flex: 0 0 45%;
    max-width: 45%;
}

.featured-img-wrap {
    position: relative;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.featured-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-news-card:hover .featured-news-img {
    transform: scale(1.03);
}

.featured-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: var(--bright-blue);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 114, 188, 0.25);
}

.featured-content-col {
    flex: 0 0 55%;
    max-width: 55%;
    display: flex;
    align-items: center;
}

.featured-card-body-content {
    padding: 32px 40px;
}

.news-card-category {
    font-size: 11px;
    font-weight: 800;
    color: var(--bright-blue);
    letter-spacing: 1px;
    display: inline-block;
}

.featured-card-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    margin: 8px 0;
}

.featured-card-title a {
    color: var(--primary-navy);
    transition: color 0.2s;
}

.featured-card-title a:hover {
    color: var(--bright-blue);
}

.featured-card-excerpt {
    font-size: 14px;
    color: var(--soft-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-card-meta {
    display: flex;
    gap: 20px;
    font-size: 12.5px;
    color: var(--soft-text);
}

.news-card-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card-meta .meta-item i {
    color: #94a3b8;
}

.read-more-link {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--bright-blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}

.read-more-link i {
    transition: transform 0.2s;
}

.read-more-link:hover {
    color: var(--primary-navy);
}

.read-more-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .featured-news-card {
        height: auto;
    }
    .featured-card-row {
        flex-direction: column;
    }
    .featured-img-col, 
    .featured-content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .featured-img-wrap {
        min-height: 240px;
        height: 240px;
    }
    .featured-card-body-content {
        padding: 24px;
    }
    .featured-card-title {
        font-size: 22px;
    }
}

/* Latest News Grid */
.latest-news-heading {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-navy);
}

.news-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-card);
}

.news-card-img-wrap {
    height: 180px;
    overflow: hidden;
    position: relative;
    background-color: #f1f5f9;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-title {
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.45;
    margin: 8px 0;
}

.news-card-title a {
    color: var(--primary-navy);
    transition: color 0.2s;
}

.news-card-title a:hover {
    color: var(--bright-blue);
}

.news-card-excerpt {
    font-size: 13px;
    color: var(--soft-text);
    line-height: 1.5;
    margin-bottom: 16px;
}

.news-card-content .news-card-meta {
    margin-top: auto;
    font-size: 11.5px;
}

/* Category Badges / Tags colors */
.news-card-col[data-category="business"] .news-card-category {
    color: #e04f1a;
}
.news-card-col[data-category="community"] .news-card-category {
    color: var(--bright-blue);
}
.news-card-col[data-category="education"] .news-card-category {
    color: #10b981;
}
.news-card-col[data-category="events"] .news-card-category {
    color: #8b5cf6;
}

/* Pagination Customizations */
.news-pagination-nav .pagination {
    gap: 8px;
}

.news-pagination-nav .page-item .page-link {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: var(--soft-text);
    font-size: 13.5px;
    font-weight: 700;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.news-pagination-nav .page-item.active .page-link {
    background-color: var(--bright-blue);
    border-color: var(--bright-blue);
    color: #ffffff;
}

.news-pagination-nav .page-item:not(.active):not(.disabled) .page-link:hover {
    background-color: #f1f5f9;
    color: var(--dark-text);
    border-color: #94a3b8;
}

/* Sidebar Widgets for News */
.news-sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.news-sidebar-widget .news-widget-title {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    background-color: var(--primary-navy);
    margin: -24px -24px 20px -24px;
    padding: 16px 24px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
}

/* News Categories Widget */
.news-categories-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.news-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--soft-text);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
}

.news-category-item:hover {
    background-color: #f8fafc;
    color: var(--dark-text);
}

.news-category-item.active {
    background-color: #eff6ff;
    color: var(--bright-blue);
}

.news-category-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-category-left i {
    font-size: 14px;
}

.news-category-count {
    font-size: 11.5px;
    font-weight: 700;
    color: #94a3b8;
}

.news-category-item.active .news-category-count {
    color: var(--bright-blue);
}

.view-all-categories-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--bright-blue);
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.view-all-categories-link:hover {
    color: var(--primary-navy);
}

/* Trending Widget */
.news-trending-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-trending-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.news-trending-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bright-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11.5px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.news-trending-content {
    flex: 1;
}

.news-trending-title {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 4px 0;
}

.news-trending-title a {
    color: var(--dark-text);
    transition: color 0.2s;
}

.news-trending-title a:hover {
    color: var(--bright-blue);
}

.news-trending-date {
    font-size: 11px;
    color: var(--soft-text);
}

/* Newsletter Widget */
.news-newsletter-widget {
    background-color: #eff6ff;
    border: none;
    text-align: center;
    padding: 32px 24px;
}

.newsletter-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--bright-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 114, 188, 0.08);
}

.newsletter-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.newsletter-desc {
    font-size: 13px;
    color: var(--soft-text);
    line-height: 1.5;
    margin: 0;
}

.newsletter-input {
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    text-align: center;
}

.newsletter-input:focus {
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

.btn-subscribe-newsletter {
    background-color: var(--bright-blue);
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px;
    border-radius: 8px;
    border: none;
    transition: background-color 0.2s;
}

.btn-subscribe-newsletter:hover {
    background-color: #005a96;
}

/* ==========================================================================
   JOB BOARD SECTION
   ========================================================================== */

/* Solid Navigation Bar for Subpage */
.jobs-page-body .site-navbar {
    padding: 12px 0 !important;
    background: #152238 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Page layout wrappers */
.jobs-page-wrapper {
    padding: 130px 0 80px 0;
    background-color: #fafbfc;
}

.jobs-main-content {
    position: relative;
}

/* Breadcrumbs */
.jobs-breadcrumbs {
    margin-bottom: 24px;
}

.jobs-breadcrumbs .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
}

.jobs-breadcrumbs .breadcrumb-item a {
    color: var(--bright-blue);
    font-weight: 600;
}

.jobs-breadcrumbs .breadcrumb-item.active {
    color: var(--soft-text);
}

/* Page Intro Heading and Illustration */
.jobs-header-intro-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.jobs-header-intro-text {
    flex: 1;
}

.jobs-kicker {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--bright-blue);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.jobs-page-title {
    font-family: var(--body-font);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 12px 0;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.jobs-page-subtitle {
    font-size: 16px;
    color: var(--soft-text);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.jobs-header-illustration {
    flex-shrink: 0;
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .jobs-header-intro-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .jobs-header-illustration {
        align-self: center;
        max-width: 240px;
    }
    .jobs-page-title {
        font-size: 32px;
    }
}

/* Search & Filter Bar */
.jobs-filter-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.jobs-filter-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr auto;
    gap: 16px;
    align-items: center;
}

.jobs-filter-row .search-input-container,
.jobs-filter-row .dropdown-wrapper {
    position: relative;
    width: 100%;
}

.jobs-filter-row .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--soft-text);
    font-size: 14px;
    pointer-events: none;
}

.jobs-filter-row .filter-search-input {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px 10px 38px;
    font-size: 14px;
    color: var(--dark-text);
    background: #ffffff;
    transition: all 0.2s ease;
}

.jobs-filter-row .filter-search-input:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

.jobs-filter-row .dropdown-left-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--soft-text);
    font-size: 14px;
    pointer-events: none;
}

.jobs-filter-row .dropdown-arrow-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--soft-text);
    font-size: 11px;
    pointer-events: none;
}

.jobs-filter-row .filter-select-custom {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 32px 10px 38px;
    font-size: 14px;
    color: var(--dark-text);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.jobs-filter-row .filter-select-custom:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

@media (max-width: 991px) {
    .jobs-filter-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .jobs-filter-row {
        grid-template-columns: 1fr;
    }
}

/* Job Listing Cards (Vertical List style) */
.jobs-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-list-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.job-list-card:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-card);
}

.job-card-logo-area {
    width: 80px;
    height: 80px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.job-company-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.job-card-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.job-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 8px;
}

.job-company-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--bright-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.job-title-text {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}

.job-title-text a {
    color: var(--primary-navy);
    transition: color 0.2s;
}

.job-title-text a:hover {
    color: var(--bright-blue);
}

.job-card-excerpt {
    font-size: 13.5px;
    color: var(--soft-text);
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.job-card-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: var(--soft-text);
    margin-bottom: 20px;
}

.job-card-meta-row .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-card-meta-row .meta-item i {
    color: #94a3b8;
    font-size: 13px;
}

.job-card-actions {
    margin-top: auto;
}

.btn-view-job {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--primary-navy);
    color: var(--primary-navy) !important;
    background: transparent;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-view-job:hover {
    background: var(--primary-navy);
    color: #ffffff !important;
}

/* Job Type Badges */
.job-type-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.type-full-time {
    background-color: #ecfdf5;
    color: #047857;
}

.type-part-time {
    background-color: #f5f3ff;
    color: #6d28d9;
}

.type-internship {
    background-color: #fff7ed;
    color: #c2410c;
}

@media (max-width: 768px) {
    .job-list-card {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    .job-card-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Sidebar Widgets for Jobs */
.employer-cta-widget {
    background-color: var(--primary-navy);
    color: #ffffff;
    text-align: center;
    padding: 32px 24px;
    border: none;
}

.employer-cta-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
}

.employer-cta-title {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.employer-cta-desc {
    font-size: 13px;
    color: #e2e8f0;
    line-height: 1.5;
    margin: 0;
}

.btn-post-job {
    background-color: var(--accent-lime);
    color: var(--primary-navy) !important;
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px;
    border-radius: 8px;
    border: none;
    transition: background-color 0.2s;
}

.btn-post-job:hover {
    background-color: #fce838;
}

/* Jobs Sidebar Lists */
.jobs-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.jobs-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--soft-text);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
}

.jobs-list-item:hover {
    background-color: #f8fafc;
    color: var(--dark-text);
}

.jobs-list-item.active {
    background-color: #eff6ff;
    color: var(--bright-blue);
}

.jobs-list-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jobs-list-left i {
    font-size: 14px;
}

.jobs-list-count {
    font-size: 11.5px;
    font-weight: 700;
    color: #94a3b8;
}

.jobs-list-item.active .jobs-list-count {
    color: var(--bright-blue);
}

.jobs-pagination-nav .pagination {
    gap: 8px;
}

.jobs-pagination-nav .page-item .page-link {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: var(--soft-text);
    font-size: 13.5px;
    font-weight: 700;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.jobs-pagination-nav .page-item.active .page-link {
    background-color: var(--bright-blue);
    border-color: var(--bright-blue);
    color: #ffffff;
}

.jobs-pagination-nav .page-item:not(.active):not(.disabled) .page-link:hover {
    background-color: #f1f5f9;
    color: var(--dark-text);
    border-color: #94a3b8;
}

/* ==========================================================================
   MEMBER PROMOTIONS / DEALS SECTION
   ========================================================================== */

/* Solid Navigation Bar for Subpage */
.deals-page-body .site-navbar {
    padding: 12px 0 !important;
    background: #152238 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Page layout wrappers */
.deals-page-wrapper {
    padding: 130px 0 80px 0;
    background-color: #fafbfc;
}

.deals-main-content {
    position: relative;
}

/* Breadcrumbs */
.deals-breadcrumbs {
    margin-bottom: 24px;
}

.deals-breadcrumbs .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
}

.deals-breadcrumbs .breadcrumb-item a {
    color: var(--bright-blue);
    font-weight: 600;
}

.deals-breadcrumbs .breadcrumb-item.active {
    color: var(--soft-text);
}

/* Page Intro Heading and Illustration */
.deals-header-intro-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.deals-header-intro-text {
    flex: 1;
}

.deals-kicker {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--bright-blue);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.deals-page-title {
    font-family: var(--body-font);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 12px 0;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.deals-page-subtitle {
    font-size: 16px;
    color: var(--soft-text);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.deals-header-illustration {
    flex-shrink: 0;
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .deals-header-intro-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .deals-header-illustration {
        align-self: center;
        max-width: 240px;
    }
    .deals-page-title {
        font-size: 32px;
    }
}

/* Search & Filter Bar */
.deals-filter-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.deals-filter-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 16px;
    align-items: center;
}

.deals-filter-row .search-input-container,
.deals-filter-row .dropdown-wrapper {
    position: relative;
    width: 100%;
}

.deals-filter-row .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--soft-text);
    font-size: 14px;
    pointer-events: none;
}

.deals-filter-row .filter-search-input {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px 10px 38px;
    font-size: 14px;
    color: var(--dark-text);
    background: #ffffff;
    transition: all 0.2s ease;
}

.deals-filter-row .filter-search-input:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

.deals-filter-row .dropdown-left-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--soft-text);
    font-size: 14px;
    pointer-events: none;
}

.deals-filter-row .dropdown-arrow-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--soft-text);
    font-size: 11px;
    pointer-events: none;
}

.deals-filter-row .filter-select-custom {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 32px 10px 38px;
    font-size: 14px;
    color: var(--dark-text);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.deals-filter-row .filter-select-custom:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

/* Sort layout */
.sort-dropdown-wrapper-deals {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.sort-dropdown-wrapper-deals .sort-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--soft-text);
    white-space: nowrap;
}

.sort-dropdown-wrapper-deals .sort-select-wrap {
    width: 120px;
}

.sort-dropdown-wrapper-deals .sort-select {
    padding: 10px 24px 10px 14px;
}

@media (max-width: 991px) {
    .deals-filter-row {
        grid-template-columns: 1fr 1fr;
    }
    .sort-dropdown-wrapper-deals {
        justify-content: flex-start;
    }
    .sort-dropdown-wrapper-deals .sort-select-wrap {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .deals-filter-row {
        grid-template-columns: 1fr;
    }
}

/* Promotion Cards Grid */
.deal-list-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.deal-list-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-card);
}

.deal-card-img-area {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #f1f5f9;
}

.deal-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.deal-list-card:hover .deal-card-img {
    transform: scale(1.04);
}

/* Image overlays for deals */
.deal-img-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 34, 56, 0.82);
    padding: 24px;
    text-align: center;
    color: #ffffff;
}

.overlay-inner-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.overlay-inner-text strong {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: var(--accent-lime);
}

.overlay-inner-text span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.95;
}

/* Food/dining overlay variant (light translucent) */
.overlay-food {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-navy);
    backdrop-filter: blur(2px);
    border: 12px solid rgba(21, 34, 56, 0.05);
}

.overlay-inner-text-food {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.overlay-inner-text-food strong {
    font-size: 26px;
    font-weight: 800;
    color: #d9381e;
    letter-spacing: 0.5px;
}

.overlay-inner-text-food span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-navy);
    text-transform: uppercase;
}

/* Card Content Area */
.deal-card-content-area {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.deal-card-top-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.featured-capsule {
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    color: #d97706;
    font-size: 9.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
}

.deal-header-brand-text {
    font-size: 10px;
    font-weight: 800;
    color: var(--soft-text);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.2;
}

.deal-company-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--bright-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-title-text {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    margin: 6px 0 10px 0;
}

.deal-title-text a {
    color: var(--primary-navy);
    transition: color 0.2s;
}

.deal-title-text a:hover {
    color: var(--bright-blue);
}

.deal-card-excerpt {
    font-size: 13.5px;
    color: var(--soft-text);
    line-height: 1.5;
    margin-bottom: 16px;
}

.deal-card-meta-row {
    margin-top: auto;
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--soft-text);
    margin-bottom: 18px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.deal-card-meta-row .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.deal-card-meta-row .meta-item i {
    color: #94a3b8;
}

.deal-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-view-deal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1.5px solid var(--bright-blue);
    color: var(--bright-blue) !important;
    background: transparent;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-view-deal:hover {
    background: var(--bright-blue);
    color: #ffffff !important;
}

.btn-download-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1.5px solid #e2e8f0;
    color: var(--soft-text) !important;
    background: transparent;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-download-pdf:hover {
    background: #f8fafc;
    color: var(--dark-text) !important;
    border-color: #cbd5e1;
}

/* Sidebar Widgets for Deals */
.deals-sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.deals-sidebar-widget .deals-widget-title {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 16px 0;
}

/* Sidebar Exclusive Offers Callout */
.exclusive-offers-widget {
    background-color: #eff6ff;
    border: none;
    text-align: center;
    padding: 32px 24px;
}

.exclusive-offers-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--bright-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 114, 188, 0.08);
}

.exclusive-offers-title {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.exclusive-offers-desc {
    font-size: 13px;
    color: var(--soft-text);
    line-height: 1.5;
    margin: 0;
}

/* Deals Sidebar Categories List */
.deals-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deals-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--soft-text);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
}

.deals-list-item:hover {
    background-color: #f8fafc;
    color: var(--dark-text);
}

.deals-list-item.active {
    background-color: #eff6ff;
    color: var(--bright-blue);
}

.deals-list-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.deals-list-left i {
    font-size: 14px;
}

.deals-list-count {
    font-size: 11.5px;
    font-weight: 700;
    color: #94a3b8;
}

.deals-list-item.active .deals-list-count {
    color: var(--bright-blue);
}

.deals-categories-footer {
    margin-top: 16px;
}

/* How to Redeem Step Timeline */
.redeem-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.redeem-step-item {
    display: flex;
    gap: 16px;
}

.step-badge-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: var(--bright-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.step-line {
    width: 2px;
    flex-grow: 1;
    min-height: 44px;
    background-color: #e2e8f0;
    margin: 4px 0;
}

.step-content {
    padding-bottom: 24px;
}

.step-title {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 4px 0 4px 0;
}

.step-desc {
    font-size: 12.5px;
    color: var(--soft-text);
    line-height: 1.45;
    margin: 0;
}

/* Pagination for deals */
.deals-pagination-nav .pagination {
    gap: 8px;
}

.deals-pagination-nav .page-item .page-link {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: var(--soft-text);
    font-size: 13.5px;
    font-weight: 700;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.deals-pagination-nav .page-item.active .page-link {
    background-color: var(--bright-blue);
    border-color: var(--bright-blue);
    color: #ffffff;
}

.deals-pagination-nav .page-item:not(.active):not(.disabled) .page-link:hover {
    background-color: #f1f5f9;
    color: var(--dark-text);
    border-color: #94a3b8;
}

/* ==========================================================================
   GALLERY / PHOTO ALBUMS SECTION
   ========================================================================== */

/* Solid Navigation Bar for Subpage */
.gallery-page-body .site-navbar {
    padding: 12px 0 !important;
    background: #152238 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Page layout wrappers */
.gallery-page-wrapper {
    padding: 130px 0 80px 0;
    background-color: #fafbfc;
}

.gallery-main-content {
    position: relative;
}

/* Breadcrumbs */
.gallery-breadcrumbs {
    margin-bottom: 24px;
}

.gallery-breadcrumbs .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
}

.gallery-breadcrumbs .breadcrumb-item a {
    color: var(--bright-blue);
    font-weight: 600;
}

.gallery-breadcrumbs .breadcrumb-item.active {
    color: var(--soft-text);
}

/* Gallery Intro Section & Controls */
.gallery-header-intro-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.gallery-header-intro-text {
    flex: 1;
}

.gallery-page-title {
    font-family: var(--body-font);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 12px 0;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.gallery-page-subtitle {
    font-size: 16px;
    color: var(--soft-text);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.gallery-controls-area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-top: 10px;
}

.gallery-filters-group {
    display: flex;
    gap: 8px;
}

.btn-gallery-filter {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-gallery-filter:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
}

.btn-gallery-filter.active {
    background: var(--primary-navy) !important;
    border-color: var(--primary-navy) !important;
    color: #ffffff !important;
}

.gallery-layout-toggles {
    display: flex;
    background: #e2e8f0;
    padding: 4px;
    border-radius: 8px;
    gap: 2px;
}

.btn-layout-toggle {
    background: transparent;
    border: none;
    color: #64748b;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-layout-toggle:hover {
    color: var(--primary-navy);
}

.btn-layout-toggle.active {
    background: #ffffff !important;
    color: var(--primary-navy) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Albums Grid Layout */
.gallery-albums-container {
    transition: all 0.3s ease;
}

/* Asymmetric Grid Layout (Desktop - show-all mode) */
.gallery-albums-container.view-grid.show-all {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

/* Card 1: Featured */
.gallery-albums-container.view-grid.show-all .gallery-album-card.featured-album {
    grid-column: span 6;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.gallery-albums-container.view-grid.show-all .gallery-album-card.featured-album .album-img-wrap {
    flex-grow: 1;
    height: 100%;
}

.gallery-albums-container.view-grid.show-all .gallery-album-card.featured-album .album-img {
    height: 100%;
    min-height: 380px;
}

/* Card 2: Street Fair */
.gallery-albums-container.view-grid.show-all .gallery-album-card:nth-child(2) {
    grid-column: span 6;
    grid-row: span 1;
}

/* Card 3: Horizontal Kick Off */
.gallery-albums-container.view-grid.show-all .gallery-album-card.horizontal-on-desktop {
    grid-column: span 6;
    grid-row: span 1;
    display: flex;
    flex-direction: row;
}

.gallery-albums-container.view-grid.show-all .gallery-album-card.horizontal-on-desktop .album-img-wrap {
    width: 40%;
    height: auto;
    flex-shrink: 0;
}

.gallery-albums-container.view-grid.show-all .gallery-album-card.horizontal-on-desktop .album-img {
    height: 100%;
}

.gallery-albums-container.view-grid.show-all .gallery-album-card.horizontal-on-desktop .album-content-wrap {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Cards 4, 5, 6: Bottom row */
.gallery-albums-container.view-grid.show-all .gallery-album-card:nth-child(4),
.gallery-albums-container.view-grid.show-all .gallery-album-card:nth-child(5),
.gallery-albums-container.view-grid.show-all .gallery-album-card:nth-child(6) {
    grid-column: span 4;
}

/* Cards 7+: Continue in 3-column rows */
.gallery-albums-container.view-grid.show-all .gallery-album-card:nth-child(n+7) {
    grid-column: span 4;
}

/* Uniform Grid Layout (when filtered) */
.gallery-albums-container.view-grid:not(.show-all) {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.gallery-albums-container.view-grid:not(.show-all) .gallery-album-card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
}

.gallery-albums-container.view-grid:not(.show-all) .gallery-album-card.horizontal-on-desktop {
    flex-direction: column;
}

.gallery-albums-container.view-grid:not(.show-all) .gallery-album-card.horizontal-on-desktop .album-img-wrap {
    width: 100%;
}

.gallery-albums-container.view-grid:not(.show-all) .gallery-album-card.horizontal-on-desktop .album-content-wrap {
    width: 100%;
}

/* List Layout (Dynamic toggle) */
.gallery-albums-container.view-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gallery-albums-container.view-list .gallery-album-card {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.gallery-albums-container.view-list .gallery-album-card .album-img-wrap {
    width: 30%;
    max-width: 280px;
    height: auto;
    flex-shrink: 0;
}

.gallery-albums-container.view-list .gallery-album-card .album-img {
    height: 100%;
}

.gallery-albums-container.view-list .gallery-album-card .album-content-wrap {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-albums-container.view-list .gallery-album-card.horizontal-on-desktop {
    flex-direction: row;
}

.gallery-albums-container.view-list .gallery-album-card.horizontal-on-desktop .album-img-wrap {
    width: 30%;
    max-width: 280px;
}

.gallery-albums-container.view-list .gallery-album-card.horizontal-on-desktop .album-content-wrap {
    width: 70%;
}

/* Individual Card Styling */
.gallery-album-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-album-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-card);
}

.album-img-wrap {
    position: relative;
    overflow: hidden;
    background-color: #f1f5f9;
}

.album-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    cursor: pointer;
}

.gallery-album-card:hover .album-img {
    transform: scale(1.04);
}

/* Featured Badge overlay */
.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #f59e0b;
    color: #000000;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.album-content-wrap {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.album-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 10px 0;
}

.album-title a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.2s;
}

.album-title a:hover {
    color: var(--bright-blue);
}

.album-excerpt {
    font-size: 14px;
    color: var(--soft-text);
    line-height: 1.5;
    margin-bottom: 18px;
}

.album-meta-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--soft-text);
    margin-bottom: 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.album-meta-row .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.album-meta-row .meta-item i {
    color: #94a3b8;
}

.album-meta-row .meta-item-separator {
    color: #cbd5e1;
}

.btn-view-gallery {
    font-size: 13px;
    font-weight: 700;
    color: var(--bright-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.btn-view-gallery:hover {
    color: var(--primary-navy);
}

/* Lightbox overlay popup styles */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 38px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-content-container {
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lightbox-main-view {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    height: 60vh;
}

.lightbox-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 41, 59, 0.6);
    border: none;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    opacity: 0.8;
}

.lightbox-nav-btn:hover {
    background: rgba(30, 41, 59, 0.9);
    opacity: 1;
}

.lightbox-nav-btn.prev {
    left: 16px;
}

.lightbox-nav-btn.next {
    right: 16px;
}

.lightbox-meta-panel {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.lightbox-album-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px 0;
}

.lightbox-photo-caption {
    font-size: 13.5px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

.lightbox-photo-counter {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

/* ==========================================================================
   MEDIA QUERIES FOR GALLERY SECTION
   ========================================================================== */
@media (max-width: 1200px) {
    .gallery-albums-container.view-grid.show-all .gallery-album-card.horizontal-on-desktop {
        flex-direction: column;
    }
    .gallery-albums-container.view-grid.show-all .gallery-album-card.horizontal-on-desktop .album-img-wrap {
        width: 100%;
        height: 220px;
    }
    .gallery-albums-container.view-grid.show-all .gallery-album-card.horizontal-on-desktop .album-content-wrap {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .gallery-header-intro-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .gallery-controls-area {
        width: 100%;
        justify-content: space-between;
        margin-top: 0;
    }
    
    /* Force 2 columns on tablet grid */
    .gallery-albums-container.view-grid.show-all,
    .gallery-albums-container.view-grid:not(.show-all) {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .gallery-albums-container.view-grid.show-all .gallery-album-card.featured-album,
    .gallery-albums-container.view-grid.show-all .gallery-album-card:nth-child(2),
    .gallery-albums-container.view-grid.show-all .gallery-album-card.horizontal-on-desktop,
    .gallery-albums-container.view-grid.show-all .gallery-album-card:nth-child(4),
    .gallery-albums-container.view-grid.show-all .gallery-album-card:nth-child(5),
    .gallery-albums-container.view-grid.show-all .gallery-album-card:nth-child(6),
    .gallery-albums-container.view-grid.show-all .gallery-album-card:nth-child(n+7),
    .gallery-albums-container.view-grid:not(.show-all) .gallery-album-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .gallery-albums-container.view-grid.show-all .gallery-album-card.featured-album .album-img-wrap {
        height: auto;
    }
    .gallery-albums-container.view-grid.show-all .gallery-album-card.featured-album .album-img {
        min-height: 220px;
        height: 220px;
    }
    
    /* List layout adjustments */
    .gallery-albums-container.view-list .gallery-album-card {
        flex-direction: column;
    }
    .gallery-albums-container.view-list .gallery-album-card .album-img-wrap {
        width: 100%;
        max-width: 100%;
        height: 220px;
    }
    .gallery-albums-container.view-list .gallery-album-card .album-content-wrap {
        width: 100%;
    }
    
    .gallery-albums-container.view-list .gallery-album-card.horizontal-on-desktop {
        flex-direction: column;
    }
    .gallery-albums-container.view-list .gallery-album-card.horizontal-on-desktop .album-img-wrap {
        width: 100%;
        max-width: 100%;
        height: 220px;
    }
    .gallery-albums-container.view-list .gallery-album-card.horizontal-on-desktop .album-content-wrap {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .gallery-page-title {
        font-size: 32px;
    }
    .gallery-controls-area {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
    }
    .gallery-layout-toggles {
        align-self: flex-end;
    }
    .gallery-filters-group {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    /* Force 1 column on mobile grid */
    .gallery-albums-container.view-grid.show-all,
    .gallery-albums-container.view-grid:not(.show-all) {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .lightbox-main-view {
        height: 40vh;
    }
    .lightbox-meta-panel {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .lightbox-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* ==========================================================================
   ABOUT THE CHAMBER SECTION
   ========================================================================== */

/* Solid Navigation Bar for About Page */
.about-page-body .site-navbar {
    padding: 12px 0 !important;
    background: #152238 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Page layout wrappers */
.about-page-wrapper {
    padding: 130px 0 80px 0;
    background-color: #fafbfc;
}

.about-main-content {
    position: relative;
}

/* Breadcrumbs */
.about-breadcrumbs {
    margin-bottom: 24px;
}

.about-breadcrumbs .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
}

.about-breadcrumbs .breadcrumb-item a {
    color: var(--bright-blue);
    font-weight: 600;
}

.about-breadcrumbs .breadcrumb-item.active {
    color: var(--soft-text);
}

/* Page Intro Heading & Banner Row */
.about-header-intro-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.about-header-intro-text {
    flex: 1.2;
}

.about-kicker {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--bright-blue);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.about-page-title {
    font-family: var(--body-font);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 16px 0;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.about-page-subtitle {
    font-size: 18px;
    color: var(--soft-text);
    line-height: 1.6;
    margin: 0;
}

.about-header-banner-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-header-banner {
    width: 100%;
    max-width: 500px;
    height: 320px;
    object-fit: cover;
    border-top-left-radius: 160px;
    border-bottom-left-radius: 160px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

/* Description Text */
.about-description-text p {
    font-size: 15.5px;
    color: var(--soft-text);
    line-height: 1.75;
    margin-bottom: 24px;
}

/* Sidebar Widgets Stack */
.about-sidebar-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.about-sidebar-widget .widget-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: var(--bright-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-sidebar-widget .widget-title {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 6px 0;
}

.about-sidebar-widget .widget-desc {
    font-size: 13.5px;
    color: var(--soft-text);
    line-height: 1.5;
    margin: 0;
}

/* Impact Section Styling */
.about-impact-section {
    margin-top: 80px;
    border-top: 1px solid #e2e8f0;
    padding-top: 80px;
}

.impact-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.impact-kicker {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--bright-blue);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.impact-title {
    font-family: var(--body-font);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0;
    letter-spacing: -0.6px;
}

.about-impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.about-impact-card {
    background: #152238;
    border: none;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.impact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 210, 0, 0.1);
    color: #ffd200;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: background-color 0.2s, color 0.2s;
}

.about-impact-card:hover .impact-card-icon {
    background-color: #ffd200;
    color: #152238;
}

.impact-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.impact-card-desc {
    font-size: 12.5px;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
}

/* Call to Action Banner */
.about-cta-banner-wrap {
    margin-top: 80px;
}

.about-cta-banner {
    background-color: #eff6ff;
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-left-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.cta-badge-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--bright-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 114, 188, 0.08);
    flex-shrink: 0;
}

.cta-badge-icon .plus-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background-color: var(--bright-blue);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.cta-text-content {
    flex: 1;
}

.cta-title {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 4px 0;
}

.cta-subtitle {
    font-size: 14px;
    color: var(--soft-text);
    margin: 0;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cta-outline {
    background-color: transparent;
    border: 1.5px solid var(--bright-blue);
    color: var(--bright-blue) !important;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-cta-outline:hover {
    background-color: rgba(0, 114, 188, 0.05);
    color: var(--primary-navy) !important;
    border-color: var(--primary-navy);
}

.btn-cta-filled {
    background-color: var(--bright-blue);
    border: 1.5px solid var(--bright-blue);
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 114, 188, 0.15);
}

.btn-cta-filled:hover {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(21, 34, 56, 0.2);
}

/* ==========================================================================
   MEDIA QUERIES FOR ABOUT PAGE
   ========================================================================== */
@media (max-width: 991px) {
    .about-header-intro-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .about-header-banner-wrap {
        width: 100%;
        justify-content: center;
    }
    .about-header-banner {
        max-width: 100%;
        height: 280px;
        border-top-left-radius: 120px;
        border-bottom-left-radius: 120px;
    }
    .about-impact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .about-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }
    .cta-left-content {
        width: 100%;
    }
    .cta-buttons {
        width: 100%;
    }
    .btn-cta-outline,
    .btn-cta-filled {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-page-title {
        font-size: 32px;
    }
    .about-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-impact-section {
        margin-top: 60px;
        padding-top: 60px;
    }
    .about-cta-banner-wrap {
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .about-header-banner {
        height: 200px;
        border-top-left-radius: 80px;
        border-bottom-left-radius: 80px;
    }
    .about-impact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .cta-left-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .cta-badge-icon {
        align-self: flex-start;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 8px;
    }
}

/* ==========================================================================
   JOIN / MEMBERSHIP REGISTRATION SECTION
   ========================================================================== */

/* Solid Navigation Bar for Join Page */
.join-page-body .site-navbar {
    padding: 12px 0 !important;
    background: #152238 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Page layout wrappers */
.join-page-wrapper {
    padding: 130px 0 80px 0;
    background-color: #fafbfc;
}

.join-main-content {
    position: relative;
}

/* Page Header Intro */
.join-page-header {
    margin-bottom: 40px;
}

.join-title-main {
    font-family: var(--body-font);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 12px 0;
    letter-spacing: -0.8px;
}

.join-subtitle-main {
    font-size: 16.5px;
    color: var(--soft-text);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Step Progress Tracker */
.join-step-tracker-wrap {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.join-step-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step-progress-line {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 4px;
    background-color: #f1f5f9;
    z-index: 1;
}

.step-progress-fill {
    height: 100%;
    width: 0%;
    background-color: var(--bright-blue);
    transition: width 0.4s ease;
}

.tracker-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.tracker-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    color: var(--soft-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tracker-step .step-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--soft-text);
    text-align: center;
    transition: all 0.3s ease;
}

.tracker-step.active .step-number {
    background-color: var(--bright-blue);
    border-color: var(--bright-blue);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 114, 188, 0.15);
}

.tracker-step.active .step-label {
    color: var(--primary-navy);
}

/* Form Fieldsets & Steps */
.form-step-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    display: block;
}

.step-section-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}

.step-badge-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bright-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-title-wrap {
    flex: 1;
}

.step-section-title {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 4px 0;
}

.step-section-subtitle {
    font-size: 13.5px;
    color: var(--soft-text);
    margin: 0;
}

/* Step 1 Card Toggles & Notices */
.membership-toggle-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.membership-toggle-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.membership-toggle-card:hover {
    border-color: #cbd5e1;
    background-color: #fafbfc;
}

.membership-toggle-card.active {
    border-color: var(--bright-blue);
    background-color: #ffffff;
    box-shadow: 0 0 0 1px var(--bright-blue);
}

.card-radio-select {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-radio-select .radio-outer {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.membership-toggle-card.active .card-radio-select .radio-outer {
    border-color: var(--bright-blue);
}

.card-radio-select .radio-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.2s ease;
}

.membership-toggle-card.active .card-radio-select .radio-inner {
    background-color: var(--bright-blue);
}

.card-label-wrap {
    display: flex;
    flex-direction: column;
}

.card-label-wrap .card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-navy);
}

.card-label-wrap .card-desc {
    font-size: 12.5px;
    color: var(--soft-text);
}

.card-icon-area {
    font-size: 28px;
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.membership-toggle-card.active .card-icon-area {
    color: var(--bright-blue);
}

/* Notice bar styling */
.membership-fee-notice {
    background-color: #eff6ff;
    border-radius: 8px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bright-blue);
    font-size: 13.5px;
    font-weight: 600;
}

.membership-fee-notice .notice-tag-icon {
    font-size: 16px;
}

/* Inputs & Dropdowns Form Styling */
.form-label-custom {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    display: block;
}

.form-control-custom,
.form-select-custom {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--dark-text);
    background: #ffffff;
    transition: all 0.2s ease;
}

.form-control-custom:focus,
.form-select-custom:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

.form-control-custom.is-invalid,
.form-select-custom.is-invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.input-icon-wrap {
    position: relative;
    width: 100%;
}

.input-icon-wrap .input-right-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
}

.info-tooltip-trigger {
    cursor: help;
    pointer-events: auto !important;
}

.input-prepend-wrap {
    display: flex;
}

.input-prepend-wrap .prepend-text {
    background-color: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-right: none;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--soft-text);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.input-prepend-wrap .form-control-custom.prepended {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* File Upload drag-and-drop zone */
.logo-drag-drop-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fafbfc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logo-drag-drop-zone:hover,
.logo-drag-drop-zone.drag-over {
    border-color: var(--bright-blue);
    background-color: #eff6ff;
}

.logo-drag-drop-zone.has-file {
    border-color: #10b981;
    background-color: #ecfdf5;
}

.logo-drag-drop-zone.has-file .upload-icon {
    color: #10b981;
}

.hidden-file-input {
    display: none;
}

.logo-drag-drop-zone .upload-icon {
    font-size: 28px;
    color: var(--bright-blue);
    margin-bottom: 8px;
}

.logo-drag-drop-zone .upload-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
}

.logo-drag-drop-zone .upload-or {
    font-size: 11.5px;
    color: var(--soft-text);
    margin: 2px 0;
}

.logo-drag-drop-zone .upload-limit {
    font-size: 10px;
    color: #94a3b8;
}

.text-area-custom {
    height: 120px;
    resize: none;
}

.textarea-counter-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.textarea-counter-row .char-counter {
    font-size: 11px;
    color: #94a3b8;
}

/* Password Input */
.input-password-wrap {
    position: relative;
    width: 100%;
}

.btn-toggle-password {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.15s;
}

.btn-toggle-password:hover {
    color: var(--primary-navy);
}

/* Secure Payment Intro Bar */
.payment-intro-bar {
    background-color: #eff6ff;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-amount-label {
    font-size: 14px;
    color: var(--primary-navy);
}

.payment-amount-label strong {
    font-size: 18px;
    color: var(--bright-blue);
}

.payment-amount-label .recur-label {
    font-size: 12.5px;
    color: var(--soft-text);
}

.card-brands {
    display: flex;
    gap: 6px;
}

.card-brands .brand-img {
    height: 24px;
    width: auto;
}

/* Submit & agreements */
.btn-complete-registration {
    background-color: var(--primary-navy);
    border: none;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(21, 34, 56, 0.15);
}

.btn-complete-registration:hover {
    background-color: var(--bright-blue);
    box-shadow: 0 4px 14px rgba(0, 114, 188, 0.2);
}

.form-agreement-text {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: var(--soft-text);
    margin-top: 16px;
    line-height: 1.45;
}

.form-agreement-text .check-icon {
    color: #10b981;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.form-agreement-text a {
    color: var(--bright-blue);
    font-weight: 600;
    text-decoration: none;
}

.form-agreement-text a:hover {
    text-decoration: underline;
}

.form-security-footer {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 30px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    flex-wrap: wrap;
}

.form-security-footer .sec-item {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-security-footer .sec-item i {
    font-size: 14px;
}

/* Sidebar cards */
.join-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.join-sidebar-card .widget-title {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 12px 0;
}

.join-sidebar-card .widget-divider-line {
    height: 2px;
    width: 32px;
    background-color: var(--accent-lime);
    margin-bottom: 20px;
}

/* Why Join List */
.benefits-list-join {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item-join {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon-join {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: var(--bright-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-content-join {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-content-join strong {
    font-size: 13.5px;
    color: var(--primary-navy);
}

.benefit-content-join span {
    font-size: 12px;
    color: var(--soft-text);
    line-height: 1.4;
}

/* Order Summary */
.summary-details {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--soft-text);
}

.summary-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 14px 0;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total-row .total-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-navy);
}

.summary-total-row .total-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--bright-blue);
}

.summary-security-footer {
    background-color: #fafbfc;
    border-radius: 6px;
    padding: 10px;
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.summary-security-footer i {
    font-size: 12px;
}

/* Media Queries for Join Page */
@media (max-width: 991px) {
    .join-title-main {
        font-size: 32px;
    }
    .join-subtitle-main {
        font-size: 14.5px;
    }
    .join-step-tracker-wrap {
        padding: 20px;
    }
    .step-progress-line {
        left: 20px;
        right: 20px;
    }
    .tracker-step .step-label {
        font-size: 11px;
    }
    .form-step-section {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .tracker-step .step-label {
        display: none;
    }
    .step-progress-line {
        top: 20px;
    }
    .membership-toggle-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .form-step-section {
        padding: 20px 16px;
    }
    .step-section-header {
        gap: 12px;
        margin-bottom: 24px;
    }
    .payment-intro-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px;
    }
    .form-security-footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 24px;
    }
}