/* --- Trail Section Reset & Styles --- */
.mini-trail-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.trail-sub {
    color: #937a4b;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 5px;
}

.trail-title {
    color: #232323;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.trail-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 10px;
}

.trail-node {
    flex: 1;
    text-align: center;
    position: relative;
}

.node-head {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-day {
    font-size: 11px;
    font-weight: 900;
    color: #937a4b;
    margin-bottom: 5px;
}

.node-icon-circle {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 2px solid #937a4b;
    color: #937a4b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

.node-body h6 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.node-body p {
    font-size: 13px;
    color: #333 !important; /* Forces darker color */
    line-height: 1.4;
    padding: 0 5px;
}

/* --- Mobile Specific Fix --- */
@media (max-width: 991px) {
    .trail-wrapper {
        flex-direction: column;
    }

    .trail-node {
        width: 100%;
        display: flex;
        text-align: left;
        margin-bottom: 20px;
        align-items: flex-start;
    }

    .trail-node:nth-child(even) {
        flex-direction: row-reverse;
        text-align: right;
    }

    .node-head {
        width: 60px;
        padding-top: 5px;
    }

    .node-body {
        flex: 1;
    }

    .node-body p {
        display: block; /* Ensures info isn't cut off on mobile */
        -webkit-line-clamp: unset; 
    }
}






.trek-pricing-section {
    padding: 80px 0;
    background-color: #fcfaf7;
}

/* Left Card Styling */
.pricing-card-main {
    background: #937a4b;
    padding: 45px;
    border-radius: 20px;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title { font-size: 34px; font-weight: 800; margin-bottom: 25px; }
.price-display h3 { font-size: 48px; font-weight: 800; margin-bottom: 20px; }

/* Right Box Container */
.specs-full-container {
    background: #232323;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Big Specs Grid */
.specs-data-grid {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.big-spec {
    display: flex;
    align-items: center;
    gap: 20px;
}

.big-spec i {
    font-size: 28px;
    color: #937a4b;
    background: rgba(147, 122, 75, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.spec-info label {
    display: block;
    color: #999;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.spec-info h4 {
    color: #fff;
    font-size: 24px; /* Big Typography */
    font-weight: 700;
    margin: 0;
}

/* Bottom Image (Adjusts height to remove blank space) */
.specs-footer-image {
    flex-grow: 1; /* Takes all remaining height */
    position: relative;
    min-height: 200px;
}

.specs-footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #937a4b;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}

/* Mobile Fixes */
@media (max-width: 991px) {
    .specs-data-grid {
        padding: 30px 20px;
    }
    .spec-info h4 {
        font-size: 20px;
    }
    .pricing-card-main {
        padding: 30px;
    }
}






/* --- Summit Warriors Gallery CSS Variables --- */
:root {
    --sw-teal: #937a4b;
    --sw-gold: #d4af37;
    --sw-dark: #1c2b36;
    --sw-text-gray: #555555;
    --sw-light-bg: #ffffff;
    --gallery-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- SECTION STYLING --- */
.gallery-section {
    padding: 100px 0;
    background-color: var(--sw-light-bg);
    font-family: 'Poppins', sans-serif; /* Fallback in case it's not set globally */
}

.gallery-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER STYLING --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--sw-teal);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.main-title {
    font-size: clamp(28px, 5vw, 42px);
    color: var(--sw-dark);
    margin: 15px 0;
    font-weight: 700;
}

.desc {
    color: var(--sw-text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- ASYMMETRIC GRID --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px; 
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: var(--sw-dark);
}

/* Sizing Classes */
.item-tall { grid-row: span 2; }
.item-wide { grid-column: span 2; }
.item-large { grid-row: span 2; grid-column: span 2; }

/* Images */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gallery-transition);
}

/* --- OVERLAY & HOVER EFFECTS --- */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(28, 43, 54, 0.9) 0%, rgba(28, 43, 54, 0.2) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--gallery-transition);
    z-index: 2;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    color: var(--sw-gold);
    font-size: 30px;
    opacity: 0;
    transition: var(--gallery-transition);
}

.gallery-info h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: var(--gallery-transition);
}

.gallery-info p {
    color: #b0bec5;
    font-size: 13px;
    transform: translateY(20px);
    transition: var(--gallery-transition);
    transition-delay: 0.1s;
    margin: 0;
}

/* Hover Actions */
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.gallery-item:hover .gallery-info h4,
.gallery-item:hover .gallery-info p {
    transform: translateY(0);
}

/* --- VIDEO ITEM STYLING --- */
.video-item .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 3;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulse-gold 2s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: var(--gallery-transition);
}

.video-item:hover .play-btn {
    background: var(--sw-teal);
    transform: translate(-50%, -50%) scale(1.1);
    animation: none;
}

@keyframes pulse-gold {
    to { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .item-large { grid-column: span 2; grid-row: span 1; }
    .item-wide { grid-column: span 2; }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}






/* --- Color Variables --- */
:root {
    --sw-teal: #937a4b;
    --sw-gold: #937a4b;
    --sw-dark: #1c2b36;
    --sw-text-gray: #555555;
}

.trek-section-white {
    background-color: #ffffff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.trek-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.trek-header-top {
    text-align: center;
    margin-bottom: 60px;
}

.sub-brand {
    font-size: 14px;
    font-weight: 700;
    color: var(--sw-teal);
    letter-spacing: 2px;
}

.main-title-dark {
    font-size: 38px;
    color: var(--sw-dark);
    margin: 15px 0;
    font-weight: 700;
}

.desc-dark {
    color: var(--sw-text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout for 5 Cards */
.trek-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

/* Individual Card */
.trek-item {
    position: relative;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.image-wrapper {
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.card-overlay-text {
    position: absolute;
    top: 30px;
    left: 20px;
    color: white;
    z-index: 2;
}

.card-overlay-text h3 {
    font-size: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Hover Info Box (Details) */
.hover-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 43, 54, 0.6); /* Semi-transparent SW Dark */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 3;
}

.gold-text {
    color: var(--sw-gold);
    margin-bottom: 20px;
    font-size: 20px;
}

.stats-list {
    list-style: none;
    padding: 0;
    width: 100%;
    margin-bottom: 30px;
}

.stats-list li {
    color: white;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.stats-list li i {
    color: var(--sw-teal);
    margin-right: 12px;
    width: 20px;
}

/* Button */
.book-btn-sw {
    background: white;
    color: var(--sw-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}

.book-btn-sw:hover {
    background: var(--sw-gold);
    color: white;
}

/* --- THE HOVER ACTION --- */
.trek-item:hover .image-wrapper img {
    filter: blur(10px); /* Blur effect requested */
    transform: scale(1.1);
}

.trek-item:hover .hover-info {
    opacity: 1;
}

.trek-item:hover .card-overlay-text {
    opacity: 0;
}

/* Footer Link */
.trek-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-discover {
    text-decoration: none;
    color: var(--sw-dark);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--sw-teal);
    padding-bottom: 5px;
}

.btn-discover:hover {
    color: var(--sw-teal);
}

/* Responsive */
@media (max-width: 768px) {
    .main-title-dark { font-size: 28px; }
    .trek-grid-layout { grid-template-columns: 1fr 1fr; }
}





