﻿/* ==========================================================================
   1. PATHWAY LAYOUT & HEADER
   (Clears fixed Nav, sets White background and Navy branding)
   ========================================================================== */
.pathway-clean-layout {
    padding-top: 160px !important; /* Safety gap for the Black Navigation Bar */
    padding-bottom: 60px !important;
    background-color: #ffffff !important;
    display: block !important;
    width: 100%;
}

.pathway-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: left;
}

.pathway-label {
    color: #8b7310; /* Brand Gold */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.pathway-title {
    font-size: 4rem !important;
    color: #001f3f !important; /* Deep Navy */
    margin: 0 !important;
    font-weight: 800;
    line-height: 1.1;
    display: block;
}

.pathway-subtitle {
    font-size: 1.4rem !important;
    color: #475569 !important; /* Slate Grey for a softer feel */
    margin-top: 20px !important;
    font-weight: 400;
    display: block;
}

.pathway-lead-text {
    margin-top: 40px;
    max-width: 650px;
}

.pathway-lead-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155 !important;
    margin: 0;
}

/* --- Legal & Info Lists --- */
.pathway-lead-text ul {
    list-style: none; /* Remove default bullets */
    margin: 20px 0 30px 10px;
    padding: 0;
}

.pathway-lead-text li {
    position: relative;
    padding-left: 30px; /* Space for the custom bullet */
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569; /* Slate grey for readability */
}

/* Custom Gold Bullet Point */
.pathway-lead-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFD700; /* SwiftSwim Gold */
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

/* Bold text inside lists */
.pathway-lead-text li strong {
    color: #001f3f; /* Deep Navy */
    font-weight: 700;
}


.pathway-divider {
    max-width: 1100px;
    margin: 40px auto;
    border: 0;
    border-top: 1px solid #e2e8f0;
}

/* ==========================================================================
   2. FEATURE HIGHLIGHT GRID
   (Interactive cards with gold accent lines)
   ========================================================================== */
.pathway-features {
    padding-bottom: 80px;
    background-color: #ffffff !important; /* Fixes any "showing through" backgrounds */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-accent {
    width: 40px;
    height: 4px;
    background-color: #FFD700;
    margin-bottom: 25px;
    transition: width 0.4s ease;
}

.feature-item h3 {
    color: #001f3f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.feature-item p {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Desktop Only Effects */
@media (min-width: 992px) {
    .feature-item:hover {
        border-color: #FFD700;
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 31, 63, 0.08);
    }

    .feature-item:hover .feature-accent {
        width: 100%;
    }
}

/* ==========================================================================
   3. LOGISTICS / CTA BOX
   (The Navy "Price & Availability" Footer)
   ========================================================================== */
.pathway-logistics {
    padding-bottom: 100px;
    background-color: #ffffff !important; /* Critical: Fixes the black background issue */
}

.logistics-box {
    background-color: #001f3f;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.logistics-content h2 {
    color: #FFD700;
    font-size: 2.2rem;
    margin: 0 0 10px 0;
    font-weight: 800;
}

.logistics-content p {
    color: #cbd5e1;
    margin: 0;
    font-size: 1.1rem;
    max-width: 450px;
}

.logistics-action {
    display: flex;
    align-items: center;
    gap: 50px;
}

.price-tag {
    text-align: right;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pathway-btn-gold {
    background-color: #FFD700;
    color: #000000 !important;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 2px solid #FFD700;
    min-width: 250px;
}

.pathway-btn-gold:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

/* ==========================================================================
   4. FULL RESPONSIVENESS
   (Scaling for Tablet & Mobile)
   ========================================================================== */
@media (max-width: 900px) {
    .pathway-title {
        font-size: 2.8rem !important;
    }

    .logistics-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 40px;
    }

    .logistics-action {
        flex-direction: column;
        gap: 30px;
    }

    .price-tag {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .pathway-clean-layout {
        padding-top: 120px !important; /* Smaller Nav buffer for mobile */
    }

    .feature-grid {
        grid-template-columns: 1fr !important; /* Stacks 01, 02, 03 cards */
        gap: 20px;
    }

    .pathway-title {
        font-size: 2.2rem !important;
    }
}
