/* Employment Screening Page Styles */

/* Hero Section */
.employment-hero {
    background: linear-gradient(rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.9)), url('../images/office-bg.jpg'); /* Ensure you have a bg image or remove url part */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.employment-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.employment-hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.employment-hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.employment-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
}

.employment-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.employment-phone-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Overview Section */
.employment-overview {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.employment-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.employment-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item h3 {
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.employment-sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #1e3c72;
}

.employment-check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.employment-check-list li {
    margin-bottom: 10px;
    color: #555;
}

.sidebar-cta {
    display: block;
    text-align: center;
    background: #1e3c72;
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.sidebar-cta:hover {
    background: #2a5298;
}

/* Services Grid */
.employment-services {
    padding: 80px 0;
}

.employment-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
}

/* Process Section */
.employment-process {
    background: #1e3c72;
    color: #fff;
    padding: 80px 0;
}

.employment-process .fingerprint-section-title {
    color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.step-num {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* FAQ Section */
.employment-faq {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px; /* Approximate max height */
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

/* Contact Section */
.employment-contact {
    padding: 60px 0;
    text-align: center;
}

.contact-box {
    background: #fff;
    border: 2px solid #eee;
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-details .detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .employment-content-grid {
        grid-template-columns: 1fr;
    }
    
    .employment-hero-content h1 {
        font-size: 2rem;
    }
}