/* Post Jobs Page Specific Styles */
.post-jobs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

/* Hero Section */
.post-jobs-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border-radius: 16px;
    margin-bottom: 4rem;
}

.post-jobs-hero h1 {
    font-family: sans-serif;
    font-size: 2.0 rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-number {
    color: #1E73BE;
    background: linear-gradient(135deg, #1E73BE, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 115, 190, 0.05);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 115, 190, 0.1);
    border-color: #1E73BE;
}

.feature-card.feature-highlight {
    border-left: 4px solid #1E73BE;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.feature-card.feature-emphasis {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
    border-color: #1E73BE;
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E73BE, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-family: sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-image {
    margin: 2rem 0;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-link {
    color: #1E73BE;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.feature-cta {
    margin-top: 1.5rem;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-title {
    font-family: sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #1E73BE;
    box-shadow: 0 8px 30px rgba(30, 115, 190, 0.1);
    transform: translateY(-5px);
}

.pricing-card.popular-choice {
    border-color: #1E73BE;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-10px);
}

.pricing-card.extended-value {
    border-color: #10b981;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E73BE;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #1E73BE;
    display: block;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

.pricing-disclaimer {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.pricing-disclaimer p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #1E73BE 0%, #1d4ed8 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.cta-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
}

.testimonials-title {
    font-family: sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 115, 190, 0.05);
    border: 1px solid #e2e8f0;
}

.testimonial-logo {
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-logo img {
    max-width: 200px;
    height: auto;
    max-height: 60px;
}

blockquote {
    font-style: italic;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #1E73BE;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: sans-serif;
}

.testimonial-author {
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

.testimonials-cta {
    text-align: center;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 3rem 0;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .post-jobs-container {
        padding: 100px 1rem 2rem;
    }
    
    .post-jobs-hero h1 {
        font-size: 2.0rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular-choice {
        transform: none;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .post-jobs-hero h1 {
        font-size: 1.8rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .feature-content h2 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}