/* HOME.CSS - MOBILE FIRST RESPONSIVE DESIGN - REFACTORED FOR CONSISTENCY */

:root {
    --green: #7f9b4d;
    --orange: #cc4e00;
    --dark: #2a2a2a;
    --text: #333;
    --text-light: #666;
    
    /* ===== UNIFIED SECTION VARIABLES ===== */
    --section-bg: #f0f0f0;
    --section-padding-x: 1rem;
    --section-padding-y: clamp(1rem, 2.5vw, 1.5rem);
    --content-gap: clamp(1.5rem, 4vw, 2rem);
    --card-radius: 8px;
    --card-shadow: 0 4px 12px rgba(0,0,0,0.08);
    
    /* ===== MISSION SECTION VARIABLES ===== */
    --mission-panel-width: 38%;
    --mission-image-width: 62%;
    --mission-panel-max-height: 600px;
    --mission-panel-padding: clamp(1.5rem, 5vw, 2rem);
    --tab-background: #ececec;
    --tab-active-bg: white;
    --slideshow-aspect-ratio: 16 / 5;
}

@media (max-width: 768px) {
    :root {
        --slideshow-aspect-ratio: 3 / 2;
    }
}

@media (min-width: 769px) {
    :root {
        --section-padding-x: clamp(1rem, 4vw, 1.5rem);
        --section-padding-y: clamp(0.5rem, 2vw, 1rem);
    }
}

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

/* ===== HERO SECTION ===== */
.hero {
    background-size: cover;
    background-position: center bottom;
    background-attachment: scroll;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
    padding: 1rem 1rem;
}

@media (min-width: 769px) {
    .hero {
        height: 100vh;
        justify-content: flex-start;
        text-align: left;
        padding: 0;
        background-attachment: fixed;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 33%, rgba(0,0,0,0) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 0 1rem;
    margin: -6rem auto 0;
}

@media (min-width: 769px) {
    .hero-content {
        padding: 0 clamp(1.5rem, 5vw, 3rem);
        margin: 0 0 0 clamp(1rem, 8vw, 4rem);
    }
}

.hero-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.6rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 90vw;
    justify-content: center;
}

.hero-buttons .hero-btn {
    flex: 1;
    text-align: center;
    padding: clamp(0.7rem, 2vw, 0.9rem) clamp(1.5rem, 4vw, 2.2rem);
}

@media (min-width: 769px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.2rem;
        margin-top: 2.5rem;
        justify-content: flex-start;
    }

    .hero-buttons .hero-btn {
        flex: 1;
        min-width: 180px;
    }
}

.hero-btn {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:active,
.hero-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-btn.primary {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

.hero-btn.primary:active,
.hero-btn.primary:hover {
    background: #6f8a40;
    border-color: #6f8a40;
    transform: translateY(-2px);
}

/* ===== TEAM SECTION ===== */
.team-section {
    background: white;
    padding: 2rem 0 0 0;
}

.team-header {
    padding: 0 1rem clamp(0rem, 1vw, 2rem);
    text-align: center;
    background: white;
}

@media (min-width: 769px) {
    .team-header {
        padding: 0 clamp(1rem, 5vw, 2rem) clamp(1.5rem, 3vw, 2rem);
    }
}

.team-header h2 {
    margin: 0;
}

.team-carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 769px) {
    .team-carousel {
        padding: 0 clamp(1rem, 4vw, 1.5rem) clamp(1.5rem, 3vw, 2rem);
    }
}

.team-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

@media (max-width: 1100px) {
    .team-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }
}

.team-images {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 3vw, 1.5rem);
    width: 100%;
}

.team-featured {
    display: none;
}

@media (max-width: 1100px) {
    .team-images {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        order: 2;
    }

    .team-featured {
        display: block;
        aspect-ratio: 1/1;
        width: 70%;
        max-width: 280px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

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

    .team-thumbnails {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.8rem !important;
        width: 100%;
        max-width: 200px;
    }

    .team-member-btn {
        aspect-ratio: 1/1;
    }

    .team-member-btn.active {
        display: none !important;
    }

    .team-bio-panel {
        order: 1;
    }
}

.team-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.8rem, 2vw, 1.2rem);
}

