/* Career Modal Styles */

.career-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.career-modal .modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

.career-modal .modal-header {
    background: linear-gradient(135deg, #2E8B57 0%, #1e6b47 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.career-modal .modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.career-modal .modal-header i {
    margin-right: 10px;
    color: #FFD700;
}

.career-modal .close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.career-modal .close-modal:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.career-modal .modal-body {
    padding: 30px;
}

.career-modal .pricing-table {
    margin-bottom: 30px;
}

.career-modal .pricing-grid {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.career-modal .pricing-grid th {
    background: linear-gradient(135deg, #2E8B57 0%, #1e6b47 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.career-modal .pricing-grid td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    background: white;
}

.career-modal .pricing-grid tr:nth-child(even) td {
    background: #f8fafc;
}

.career-modal .pricing-grid tr:hover td {
    background: #e6fffa;
}

.career-modal .package-features {
    margin-top: 30px;
}

.career-modal .package-features h4 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.career-modal .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.career-modal .feature-column {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.career-modal .feature-column.premium {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border-color: #2E8B57;
    position: relative;
}

.career-modal .feature-column.premium::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FFD700;
    color: #2d3748;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.career-modal .feature-column h5 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1rem;
}

.career-modal .feature-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-modal .feature-column li {
    padding: 8px 0;
    color: #4a5568;
    display: flex;
    align-items: center;
}

.career-modal .feature-column li i {
    color: #2E8B57;
    margin-right: 10px;
    font-size: 0.9rem;
}

.career-modal .modal-footer {
    background: #f8fafc;
    padding: 20px 30px;
    border-radius: 0 0 12px 12px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.career-modal .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.career-modal .btn-primary {
    background: linear-gradient(135deg, #2E8B57 0%, #1e6b47 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.career-modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 139, 87, 0.4);
}

.career-modal .btn-outline {
    background: transparent;
    color: #2E8B57;
    border: 2px solid #2E8B57;
}

.career-modal .btn-outline:hover {
    background: #2E8B57;
    color: white;
}

/* Login Modal Styles */
.career-login-modal {
    display: block;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.career-login-modal .modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.career-login-modal .modal-header {
    background: linear-gradient(135deg, #2E8B57 0%, #1e6b47 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
}

.career-login-modal .modal-body {
    padding: 30px;
    text-align: center;
}

.career-login-modal .modal-body p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.6;
}

.career-login-modal .modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Message Styles */
.career-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 10002;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease;
}

.career-message--success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.career-message--error {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
}

.career-message--info {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0;
        transform: translateX(100%);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .career-modal .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .career-modal .modal-header,
    .career-modal .modal-body,
    .career-modal .modal-footer {
        padding: 20px;
    }
    
    .career-modal .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .career-modal .pricing-grid {
        font-size: 0.9rem;
    }
    
    .career-modal .pricing-grid th,
    .career-modal .pricing-grid td {
        padding: 10px;
    }
    
    .career-login-modal .modal-footer {
        flex-direction: column;
    }
    
    .career-message {
        top: 10px;
        right: 10px;
        left: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .career-modal .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .career-modal .pricing-grid {
        font-size: 0.8rem;
    }
    
    .career-modal .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* 
Pricing Description Styles */
.career-modal .pricing-description {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2E8B57;
    margin-bottom: 30px;
}

.career-modal .pricing-description h4 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.career-modal .pricing-description h4 i {
    color: #2E8B57;
}

.career-modal .pricing-description p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* Enhanced table styles for experience levels */
.career-modal .pricing-grid tbody tr:first-child td:first-child,
.career-modal .pricing-grid tbody tr:nth-child(2) td:first-child,
.career-modal .pricing-grid tbody tr:nth-child(3) td:first-child,
.career-modal .pricing-grid tbody tr:nth-child(4) td:first-child,
.career-modal .pricing-grid tbody tr:nth-child(5) td:first-child,
.career-modal .pricing-grid tbody tr:nth-child(6) td:first-child,
.career-modal .pricing-grid tbody tr:nth-child(7) td:first-child {
    font-weight: 600;
    color: #2E8B57;
}

/* Highlight experience-based rows */
.career-modal .pricing-grid tbody tr:nth-child(-n+7) {
    background: #f0fff4 !important;
}

.career-modal .pricing-grid tbody tr:nth-child(-n+7):hover td {
    background: #e6fffa !important;
}
/* 
Footer Actions Styles */
.career-modal .footer-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.career-modal .footer-note {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.career-modal .footer-note i {
    color: #2E8B57;
    margin-right: 5px;
}

@media (max-width: 480px) {
    .career-modal .footer-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .career-modal .footer-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}/* Inter
active Pricing Table Styles */
.pricing-table-container {
    margin-bottom: 30px;
}

.table-instructions {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #2E8B57;
    margin-bottom: 20px;
}

.table-instructions p {
    margin: 0;
    color: #2d3748;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-instructions i {
    color: #2E8B57;
    font-size: 1.1rem;
}

.service-row {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-row:hover {
    background: #f0fff4 !important;
    transform: translateX(5px);
}

.service-row.selected {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%) !important;
    border-left: 4px solid #2E8B57;
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
}

.service-row.selected::after {
    content: "✓";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2E8B57;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-name {
    position: relative;
}

.service-title {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.experience-badge,
.specialized-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-badge {
    background: rgba(46, 139, 87, 0.1);
    color: #2E8B57;
    border: 1px solid rgba(46, 139, 87, 0.2);
}

.specialized-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #b8860b;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.price-cell {
    text-align: center;
    padding: 15px 10px;
}

.price-cell .price {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #2d3748;
    margin-bottom: 5px;
}

.price-cell .package-features {
    display: block;
    font-size: 0.8rem;
    color: #718096;
    font-style: italic;
}

.price-cell.premium .price {
    color: #2E8B57;
}

/* Selection Summary Styles */
.selection-summary {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border: 2px solid #2E8B57;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    animation: slideIn 0.3s ease;
}

.summary-header h4 {
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.summary-header i {
    color: #2E8B57;
}

.summary-content {
    display: grid;
    gap: 20px;
}

.selected-service {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(46, 139, 87, 0.2);
}

.service-label {
    font-weight: 600;
    color: #2d3748;
    min-width: 80px;
}

.service-value {
    font-weight: 600;
    color: #2E8B57;
    font-size: 1rem;
}

.package-selector {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-label {
    font-weight: 600;
    color: #2d3748;
}

.package-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.package-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.package-option:hover {
    border-color: #2E8B57;
    background: #f8fafc;
}

.package-option input[type="radio"] {
    display: none;
}

.package-option input[type="radio"]:checked + .radio-custom {
    background: #2E8B57;
    border-color: #2E8B57;
}

.package-option input[type="radio"]:checked + .radio-custom::after {
    opacity: 1;
}

.package-option input[type="radio"]:checked ~ .package-info .package-name {
    color: #2E8B57;
    font-weight: 700;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-custom::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.package-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

.package-price {
    font-weight: 700;
    color: #2E8B57;
    font-size: 1rem;
}

/* Enhanced Footer Styles */
.footer-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-actions .btn {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.footer-actions .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.footer-actions .btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.btn-text {
    font-size: 1rem;
    font-weight: 600;
}

.btn-price {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.service-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.comparison-item {
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.comparison-item h6 {
    color: #2d3748;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.comparison-item h6 i {
    color: #2E8B57;
}

.comparison-item p {
    color: #4a5568;
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.comparison-price {
    display: block;
    font-weight: 600;
    color: #2E8B57;
    font-size: 0.9rem;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .package-options {
        flex-direction: column;
    }
    
    .package-option {
        min-width: auto;
    }
    
    .service-comparison {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .selected-service {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .service-label {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .career-modal .pricing-grid {
        font-size: 0.85rem;
    }
    
    .service-title {
        font-size: 0.9rem;
    }
    
    .price-cell .price {
        font-size: 1rem;
    }
    
    .selection-summary {
        padding: 20px 15px;
    }
    
    .summary-content {
        gap: 15px;
    }
}