/* ============================================
   DIRECTIONS PAGE — PDDRCS Design
   ============================================ */

.directions-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80');
}

/* Direction card */
.direction-card {
    padding: 2rem;
    border-radius: 1.25rem;
    border-left: 5px solid #1A5BC4;
    border: 1px solid #F3F4F6;
    border-left: 5px solid #1A5BC4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 0 4px 20px -4px rgba(0, 35, 102, 0.08);
}
.direction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(0, 35, 102, 0.14);
    background: #ffffff;
    border-left-width: 6px;
}

.direction-card[data-accent="blue"] { border-left-color: #003DA5; }
.direction-card[data-accent="gold"] { border-left-color: #F7D417; }
.direction-card[data-accent="red"]  { border-left-color: #CE1126; }

.direction-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 91, 196, 0.12), rgba(26, 91, 196, 0.02));
    color: #1A5BC4;
}
.direction-card[data-accent="blue"] .direction-icon-wrap { background: linear-gradient(135deg, rgba(0, 61, 165, 0.14), rgba(0, 61, 165, 0.02)); color: #003DA5; }
.direction-card[data-accent="gold"] .direction-icon-wrap { background: linear-gradient(135deg, rgba(247, 212, 23, 0.18), rgba(247, 212, 23, 0.03)); color: #B08E00; }
.direction-card[data-accent="red"]  .direction-icon-wrap { background: linear-gradient(135deg, rgba(206, 17, 38, 0.12), rgba(206, 17, 38, 0.02)); color: #CE1126; }

/* CTA section — background image overlay */
.cta-bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
}

.missions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.missions-list li {
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 0.92rem;
    color: #64748B;
    line-height: 1.55;
}
.missions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1A5BC4;
}