@media (max-width: 1100px) {
    .team-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member-btn {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    border: 3px solid transparent;
    padding: 0;
    background: white;
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.3s ease, border-color 0.3s ease;
    opacity: 0.6;
}

.team-member-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-btn:hover {
    opacity: 0.75;
}

.team-member-btn.active {
    opacity: 1;
}

@media (max-width: 1100px) {
    .team-member-btn:hover {
        border-color: var(--green);
    }

    .team-member-btn.active {
        border-color: var(--orange);
    }
}

@media (max-width: 1100px) {
    .team-member-btn.active {
        display: none;
    }
}

.team-bio-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

@media (max-width: 1100px) {
    .team-bio-panel {
        padding: 0;
    }
}

.team-bio-header {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0;
}

.team-bio-name {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.1;
    flex: 1;
}

@media (min-width: 1100px) {
    .team-bio-name {
        margin: 0;
    }
}

.team-nav-arrows {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
    width: fit-content;
}

.team-nav-arrow {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    color: var(--green);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
}

.team-nav-arrow:hover {
    color: var(--orange);
    transform: scale(1.15);
}

.team-bio-panel h2 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.6rem 0;
    line-height: 1.1;
}

.team-bio-role {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin: 0 0 0.4rem 0;
    display: block;
}

.team-bio-text {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===== UNIFIED SECTION LAYOUT ===== */
.section-header {
    padding: 0 var(--section-padding-x) var(--section-padding-y);
    text-align: center;
    background: var(--section-bg);
    margin-bottom: 0;
}

.section-content {
    padding: 0 var(--section-padding-x) var(--section-padding-y);
    margin: 0;
    background: var(--section-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-split {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 1400px;
}

@media (min-width: 1100px) {
    .section-split {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }
}

.section-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    box-shadow: var(--card-shadow);
    overflow-y: auto;
    min-height: fit-content;
    max-height: var(--mission-panel-max-height);
}

@media (min-width: 1100px) {
    .section-panel {
        padding: var(--mission-panel-padding);
        max-height: var(--mission-panel-max-height);
    }
}

.section-panel.left {
    border-radius: var(--card-radius) var(--card-radius) 0 0;
}

@media (min-width: 1100px) {
    .section-panel.left {
        flex: 0 0 var(--mission-panel-width);
        border-radius: var(--card-radius) 0 0 var(--card-radius);
        order: 1;
    }
}

.section-panel.right {
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    min-height: 250px;
}

@media (min-width: 1100px) {
    .section-panel.right {
        flex: 0 0 var(--mission-image-width);
        border-radius: 0 var(--card-radius) var(--card-radius) 0;
        order: 2;
        min-height: auto;
    }
}

/* ===== OUR MISSION SECTION ===== */
.our-mission {
    background: var(--section-bg);
    padding: 2rem 0;
}

.mission-header {
    padding: 0 var(--section-padding-x) var(--section-padding-y);
    text-align: center;
    background: var(--section-bg);
    margin-bottom: 0;
}

.mission-header h2 {
    margin: 0;
}

.projects-carousel {
    padding: 0 var(--section-padding-x) var(--section-padding-y);
    margin: 0;
    background: var(--section-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-split {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 1400px;
}

@media (min-width: 1100px) {
    .mission-split {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }
}

.mission-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem 1.5rem 2rem 1.5rem;
    background: white;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    box-shadow: var(--card-shadow);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (min-width: 1100px) {
    .mission-info {
        flex: 0 0 var(--mission-panel-width);
        align-items: center;
        justify-content: center;
        padding: clamp(1rem, 3vw, 1.5rem) var(--mission-panel-padding) clamp(1rem, 3vw, 1.5rem) var(--mission-panel-padding);
        border-radius: var(--card-radius) 0 0 var(--card-radius);
        order: 1;
    }
}

.info-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    max-width: 100%;
    overflow-x: hidden;
}

@media (min-width: 769px) {
    .info-inner {
        gap: 0.6rem;
    }
}

.project-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.2rem;
    border-bottom: none;
    padding-bottom: 0;
    background: transparent;
    border-radius: 8px 8px 0 0;
    padding: 0;
}

.project-tab {
    background: var(--tab-background);
    border: none;
    padding: 0.7rem 1.2rem;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 6px 6px 0 0;
}

.project-tab:hover {
    background: #ddd;
    color: var(--text);
}

.project-tab.active {
    background: var(--tab-active-bg);
    color: var(--orange);
}

.project-content {
    display: none;
}

.project-content.active {
    display: block;
}

.project-title {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    position: sticky;
    top: 0;
    background: white;
    padding-bottom: 0;
    z-index: 10;
}

@media (min-width: 769px) {
    .project-title {
        padding-bottom: 1rem;
    }
}

.project-title .label {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    font-weight: 600;
}

.project-title h3 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    margin: 0;
}

.project-description {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0.8rem 0 1rem 0;
    padding-bottom: 0.8rem;
}

@media (min-width: 769px) {
    .project-description {
        margin: -0.3rem 0 1rem 0;
        padding-bottom: 0;
    }
}

.progress-section {
    padding: 1.2rem;
    background: #f9f9f9;
    border-radius: 6px;
    min-height: auto;
}

.progress-label {
    font-size: clamp(0.65rem, 2vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.progress-bar-wrapper {
    margin-top: 0.8rem;
    margin-bottom: 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: var(--green);
    border-radius: 4px;
    transition: width 0.6s ease-out;
    width: 56.3%;
}

.progress-display {
    margin-bottom: 0.2rem;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.progress-number {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1;
}

.progress-total {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    color: var(--text);
    font-weight: 500;
}

.progress-label-inline {
    font-size: clamp(0.65rem, 1.8vw, 0.9rem);
    color: var(--text-light);
    font-weight: 400;
}

.progress-items {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.8rem;
}

.focus-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.8rem;
}

.focus-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-left: 1.2rem;
    position: relative;
}

.focus-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.focus-title {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1.2;
}

.focus-description {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    color: var(--text-light);
    line-height: 1.6;
}

.progress-item {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.progress-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

.sponsors-section {
    padding: 1rem 0 0 0;
    background: transparent;
    border-radius: 0;
    margin: 0.8rem 0 0 0;
    border-top: 1px solid #e5e5e5;
}

.sponsors-label {
    font-size: clamp(0.65rem, 2vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.15rem;
    display: block;
}

.sponsors-grid {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.sponsor-logo {
    flex: 0 1 auto;
    width: clamp(65px, 12vw, 85px);
    height: auto;
}

.sponsor-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.sponsor-logo img:hover {
    opacity: 0.8;
}

.mission-images {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    margin-top: 0;
}

@media (max-width: 450px) {
    .mission-images {
        min-height: auto;
    }
}

@media (min-width: 1100px) {
    .mission-images {
        flex: 0 0 var(--mission-image-width);
        min-height: auto;
        order: 2;
        margin-top: 0;
    }
}

.slideshow-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    position: relative;
}

@media (min-width: 1100px) {
    .slideshow-container {
        border-radius: 0 var(--card-radius) var(--card-radius) 0;
    }
}

.slideshow-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    aspect-ratio: var(--slideshow-aspect-ratio);
    cursor: pointer;
}

.slideshow-controls {
    position: absolute;
    bottom: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    z-index: 50;
    display: flex !important;
    gap: 0.8rem;
}

.image-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    cursor: pointer;
}

.image-slide.active {
    opacity: 1;
}

.slideshow-nav {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 900;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
    position: relative;
    z-index: 51;
}

.slideshow-nav:hover {
    color: var(--orange);
    transform: scale(1.15);
}

#slideshow-caption {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    color: white;
    line-height: 1.5;
    margin: 0;
}

/* ===== EXPEDITIONS SECTION ===== */
.expeditions-section {
    position: relative;
    background: #e0e0e0;
}

.expeditions-title-section {
    padding: 2rem var(--section-padding-x) var(--section-padding-y);
    text-align: center;
    background: #e0e0e0;
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
}

.expeditions-title-section p {
    margin: 0;
}

.expeditions-carousel {
    padding: 0 var(--section-padding-x) clamp(2rem, 4vw, 3rem);
    margin: 0;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expeditions-cards-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: var(--content-gap);
}

.last-expedition-wrapper {
    display: grid;
    grid-template-columns: 1.65fr 0.85fr;
    gap: 0;
    width: 100%;
    background: white;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border-bottom: none;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .last-expedition-wrapper {
        grid-template-columns: 1fr;
        border-radius: var(--card-radius);
        box-shadow: var(--card-shadow);
        gap: 0;
    }
}

.last-expedition-stats {
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    order: 2;
    border-radius: 0;
    gap: clamp(0.2rem, 1.2vw, 1rem);
}

@media (max-width: 1100px) {
    .last-expedition-stats {
        background: white;
        order: 1;
        padding: clamp(1.5rem, 3vw, 2rem);
        border-radius: var(--card-radius) var(--card-radius) 0 0;
        margin: 0;
    }
}

.last-expedition-header {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.last-expedition-header .label {
    color: var(--green);
}

.label {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    font-weight: 600;
}

.last-expedition-label {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    font-weight: 600;
}

.last-expedition-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    margin: 0;
}

.last-expedition-date {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    color: var(--green);
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
}

.last-expedition-location {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text);
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}

