/* Post Job Page Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #e6a23c 0%, #ffb343 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    line-height: 1.1;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card.featured {
    border-color: #ffb343;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}


.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 32px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ffb343;
    font-family: 'Geist', sans-serif;
}

.period {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 8px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.features-list li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 24px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffb343;
    font-weight: 600;
}

/* Lifetime Offer */
.lifetime-offer {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.offer-card {
    background: linear-gradient(135deg, #ffb343 0%, #e6a23c 100%);
    color: white;
    border-radius: 20px;
    padding: 24px 40px;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.offer-left {
    flex: 1;
    text-align: left;
}

.offer-badge {
    background: #fbbf24;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.offer-price {
    margin-bottom: 0;
}

.offer-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Geist', sans-serif;
}

.offer-price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 8px;
}

.offer-center {
    flex: 2;
    text-align: left;
}

.offer-features .features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
    margin: 0;
}

.offer-features .features-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    padding: 4px 0 4px 24px;
    position: relative;
}

.offer-features .features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: 600;
}

.offer-right {
    flex: 0 0 auto;
    text-align: center;
}

.offer-btn {
    background-color: #fbbf24;
    color: #92400e;
    border-color: #fbbf24;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    white-space: nowrap;
}

.offer-btn:hover {
    background-color: #f59e0b;
    border-color: #f59e0b;
    transform: translateY(-2px);
}

/* Job Posting Section */
.job-posting-section {
    padding: 80px 0;
}

.posting-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.posting-form-container {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 32px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 32px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    transition: border-color 0.2s ease;
    font-family: 'Geist', sans-serif;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ffb343;
    box-shadow: 0 0 0 3px rgba(38, 138, 136, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-input {
    width: 16px;
    height: 16px;
    accent-color: #ffb343;
}

.radio-text {
    font-size: 14px;
    color: #374151;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.btn-full {
    width: 100%;
}

/* Sidebar */
.posting-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 20px;
}

.tips-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffb343;
    font-weight: 600;
}

.success-story {
    margin-bottom: 20px;
    padding: 16px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.success-story:last-child {
    margin-bottom: 0;
}

.story-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 8px;
}

.story-author {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.support-text {
    color: #6b7280;
    margin-bottom: 16px;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-link {
    color: #ffb343;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.support-link:hover {
    color: #e6a23c;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .posting-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .offer-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .offer-left,
    .offer-center {
        text-align: center;
    }
    
    .offer-features .features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .job-posting-section {
        padding: 60px 0;
    }
    
    .posting-form-container {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .sidebar-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .posting-form-container {
        padding: 20px;
    }
    
    .form-section {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .price {
        font-size: 2.5rem;
    }
}
