/* PF Registration Styles - Building on iec-registration.css */
.business-license-page {
    background-color: #f8f9fa;
    padding-bottom: 50px;
}

.page-header {
    background-color: var(--secondary);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-weight: 700;
    color: var(--primary);
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-light);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary-light);
}

.section-title {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefits-box {
    background-color: var(--primary-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
}

.benefits-box h3 {
    color: var(--secondary);
    margin-top: 0;
}

.who-needs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.need-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.need-card:hover {
    transform: translateY(-5px);
}

.need-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Font Awesome icons for need cards */
.need-icon.business-icon::before {
    content: "\f1ad"; /* building icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.need-icon.employee-icon::before {
    content: "\f0c0"; /* users icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.need-icon.voluntary-icon::before {
    content: "\f328"; /* chart-line icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.doc-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.doc-item:hover {
    transform: translateY(-3px);
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    position: sticky;
    top: 20px;
    height: 600px !important;
    
}

.service-features {
    list-style-type: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "\f00c"; /* check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
}

.price-box {
    margin: 1.5rem 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    text-decoration: line-through;
    color: var(--grey);
    margin-left: 0.5rem;
}

.timeline-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline {
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-light);
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-point {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
}

.timeline-content h6 {
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.timeline-content p {
    color: var(--grey);
    margin-bottom: 0;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .who-needs {
        grid-template-columns: 1fr;
    }
    
    .document-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 2rem 0;
    }
}