/* =========================================
   BRIGHT ANGEL - WORK PERMIT UI (STANDALONE)
   ========================================= */

body {
    background-color: #f8fafc;
    font-family: 'Times New Roman', Times, serif;
    color: #334155;
    margin: 0;
    padding: 0;
}

/* --- Hero Section --- */
.wp-hero {
    padding: 160px 20px 80px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid #ef4444;
}

.wp-hero-icon {
    width: 90px;
    margin-bottom: 20px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.wp-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.wp-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Section Titles --- */
.wp-section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.wp-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3b82f6; /* Modern Blue */
}

/* --- Info Overview Box --- */
.wp-overview-box {
    background: #ffffff;
    border-left: 5px solid #3b82f6;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

/* --- Cards (Eligibility & Criteria) --- */
.wp-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.wp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.wp-icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    color: white;
    transition: transform 0.3s ease;
}

.wp-card:hover .wp-icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.wp-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.wp-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Process Timeline --- */
.wp-timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.wp-timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.wp-timeline-step:hover {
    transform: translateX(10px);
    border-color: #3b82f6;
}

.wp-timeline-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wp-timeline-content h6 {
    font-weight: 700;
    font-size: 1.15rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.wp-timeline-content p {
    color: #64748b;
    margin: 0;
    font-size: 1rem;
}

/* --- Important Notes / Benefits Lists --- */
.wp-list-item {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.wp-list-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.wp-list-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 1.2rem;
    color: white;
}

.wp-list-text {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .wp-hero { padding: 130px 20px 60px 20px; }
    .wp-hero h1 { font-size: 2.4rem; }
    .wp-timeline-step { flex-direction: column; align-items: flex-start; }
}