.last-expedition-description {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.last-expedition-stats-label {
    font-size: clamp(0.65rem, 2vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.last-expedition-stats-bubble {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.2rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.last-expedition-stats-bubble .progress-item::before {
    display: none;
}

.exp-stat-number {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.last-expedition-slideshow-wrapper {
    position: relative;
    background: #000;
    order: 1;
    border-radius: 0;
    height: 100%;
}

@media (max-width: 1100px) {
    .last-expedition-slideshow-wrapper {
        height: clamp(300px, 40vw, 500px);
    }
}

@media (max-width: 1100px) {
    .last-expedition-slideshow-wrapper {
        order: 2;
        height: auto;
        aspect-ratio: 16 / 10;
        border-radius: 0 0 var(--card-radius) var(--card-radius);
    }
}

.last-expedition-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.last-expedition-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.expedition-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    cursor: pointer;
}

.last-expedition-slide.active {
    opacity: 1;
}

.last-expedition-controls {
    position: absolute;
    bottom: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    z-index: 10;
    display: flex;
    gap: 0.8rem;
}

.last-expedition-nav {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
}

.last-expedition-nav:hover {
    color: var(--orange);
    transform: scale(1.15);
}

.expedition-footer {
    position: relative;
    background: white;
    color: var(--text);
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    box-shadow: none;
}

.expedition-footer-content {
    position: relative;
    z-index: 2;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1rem, 5vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
}

.expedition-footer-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.expedition-footer-info .expedition-label {
    font-size: clamp(0.75rem, 2.5vw, 1.1rem);
    margin-bottom: 0;
}

.expedition-footer-info h3 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.expedition-label {
    font-size: clamp(0.75rem, 2.5vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
}

.upcoming-expeditions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--content-gap);
    width: 100%;
    padding: 0;
}

@media (min-width: 1000px) {
    .upcoming-expeditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.upcoming-expedition-card-wrapper {
    display: flex;
    flex-direction: column;
    height: fit-content;
    background: white;
    border-radius: var(--card-radius);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    overflow: hidden;
}

.upcoming-expedition-card {
    display: flex;
    flex-direction: column;
    height: clamp(200px, 30vw, 300px);
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    box-shadow: none;
}

.upcoming-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    cursor: pointer;
}

.upcoming-expedition-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

/* ===== FUNDING SECTION ===== */
.funding-section {
    background: white;
    padding: 0;
}

.funding-hero {
    background-size: cover;
    background-position: center;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem) 1rem;
    text-align: center;
}

.funding-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 100%);
    z-index: 1;
}

.funding-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(0.2rem, 0.4vw, 0.4rem);
    align-items: center;
}

.funding-hero-title {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.funding-hero-title h2 {
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0;
    color: white;
}

.funding-hero-button {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .funding-hero-button {
        width: 100%;
        justify-content: center;
        margin-top: 0;
    }
}

.funding-hero-stats {
    font-size: clamp(0.9rem, 2.8vw, 1.1rem);
    color: white;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 clamp(0.8rem, 1.5vw, 1.2rem) 0;
}

.funding-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: white;
    font-weight: 400;
    line-height: 1.4;
    margin: 0.4rem 0 clamp(0.8rem, 1.5vw, 1.2rem) 0;
}

.btn-sponsor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.7rem, 2vw, 0.9rem) clamp(1.5rem, 4vw, 2.2rem);
    background: rgba(255, 255, 255, 0.001);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-height: 44px;
    white-space: nowrap;
    touch-action: manipulation;
}

.btn-sponsor:active,
.btn-sponsor:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}