
.page-why-remote {
    background: #f8f9fa;
    min-height: 100vh;
    
} Remote Page Styles */
.page-why-remote {
    background: white;
    min-height: 100vh;
    font-family: 'Halcyon', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.why-remote-container {
    
    top: 0%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 2rem;
}

.h4 {
    font-size: 0.5rem;
    padding-bottom: 3rem;
    padding-top: 0;
    margin-top: 0;
}

.title-image {
    height: 60px;
    max-width: 200px;
    object-fit: contain;
}

.title-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .title-image {
        height: 45px;
        max-width: 150px;
    }
    
    .title-icon {
        height: 30px;
    }
}

.flexjobs-logo {
    height: 50px;
    margin-bottom: 3rem;
}

.page-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.2;
}

.work-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.8rem;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.work-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.work-option:hover {
    border-color: black;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-width: 2px;
}

.work-option.selected {
    border-color: black;
    border-width: 1px;
    background: #f8f9ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.work-option-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.work-option-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.work-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.work-option-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 0;
}


.work-option-description {
    display: none; 
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: center;
    max-width: 250px;
}


.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .work-option-description.mobile-only {
        display: block;
    }
    
    .work-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .work-option {
        padding: 1.5rem;
        min-height: auto;
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: flex-start;
    }
    
    .work-option-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 0;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }
    
    .work-option-content {
        flex: 1;
        align-items: flex-start;
        text-align: left;
    }
    
    .work-option-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .work-option-description {
        text-align: left;
        max-width: none;
    }
}

.success-message {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 1rem 2rem;
    margin: 2rem auto;
    max-width: 400px;
    text-align: center;
    color: #0066cc;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

.success-message i {
    margin-right: 0.5rem;
    color: #ffa500;
}

.next-button {
    background: #ff6b35;
    border: none;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.next-button.show {
    opacity: 1;
    transform: translateY(0);
}

.next-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}


.progress-modal {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    min-width: 200px;
    text-align: center;
}

.progress-modal .progress-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.progress-modal .progress-bar-container {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.progress-modal .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 16.66%; 
}

@media (max-width: 768px) {
    .next-button {
        display: none; 
    }
    
    .progress-modal {
        display: none; 
    }
    
    
    .why-remote-container {
        padding-bottom: 0;
    }
}


.icon-remote {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23e3f2fd" stroke="%23007bff" stroke-width="2"/><path d="M30 45 Q50 25 70 45 Q50 65 30 45" fill="%23007bff"/><circle cx="35" cy="40" r="3" fill="white"/><circle cx="65" cy="40" r="3" fill="white"/><rect x="25" y="55" width="50" height="15" rx="5" fill="%23ff5722"/></svg>') no-repeat center;
    background-size: contain;
}

.icon-hybrid {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="30" width="60" height="40" fill="%23e8f5e8" stroke="%234caf50" stroke-width="2" rx="5"/><rect x="30" y="40" width="15" height="20" fill="%234caf50"/><rect x="55" y="40" width="15" height="20" fill="%234caf50"/><path d="M25 75 L35 65 L45 75 L55 65 L65 75 L75 65" stroke="%23ff9800" stroke-width="3" fill="none"/></svg>') no-repeat center;
    background-size: contain;
}

.icon-flexible {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="25" y="35" width="50" height="30" fill="%23fff3e0" stroke="%23ff9800" stroke-width="2" rx="5"/><circle cx="40" cy="25" r="8" fill="%23ff9800"/><path d="M32 25 Q40 15 48 25" stroke="%23ff9800" stroke-width="2" fill="none"/><rect x="60" y="45" width="8" height="8" fill="%23ff9800"/><circle cx="64" cy="60" r="4" fill="%23ff9800"/><path d="M35 70 Q50 75 65 70" stroke="%23ff9800" stroke-width="2" fill="none"/></svg>') no-repeat center;
    background-size: contain;
}


.page-why-remote__option {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-why-remote__option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.page-why-remote__option.selected {
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.page-why-remote__option-overlay {
    background: rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.page-why-remote__next-btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.page-why-remote__next-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.page-why-remote__next-btn:disabled {
    cursor: not-allowed;
}

.page-why-remote__icon-circle {
    transition: all 0.3s ease;
}

.page-why-remote__option:hover .page-why-remote__icon-circle {
    transform: scale(1.1);
}

.page-why-remote__benefit {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.page-why-remote__benefit:hover {
    background: rgba(13, 202, 240, 0.05);
    transform: translateY(-5px);
}

.page-why-remote__benefit-icon {
    transition: all 0.3s ease;
}

.page-why-remote__benefit:hover .page-why-remote__benefit-icon {
    transform: scale(1.1);
}


.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.btn-purple {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    border: none;
    color: white;
}

.btn-purple:hover {
    background: linear-gradient(135deg, #ad42c4 0%, #7e57c2 100%);
    color: white;
}


@media (max-width: 768px) {
    .why-remote-container {
        padding: 2rem 0 140px 0; 
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .work-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .work-option {
        padding: 0rem;
        min-height: 120px;
    }

    .work-option-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .work-option-title {
        font-size: 1rem;
    }

    
    .next-button {
        display: none !important;
    }

    .success-message {
        margin: 1.5rem 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .page-why-remote__title {
        font-size: 1.8rem;
    }
    
    .page-why-remote__icon-circle {
        width: 100px !important;
        height: 100px !important;
    }
    
    .page-why-remote__option {
        margin-bottom: 1rem;
    }
    
    .page-why-remote__next-btn {
        width: 100%;
        max-width: 300px;
    }
}


.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.work-option:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}
