/* ===== SUBPAGE STYLES ===== */

/* ===== SUBPAGE HERO ===== */
.subpage-hero {
    min-height: 50vh;
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
}

.subpage-hero-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #ffffff 100%);
}

/* ===== DARK SUBPAGE SECTIONS ===== */
.subpage-dark {
    background-color: var(--black);
}

.section-dark {
    background-color: var(--dark-gray);
}

.section-darker {
    background-color: var(--black);
}

/* ===== LIGHT SUBPAGE SECTIONS ===== */
.subpage-light {
    background-color: #ffffff;
}

.section-light {
    background-color: #ffffff;
}

.section-light-alt {
    background-color: #f8f9fa;
}

.section-cta-dark {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
}

/* ===== NAVBAR LIGHT MODE ===== 
.navbar-light-mode {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}


.navbar-light-mode .nav-link {
    color: #333 !important;
}

.navbar-light-mode .nav-link:hover {
    color: var(--yellow) !important;
}

.navbar-light-mode .navbar-brand {
    color: #1a1a1a !important;
}*/

/* ===== GRID CARDS - DARK ===== */
.grid-card {
    background: var(--medium-gray);
    border: 1px solid rgba(245, 197, 24, 0.1);
    transition: all 0.4s ease;
}

.grid-card:hover {
    transform: translateY(-6px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 197, 24, 0.08);
}

.card-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== GRID CARDS - LIGHT ===== */
.grid-card-light {
    background: #ffffff;
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.grid-card-light:hover {
    transform: translateY(-6px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(245, 197, 24, 0.1);
}

.card-icon-circle-light {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== HIGHLIGHT BOX - DARK ===== */
.highlight-box {
    background: var(--medium-gray);
    border-left: 4px solid var(--yellow);
    border: 1px solid rgba(245, 197, 24, 0.15);
    border-left: 4px solid var(--yellow);
}

.highlight-accent {
    width: 4px;
    min-height: 80px;
    background: var(--yellow);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ===== HIGHLIGHT BOX - LIGHT ===== */
.highlight-box-light {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--yellow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.highlight-accent-light {
    width: 4px;
    min-height: 80px;
    background: var(--yellow);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ===== CUSTOM LIST - DARK ===== */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-list li:last-child {
    border-bottom: none;
}

.list-icon {
    color: var(--yellow);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== CUSTOM LIST - LIGHT ===== */
.custom-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list-light li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.custom-list-light li:last-child {
    border-bottom: none;
}

.list-icon-light {
    color: var(--yellow);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== SIDE VECTOR GRAPHICS ===== */
.side-vector {
    width: 100%;
    max-width: 300px;
    opacity: 0.9;
}

.side-vector-light {
    width: 100%;
    max-width: 280px;
    opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .subpage-hero {
        min-height: 40vh;
        padding-top: 100px;
    }

    .subpage-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .subpage-hero {
        text-align: center;
    }

    .subpage-hero h1 {
        font-size: 2rem;
    }

    .highlight-box,
    .highlight-box-light {
        padding: 1.5rem !important;
    }

    .highlight-box h3,
    .highlight-box-light h3 {
        font-size: 1.2rem;
    }
}