/* ──────────────────────────────────────────
   PAGE: ADVENTURE & EXPEDITION
────────────────────────────────────────── */

.adventure-expedition-page {
    position: relative;
    background: #fdfdfd;
    min-height: 100vh;
}

body.dark .adventure-expedition-page {
    background: #0d0d0d;
}

.adventure-section {
    padding: 0;
    margin: 0;
    width: 100%;
}

/* ── HERO SECTION ── */
.adventure-hero-wrap {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* padding: 120px 20px; */
    text-align: center;
    overflow: hidden;
}

.adventure-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.adventure-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.adventure-hero-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.adventure-hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #fff;
}

.adventure-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin-bottom: 40px;
}

.adventure-hero-cta {
    margin-top: 10px;
}

.adventure-cta-btn {
    background: #A01B1B;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.adventure-cta-btn:hover {
    background: #801515;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(160, 27, 27, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .adventure-hero-wrap {
        min-height: 500px;
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

/* ── SUPPORT SECTION ── */
.adv-support-section {
    padding: 100px 20px;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.adv-support-container {
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
}

.adv-support-header {
    margin-bottom: 60px;
}

.adv-support-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
    margin: 0;
}

body.dark .adv-support-title {
    color: #fff;
}

.adv-support-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.adv-support-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

body.dark .adv-support-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.adv-support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

body.dark .adv-support-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.adv-support-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-support-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.adv-support-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

body.dark .adv-support-card-title {
    color: #eee;
}

/* Responsive */
@media (max-width: 1200px) {
    .adv-support-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .adv-support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 650px) {
    .adv-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .adv-support-card {
        padding: 24px 12px;
    }

    .adv-support-section {
        padding: 60px 20px;
    }
}

@media (max-width: 400px) {
    .adv-support-grid {
        grid-template-columns: 1fr;
    }
}

/* ── INDUSTRIES SECTION ── */
.adv-ind-section {
    padding: 100px 20px;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

body.dark .adv-ind-section {
    background-color: transparent;
}

.adv-ind-container {
    max-width: 1240px;
    margin: 0 auto;
    text-align: left;
}

.adv-ind-header {
    margin-bottom: 60px;
}

.adv-ind-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
    margin: 0;
}

body.dark .adv-ind-title {
    color: #fff;
}

.adv-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.adv-ind-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

body.dark .adv-ind-card {
    background: #151515;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.adv-ind-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

body.dark .adv-ind-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.adv-ind-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: #fcebeb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark .adv-ind-icon {
    background: #331111;
}

.adv-ind-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.adv-ind-content {
    display: flex;
    flex-direction: column;
}

.adv-ind-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

body.dark .adv-ind-card-title {
    color: #fff;
}

.adv-ind-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

body.dark .adv-ind-card-desc {
    color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
    .adv-ind-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .adv-ind-grid {
        grid-template-columns: 1fr;
    }

    .adv-ind-section {
        padding: 60px 20px;
    }
}

/* ── PREVIOUS ENGAGEMENTS SECTION ── */
.adv-prev-section {
    padding: 100px 20px;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.adv-prev-container {
    max-width: 1340px;
    margin: 0 auto;
}

.adv-prev-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

body.dark .adv-prev-card {
    background: #151515;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.adv-prev-content {
    flex: 0 0 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.adv-prev-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    line-height: 1.2;
}

body.dark .adv-prev-title {
    color: #fff;
}

.adv-prev-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 40px;
}

body.dark .adv-prev-desc {
    color: #aaa;
}

.adv-prev-stats-row {
    display: flex;
    gap: 24px;
}

.adv-prev-stat-box {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 24px;
    background: #fdfdfd;
}

body.dark .adv-prev-stat-box {
    border-color: rgba(255, 255, 255, 0.05);
    background: #1a1a1a;
}

.adv-prev-stat-val {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #B91C1C;
    margin-bottom: 8px;
    line-height: 1;
}

.adv-prev-stat-txt {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

body.dark .adv-prev-stat-txt {
    color: #ddd;
}

.adv-prev-image {
    flex: 0 0 50%;
    position: relative;
    padding: 24px 24px 24px 0;
}

.adv-prev-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .adv-prev-card {
        flex-direction: column;
    }

    .adv-prev-content {
        flex: auto;
        padding: 40px 30px;
    }

    .adv-prev-image {
        flex: auto;
        padding: 0 30px 30px;
    }
}

@media (max-width: 600px) {
    .adv-prev-stats-row {
        flex-direction: column;
    }

    .adv-prev-content {
        padding: 30px 20px;
    }

    .adv-prev-image {
        padding: 0 20px 20px;
    }
}