/* Police Clearance Page Styles */

/* Hero Section */
.police-clearance-hero {
    background: linear-gradient(rgba(18, 30, 60, 0.9), rgba(30, 60, 114, 0.85)), url('../images/rcmp-bg.jpg'); /* Ensure image exists or remove URL */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 90px 0;
    text-align: center;
}

.police-clearance-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.police-clearance-hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #e0e0e0;
}

.police-clearance-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-phone-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Overview Section */
.police-clearance-overview {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.reasons-list {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.reasons-list li {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid #1e3c72;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sidebar-info-box, .sidebar-alert-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.sidebar-alert-box {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.sidebar-alert-box a {
    color: #856404;
    font-weight: bold;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.area-tags span {
    background: #e9ecef;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #495057;
}

/* Categories Section */
.police-clearance-categories {
    padding: 80px 0;
    background: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #1e3c72;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
}

/* Process Section */
.police-clearance-process {
    padding: 80px 0;
    background: #1e3c72;
    color: #fff;
}

.police-clearance-process .fingerprint-section-title {
    color: #fff;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.requirements-col h3 {
    margin-bottom: 25px;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.requirements-list li strong {
    color: #a4c5f5;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    background: #fff;
    color: #1e3c72;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.step-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #fff;
}

.step-details p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* FAQ Section */
.police-clearance-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2d3436;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #636e72;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Contact CTA */
.police-clearance-contact {
    padding: 60px 0;
    background: #fff;
}

.contact-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.action-btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.action-btn.primary {
    background: #1e3c72;
    color: #fff;
}

.action-btn.secondary {
    border: 2px solid #1e3c72;
    color: #1e3c72;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.2);
}

.location-details p {
    margin: 5px 0;
    color: #636e72;
}

/* Responsive */
@media (max-width: 768px) {
    .overview-grid, .process-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .police-clearance-hero-content h1 {
        font-size: 2rem;
    }
}